/* ═══════════════════════════════════════════════════════════════
   ALEX & ELLIOT — wedding site styles
   Desktop-first. Mobile is the <900px override (see §13).
   ═══════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────
   1. DESIGN TOKENS
   ─────────────────────────────────────────── */
:root {
  /* Sage — primary brand accent */
  --sage:        #5C6E4A;
  --sage-deep:   #43512F;
  --sage-light:  #7A8A66;  /* on dark surfaces only */

  /* Terracotta — guest accent (hero amp, script accents only) */
  --terracotta:       #B5613A;
  --terracotta-light: #C87E54;  /* on dark surfaces only */

  /* Surfaces */
  --cream:        #F4F1EA;
  --cream-warm:   #FBFAF6;
  --band:         #E4E0D4;
  --card:         #FBFAF6;
  --dark:         #23291E;
  --dark-surface: #2E3526;

  /* Text */
  --ink:          #23291E;
  --ink-soft:     #4A5340;
  --ink-faint:    #6E7560;  /* ≥11px uppercase labels only */
  --on-dark:      #F0EEE4;
  --on-dark-soft: #C4CCB4;

  /* Borders */
  --border: #E4E0D4;

  --nav-height: 60px;
}

/* ───────────────────────────────────────────
   2. RESET + BASE
   ─────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  background: var(--cream);
  font-family: 'Source Sans 3', sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Headings + the confirmation block are focused programmatically after
   step transitions so screen readers announce the new step's question.
   They're never natural tab stops (tabindex="-1"), so a visual focus
   ring on them adds nothing and reads as visual noise. */
.event-block-title:focus,
.event-block-title:focus-visible,
.step-question:focus,
.step-question:focus-visible,
.rsvp-confirmation:focus,
.rsvp-confirmation:focus-visible {
  outline: none;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  z-index: 1000;
  background: var(--sage-deep);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 0 0 8px 8px;
  font-size: 13px; letter-spacing: 0.08em;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

section[id] { scroll-margin-top: calc(var(--nav-height) + 20px); }

/* Hide password-manager / contact-card overlays that some extensions
   (LastPass, 1Password) inject over text inputs. The form has no
   credentials in it — no autofill suggestions add value here. */
input[data-lpignore="true"] ~ [data-lastpass-icon-root],
input[data-lpignore="true"] ~ [data-lastpass-root],
div[id^="__lpform_"],
div[id^="__1password_"],
div[data-com-onepassword] { display: none !important; }

/* ───────────────────────────────────────────
   3. TYPE HIERARCHY — the only source of truth
   ─────────────────────────────────────────── */

/* TIER 1 — top-level page sections */
.eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 70px;
  line-height: 1.04;
  color: var(--ink);
  text-wrap: balance;
}
.section-title em { font-style: italic; font-weight: 500; }
.section-intro {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400; font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-top: 20px;
  max-width: 580px;
  text-wrap: balance;
}

/* TIER 2 — sub-sections within Schedule */
.sub-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
.subsection-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 46px;
  line-height: 1.08;
  color: var(--ink);
  text-wrap: balance;
}
.subsection-title em { font-style: italic; font-weight: 500; }
.subsection-intro {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400; font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-top: 18px;
}

/* TIER 3 — card content */
.card-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 27px;
  line-height: 1.15;
  color: var(--ink);
}
.card-body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400; font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 10px;
}

/* ───────────────────────────────────────────
   4. LAYOUT UTILITIES
   ─────────────────────────────────────────── */
