/* ── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --navy:        #0D2B5E;
  --navy-mid:    #1B4F8A;
  --navy-light:  #2E6DB4;
  --navy-pale:   #E8EDF5;
  --navy-faint:  #F4F7FC;
  --gold:        #C9A84C;
  --white:       #FFFFFF;
  --off-white:   #F9FAFB;
  --text:        #1A1A2E;
  --text-mid:    #4A4A6A;
  --text-light:  #8A8AAA;
  --border:      #DDE4EF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --radius:       8px;
  --radius-lg:    14px;
  --shadow:       0 1px 3px rgba(13,43,94,0.08), 0 4px 16px rgba(13,43,94,0.06);
  --transition:   0.25s ease;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 16px; color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.2rem; }
p { color: var(--text-mid); line-height: 1.7; }
.eyebrow { font-family: var(--font-body); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-light); margin-bottom: 8px; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.section { padding: 80px 0; }
.section-header { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.section-sub { margin-top: 12px; font-size: 1rem; }
.section-cta { text-align: center; margin-top: 40px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-block; background: var(--white); color: var(--navy-mid);
  padding: 13px 28px; border-radius: var(--radius); font-size: 0.9rem; font-weight: 500;
  transition: var(--transition); border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--navy-pale); }
.btn-ghost {
  display: inline-block; background: transparent; color: var(--white);
  padding: 13px 28px; border-radius: var(--radius); font-size: 0.9rem; font-weight: 400;
  border: 1px solid rgba(255,255,255,0.35); transition: var(--transition); cursor: pointer;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--navy-mid);
  padding: 11px 24px; border-radius: var(--radius); font-size: 0.88rem; font-weight: 500;
  border: 1px solid var(--navy-mid); transition: var(--transition);
}
.btn-outline:hover { background: var(--navy-pale); }

/* ── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(13,43,94,0.25); }
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 32px; height: 64px;
}
.nav-logo { flex-shrink: 0; }
.logo-name { display: block; color: var(--white); font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; line-height: 1.1; }
.logo-title { display: block; color: #8AADD4; font-size: 0.7rem; letter-spacing: 0.06em; margin-top: 2px; }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a { color: #8AADD4; font-size: 0.85rem; padding: 6px 12px; border-radius: var(--radius); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-cta {
  flex-shrink: 0; background: var(--white); color: var(--navy-mid);
  padding: 8px 18px; border-radius: var(--radius); font-size: 0.82rem; font-weight: 500;
  transition: var(--transition); white-space: nowrap;
}
.nav-cta:hover { background: var(--navy-pale); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: var(--transition); }
.nav-mobile { display: none; flex-direction: column; padding: 16px 28px 20px; gap: 4px; border-top: 1px solid rgba(255,255,255,0.08); }
.nav-mobile a { color: #8AADD4; font-size: 0.9rem; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-mobile a:last-of-type { border: none; }
.mobile-cta { color: var(--white) !important; font-weight: 500; margin-top: 8px; }
.nav-mobile.open { display: flex; }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  background: var(--navy-mid); padding-top: 64px;
  min-height: 100vh; display: flex; flex-direction: column;
}
.hero-content {
  flex: 1; display: grid; grid-template-columns: 1fr 420px;
  gap: 48px; align-items: center;
  max-width: 1100px; margin: 0 auto; padding: 80px 28px 60px;
  width: 100%;
}
.hero-text h1 { color: var(--white); margin-bottom: 16px; }
.hero-eyebrow { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #8AADD4; margin-bottom: 16px; }
.hero-sub { color: #B8D0E8; font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 28px; }
.card-label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #8AADD4; margin-bottom: 20px; }
.card-list { display: flex; flex-direction: column; gap: 12px; }
.card-list li { display: flex; align-items: center; gap: 12px; color: #B8D0E8; font-size: 0.9rem; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--navy-light); flex-shrink: 0; }
.hero-bar { background: rgba(0,0,0,0.2); border-top: 1px solid rgba(255,255,255,0.06); }
.hero-bar-inner { max-width: 1100px; margin: 0 auto; padding: 20px 28px; display: flex; align-items: center; gap: 0; }
.stat { flex: 1; text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--white); }
.stat-label { display: block; font-size: 0.75rem; color: #8AADD4; margin-top: 2px; }
.stat-div { width: 1px; height: 32px; background: rgba(255,255,255,0.12); }

/* ── SERVICES ───────────────────────────────────────────── */
.services-section { 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(--border); border-radius: var(--radius-lg);
  padding: 28px; transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow); border-color: var(--navy-pale); transform: translateY(-2px); }
