/* ═══════════════════════════════════════════════════════════════════════════
   JACOB SYDNEY — EDITORIAL LUXURY STYLESHEET
   Aesthetic: Literary magazine × Private school × Refined educator
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --navy:      #1B3A5C;
  --navy-dk:   #0F2238;
  --navy-mid:  #254d7a;
  --gold:      #B8872A;
  --gold-lt:   #D4A444;
  --gold-pale: #F5E6C8;
  --cream:     #F9F5EE;
  --cream-dk:  #EFE9DC;
  --white:     #FFFFFF;
  --ink:       #1C1C1C;
  --ink-mid:   #3D3D3D;
  --ink-lt:    #6B6B6B;
  --ink-faint: #9A9A9A;
  --border:    #DDD5C5;
  --border-lt: #EDE7DC;

  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;

  --shadow-sm:  0 1px 4px rgba(27,58,92,0.08), 0 4px 16px rgba(27,58,92,0.06);
  --shadow-md:  0 4px 16px rgba(27,58,92,0.10), 0 12px 40px rgba(27,58,92,0.08);
  --shadow-lg:  0 8px 32px rgba(27,58,92,0.12), 0 24px 64px rgba(27,58,92,0.10);

  --radius:    10px;
  --radius-lg: 16px;
  --max:       920px;
}

/* ── RESET ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
button { cursor: pointer; font-family: var(--sans); }

/* ── TYPOGRAPHY ──────────────────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--serif); color: var(--navy); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 600; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 500; letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: 0.875rem; font-weight: 600; color: var(--navy); font-family: var(--sans); letter-spacing: 0.04em; text-transform: uppercase; }
p  { color: var(--ink-mid); line-height: 1.75; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.rule {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 2px;
  margin: 16px 0 24px;
}
.rule.center { margin-left: auto; margin-right: auto; }

/* ── LAYOUT ──────────────────────────────────────────────────────────────── */
.wrap  { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section { padding: 80px 28px; max-width: var(--max); margin: 0 auto; }
.section-sm { padding: 52px 28px; max-width: var(--max); margin: 0 auto; }
.divider { border: none; border-top: 1px solid var(--border); margin: 64px 0; }
.text-center { text-align: center; }

/* ── FADE-UP ANIMATION ───────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }

/* ── NAV ─────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(15,34,56,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,135,42,0.2);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; height: 60px; gap: 16px;
}
.nav-logo {
  color: var(--gold-lt);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: -2px;
}
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-link {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  border: none; background: none;
}
.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
  text-decoration: none;
}
.nav-link.active { color: var(--gold-lt); }
.nav-cta {
  background: var(--gold);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-lt); text-decoration: none; transform: translateY(-1px); }
.nav-mobile-btn { display: none; background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1.4rem; padding: 4px; }

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy-dk);
  position: relative;
  overflow: hidden;
  padding: 96px 28px 80px;
}
/* Subtle geometric texture */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(184,135,42,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(37,77,122,0.4) 0%, transparent 50%);
  pointer-events: none;
}
/* Fine grid pattern */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 500;
  max-width: 680px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 em { color: var(--gold-lt); font-style: italic; }
.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-creds {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
}
.cred-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(184,135,42,0.3);
  color: rgba(255,255,255,0.75);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 5px 13px;
  border-radius: 20px;
  transition: border-color 0.2s, background 0.2s;
}
.cred-badge:hover { border-color: rgba(184,135,42,0.7); background: rgba(184,135,42,0.1); }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn, .btn-outline, .btn-ghost, .btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 600;
  border-radius: 8px; cursor: pointer;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(.16,1,.3,1);
  border: none;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  padding: 12px 24px;
}
.btn {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 2px 8px rgba(184,135,42,0.3);
}
.btn:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(184,135,42,0.4); text-decoration: none; color: #fff; }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; text-decoration: none; }
.btn-navy { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); text-decoration: none; color: #fff; }
.btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.18); text-decoration: none; color: #fff; }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; border-radius: 6px; }
.btn-full { width: 100%; justify-content: center; }

/* ── STATS STRIP ─────────────────────────────────────────────────────────── */
.stats-strip {
  background: var(--navy);
  padding: 40px 28px;
}
.stats-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px;
}
.stat-item {
  padding: 20px 24px;
  text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,0.1);
}
.stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── SERVICE CARDS ───────────────────────────────────────────────────────── */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-decoration: none;
  display: block;
  color: inherit;
  transition: all 0.3s cubic-bezier(.16,1,.3,1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-pale) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-4px); text-decoration: none; }