.section { padding: 110px 80px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header-centered { text-align: center; max-width: 700px; margin: 0 auto; }
.section-header-centered .section-intro { margin-left: auto; margin-right: auto; }
.section-divider {
  width: 40px; height: 0.5px;
  background: var(--sage); opacity: 0.4;
  margin: 28px auto;
}

/* ───────────────────────────────────────────
   5. HERO
   ─────────────────────────────────────────── */
.hero {
  text-align: center; position: relative; overflow: hidden;
  /* Locked dusk-sky gradient per DESIGN_SYSTEM.md §5.1. Do not edit
     stops — the pacing keeps text in either the dark or light zone,
     never the unreadable mid-tone. */
  background: linear-gradient(to bottom,
    #2A3022 0%, #353D2A 14%, #4A5439 28%, #6E7758 42%,
    #97A082 52%, #B6BCA4 60%, #CFD2C0 67%, #DFE0D2 73%,
    #EAEADE 80%, #F1EFE6 87%, var(--cream) 94%, var(--cream) 100%);
  padding: 60px 80px 120px;
  min-height: 88vh;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-lights { width: 100%; max-width: 1200px; margin: 0 auto 60px; display: block; }
.hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.hero-label {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; font-size: 13px; letter-spacing: 0.32em;
  text-transform: uppercase; color: #DDE4CE; margin-bottom: 40px;
}
.hero-names { display: flex; align-items: baseline; justify-content: center; gap: 24px; font-weight: 600; }
.hero-name { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 116px; line-height: 0.84; color: #F4F1EA; }
.hero-amp { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; font-size: 56px; color: var(--terracotta-light); }
.hero-date-block { margin-top: 56px; }
.hero-date {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; font-size: 16px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sage-deep);
}
.hero-thin-line { width: 44px; height: 2px; background: var(--sage); margin: 18px auto; opacity: 0.55; }
.hero-venue {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400; font-size: 14px; letter-spacing: 0.12em; color: var(--ink-soft);
}

/* ───────────────────────────────────────────
   6. NAVIGATION — sticky desktop + mobile menu
   ─────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 60px;
  background: rgba(246, 244, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}
.nav-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 22px; color: var(--ink); letter-spacing: 0.02em;
}
.nav-monogram em { font-style: italic; font-weight: 500; color: var(--sage); margin: 0 4px; }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  position: relative;
  padding-bottom: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); cursor: pointer;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--sage);
  transform: translateX(-50%);
  transition: width 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; opacity: 0.35; }
.nav-links a.active { color: var(--sage); }
.nav-links a.active::after { width: 100%; opacity: 1; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px;
}
.nav-toggle-bar {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu[hidden] { display: none; }
.mobile-menu-close {
  position: absolute; top: 22px; right: 26px;
  background: none; border: none;
  color: var(--on-dark); font-size: 34px; line-height: 1;
  font-family: 'Source Sans 3', sans-serif;
}
.mobile-menu-links { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.mobile-menu-links a {
  position: relative;
  padding-bottom: 6px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; color: var(--on-dark);
  transition: color 0.3s ease;
}
.mobile-menu-links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -2px;
  width: 0; height: 1px;
  background: var(--sage-light);
  transform: translateX(-50%);
  transition: width 0.35s ease;
}
.mobile-menu-links a.active {
  color: var(--sage-light);
  font-style: italic;
}
.mobile-menu-links a.active::after { width: 60%; }

/* ───────────────────────────────────────────
   7. STORY
   ─────────────────────────────────────────── */
.story-section { background: var(--cream); }
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-areas:
    "head  photo"
    "body  photo";
  column-gap: 80px;
  align-items: center;
}
.story-head { grid-area: head; align-self: end; }
.story-body { grid-area: body; align-self: start; }
.story-photo { grid-area: photo; }
/* No font-family here on purpose: body inherits Source Sans 3 already,
   and Caveat children like .story-accent need to win the cascade. */
.story-body p {
  font-weight: 400; font-size: 18px; line-height: 1.8;
  color: var(--ink-soft); margin-top: 18px;
}
.story-body p:first-child { margin-top: 0; }
.story-accent {
  font-family: 'Caveat', cursive;
  font-size: 26px !important; color: var(--sage) !important;
  margin-top: 32px !important; font-weight: 400; line-height: 1.4;
}

.arch-photo {
  width: 100%; aspect-ratio: 4/5;
  border-radius: 220px 220px 12px 12px;
  overflow: hidden; background: #D0D2CC;
  position: relative;
}
.arch-photo img { width: 100%; height: 100%; object-fit: cover; }
.story-portrait { object-position: center 20%; }
/* Decorative sage arc circles — disabled per design request.
   Markup retained (aria-hidden divs) so the change is CSS-only. */
.sage-arc-deco { display: none; }


/* ───────────────────────────────────────────
   8. SCHEDULE — wrapper, Welcome Night, Wedding
   ─────────────────────────────────────────── */
.schedule-wrap { background: var(--band); }
.schedule-header { padding: 110px 80px 60px; text-align: center; }
.schedule-events { padding: 0 80px 110px; }
.schedule-events-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 40px; }

.event-card {
  background: var(--card);
  border-radius: 22px;
  padding: 60px 64px;
  position: relative; overflow: hidden;
}
.event-card-decoration { display: none; }

/* Welcome Night */
.welcome-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px;
  align-items: start;
}
/* Field-block wrapper (spec §4.3): bordered, radius 12, overflow
   hidden, cream-warm fill. Rows are visual table cells with hairline
   dividers — makes logistics scannable as reference, not skimmable
   gray prose. */