.service-icon { width: 44px; height: 44px; background: var(--navy-pale); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--navy-mid); }
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--navy); }
.service-card p { font-size: 0.88rem; color: var(--text-light); }

/* ── ABOUT PREVIEW ──────────────────────────────────────── */
.about-preview { padding: 80px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 320px 1fr; gap: 60px; align-items: start; }
.about-img-placeholder {
  background: var(--navy-faint); border: 1px solid var(--border); border-radius: var(--radius-lg);
  aspect-ratio: 3/4; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.about-img-placeholder svg { width: 64px; height: 64px; opacity: 0.4; }
.about-img-placeholder p { font-size: 0.8rem; color: var(--text-light); text-align: center; line-height: 1.5; }
.about-content h2 { margin-bottom: 6px; }
.about-credentials { font-size: 0.82rem; color: var(--navy-light); letter-spacing: 0.04em; margin-bottom: 20px; }
.about-content p { margin-bottom: 14px; font-size: 0.95rem; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tags span { background: var(--navy-pale); color: var(--navy-mid); font-size: 0.78rem; padding: 5px 12px; border-radius: 20px; }

/* ── CONDITIONS ─────────────────────────────────────────── */
.conditions-section { background: var(--navy-faint); }
.conditions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.cond-item {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 16px; transition: var(--transition);
}
.cond-item:hover { border-color: var(--navy-light); background: var(--navy-pale); }
.cond-item span { font-size: 0.88rem; color: var(--text); font-weight: 400; }

/* ── BOOKING CTA ────────────────────────────────────────── */
.booking-cta { background: var(--navy); padding: 80px 0; }
.booking-grid { display: grid; grid-template-columns: 1fr 480px; gap: 60px; align-items: start; }
.booking-text .eyebrow.light { color: #8AADD4; }
.booking-text h2 { color: var(--white); margin-bottom: 16px; }
.booking-text p { color: #B8D0E8; font-size: 1rem; }
.booking-form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 28px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 0.78rem; color: #8AADD4; margin-bottom: 6px; letter-spacing: 0.04em; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 10px 14px; color: var(--white); font-size: 0.9rem;
  font-family: var(--font-body); transition: var(--transition); resize: vertical;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.1);
}
.form-row select option { background: var(--navy); color: var(--white); }
.btn-submit {
  width: 100%; background: var(--white); color: var(--navy-mid); border: none;
  padding: 13px; border-radius: var(--radius); font-size: 0.9rem; font-weight: 500;
  font-family: var(--font-body); cursor: pointer; transition: var(--transition); margin-top: 4px;
}
.btn-submit:hover { background: var(--navy-pale); }
.form-note { font-size: 0.75rem; color: rgba(255,255,255,0.35); text-align: center; margin-top: 12px; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 160px 200px; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); margin-bottom: 6px; }
.footer-title { font-size: 0.78rem; color: #8AADD4; line-height: 1.5; margin-bottom: 16px; }
.footer-address { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.6; }
.footer-col-title { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #8AADD4; margin-bottom: 16px; }
.footer-links-col, .footer-contact-col { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a, .footer-contact-col a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-links-col a:hover, .footer-contact-col a:hover { color: var(--white); }
.footer-social { display: flex; gap: 16px; margin-top: 8px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { font-size: 0.78rem; color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ── PAGE HEADER (inner pages) ──────────────────────────── */
.page-header { background: var(--navy-mid); padding: 120px 0 60px; }
.page-header h1 { color: var(--white); }
.page-header p { color: #B8D0E8; max-width: 560px; margin-top: 12px; }

/* ── ANIMATIONS ─────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 32px; padding: 60px 28px 40px; }
  .hero-card { display: none; }
  .hero-bar-inner { gap: 0; flex-wrap: wrap; }
  .stat { min-width: 50%; padding: 8px 0; }
  .stat-div { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { max-width: 280px; }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; margin-left: auto; }
  h1 { font-size: 2.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}