.service-card:hover::before { opacity: 1; }
.service-card.featured { border: 2px solid var(--gold); }
.service-card.featured-navy { border: 2px solid var(--navy); }
.service-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
  position: relative; z-index: 1;
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 8px; position: relative; z-index: 1; }
.service-card p { font-size: 0.875rem; color: var(--ink-lt); margin-bottom: 14px; line-height: 1.6; position: relative; z-index: 1; }
.service-card .card-link { color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em; position: relative; z-index: 1; }
.service-badge {
  display: inline-block;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.badge-gold { background: var(--gold); color: #fff; }
.badge-navy { background: var(--navy); color: #fff; }

/* ── PACKAGE CARDS ───────────────────────────────────────────────────────── */
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; }
.pkg-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pkg-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pkg-card.featured { border: 2px solid var(--gold); }
.pkg-header {
  background: var(--navy-dk);
  padding: 20px;
}
.pkg-header.gold { background: linear-gradient(135deg, var(--gold) 0%, #C4963A 100%); }
.pkg-name { color: rgba(255,255,255,0.8); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.pkg-price { color: #fff; font-family: var(--serif); font-size: 2rem; font-weight: 600; line-height: 1; }
.popular-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff; font-size: 0.65rem;
  font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 10px;
  border-radius: 20px; margin-bottom: 8px;
}
.pkg-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.pkg-tagline { font-size: 0.8rem; color: var(--ink-lt); font-style: italic; margin-bottom: 14px; }
.pkg-list { list-style: none; flex: 1; }
.pkg-list li {
  font-size: 0.825rem; color: var(--ink-mid);
  padding: 5px 0 5px 18px;
  position: relative; line-height: 1.5;
  border-bottom: 1px solid var(--border-lt);
}
.pkg-list li:last-child { border-bottom: none; }
.pkg-list li::before {
  content: '';
  position: absolute; left: 0; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.pkg-footer { padding: 0 18px 18px; }

/* ── PLAN CARDS (homeschool) ─────────────────────────────────────────────── */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 14px; }
.plan-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.plan-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.plan-card.featured { border: 2px solid var(--navy); }
.plan-header { background: var(--cream-dk); padding: 16px 18px; border-bottom: 1px solid var(--border); }
.plan-card.featured .plan-header { background: var(--navy-dk); border-bottom: none; }
.plan-name { font-family: var(--serif); font-size: 1.1rem; color: var(--navy); }
.plan-card.featured .plan-name { color: #fff; }
.plan-price { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); font-weight: 600; }
.plan-sessions { font-size: 0.75rem; color: var(--ink-faint); margin-top: 2px; }
.plan-card.featured .plan-sessions { color: rgba(255,255,255,0.5); }
.plan-body { padding: 14px 18px; flex: 1; }
.plan-list { list-style: none; }
.plan-list li {
  font-size: 0.825rem; color: var(--ink-mid);
  padding: 4px 0 4px 16px;
  position: relative; line-height: 1.5;
}
.plan-list li::before {
  content: '';
  position: absolute; left: 0; top: 10px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
}
.plan-footer { padding: 0 18px 18px; }
.pod-header { background: #EDF4ED; border-bottom: 1px solid #C8DEC8; }
.plan-card.featured .pod-header { background: var(--navy-dk); border-bottom: none; }

/* ── COURSE ROWS ─────────────────────────────────────────────────────────── */
.course-section { margin-bottom: 36px; }
.course-cat-header {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; border-radius: 8px;
  margin: 28px 0 12px;
  font-family: var(--sans);
}
.cat-writing { background: #EDF4ED; }
.cat-reading { background: #F9EFEF; }
.cat-testprep { background: #F0EDF9; }
.cat-specialty { background: #EDF4F4; }
.course-cat-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.cat-writing  .course-cat-label { color: #2D6A2D; }
.cat-reading  .course-cat-label { color: #8B3A3A; }
.cat-testprep .course-cat-label { color: #5B3D8A; }
.cat-specialty .course-cat-label { color: #2A6B6B; }
.course-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 16px; padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: 10px;
  margin-bottom: 6px;
  align-items: center;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.course-row:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.course-name { font-size: 0.925rem; font-weight: 600; color: var(--navy); }
.course-meta { font-size: 0.775rem; color: var(--ink-faint); margin-top: 2px; }
.course-price { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--gold); text-align: right; }
.course-ages { font-size: 0.725rem; color: var(--ink-faint); text-align: right; margin-top: 2px; }

/* ── CALLOUT ─────────────────────────────────────────────────────────────── */
.callout {
  border-left: 3px solid var(--gold);
  background: var(--gold-pale);
  padding: 18px 22px;
  border-radius: 0 10px 10px 0;
  margin: 24px 0;
}
.callout p { font-size: 0.9rem; color: var(--ink); }
.callout.green { border-left-color: #2D6A2D; background: #EDF4ED; }
.callout.navy  { border-left-color: var(--navy); background: #E8F0F8; }

/* ── SEASON TABLE ────────────────────────────────────────────────────────── */
.season-table { width: 100%; border-collapse: collapse; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); }
.season-table th { background: var(--navy-dk); color: rgba(255,255,255,0.8); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 12px 18px; text-align: left; }
.season-table td { font-size: 0.875rem; padding: 12px 18px; border-bottom: 1px solid var(--border-lt); }
.season-table tr:last-child td { border-bottom: none; }
.season-table tr:nth-child(even) td { background: var(--cream); }

/* ── ADDON TABLE ─────────────────────────────────────────────────────────── */
.addon-table { width: 100%; border-collapse: collapse; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); }
.addon-table thead th { background: var(--navy-dk); color: rgba(255,255,255,0.8); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 12px 18px; text-align: left; }
.addon-table thead th:last-child { text-align: right; }
.addon-table td { font-size: 0.875rem; padding: 11px 18px; border-bottom: 1px solid var(--border-lt); }
.addon-table td:last-child { font-family: var(--serif); font-weight: 600; color: var(--gold); text-align: right; }
.addon-table tr:nth-child(even) td { background: var(--cream); }
.addon-table tr:last-child td { border-bottom: none; }

/* ── ABOUT ───────────────────────────────────────────────────────────────── */
.about-hero {
  background: var(--navy-dk);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,135,42,0.12) 0%, transparent 70%);
}
.about-avatar {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-dk));
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-lt); font-family: var(--serif); font-size: 2rem; font-weight: 600;
  flex-shrink: 0; position: relative; z-index: 1;
  box-shadow: 0 0 0 6px rgba(184,135,42,0.15);
}
.about-hero-text { position: relative; z-index: 1; }
.about-hero-text h1 { color: #fff; font-size: 1.8rem; }
.about-hero-text .role { color: var(--gold-lt); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin: 8px 0 14px; display: block; }
.about-hero-text p { color: rgba(255,255,255,0.65); font-size: 0.925rem; }
.cred-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 14px; }
.cred-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  padding: 18px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.cred-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cred-icon { font-size: 1.6rem; margin-bottom: 10px; }
.cred-card h4 { font-size: 0.8rem; margin-bottom: 6px; }
.cred-card p { font-size: 0.8rem; color: var(--ink-lt); line-height: 1.6; }
.result-item {
  display: flex; gap: 20px; padding: 22px 0;
  border-bottom: 1px solid var(--border-lt);
  align-items: flex-start;
}
.result-num {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 700;
  color: var(--gold); min-width: 80px; line-height: 1; padding-top: 2px;
}
.result-text h4 { font-size: 0.875rem; margin-bottom: 5px; }
.result-text p { font-size: 0.875rem; }
.quote-block {
  background: var(--navy-dk);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}
.quote-block::before {
  content: '\201C';
  position: absolute; top: -20px; left: 20px;
  font-family: var(--serif); font-size: 12rem;
  color: rgba(184,135,42,0.12); line-height: 1;
  pointer-events: none;
}
.quote-block p { font-family: var(--serif); font-size: 1.05rem; font-style: italic; color: rgba(255,255,255,0.8); line-height: 1.85; position: relative; z-index: 1; }
.quote-attr { font-size: 0.8rem; color: var(--gold-lt); font-weight: 600; margin-top: 16px; letter-spacing: 0.04em; position: relative; z-index: 1; }

/* ── MAP ─────────────────────────────────────────────────────────────────── */
.map-section { background: var(--navy-dk); padding: 64px 28px; }
.map-section-inner { max-width: var(--max); margin: 0 auto; }
.map-section h2 { color: #fff; }
.map-section .rule { background: linear-gradient(90deg, var(--gold), transparent); }
.map-section p { color: rgba(255,255,255,0.6); }
#service-map { width: 100%; height: 420px; border-radius: var(--radius-lg); overflow: hidden; margin-top: 20px; border: 1px solid rgba(255,255,255,0.08); }
.map-legend { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; }
.legend-item { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; }
.legend-dot.home { background: var(--gold); }
.legend-dot.nearby { background: rgba(255,255,255,0.4); }
.town-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.town-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 4px 13px;
  font-size: 0.775rem; color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ── BOOKING PAGE ────────────────────────────────────────────────────────── */
.booking-tabs { display: flex; border-bottom: 2px solid var(--border-lt); margin-bottom: 32px; gap: 2px; }
.booking-tab {
  padding: 13px 22px; font-size: 0.875rem; font-weight: 600;
  color: var(--ink-lt); cursor: pointer;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: all 0.15s; background: none;
  border-top: none; border-left: none; border-right: none;
  letter-spacing: 0.02em;
}
.booking-tab.active { color: var(--navy); border-bottom-color: var(--gold); }
.booking-tab:hover { color: var(--navy); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 14px; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 18px; background: var(--white);
  border: 1px solid var(--border-lt); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.contact-icon { width: 40px; height: 40px; background: var(--cream); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-label { font-size: 0.7rem; color: var(--ink-faint); letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; }
.contact-value { font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-top: 1px; }
.purchase-form {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--navy); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 8px; }
.form-group select, .form-group input, .form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 0.925rem;
  color: var(--ink); font-family: var(--sans);
  background: var(--cream);
  transition: border-color 0.15s, background 0.15s;
}
.form-group select:focus, .form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--navy); background: var(--white);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.price-display {
  background: linear-gradient(135deg, var(--navy-dk), var(--navy));
  border-radius: 10px; padding: 18px 22px;
  margin: 22px 0; display: none;
  justify-content: space-between; align-items: center;
  box-shadow: var(--shadow-sm);
}
.price-label { font-size: 0.875rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.price-note  { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 3px; }
.price-amount { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--gold-lt); }
.stripe-note { display: flex; align-items: flex-start; gap: 8px; font-size: 0.775rem; color: var(--ink-faint); margin-top: 12px; line-height: 1.5; }

/* ── WHY US SECTION ──────────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 28px; }
.why-item h3 { font-family: var(--sans); font-size: 0.8rem; font-weight: 700; color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.why-item p { font-size: 0.875rem; line-height: 1.7; }

/* ── SECTION BG VARIANTS ─────────────────────────────────────────────────── */
.bg-cream  { background: var(--cream); }
.bg-white  { background: var(--white); }
.bg-navy   { background: var(--navy-dk); }
.bg-cream-dk { background: var(--cream-dk); }
.full-bleed { padding: 72px 28px; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
footer {
  background: var(--navy-dk);
  padding: 56px 28px 32px;
  border-top: 1px solid rgba(184,135,42,0.15);
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-name {
  font-family: var(--serif); font-size: 1.3rem;
  color: var(--gold-lt); margin-bottom: 10px;
}
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.8rem; line-height: 1.8; }
.footer-col h4 { font-size: 0.65rem; color: rgba(255,255,255,0.3); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-link { display: block; color: rgba(255,255,255,0.5); font-size: 0.875rem; padding: 4px 0; text-decoration: none; transition: color 0.15s; }
.footer-link:hover { color: rgba(255,255,255,0.9); text-decoration: none; }
.footer-contact a { color: rgba(255,255,255,0.5); font-size: 0.875rem; display: block; padding: 4px 0; text-decoration: none; transition: color 0.15s; }
.footer-contact a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { max-width: var(--max); margin: 28px auto 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.2); font-size: 0.75rem; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 60px; left: 0; right: 0;
    background: var(--navy-dk); padding: 12px;
    gap: 2px; z-index: 200;
    border-bottom: 1px solid rgba(184,135,42,0.2);
  }
  .nav-mobile-btn { display: block; }
  .nav-cta { display: none; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .about-hero { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 64px 20px 56px; }
  .booking-tabs { overflow-x: auto; }
  .booking-tab { white-space: nowrap; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
}

/* ── HERO TEXT — always light on dark background ────────────────────────── */
.hero p:not([class]) { color: rgba(255,255,255,0.72); }
.hero p { color: rgba(255,255,255,0.72); }
.about-hero p { color: rgba(255,255,255,0.65); }
.about-hero h1 { color: #ffffff; }
.bg-navy p { color: rgba(255,255,255,0.65); }
.bg-navy h2 { color: #ffffff; }