.welcome-details {
  display: flex; flex-direction: column;
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.detail-row {
  display: flex; gap: 24px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.detail-row:last-child { border-bottom: none; }
.detail-label {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; font-size: 11px; color: var(--ink-faint);
  text-transform: uppercase; letter-spacing: 0.1em;
  min-width: 70px; padding-top: 2px;
}
.detail-value {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; font-size: 16px; color: var(--ink);
}
.detail-sub {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400; font-size: 14px; color: var(--ink-soft); margin-top: 3px;
}

/* Wedding */
.wedding-intro { max-width: 580px; margin-bottom: 48px; }

.ceremony-lights { width: 100%; height: 80px; display: block; }
.dress-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 32px;
}
.dress-card { background: var(--cream); border: 1px solid var(--border); border-radius: 14px; padding: 30px 28px; }
/* ── Option 4 · Night: venue hero + calm timeline on the dark card ──
   D's bold venue anchor with the string-light night ambiance. One dark
   card: lights → glowing Airlie hero → divider → run-of-show. Dress
   cards stay light below for contrast. */
.wedding-night {
  background: var(--dark);
  border-radius: 20px;
  padding: 0 0 44px;
  margin-top: 32px;
  position: relative; overflow: hidden;
}
.wedding-night .ceremony-lights { width: 100%; height: 80px; display: block; }
.night-hero { text-align: center; padding: 6px 56px 0; }
.night-eyebrow { color: var(--sage-light); margin-bottom: 12px; }
.night-name {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 58px; line-height: 1; color: var(--on-dark);
}
.night-name em { font-style: italic; font-weight: 500; color: var(--sage-light); }
.night-rule {
  width: 52px; height: 2px; border-radius: 1px;
  background: var(--sage-light); opacity: 0.6; margin: 20px auto;
}
.night-address {
  font-family: 'Source Sans 3', sans-serif; font-weight: 400;
  font-size: 15px; letter-spacing: 0.06em; color: var(--on-dark-soft);
}
.night-map {
  display: inline-block; margin-top: 22px;
  font-family: 'Source Sans 3', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: 0.04em;
  color: var(--sage-light); text-decoration: none;
  border-bottom: 1px solid rgba(138,154,122,0.45); padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.night-map:hover { color: var(--on-dark); border-color: var(--on-dark); }
.night-divider { height: 1px; margin: 30px 56px; background: rgba(232,216,160,0.16); }
.night-list { padding: 0 56px; }
.night-row {
  display: grid; grid-template-columns: 76px 1fr; gap: 28px;
  padding: 16px 0; border-bottom: 0.5px solid rgba(232,216,160,0.10);
}
.night-row:last-child { border-bottom: none; }
.night-time {
  font-family: 'Source Sans 3', sans-serif; font-weight: 600;
  font-size: 14px; letter-spacing: 0.05em; color: var(--sage-light); padding-top: 5px;
}
.night-event {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 23px; line-height: 1.15; color: var(--on-dark);
}
.night-detail {
  font-family: 'Source Sans 3', sans-serif; font-weight: 400;
  font-size: 14px; line-height: 1.55; color: var(--on-dark-soft); margin-top: 3px;
}
/* Ceremony — gently lifted: larger title + a warm gold time, no heavy marker. */
.night-row.is-key .night-event { font-size: 27px; }
.night-row.is-key .night-time { color: #E8D8A0; }

/* ───────────────────────────────────────────
   9. TRAVEL + stay card
   ─────────────────────────────────────────── */
.travel-section { background: var(--cream); padding: 110px 80px; }
.travel-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.travel-header .section-intro { margin-left: auto; margin-right: auto; }
.travel-inner { max-width: 1100px; margin: 0 auto; }

.travel-group { margin-top: 64px; }
.travel-group:first-child { margin-top: 0; }
.travel-group-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 27px; font-weight: 600;
  line-height: 1.15;
  color: var(--ink); text-align: center;
  margin: 0 0 24px;
}
.travel-subgroup-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-faint); text-align: center;
  margin: 36px 0 14px;
}
.travel-subgroup-title:first-of-type { margin-top: 0; }
.stay-card-left .venue-address {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-top: 4px;
}

.stay-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 22px;
  padding: 56px 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
  position: relative; overflow: hidden;
}
.stay-card-arc { display: none; }
.stay-card-left { position: relative; z-index: 2; }
.recommend {
  font-family: 'Caveat', cursive; font-size: 20px;
  color: var(--terracotta-light); margin-bottom: 6px;
}
/* No font-family here on purpose: body inherits Source Sans 3 already,
   and Caveat children like .recommend and .stay-deadline need to win
   the cascade. */
.stay-card-left p {
  font-weight: 400; font-size: 16px;
  color: var(--ink-soft); line-height: 1.65;
  margin-top: 16px;
}
.stay-card-left strong {
  font-weight: 500;
  color: var(--sage-deep);
  background: rgba(92,110,74,0.12);
  padding: 1px 6px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}
.stay-deadline {
  font-family: 'Caveat', cursive;
  font-weight: 400; font-size: 19px;
  color: var(--terracotta);
  margin-top: 14px;
}
.stay-deadline em { font-style: italic; font-weight: 500; }

/* Two hotels stacked vertically. Each card sits at its natural height
   so the per-card CTA buttons anchor at their own bottom edges (no
   awkward gap from height-matching across uneven content). The inner
   content is capped so reading widths stay comfortable on wide screens. */
