/* ─────────────────────────────────────────
   GOVERNESSES.LIVE — Luxury Minimalism
   ───────────────────────────────────────── */

:root {
  --bg:       #F6F3EE;
  --paper:    #FDFBF8;
  --black:    #161412;
  --dark:     #2A2520;
  --gold:     #8C7355;
  --gold-lt:  #B89A6F;
  --border:   #DDD8CF;
  --muted:    #7A726A;
  --nav-h:    72px;
  --max-w:    1240px;
  --pad:      clamp(24px, 5vw, 80px);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--black);
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }

/* ─── NAV ────────────────────────────────── */

#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid var(--border);
  background: rgba(246, 243, 238, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s;
}

#nav.scrolled { background: rgba(246, 243, 238, 0.98); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--black);
}
.nav-tld { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dark);
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:not(.nav-cta):hover { color: var(--gold); }

.nav-cta {
  border: 1px solid var(--black) !important;
  padding: 9px 22px !important;
  letter-spacing: 0.14em !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s !important;
}
.nav-cta:hover {
  background: var(--black) !important;
  color: var(--bg) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--black);
  transition: all 0.2s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.nav-mobile a {
  display: block;
  padding: 18px var(--pad);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile.open { display: flex; }

/* ─── FLASH ──────────────────────────────── */

.flash-messages {
  position: fixed;
  top: calc(var(--nav-h) + 16px);
  right: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flash {
  background: var(--black);
  color: var(--bg);
  padding: 16px 28px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  max-width: 380px;
  border-left: 2px solid var(--gold);
  animation: fadeSlideIn 0.3s ease;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── FULL-WIDTH RULE ────────────────────── */

.full-rule {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* ─── TYPOGRAPHY UTILITIES ───────────────── */

.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-label.center {
  justify-content: center;
}
.section-label.center::before { display: none; }

.section-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.section-heading em { font-style: italic; }
.section-heading.center { text-align: center; }

.section-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
}
.section-text.center { text-align: center; }

/* ─── LAYOUT ─────────────────────────────── */

.section {
  padding: 112px 0;
}
.section-sm {
  padding: 80px 0;
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.narrow-center {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

/* ─── BUTTONS ────────────────────────────── */

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.22s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--black);
  color: var(--bg);
  padding: 15px 36px;
  border: 1px solid var(--black);
}
.btn-primary:hover {
  background: var(--dark);
  border-color: var(--dark);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  padding: 15px 36px;
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--black);
  color: var(--black);
}

.btn-line {
  background: transparent;
  color: var(--dark);
  padding: 15px 0;
  border-bottom: 1px solid var(--dark);
}
.btn-line:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.btn-full { width: 100%; text-align: center; display: block; }

.align-bottom { align-self: flex-end; }

/* ─── MARGINS ────────────────────────────── */

.mt-12 { margin-top: 12px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mt-80 { margin-top: 80px; }

/* ─── HERO ───────────────────────────────── */

.hero {
  min-height: 100vh;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 100px) var(--pad) 100px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
}

.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(4.5rem, 9vw, 9.5rem);
  font-weight: 300;
  line-height: 0.93;
  letter-spacing: -0.025em;
  margin-bottom: 44px;
}
.hero-headline em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 52px;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 8px;
}

.hero-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--dark);
  border-left: 1px solid var(--gold);
  padding-left: 28px;
}
.hero-quote cite {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--muted);
  margin-top: 20px;
}

/* ─── PHILOSOPHY SECTION ─────────────────── */

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 72px;
}

.philosophy-body p {
  font-size: 0.97rem;
  color: var(--dark);
  line-height: 1.9;
  margin-bottom: 20px;
}

.ornament {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0.6;
}

.philosophy-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--dark);
  border-left: 1px solid var(--gold);
  padding-left: 28px;
  margin-bottom: 48px;
}
.philosophy-quote cite {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--muted);
  margin-top: 20px;
}

.philosophy-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── SECTION HEADER ROW ─────────────────── */

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}

/* ─── GOVERNESS CARDS (HOME) ─────────────── */

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

.governess-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.governess-portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--paper);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.25s;
}

.governess-initials {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.06em;
  transition: opacity 0.25s;
}

.governess-portrait-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 20, 18, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.governess-portrait-overlay span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
}

.governess-card:hover .governess-portrait { border-color: var(--gold); }
.governess-card:hover .governess-portrait-overlay { opacity: 1; }
.governess-card:hover .governess-initials { opacity: 0.3; }

.governess-card-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.governess-card:hover .governess-card-name { color: var(--gold); }

.governess-card-meta {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.governess-card-languages {
  font-size: 0.85rem;
  color: var(--gold);
}

/* ─── DARK QUOTE SECTION ─────────────────── */

.dark-quote-section {
  background: var(--black);
  padding: 112px 0;
}

.dark-quote-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
}

.dark-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
}

.dark-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--bg);
  max-width: 900px;
  margin: 0 auto;
}

.dark-attribution {
  margin-top: 48px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.dark-attribution em { font-style: italic; text-transform: none; }

/* ─── STEPS ──────────────────────────────── */

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

.step {
  border-top: 1px solid var(--border);
  padding-top: 36px;
}

.step-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 24px;
}

.step-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 14px;
}

