
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #0094ff;
  --blue-soft: #0b6bb6;
  --black: #050608;
  --dark: #0d0d10;
  --light: #f5f7fb;
  --text: #e5e9f2;
  --muted: #a9b3c6;
  --card-bg: #111218;
  --radius-lg: 16px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 14px 30px rgba(0, 0, 0, 0.5);
}

html,
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  background: radial-gradient(circle at top, #151827 0, #050608 55%, #020308 100%);
  color: var(--text);
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(to bottom, rgba(5, 6, 8, 0.97), rgba(5, 6, 8, 0.92));
  border-bottom: 1px solid rgba(0, 148, 255, 0.25);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo {
  height: 42px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 0 18px rgba(0, 148, 255, 0.45);
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: #f4f7ff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.9rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: radial-gradient(circle at top left, var(--blue) 0, var(--blue-soft) 60%, #064b85 100%);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 16px rgba(0, 148, 255, 0.5);
}

/* Hero */

.hero {
  position: relative;
  padding: 3.5rem 0 3.5rem;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0, 148, 255, 0.18), transparent 55%),
              radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.85), transparent 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-content p {
  max-width: 32rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  font-size: 0.97rem;
}

.hero-location {
  color: #f4f7ff;
  font-weight: 500;
  margin-top: 0.25rem;
}

.hero-buttons {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn.primary {
  background: radial-gradient(circle at top left, var(--blue) 0, var(--blue-soft) 60%, #064b85 100%);
  color: #ffffff;
  box-shadow: 0 0 24px rgba(0, 148, 255, 0.65);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(0, 148, 255, 0.85);
}

.btn.ghost {
  border-color: rgba(163, 177, 199, 0.5);
  color: var(--muted);
  background: rgba(5, 6, 8, 0.8);
}

.btn.ghost:hover {
  border-color: var(--blue);
  color: #ffffff;
}

.btn.large {
  padding: 0.85rem 1.8rem;
}

/* Sections */

.section {
  padding: 3rem 0;
}

.section.alt {
  background: radial-gradient(circle at top left, rgba(0, 148, 255, 0.09), rgba(3, 4, 9, 0.96));
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.section-subtitle {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 1.75rem;
}

/* Cards (Services) */

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.card {
  background: radial-gradient(circle at top, #202231, #111218 70%);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.card .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.card ul {
  list-style: none;
  font-size: 0.9rem;
  color: var(--muted);
}

.card ul li {
  margin-bottom: 0.25rem;
}

.card .disclaimer {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: #b4bed4;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  background: rgba(3, 4, 10, 0.9);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 148, 255, 0.22);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.6);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 0.55rem 0.7rem 0.7rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.gallery-item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 148, 255, 0.8);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.9);
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.about-grid p {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 0.6rem;
}

.why-list {
  list-style: none;
  margin-top: 0.6rem;
  font-size: 0.9rem;
}

.why-list li {
  margin-bottom: 0.3rem;
}

.about-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 148, 255, 0.45);
}

/* Book / Calendly */

.book-inner {
  max-width: 640px;
}

.book-inner p {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 0.75rem;
}

/* Contact */

.contact-inner p {
  font-size: 0.93rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1rem 0 1.4rem;
  background: #020308;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.logo-small {
  height: 30px;
  margin-right: 0.5rem;
  border-radius: 6px;
}

.footer-left {
  display: flex;
  align-items: center;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-image {
    order: -1;
    margin-bottom: 1.8rem;
  }

  .cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .section {
    padding: 2.2rem 0;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}