.hotels-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  max-width: 860px;
  margin-left: auto; margin-right: auto;
}
.stay-card--hotel { display: block; }
.stay-card--hotel .stay-card-left { display: block; max-width: 620px; }
.stay-card--venue { max-width: 860px; margin-left: auto; margin-right: auto; }

.inline-link {
  color: var(--sage);
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 2px;
  text-decoration-color: rgba(92,110,74,0.45);
  transition: color 0.2s, text-decoration-color 0.2s;
}
.inline-link:hover {
  color: var(--sage-deep);
  text-decoration-color: var(--sage-deep);
}

.travel-extras-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
  max-width: 860px;
  margin-left: auto; margin-right: auto;
}
.travel-extras-grid .dir-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 28px;
}
.btn-sage {
  display: inline-block; margin-top: 28px;
  background: var(--sage); color: var(--cream-warm);
  border: none; border-radius: 8px;
  padding: 16px 34px;
  font-family: 'Source Sans 3', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  transition: background 0.2s;
}
.btn-sage:hover { background: var(--sage-light); }
.stay-card-right {
  display: grid; grid-template-rows: 1fr 1fr; gap: 16px;
  position: relative; z-index: 2;
}
.dir-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 24px 28px; }
.dir-card-title {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.dir-card p {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400; font-size: 16px; color: var(--ink-soft);
  line-height: 1.6; margin-top: 8px;
}

/* ───────────────────────────────────────────
   10. RSVP — progressive form
   ─────────────────────────────────────────── */
.rsvp-section {
  background: var(--dark);
  padding: 120px 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.rsvp-lights { width: 100%; height: 80px; display: block; position: absolute; top: 0; left: 0; }
.rsvp-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.rsvp-eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 22px; color: var(--terracotta-light);
  margin-bottom: 14px;
}
.rsvp-title-line {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 70px;
  line-height: 1.02; color: var(--on-dark);
}
.rsvp-title-line em { font-style: italic; font-weight: 500; }
.rsvp-intro {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400; font-size: 18px;
  color: var(--on-dark-soft);
  margin-top: 18px; line-height: 1.65;
  max-width: 520px; margin-left: auto; margin-right: auto;
  text-wrap: balance;
}
.rsvp-deadline-prominent {
  font-family: 'Caveat', cursive;
  font-weight: 400; font-size: 24px; line-height: 1.3;
  color: var(--terracotta-light);
  margin-top: 18px;
}
.rsvp-deadline-prominent em {
  font-style: italic; font-weight: 500;
  color: var(--terracotta-light);
  border-bottom: 0.5px solid rgba(200,126,84,0.5);
  padding-bottom: 1px;
}

.progressive-card {
  background: var(--dark-surface);
  border: 0.5px solid rgba(92,110,74,0.25);
  border-radius: 20px;
  padding: 56px 64px 48px;
  margin-top: 48px;
  text-align: left;
  transition: opacity 0.2s ease;
}
.progressive-card.step-fade { opacity: 0; }

.step-label {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--on-dark-soft); margin-bottom: 14px;
}
.step-question {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 34px; line-height: 1.15;
  color: var(--on-dark); margin-bottom: 28px;
}
.step-question em { font-style: italic; font-weight: 500; color: var(--sage-light); }

.name-input {
  display: block; width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(196,204,180,0.4);
  padding: 14px 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 28px;
  color: var(--on-dark);
  text-align: center;
  margin: 20px 0 32px;
  transition: border-color 0.2s;
}
.name-input::placeholder { color: rgba(237,234,226,0.42); }
.name-input:focus { outline: none; border-bottom-color: var(--sage); }

.field-group { margin: 0 0 24px; }
.field-label {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--on-dark-soft); margin-bottom: 10px;
}
.field-input, .field-textarea {
  display: block; width: 100%;
  background: rgba(246,244,239,0.04);
  border: 0.5px solid rgba(92,110,74,0.3);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'Source Sans 3', sans-serif; font-weight: 400; font-size: 15px;
  color: var(--on-dark);
  transition: border-color 0.2s;
}
.field-textarea { min-height: 84px; resize: vertical; line-height: 1.6; }
.field-input::placeholder, .field-textarea::placeholder { color: rgba(237,234,226,0.45); }
.field-input:focus, .field-textarea:focus { outline: none; border-color: var(--sage); }

/* Event question blocks — welcome night, wedding, rehearsal */
.event-block {
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 0.5px solid rgba(92,110,74,0.18);
}
.event-block:last-of-type {
  border-bottom: none; margin-bottom: 4px; padding-bottom: 0;
}
.event-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--on-dark-soft);
  margin-bottom: 8px;
}
.event-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 27px; line-height: 1.15;
  color: var(--on-dark);
  margin-bottom: 16px;
}
.event-block-title em { font-style: italic; color: var(--sage-light); }
.event-block--wedding .event-block-title { font-size: 26px; }
.event-block-intro {
  font-size: 13px; line-height: 1.7; color: var(--on-dark-soft);
  margin: -8px 0 18px; max-width: 460px;
}
.event-toggle { display: flex; gap: 12px; }