.step-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ─── CTA SECTION ────────────────────────── */

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

.cta-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.cta-heading em { font-style: italic; color: var(--gold); }

.cta-body p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
}

.cta-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

/* ─── PAGE HERO ──────────────────────────── */

.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.page-hero-sm {
  padding: calc(var(--nav-h) + 40px) 0 40px;
}

.page-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 300;
  line-height: 0.93;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.page-title em { font-style: italic; color: var(--gold); }

.page-subtitle {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
}

.max-560 { max-width: 560px; }

.back-link {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s;
}
.back-link:hover { color: var(--gold); }

/* ─── DIRECTORY GRID ─────────────────────── */

.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.directory-card {
  background: var(--bg);
  padding: 0;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background 0.22s;
}
.directory-card:hover { background: var(--paper); }

.directory-portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.22s;
}
.directory-card:hover .directory-portrait { background: var(--bg); }

.directory-card:hover .governess-portrait-overlay { opacity: 1; }
.directory-card:hover .governess-initials { opacity: 0.25; }

.directory-card-body {
  padding: 28px 32px 36px;
}

.directory-card-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.directory-card:hover .directory-card-name { color: var(--gold); }

.directory-card-meta {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.directory-card-location {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.directory-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.directory-card-rate {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* ─── TAGS ───────────────────────────────── */

.tag {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  border: 1px solid var(--border);
  padding: 5px 12px;
  color: var(--dark);
  background: var(--bg);
  white-space: nowrap;
}

.tag-gold {
  border-color: rgba(140, 115, 85, 0.35);
  color: var(--gold);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ─── GOVERNESS DETAIL ───────────────────── */

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

.detail-portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--paper);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.detail-initials {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
}

.detail-sidebar-meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.meta-item {}

.meta-label {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}

.meta-value {
  font-size: 0.9rem;
  color: var(--dark);
}

.detail-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.detail-major {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}

.detail-bio {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.9;
  margin-bottom: 40px;
}

.detail-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  border-left: 1px solid var(--gold);
  padding-left: 24px;
  color: var(--dark);
  margin-bottom: 48px;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.detail-cta-strip {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.detail-cta-strip p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 360px;
}

/* ─── FAMILIES PAGE ──────────────────────── */

.two-col-prose {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-top: 56px;
}

.prose-body p {
  font-size: 0.97rem;
  color: var(--dark);
  line-height: 1.9;
  margin-bottom: 20px;
}

.prose-text {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.85;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.compare-col {
  padding: 56px 48px;
}

.compare-col-dark { background: var(--black); color: var(--bg); }
.compare-col-light { background: var(--paper); }

.compare-col-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}

.compare-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.compare-list li {
  font-size: 0.92rem;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
  color: rgba(253, 251, 248, 0.7);
}
.compare-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--muted);
}

.compare-list-gold li {
  color: var(--dark);
}
.compare-list-gold li::before {
  content: '✦';
  font-size: 0.55rem;
  color: var(--gold);
  top: 2px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.process-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
}

.process-content h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.process-content p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.85;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.pricing-card {
  background: var(--paper);
  padding: 36px 40px;
}

.pricing-card-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.pricing-card-rate {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 12px;
}

.pricing-card-desc {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── FORMS ──────────────────────────────── */

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

.form-aside {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
}

.criteria-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.criteria-list li {
  font-size: 0.88rem;
  color: var(--dark);
  line-height: 1.65;
  padding-left: 16px;
  position: relative;
}
.criteria-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.form-aside-note {
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.form-aside-note p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
}

.aside-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--dark);
  border-left: 1px solid var(--gold);
  padding-left: 20px;
}
.aside-quote cite {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--muted);
  margin-top: 14px;
}

.form-section-title {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.form-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

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

.form-group { margin-bottom: 36px; }

.form-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--border);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.7;
}

.form-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0 48px;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 24px;
}

.form-submit-note {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ─── FOOTER ─────────────────────────────── */

footer {
  border-top: 1px solid var(--border);
  padding: 72px var(--pad) 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-decoration: none;
  color: var(--black);
  display: block;
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}
.footer-location {
  margin-top: 4px;
}

.footer-nav {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col-label {
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.82rem;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--muted);
}
.footer-bottom em {
  font-style: italic;
}

/* ─── FADE-IN ANIMATIONS ─────────────────── */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────── */

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-aside { display: none; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 48px; }
  .two-col-prose { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 280px 1fr; gap: 56px; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 60px); padding-bottom: 60px; }
  .hero-headline { font-size: clamp(3.5rem, 13vw, 6rem); }

  .governess-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .directory-grid { grid-template-columns: repeat(2, 1fr); }

  .detail-grid { grid-template-columns: 1fr; }
  .detail-cta-strip { flex-direction: column; align-items: flex-start; }

  .compare-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 60px 1fr; gap: 24px; }

  .form-layout { grid-template-columns: 1fr; }
  .form-aside { position: static; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-nav { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  .section-header-row { flex-direction: column; align-items: flex-start; }
  .detail-meta-grid { grid-template-columns: 1fr; gap: 28px; }
  .philosophy-stats { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .directory-grid { grid-template-columns: 1fr; }
  .compare-col { padding: 36px 28px; }
  .pricing-card { padding: 28px 28px; }
}
