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

:root {
  --navy: #0a1f3c;
  --blue: #1a6fb5;
  --sky: #3a9fd6;
  --aqua: #e8f6fd;
  --white: #ffffff;
  --off-white: #f7fbfe;
  --zinc-200: #e4e4e7;
  --zinc-400: #a1a1aa;
  --zinc-500: #71717a;
  --zinc-900: #18181b;
  --gold: #f0a500;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--zinc-900);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* NAV */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,31,60,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s, box-shadow 0.3s;
}

#nav.scrolled {
  background: rgba(10,31,60,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--sky) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  font-weight: 600 !important;
  border-radius: 4px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--blue) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 32px 24px;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-cta {
  margin-top: 12px;
  background: var(--sky);
  color: var(--white) !important;
  padding: 12px 20px !important;
  font-weight: 600;
  text-align: center;
  border: none !important;
  border-radius: 4px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(160deg, #0a1f3c 0%, #0e3460 40%, #1a6fb5 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1576610616656-d3aa5d1f4534?auto=format&fit=crop&w=1600&q=60') center/cover no-repeat;
  opacity: 0.12;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,31,60,0.9) 50%, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 140px 32px 80px;
  max-width: 680px;
  margin-left: max(32px, calc((100vw - 1120px) / 2 + 32px));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.stars { color: var(--gold); }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--sky);
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-pills span {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--sky);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  transition: border-color 0.2s;
}

.btn-ghost:hover { border-color: rgba(255,255,255,0.7); }

.btn-large { padding: 18px 40px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* TRUST BAR */
.trust-bar {
  background: var(--navy);
  padding: 32px 0;
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 48px;
}

.trust-item strong {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
}

.trust-item span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* SECTION HEADERS */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sky);
  margin-bottom: 12px;
  display: block;
  font-weight: 600;
}

.section-header {
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
}

.section-sub {
  margin-top: 16px;
  color: var(--zinc-500);
  max-width: 540px;
  font-size: 15px;
}

.rating-display {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.rating-stars { font-size: 22px; color: var(--gold); }
.rating-score { font-size: 32px; font-weight: 700; color: var(--navy); font-family: 'Cormorant Garamond', serif; }
.rating-source { font-size: 13px; color: var(--zinc-500); }

/* SERVICES */
.services {
  padding: 120px 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--zinc-200);
  padding: 36px 32px;
  position: relative;
  border-radius: 4px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(10,31,60,0.08);
  transform: translateY(-3px);
}

.service-card.featured {
  border-color: var(--sky);
  box-shadow: 0 4px 24px rgba(58,159,214,0.15);
}

.service-icon {
  font-size: 20px;
  color: var(--sky);
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--zinc-500);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}

.service-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--sky);
  color: var(--white);
  padding: 4px 10px;
  font-weight: 600;
  border-radius: 100px;
}

/* ABOUT */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}

.about-image-inner {
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1575429198097-0414ec08e8cd?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
}

.about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.15;
}

.about-content p {
  color: var(--zinc-500);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--zinc-200);
}

.stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.stat span {
  font-size: 12px;
  color: var(--zinc-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* REVIEWS */
.reviews {
  padding: 120px 0;
  background: var(--off-white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--zinc-200);
  border-radius: 4px;
  padding: 32px;
}

.review-stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; }

.review-text {
  color: var(--zinc-500);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--blue);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
}

.reviewer span {
  font-size: 12px;
  color: var(--zinc-400);
}

/* BOOKING CTA */
.booking-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 100px 0;
  text-align: center;
}

.booking-inner { max-width: 580px; margin: 0 auto; }

.booking-cta .section-label { color: var(--sky); }

.booking-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
}

.booking-inner p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  font-size: 16px;
}

.or-divider {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* CONTACT */
.contact {
  padding: 120px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--zinc-500);
  font-size: 15px;
  margin-bottom: 28px;
}

.hours-table { margin-bottom: 24px; }

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--zinc-200);
  font-size: 14px;
  color: var(--zinc-500);
}

.hours-row:last-child { border-bottom: none; }

.phone-link {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--zinc-500);
}

.form-group input,
.form-group select {
  background: var(--off-white);
  border: 1px solid var(--zinc-200);
  color: var(--zinc-900);
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus { border-color: var(--sky); }

/* FOOTER */
footer {
  background: var(--navy);
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand .logo {
  font-size: 18px;
  margin-bottom: 12px;
  display: inline-flex;
  flex-direction: column;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-contact p,
.footer-contact a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 6px;
  line-height: 1.6;
}

.footer-contact a:hover { color: var(--white); }

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .trust-item { padding: 0 24px; }
  .form-row { grid-template-columns: 1fr; }
  .container { padding: 0 24px; }
  .services { padding: 80px 0; }
  .about { padding: 80px 0; }
  .reviews { padding: 80px 0; }
  .contact { padding: 80px 0; }
}