.person-block + .person-block { margin-top: 24px; }
.person-block + .note-for-couple { margin-top: 28px; }
.person-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: var(--sage-light);
  margin-bottom: 14px;
}
/* When a field name is appended ("Allison's Dinner Choice"), the
   field part sits roman + ink on the same baseline as the italic
   possessive — same family, related but distinct treatment. */
.person-name .person-field-name {
  font-style: normal;
  font-weight: 600;
  color: var(--on-dark);
  margin-left: 0.35em;
}
.person-name .person-field-name .field-required {
  font-weight: 400;
  margin-left: 0.15em;
}

/* Response cards (the Wedding question — visually weighty) */
.response-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.response-card {
  position: relative;
  background: var(--dark);
  border: 1.5px solid rgba(92,110,74,0.25);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left; color: var(--on-dark);
  cursor: pointer;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s,
              background 0.2s, box-shadow 0.2s, filter 0.2s;
}
.response-card:hover { transform: translateY(-2px); }
/* Selection indicator — an outlined ring in the corner, fills in on
   select. Reads like a radio button so users see at a glance whether
   they've already picked an option. */
.response-card .rc-check {
  position: absolute; top: 14px; right: 14px;
  width: 24px; height: 24px; border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(237,234,226,0.28);
  color: transparent;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.response-card .rc-kicker {
  font-family: 'Caveat', cursive; font-size: 18px; margin-bottom: 4px;
}
.response-card .rc-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 27px; line-height: 1.15;
}
.response-card .rc-sub {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400; font-size: 14px; margin-top: 8px; opacity: 0.75;
}

/* Default state for BOTH cards is neutral — the sage fill is the
   selected signal, not the accept identity. Identity comes from the
   kicker text color ("with joy" sage vs. "sadly" cognac). */
.response-card.accept { background: var(--dark); }
.response-card.accept .rc-kicker { color: var(--sage-light); }
.response-card.decline { background: var(--dark-surface); }
.response-card.decline .rc-kicker { color: var(--terracotta-light); }

/* SELECTED — unmistakable. Fill + halo + filled-in checkmark. */
.response-card.selected {
  border-color: var(--sage-light);
  box-shadow: 0 0 0 3px rgba(122,138,102,0.35), 0 8px 22px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}
.response-card.selected .rc-check {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--sage-deep);
  transform: scale(1.05);
}
.response-card.accept.selected {
  background: var(--sage); color: var(--cream);
}
.response-card.accept.selected .rc-kicker { color: #EDE6D2; }
.response-card.decline.selected {
  background: rgba(92,110,74,0.22);
}
.response-card.decline.selected .rc-check {
  background: var(--sage-light);
  border-color: var(--sage-light);
  color: var(--dark);
}

/* Fade the un-chosen card so the selection swap is unmistakable —
   especially on touch, where there's no hover state to reinforce it. */
.response-grid:has(.selected) .response-card:not(.selected) {
  opacity: 0.4;
  transform: none;
  filter: grayscale(0.25);
}
.response-grid:has(.selected) .response-card:not(.selected):hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

/* Toggles — Welcome Night, Rehearsal */
.toggle-option {
  flex: 1;
  background: var(--dark);
  border: 1.5px solid rgba(92,110,74,0.25);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  font-size: 13px; letter-spacing: 0.06em;
  color: var(--on-dark);
  cursor: pointer;
  transition: opacity 0.2s, border-color 0.2s, background 0.2s,
              box-shadow 0.2s, transform 0.2s;
}
/* Hover is a subtle background shift, not a border-brightness change,
   so an accidental hover doesn't read as a selection. */
.toggle-option:hover { background: var(--dark-surface); }
.toggle-option.selected {
  border-color: var(--sage-light);
  background: var(--sage);
  color: var(--cream);
  box-shadow: 0 0 0 3px rgba(122,138,102,0.30);
}
.event-toggle:has(.selected) .toggle-option:not(.selected) { opacity: 0.45; }
.event-toggle:has(.selected) .toggle-option:not(.selected):hover { opacity: 0.75; }

/* Dinner choice — vertical stack of menu cards with title + description.
   Custom radio circle since the native control can't carry the layout. */
.dinner-options {
  display: grid; grid-template-columns: 1fr; gap: 10px;
  margin-top: 10px;
}
.dinner-option {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--dark);
  border: 1.5px solid rgba(92,110,74,0.25);
  border-radius: 12px;
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, opacity 0.2s,
              box-shadow 0.2s;
}
.dinner-option input {
  position: absolute; opacity: 0;
  width: 1px; height: 1px; pointer-events: none;
}
.dinner-option-radio {
  position: relative; flex-shrink: 0;
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid rgba(237,234,226,0.35);
  background: transparent;
  margin-top: 3px;
  transition: background 0.2s, border-color 0.2s;
}
.dinner-option.selected .dinner-option-radio {
  background: var(--cream); border-color: var(--cream);
}
.dinner-option.selected .dinner-option-radio::after {
  content: ""; position: absolute;
  top: 4px; left: 4px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--sage-deep);
}
.dinner-option-content { display: flex; flex-direction: column; gap: 4px; }
.dinner-option-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 21px; line-height: 1.2; color: var(--on-dark);
}
.dinner-option-desc {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400; font-size: 14px; line-height: 1.55; color: var(--on-dark-soft);
}
.dinner-option.selected {
  border-color: var(--sage-light);
  background: rgba(92,110,74,0.18);
  box-shadow: 0 0 0 2px rgba(122,138,102,0.25);
}
.dinner-options:has(.selected) .dinner-option:not(.selected) { opacity: 0.5; }
.field-required { color: var(--sage-light); }

.btn-continue {
  display: block; width: 100%; max-width: 280px;
  margin: 24px auto 0;
  background: var(--sage); color: var(--cream-warm);
  border: none; border-radius: 8px;
  padding: 18px;
  font-family: 'Source Sans 3', sans-serif; font-weight: 600; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  transition: background 0.2s;
}
.btn-continue:hover { background: var(--sage-light); }
.btn-continue:disabled { opacity: 0.45; cursor: not-allowed; }

.step-actions { display: flex; align-items: center; gap: 18px; justify-content: center; margin-top: 24px; }
.step-actions .btn-continue { margin: 0; }
.btn-back {
  background: none; border: none;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; color: var(--on-dark-soft);
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 6px;
  transition: color 0.2s;
}
.btn-back:hover { color: var(--on-dark); }

.form-error {
  background: rgba(181,97,58,0.15);
  border: 0.5px solid var(--terracotta);
  color: #E4C9A8;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px; line-height: 1.5;
  margin: 0 0 22px;
}
.form-error-link {
  color: #F0D8B4;
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 2px;
}
.form-error-link:hover { color: var(--cream); }

.form-notice {
  background: rgba(92,110,74,0.16);
  border: 0.5px solid var(--sage);
  color: var(--sage-light);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px; line-height: 1.5;
  margin: 0 0 22px;
}

.rsvp-confirmation { text-align: center; padding: 8px 0; }
.confirm-script {
  font-family: 'Caveat', cursive;
  font-weight: 400; font-size: 34px; color: var(--sage-light);
  line-height: 1.25;
}
.confirm-body {
  font-weight: 400; font-size: 15px;
  color: var(--on-dark-soft);
  margin-top: 16px; line-height: 1.7;
}

.step-progress {
  display: flex; align-items: center; gap: 10px;
  justify-content: center; margin: 32px 0 12px;
}
.step-dot { width: 32px; height: 2px; border-radius: 1px; background: rgba(92,110,74,0.2); }
.step-dot.active { background: var(--sage); opacity: 0.9; }
.step-meta {
  font-weight: 400; font-size: 12px;
  color: rgba(196,204,180,0.6);
  text-align: center; letter-spacing: 0.05em;
}
.noscript-note { margin-top: 18px; }

/* ───────────────────────────────────────────
   10b. WEDDING PARTY
   ─────────────────────────────────────────── */
.wedding-party-section { background: var(--band); }
.wedding-party-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}
.wp-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 28px;
}
.wp-card .card-eyebrow { margin-bottom: 8px; }
.wp-card .card-title { margin-bottom: 8px; }

/* ───────────────────────────────────────────
   11. REGISTRY
   ─────────────────────────────────────────── */
.registry-section { background: var(--cream); padding: 110px 80px; text-align: center; }
.registry-inner { max-width: 700px; margin: 0 auto; }
.registry-section > .registry-inner > p {
  font-weight: 400; font-size: 16px; line-height: 1.8;
  color: var(--ink-soft); margin-top: 18px;
}
.registry-links {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-top: 40px;
}
.registry-link {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  padding: 24px 28px;
  cursor: pointer; transition: background 0.2s;
  text-align: left;
}
.registry-link:hover { background: var(--band); }
.registry-link-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 21px; color: var(--ink);
}
.registry-link-arrow {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; font-size: 13px; color: var(--sage);
  letter-spacing: 0.06em;
}

/* ───────────────────────────────────────────
   12. FOOTER
   ─────────────────────────────────────────── */
.footer { background: var(--band); padding: 60px 80px; text-align: center; }
.footer-names { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 37px; color: var(--ink); }
.footer-names em { font-style: italic; font-weight: 500; color: var(--sage); }
.footer-date {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400; font-size: 14px; color: var(--ink-soft); letter-spacing: 0.12em; margin-top: 10px;
}
.footer-divider { width: 40px; height: 0.5px; background: var(--sage); margin: 20px auto; opacity: 0.4; }
.footer-tagline { font-family: 'Caveat', cursive; font-weight: 400; font-size: 22px; color: var(--sage); }

/* ───────────────────────────────────────────
   12b. 404
   ─────────────────────────────────────────── */
.notfound {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 60px 24px;
  background: linear-gradient(to bottom, var(--cream), var(--band));
}
.notfound-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 48px; line-height: 1.1;
  color: var(--ink); margin-bottom: 18px;
}
.notfound-title em { font-style: italic; color: var(--sage); }
.notfound-body {
  font-weight: 400; font-size: 16px; line-height: 1.7;
  color: var(--ink-soft); max-width: 460px; margin-bottom: 8px;
}
.notfound .btn-sage { margin-top: 28px; }
.notfound-tagline {
  font-family: 'Caveat', cursive; font-size: 20px;
  color: var(--sage); margin-top: 40px;
}
@media (max-width: 899px) {
  .notfound-title { font-size: 30px; }
  .notfound-body { font-size: 14px; }
}

/* ───────────────────────────────────────────
   13. RESPONSIVE — mobile (<900px)
   ─────────────────────────────────────────── */
@media (max-width: 899px) {
  /* Type hierarchy (spec §3.4 mobile scale) */
  .eyebrow { font-size: 12px; letter-spacing: 0.16em; margin-bottom: 12px; }
  .section-title { font-size: 38px; line-height: 1.08; }
  .section-intro { font-size: 16px; margin-top: 14px; max-width: none; }
  .sub-eyebrow { font-size: 12px; letter-spacing: 0.14em; margin-bottom: 10px; }
  .subsection-title { font-size: 28px; line-height: 1.1; }
  .subsection-intro { font-size: 15px; margin-top: 12px; }
  .card-eyebrow { font-size: 11px; letter-spacing: 0.12em; margin-bottom: 8px; }
  .card-title { font-size: 20px; }
  .card-body { font-size: 15px; line-height: 1.6; margin-top: 8px; }

  /* Layout */
  .section { padding: 48px 24px; }
  .section-divider { margin: 14px auto; width: 30px; }

  /* Hero */
  .hero { padding: 28px 20px 56px; min-height: auto; }
  .hero-lights { margin-bottom: 24px; }
  .hero-label { font-size: 12px; letter-spacing: 0.3em; margin-bottom: 28px; }
  .hero-names { gap: 14px; }
  .hero-name { font-size: 60px; }
  .hero-amp { font-size: 30px; }
  .hero-date-block { margin-top: 32px; }
  .hero-date { font-size: 14px; letter-spacing: 0.2em; }
  .hero-thin-line { width: 34px; margin: 12px auto; }
  .hero-venue { font-size: 12px; }

  /* Nav */
  .site-header { padding: 14px 22px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  /* Story */
  .story-section { background: var(--cream); }
  .story-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "head photo"
      "body body";
    column-gap: 20px;
    align-items: center;
  }
  .story-head { align-self: center; }
  .story-body { margin-top: 28px; }
  .story-body p { font-size: 14px; margin-top: 14px; }
  .story-accent {
    font-size: 20px !important; text-align: center;
    margin-top: 20px !important; padding-top: 8px;
  }
  .arch-photo { aspect-ratio: 3/4; border-radius: 100px 100px 8px 8px; }

  /* Schedule */
  .schedule-header { padding: 48px 24px 24px; }
  .schedule-events { padding: 8px 24px 48px; }
  .schedule-events-inner { gap: 20px; }
  .event-card { padding: 32px 24px; border-radius: 20px; }
  .welcome-grid { grid-template-columns: 1fr; gap: 0; }
  .welcome-details {
    margin-top: 18px;
    border-radius: 10px;
  }
  .detail-row { gap: 14px; padding: 14px 16px; align-items: baseline; }
  .detail-label { font-size: 11px; min-width: 60px; padding-top: 0; }
  .detail-value { font-size: 15px; }
  .detail-sub { font-size: 13px; }
  .wedding-intro { margin-bottom: 0; }
  .ceremony-lights { height: 56px; }
  /* Option 4 · Night */
  .wedding-night { border-radius: 16px; padding: 0 0 28px; margin-top: 20px; }
  .wedding-night .ceremony-lights { height: 56px; }
  .night-hero { padding: 2px 22px 0; }
  .night-name { font-size: 40px; }
  .night-rule { margin: 16px auto; }
  .night-address { font-size: 14px; }
  .night-divider { margin: 22px 22px; }
  .night-list { padding: 0 22px; }
  .night-row { grid-template-columns: 54px 1fr; gap: 18px; padding: 13px 0; }
  .night-time { font-size: 13px; }
  .night-event { font-size: 19px; }
  .night-row.is-key .night-event { font-size: 22px; }
  .night-detail { font-size: 12px; }
  .dress-grid { gap: 10px; margin-top: 18px; }
  .dress-card { padding: 18px 14px; border-radius: 12px; }

  /* Travel */
  .travel-section { padding: 48px 24px; }
  .travel-header { margin-bottom: 24px; }
  .travel-inner { max-width: none; }
  .travel-group { margin-top: 36px; }
  .travel-group-title { font-size: 22px; margin-bottom: 14px; }
  .travel-subgroup-title { margin: 22px 0 8px; }
  .stay-card {
    display: block; background: transparent; padding: 0;
    border: none; border-radius: 0;
  }
  .stay-card-left {
    background: var(--card); border: 1px solid var(--border); border-radius: 18px;
    padding: 28px 24px;
  }
  .stay-card-left p { font-size: 13px; margin-top: 10px; }
  .recommend { font-size: 15px; margin-bottom: 4px; }
  .btn-sage {
    display: block; width: 100%; text-align: center;
    margin-top: 18px; padding: 13px 20px;
    border-radius: 8px; font-size: 12px; letter-spacing: 0.12em;
  }
  .stay-card-right {
    display: grid; grid-template-columns: 1fr; grid-template-rows: auto;
    gap: 10px; margin-top: 14px;
  }
  .stay-deadline { font-size: 16px; margin-top: 10px; }
  .dir-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 16px 14px; }
  .dir-card p { font-size: 12px; margin-top: 6px; }
  .hotels-grid { grid-template-columns: 1fr; gap: 14px; max-width: none; }
  .travel-extras-grid {
    grid-template-columns: 1fr; gap: 10px; margin-top: 18px;
  }
  .travel-extras-grid .dir-card { padding: 16px 18px; }

  /* RSVP */
  .rsvp-section { padding: 90px 24px 48px; }
  .rsvp-lights { height: 56px; }
  .rsvp-eyebrow { font-size: 18px; margin-bottom: 8px; }
  .rsvp-title-line { font-size: 36px; line-height: 1.06; }
  .rsvp-intro { font-size: 15px; margin-top: 14px; }
  .progressive-card { padding: 32px 24px 28px; margin-top: 28px; border-radius: 16px; }
  .step-question { font-size: 24px; margin-bottom: 22px; }
  .name-input { font-size: 22px; margin: 16px 0 24px; }
  .rsvp-deadline-prominent { font-size: 20px; margin-top: 12px; }
  .event-block-title { font-size: 22px; }
  .event-block--wedding .event-block-title { font-size: 24px; }
  .event-block { margin-bottom: 22px; padding-bottom: 22px; }
  .response-grid { grid-template-columns: 1fr; gap: 12px; }
  .response-card { padding: 22px 20px; }
  .response-card .rc-title { font-size: 22px; }
  .dinner-options { grid-template-columns: 1fr 1fr; gap: 8px; }
  .dinner-option { padding: 10px 12px; }
  .btn-continue { max-width: none; padding: 14px; border-radius: 8px; font-size: 13px; }
  .step-actions { flex-direction: column-reverse; gap: 14px; }
  .step-actions .btn-continue { width: 100%; }
  .step-progress { gap: 8px; margin: 24px 0 10px; }
  .step-dot { width: 24px; }
  .step-meta { font-size: 11px; }
  .confirm-script { font-size: 27px; }

  /* Wedding Party */
  .wedding-party-grid {
    grid-template-columns: 1fr;
    gap: 12px; margin-top: 28px;
  }
  .wp-card { padding: 22px 20px; border-radius: 12px; }

  /* Registry */
  .registry-section { padding: 48px 24px; }
  .registry-links { grid-template-columns: 1fr; gap: 10px; }
  .registry-link { padding: 18px 20px; border-radius: 12px; }
  .registry-link-name { font-size: 15px; }

  /* Footer */
  .footer { padding: 36px 28px; }
  .footer-names { font-size: 28px; }
  .footer-date { font-size: 12px; letter-spacing: 0.12em; margin-top: 6px; }
  .footer-divider { width: 30px; margin: 16px auto; }
  .footer-tagline { font-size: 18px; }
}

/* Small phones */
@media (max-width: 420px) {
  .hero-name { font-size: 52px; }
  .hero-amp { font-size: 26px; }
  .section-title { font-size: 32px; }
  .rsvp-title-line { font-size: 32px; }
}

/* ───────────────────────────────────────────
   14. ANIMATIONS + TRANSITIONS
   ─────────────────────────────────────────── */
.fade-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.fade-section.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-section { opacity: 1; transform: none; transition: none; }
  .progressive-card { transition: none; }
  .mobile-menu { transition: none; }
  * { scroll-behavior: auto !important; }
}
