/* ============================================================
   Danielle & Jared — Wedding Website
   Coastal Carmel romance · ivory + dusty blue + sand + soft black
   ============================================================ */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background: #FBF6ED;
  color: var(--espresso);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============================================================
   NAV — thin, refined, persistent
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 48px;
  background: rgba(251, 246, 237, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule-soft);
  box-sizing: border-box;
  max-width: 100vw;
}

.nav.is-scrolled {
  /* Same as default — keep nav visually consistent on scroll */
}
/* Hide-on-scroll-down behavior — slide nav up out of view.
   We animate `top` instead of `transform` because the nav contains a
   fixed-position <ul> overlay (mobile menu), and a transform on the
   parent would create a containing block for that fixed child,
   breaking its full-viewport overlay. */
.nav { transition: top 280ms var(--ease-quiet); }
.nav.is-hidden { top: -120px; }

.nav .mark {
  font-family: var(--font-utility);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--espresso);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}
.nav .mark .amp {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--slate);
  letter-spacing: 0;
  line-height: 1;
  transform: translateY(-1px);
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 36px;
  margin: 0;
  padding: 0;
  justify-self: center;
}
.nav a {
  font-family: var(--font-utility);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink);
  border: none;
  padding: 6px 2px;
  cursor: pointer;
  position: relative;
  transition: color var(--dur-soft) var(--ease-quiet);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--slate);
  transform: translateX(-50%);
  transition: width var(--dur-soft) var(--ease-quiet);
}
.nav a:hover { color: var(--slate); }
.nav a:hover::after,
.nav a.is-active::after { width: 14px; }

.nav .nav-right {
  justify-self: end;
  font-family: var(--font-utility);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--smoke);
}
.nav .nav-right .date-num {
  font-family: var(--font-numeral);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink);
}

/* mobile nav trigger */
.nav-burger { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FBF6ED;
  padding: 130px 32px 140px;
  text-align: center;
  overflow: hidden;
  gap: 4px;
}

/* very faint warm haze — keeps it from feeling flat */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 50% 12%, rgba(255, 252, 244, 0.7), transparent 65%),
    radial-gradient(800px 480px at 88% 92%, rgba(212, 185, 129, 0.10), transparent 60%),
    radial-gradient(800px 480px at 8% 88%, rgba(201, 210, 214, 0.10), transparent 60%);
  pointer-events: none;
}
.hero::after {
  /* paper grain */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.23  0 0 0 0 0.18  0 0 0 0 0.15  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.55;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}



/* CALLA HERO — painted lily, sits on the same cream as its own photo */
.calla-hero {
  display: block;
  margin: 0 auto 28px;
  width: auto;
  height: clamp(220px, 30vh, 320px);
  object-fit: contain;
  /* erase the photo's hard rectangle into the page background */
  -webkit-mask-image: radial-gradient(closest-side at 50% 55%, #000 70%, transparent 100%);
          mask-image: radial-gradient(closest-side at 50% 55%, #000 70%, transparent 100%);
  filter: drop-shadow(0 18px 28px rgba(63, 85, 96, 0.10)) saturate(0.96);
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 1600ms var(--ease-quiet) 200ms forwards;
}

/* Old crest shell — kept for fallback, no longer rendered */
.crest {
  position: relative;
  margin: 0 auto 28px;
  color: var(--espresso);
}
.crest .ring {
  position: absolute; inset: 0;
  border: 0.5px solid currentColor;
  border-radius: 50%;
  opacity: 0.55;
}
.crest .ring.inner {
  inset: 8px;
  opacity: 0.28;
}
.crest .lily {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  height: 60%;
  width: auto;
  filter: sepia(0.18) saturate(0.55) brightness(0.78);
  pointer-events: none;
}
.crest .base {
  position: absolute;
  bottom: 22%;
  left: 12%;
  right: 0;
  text-align: center;
  font-family: var(--font-title);
  font-size: 17px;
  letter-spacing: 0.32em;
  color: currentColor;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}
.crest .base .amp {
  font-family: var(--font-script);
  font-size: 28px;
  letter-spacing: 0;
  color: var(--gold-deep);
  margin: 0 4px;
  transform: translateY(2px);
}
.crest .arc {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.wordmark-meta {
  font-family: var(--font-utility);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  opacity: 0.92;
}
.wordmark-meta[data-color="indigo"] { color: var(--indigo-deep); }
.wordmark-meta[data-color="espresso"] { color: var(--espresso); }
.wordmark-meta[data-color="gold"] { color: var(--gold-deep); }
.wordmark-meta[data-color="antique-gold"] { color: var(--gold); }
.wordmark-meta[data-color="ivory"] { color: var(--shell); opacity: 0.95; }
.wordmark-meta[data-color="ink"] { color: var(--ink); }

/* Names — color variants */
.hero-names[data-color="espresso"] { color: var(--espresso); }
.hero-names[data-color="espresso"] .amp { color: var(--gold-deep); opacity: 0.95; }

.hero-names[data-color="gold"] { color: var(--gold-deep); }
.hero-names[data-color="gold"] .amp { color: var(--gold); opacity: 1; }

.hero-names[data-color="antique-gold"] { color: var(--gold); }
.hero-names[data-color="antique-gold"] .amp { color: var(--gold-deep); opacity: 1; }

.hero-names[data-color="champagne"] { color: var(--gold-pale); }
.hero-names[data-color="champagne"] .amp { color: var(--gold); opacity: 1; }

.hero-names[data-color="ivory"] { color: var(--shell); }
.hero-names[data-color="ivory"] .amp { color: var(--gold-pale); opacity: 1; }

.hero-names[data-color="ink"] { color: var(--ink); }
.hero-names[data-color="ink"] .amp { color: var(--gold); opacity: 1; }
/* Names — style variants */
.hero-names[data-style="script"] {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(56px, 8.4vw, 132px);
  line-height: 0.95;
  letter-spacing: 0;
  max-width: min(92vw, 14ch);
  text-wrap: balance;
}
.hero-names[data-style="script"] .amp {
  font-family: var(--font-script);
  font-style: normal;
  margin: 0 0.04em;
}
.hero-names[data-style="italiana"] {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(56px, 8vw, 104px);
  line-height: 1;
  letter-spacing: 0.02em;
}
.hero-names[data-style="italiana"] .amp {
  font-family: var(--font-script);
  font-size: 1.05em;
  vertical-align: -0.18em;
  margin: 0 0.16em;
}
.hero-names[data-style="serif-italic"] {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(56px, 8vw, 104px);
  line-height: 1.02;
  letter-spacing: 0.005em;
}
.hero-names[data-style="serif-italic"] .amp {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.1em;
  vertical-align: -0.18em;
  margin: 0 0.12em;
}
.hero-names[data-style="caps"] {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: 1.1;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.hero-names[data-style="caps"] .amp {
  font-family: var(--font-script);
  text-transform: none;
  font-size: 1.4em;
  letter-spacing: 0;
  vertical-align: -0.18em;
  margin: 0 0.08em;
}
.hero-names[data-style="stacked"] {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(64px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: 0;
}
.hero-names[data-style="stacked"] .stack-row {
  display: block;
}
.hero-names[data-style="stacked"] .amp {
  font-family: var(--font-script);
  display: block;
  font-size: 0.85em;
  line-height: 1.1;
  margin: 0.04em 0;
}
.hero-names[data-style="mixed"] {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(56px, 8vw, 104px);
  line-height: 1;
  letter-spacing: 0.01em;
}
.hero-names[data-style="mixed"] .amp {
  font-family: var(--font-script);
  font-size: 1.5em;
  vertical-align: -0.22em;
  margin: 0 0.04em;
}
.hero-names[data-style="mixed"] .second {
  font-family: var(--font-display);
  font-style: italic;
}

.hero-meta {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 1600ms var(--ease-quiet) 850ms forwards;
}
.hero-meta .rule-thin {
  width: 56px;
  height: 1px;
  background: rgba(63, 85, 96, 0.35);
}
.hero-meta .date {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--indigo-deep);
  letter-spacing: 0.01em;
}
.hero-meta .place {
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--slate);
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  /* shift right by ~half the trailing letter-spacing so the optical center
     of "SCROLL" + the line matches the geometric center */
  transform: translateX(calc(-50% + 0.21em));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0;
  animation: scrollCueIn 1400ms var(--ease-quiet) 1200ms forwards;
  z-index: 2;
}
.scroll-cue .word { padding-left: 0.42em; }
@keyframes scrollCueIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.scroll-cue .line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, rgba(63,85,96,0.5) 0%, transparent 100%);
  animation: trickle 2400ms var(--ease-quiet) infinite;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes trickle {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

/* ============================================================
   HERO REVEAL PHOTO — appears as you scroll
   Multiple style variants (selected via Tweaks)
   ============================================================ */
.hero-reveal {
  position: relative;
  margin: 0 auto;
  padding: 0 64px 96px;
  max-width: 1280px;
}
.hero-reveal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bone);
}
.hero-reveal-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.98) contrast(0.96);
}

/* --- Variant: blend (default, soft fade in/out) --- */
.hero-reveal[data-variant="blend"] { padding: 0; max-width: none; }
.hero-reveal[data-variant="blend"] .hero-reveal-frame {
  aspect-ratio: 16 / 9;
  border-radius: 0;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}
.hero-reveal[data-variant="blend"] .hero-reveal-frame::after { display: none; }
.hero-reveal[data-variant="blend"] .hero-reveal-caption { margin-top: -36px; }

/* --- Variant: framed (the original card with hairline) --- */
.hero-reveal[data-variant="framed"] .hero-reveal-frame {
  border-radius: var(--radius-soft);
  border: 1px solid var(--rule-soft);
}
.hero-reveal[data-variant="framed"] .hero-reveal-frame::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(63,85,96,0.06) 0%, transparent 35%, rgba(58,46,38,0.18) 100%);
  pointer-events: none;
}

/* --- Variant: duotone — soft sage/slate wash, very editorial --- */
.hero-reveal[data-variant="duotone"] .hero-reveal-frame {
  border-radius: var(--radius-soft);
  background: var(--indigo-deep);
}
.hero-reveal[data-variant="duotone"] .hero-reveal-frame img {
  filter: grayscale(1) contrast(0.96) brightness(1.02);
  mix-blend-mode: multiply;
  opacity: 0.9;
}
.hero-reveal[data-variant="duotone"] .hero-reveal-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(201,210,214,0.55), rgba(228,196,184,0.32));
  mix-blend-mode: screen;
  pointer-events: none;
}

/* --- Variant: torn — soft deckle edge, paper feel --- */
.hero-reveal[data-variant="torn"] .hero-reveal-frame {
  border-radius: 0;
  -webkit-mask-image:
    radial-gradient(8px 4px at 0% 0%, transparent 99%, #000 100%),
    linear-gradient(#000, #000);
          mask-image:
    radial-gradient(8px 4px at 0% 0%, transparent 99%, #000 100%),
    linear-gradient(#000, #000);
  filter: drop-shadow(0 14px 36px rgba(63,85,96,0.18));
}
.hero-reveal[data-variant="torn"] .hero-reveal-frame::before {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 14px;
  background:
    radial-gradient(10px 14px at 12px 0, var(--ivory) 99%, transparent 100%) repeat-x;
  background-size: 24px 14px;
  pointer-events: none;
  z-index: 3;
}
.hero-reveal[data-variant="torn"] .hero-reveal-frame::after {
  content: "";
  position: absolute; left: 0; right: 0; top: -1px;
  height: 14px;
  background:
    radial-gradient(10px 14px at 12px 14px, var(--ivory) 99%, transparent 100%) repeat-x;
  background-size: 24px 14px;
  pointer-events: none;
  z-index: 3;
}

/* --- Variant: vignette — full bleed, soft vignette into ivory --- */
.hero-reveal[data-variant="vignette"] { padding: 0; max-width: none; }
.hero-reveal[data-variant="vignette"] .hero-reveal-frame {
  aspect-ratio: 21 / 9;
  border-radius: 0;
}
.hero-reveal[data-variant="vignette"] .hero-reveal-frame::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 100% at 50% 50%, transparent 40%, rgba(246,240,228,0.55) 78%, var(--ivory) 100%);
  pointer-events: none;
}
.hero-reveal[data-variant="vignette"] .hero-reveal-caption { margin-top: 28px; position: relative; z-index: 2;}

.hero-reveal-caption {
  margin-top: 24px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--smoke);
  letter-spacing: 0.01em;
}
.hero-reveal-caption .pin {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--slate);
  border-radius: 999px;
  vertical-align: middle;
  margin: 0 12px 3px;
}

/* ============================================================
   REVEAL — used everywhere on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 900ms var(--ease-quiet),
    transform 900ms var(--ease-quiet);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.in.delay-1 { transition-delay: 80ms; }
.reveal.in.delay-2 { transition-delay: 160ms; }
.reveal.in.delay-3 { transition-delay: 240ms; }
.reveal.in.delay-4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-eyebrow, .monogram, .hero-names, .hero-meta, .scroll-cue { opacity: 1; transform: none; animation: none; }
  .hero-reveal-frame img { transform: none; transition: none; }
}

/* ============================================================
   SHARED SECTION
   ============================================================ */
.section {
  position: relative;
  padding: 128px 48px;
  max-width: 1080px;
  margin: 0 auto;
}
.section-narrow { max-width: 720px; }
.section-eyebrow {
  display: block;
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--smoke);
  text-align: center;
  margin-bottom: 28px;
}
.section-title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.05;
  text-align: center;
  color: var(--espresso);
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}
.section-title .it {
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0;
}

/* hairline ornament */
.orn-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 220px;
  margin: 28px auto 36px;
  color: var(--gold-deep);
}
.orn-rule::before, .orn-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.orn-rule .dot {
  width: 4px; height: 4px; border-radius: 999px; background: var(--gold);
}

/* ============================================================
   WELCOME LETTER
   ============================================================ */
.welcome {
  max-width: 640px;
  margin: 0 auto;
  padding: 96px 32px 64px;
  text-align: center;
  position: relative;
}
.welcome .eb {
  display: block;
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 20px;
}
.welcome .greeting {
  font-family: var(--font-script);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 36px;
}
.welcome p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.85;
  color: var(--ink);
  margin: 0 0 18px;
  text-align: left;
}
.welcome p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 1.4em;
  font-style: italic;
  margin-right: 0.04em;
}
.welcome .signoff {
  margin-top: 36px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--smoke);
  letter-spacing: 0.06em;
}
.welcome .signature {
  margin-top: 6px;
  font-family: var(--font-script);
  font-size: 44px;
  line-height: 1;
  color: var(--gold-deep);
}

/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 32px 128px;
  text-align: center;
}
.countdown .eb {
  display: block;
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 28px;
}
.countdown .units {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  padding: 28px 0 24px;
}
.countdown .unit {
  position: relative;
  text-align: center;
}
.countdown .unit + .unit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: var(--rule-soft);
}
.countdown .num {
  font-family: var(--font-numeral);
  font-weight: 300;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0.02em;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.countdown .lab {
  margin-top: 12px;
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--smoke);
}
.countdown .footnote {
  margin-top: 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--smoke);
}

@media (max-width: 540px) {
  .countdown .units { padding: 22px 0 18px; }
  .countdown .num { font-size: 36px; }
  .welcome p { font-size: 17px; }
}

/* ============================================================
   PAGE ORNAMENT — calla lily divider
   ============================================================ */
.page-ornament {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 16px auto 0;
  padding: 24px 0;
  pointer-events: none;
}
.page-ornament img {
  width: 220px;
  max-width: 38vw;
  height: auto;
  opacity: 0.9;
}

@media (max-width: 600px) {
  .page-ornament { padding: 16px 0; }
  .page-ornament img { width: 160px; }
}

/* ============================================================
   SHOWER — small standalone card before the weekend
   ============================================================ */
.shower {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 32px 40px;
}
.shower .card {
  position: relative;
  padding: 44px 8px 40px;
  text-align: center;
}
.shower .rule-top,
.shower .rule-bottom {
  height: 1px;
  background: var(--rule-soft);
  margin: 0 auto;
  width: 60%;
}
.shower .rule-bottom { margin-top: 36px; }
.shower .eb {
  display: block;
  font-family: var(--font-utility);
  font-size: var(--fs-eyebrow);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: var(--track-eyebrow);
  color: var(--smoke);
  margin: 22px 0 14px;
}
.shower .title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 44px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: var(--track-display);
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 22px;
}
.shower .lede {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 52ch;
  margin: 0 auto 28px;
  text-wrap: pretty;
}
.shower .meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin: 0 auto;
  max-width: 600px;
}
.shower .meta .k {
  font-family: var(--font-utility);
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: var(--track-eyebrow);
  color: var(--smoke);
  margin-bottom: 8px;
}
.shower .meta .v {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
}

@media (max-width: 600px) {
  .shower { padding: 48px 24px 32px; }
  .shower .meta {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 320px;
    text-align: center;
  }
}

/* ============================================================
   SCHEDULE — three days, hairline timeline
   ============================================================ */
.schedule {
  position: relative;
  padding: 96px 32px 96px;
  background: var(--shell);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.schedule .head {
  max-width: 920px;
  margin: 0 auto 64px;
  text-align: center;
}
.schedule .head .eb {
  display: block;
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 18px;
}
.schedule .head .title {
  font-family: var(--font-title);
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin: 0 0 16px;
}
.schedule .head .deck {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--smoke);
  max-width: 540px;
  margin: 0 auto;
  text-wrap: pretty;
}

.schedule .days {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.day {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  padding: 56px 0;
  border-top: 1px solid var(--rule-soft);
}
.day:last-child {
  border-bottom: 1px solid var(--rule-soft);
}

.day .stamp {
  position: relative;
  text-align: left;
  padding-top: 6px;
}
.day .stamp .roman {
  font-family: var(--font-title);
  font-size: clamp(48px, 5.6vw, 76px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.day .stamp .weekday {
  margin-top: 14px;
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--smoke);
}
.day .stamp .date {
  margin-top: 6px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--smoke);
}
.day .stamp .ornament {
  margin-top: 22px;
  width: 28px;
  height: 1px;
  background: var(--gold-deep);
  opacity: 0.55;
}

.day .events {
  display: flex;
  flex-direction: column;
}
.event {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: baseline;
  gap: 28px;
  padding: 22px 0;
  border-top: 1px solid var(--rule-soft);
}
.event:first-child { border-top: none; padding-top: 4px; }
.event .time {
  font-family: var(--font-numeral);
  font-weight: 300;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: 0.04em;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.event .body .name {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: 0.005em;
}
.event .body .where {
  margin-top: 4px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--smoke);
}
.event .body .note {
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--smoke);
  max-width: 46ch;
}
.event .attire {
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--smoke);
  white-space: nowrap;
  align-self: start;
  padding-top: 6px;
}

/* Highlight the ceremony as a beat */
.event.beat {
  padding: 32px 0;
}
.event.beat .body .name {
  font-family: var(--font-title);
  font-size: 28px;
  line-height: 1.1;
  color: var(--ink);
}
.event.beat .body .where::before {
  content: none;
}

@media (max-width: 720px) {
  .day {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 40px 0;
  }
  .day .stamp .roman { font-size: 44px; }
  .event {
    grid-template-columns: 80px 1fr;
    gap: 18px;
    padding: 18px 0;
  }
  .event .attire {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-top: 0;
    margin-top: 4px;
  }
  .event .time { font-size: 16px; }
  .event .body .name { font-size: 19px; }
  .event.beat .body .name { font-size: 24px; }
}

/* ============================================================
   SECTION HEADS — shared pattern
   ============================================================ */
.sec-head {
  max-width: 920px;
  margin: 0 auto 56px;
  text-align: center;
}
.sec-head .eb {
  display: block;
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 16px;
}
.sec-head .title {
  font-family: var(--font-title);
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin: 0 0 14px;
}
.sec-head .deck {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--smoke);
  max-width: 540px;
  margin: 0 auto;
  text-wrap: pretty;
}

/* ============================================================
   THINGS TO DO — three categories, hairline cards
   ============================================================ */
.todo {
  padding: 112px 32px 96px;
}
.todo .groups {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.todo .group .gh {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 24px;
  padding-bottom: 14px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--rule-soft);
}
.todo .group .gh .num {
  font-family: var(--font-numeral);
  font-weight: 300;
  font-size: 13px;
  color: var(--smoke);
  letter-spacing: 0.2em;
}
.todo .group .gh .gname {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}
.todo .group .gh .meta {
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--smoke);
}
.todo .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.todo .card {
  padding: 8px 28px 4px;
  border-left: 1px solid var(--rule-soft);
}
.todo .card:first-child { border-left: none; padding-left: 0; }
.todo .card:last-child { padding-right: 0; }
.todo .card .name {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 6px;
}
.todo .card .where {
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 12px;
}
.todo .card .note {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.todo .card .tag {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
}

@media (max-width: 820px) {
  .todo .cards { grid-template-columns: 1fr; }
  .todo .card {
    border-left: none;
    border-top: 1px solid var(--rule-soft);
    padding: 24px 0;
  }
  .todo .card:first-child { border-top: none; padding-top: 0; }
  .todo .group .gh { grid-template-columns: auto 1fr; }
  .todo .group .gh .meta { display: none; }
}

/* ============================================================
   ATTIRE — quiet prose + small swatch row
   ============================================================ */
.attire-sec {
  background: var(--shell);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  padding: 112px 32px 112px;
}
.attire-sec .grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.attire-sec .col h4 {
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--smoke);
  margin: 0 0 14px;
}
.attire-sec .col .head-line {
  font-family: var(--font-title);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}
.attire-sec .col p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 14px;
}
.attire-sec .col .label {
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: 28px;
  margin-bottom: 10px;
}
.attire-sec .swatches {
  display: flex;
  gap: 8px;
}
.attire-sec .swatches .sw {
  flex: 1;
  height: 64px;
  border-radius: 1px;
  border: 1px solid rgba(58, 46, 38, 0.08);
}
.attire-sec .col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule-soft);
}
.attire-sec .col ul li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
}
.attire-sec .col ul li .k {
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--smoke);
  padding-top: 4px;
}

@media (max-width: 820px) {
  .attire-sec .grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   REGISTRY — minimal cards in a row
   ============================================================ */
.registry {
  padding: 112px 32px 112px;
}
.registry .ledger {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--rule-soft);
}
.registry .row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 28px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.registry .row .num {
  font-family: var(--font-numeral);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--smoke);
}
.registry .row .name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
  line-height: 1.2;
}
.registry .row .desc {
  margin-top: 4px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--smoke);
}
.registry .row a.btn {
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--rule);
  padding: 12px 22px;
  border-radius: 0;
  transition: background var(--dur-soft) var(--ease-quiet),
              color var(--dur-soft) var(--ease-quiet),
              border-color var(--dur-soft) var(--ease-quiet);
}
.registry .row a.btn:hover {
  background: var(--ink);
  color: var(--shell);
  border-color: var(--ink);
}
.registry .note {
  max-width: 540px;
  margin: 36px auto 0;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--smoke);
  text-wrap: pretty;
}

@media (max-width: 720px) {
  .registry .row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .registry .row .num { display: none; }
  .registry .row a.btn { justify-self: start; }
}

/* ============================================================
   FAQ — quiet accordion
   ============================================================ */
.faq {
  background: var(--shell);
  border-top: 1px solid var(--rule-soft);
  padding: 112px 32px 128px;
}
.faq .list {
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid var(--rule-soft);
}
.faq details {
  border-bottom: 1px solid var(--rule-soft);
  padding: 22px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: 0.005em;
  transition: color var(--dur-soft) var(--ease-quiet);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::marker { content: ""; }
.faq summary:hover { color: var(--gold-deep); }
.faq summary .toggle {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.faq summary .toggle::before,
.faq summary .toggle::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform var(--dur-soft) var(--ease-quiet),
              opacity var(--dur-soft) var(--ease-quiet);
}
.faq summary .toggle::before {
  left: 0; right: 0; top: 50%;
  height: 1px; transform: translateY(-50%);
}
.faq summary .toggle::after {
  top: 0; bottom: 0; left: 50%;
  width: 1px; transform: translateX(-50%);
}
.faq details[open] summary .toggle::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}
.faq details .ans {
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 60ch;
}
.faq details .ans p { margin: 0 0 12px; }
.faq details .ans p:last-child { margin: 0; }

/* ============================================================
   TRAVEL — airports, hotels, getting around
   ============================================================ */
.travel {
  padding: 112px 32px 32px;
}
.travel .blocks {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

/* Airports — quiet ledger */
.travel .block-h {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 24px;
  padding-bottom: 14px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--rule-soft);
}
.travel .block-h .num {
  font-family: var(--font-numeral);
  font-weight: 300;
  font-size: 13px;
  color: var(--smoke);
  letter-spacing: 0.2em;
}
.travel .block-h .name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}
.travel .block-h .meta {
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--smoke);
}

.airports {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.airport {
  padding: 6px 28px;
  border-left: 1px solid var(--rule-soft);
}
.airport:first-child { border-left: none; padding-left: 0; }
.airport:last-child { padding-right: 0; }
.airport .code {
  font-family: var(--font-title);
  font-size: 56px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.airport .city {
  margin-top: 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
}
.airport .stat {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  border-top: 1px solid var(--rule-soft);
  padding-top: 14px;
}
.airport .stat dt {
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--smoke);
}
.airport .stat dd {
  margin: 0;
  font-family: var(--font-numeral);
  font-weight: 300;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-align: right;
}
.airport .note {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.airport .pick {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-deep);
}

/* Hotels — hero + alts */
.hotels {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.hotel-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.hotel-hero .photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bone);
  overflow: hidden;
}
.hotel-hero .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1200ms var(--ease-quiet);
}
.hotel-hero:hover .photo img {
  transform: scale(1.02);
}
.hotel-hero .photo .seal {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 9.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--shell);
  background: rgba(58, 46, 38, 0.55);
  padding: 6px 12px;
  backdrop-filter: blur(4px);
}
.hotel-hero .body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 0;
}
.hotel-hero .eb {
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 14px;
}
.hotel-hero .name {
  font-family: var(--font-title);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: 0.005em;
  margin: 0 0 6px;
}
.hotel-hero .where {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--smoke);
  margin-bottom: 22px;
}
.hotel-hero .lede {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 24px;
  max-width: 44ch;
}
.hotel-hero .specs {
  border-top: 1px solid var(--rule-soft);
}
.hotel-hero .specs .row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
}
.hotel-hero .specs .k {
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--smoke);
  padding-top: 3px;
}
.hotel-hero .ctas {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.btn-line {
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--rule);
  padding: 12px 22px;
  border-radius: 0;
  transition: background var(--dur-soft) var(--ease-quiet),
              color var(--dur-soft) var(--ease-quiet),
              border-color var(--dur-soft) var(--ease-quiet);
}
.btn-line:hover {
  background: var(--ink);
  color: var(--shell);
  border-color: var(--ink);
}
.btn-line.dark {
  background: var(--ink);
  color: var(--shell);
  border-color: var(--ink);
}
.btn-line.dark:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.hotel-alts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule-soft);
}
.hotel-alt {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: baseline;
  gap: 24px;
  padding: 26px 28px;
  border-bottom: 1px solid var(--rule-soft);
  border-left: 1px solid var(--rule-soft);
}
.hotel-alt:nth-child(odd) { border-left: none; padding-left: 0; }
.hotel-alt:nth-child(even) { padding-right: 0; padding-left: 0; border-left: none; }
.hotel-alt .roman {
  font-family: var(--font-numeral);
  font-weight: 300;
  font-size: 14px;
  color: var(--smoke);
  letter-spacing: 0.18em;
}
.hotel-alt .name {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--ink);
  line-height: 1.2;
}
.hotel-alt .where {
  margin-top: 4px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--smoke);
}
.hotel-alt .note {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 42ch;
}
.hotel-alt .price {
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--smoke);
  white-space: nowrap;
  padding-top: 6px;
}

/* Getting around — three small notes */
.getting-around {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--shell);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  margin: 32px 0 0;
  padding: 56px 0;
}
.getting-around .ga {
  padding: 0 36px;
  border-left: 1px solid var(--rule-soft);
}
.getting-around .ga:first-child { border-left: none; }
.getting-around .ga .roman {
  font-family: var(--font-numeral);
  font-weight: 300;
  font-size: 12px;
  color: var(--smoke);
  letter-spacing: 0.2em;
  margin-bottom: 14px;
}
.getting-around .ga h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 10px;
}
.getting-around .ga p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

@media (max-width: 980px) {
  .airports { grid-template-columns: 1fr; }
  .airport {
    border-left: none;
    border-top: 1px solid var(--rule-soft);
    padding: 28px 0;
  }
  .airport:first-child { border-top: none; padding-top: 4px; }
  .airport .code { font-size: 44px; }

  .hotel-hero { grid-template-columns: 1fr; gap: 32px; }
  .hotel-hero .photo { aspect-ratio: 4 / 3; }

  .hotel-alts { grid-template-columns: 1fr; }
  .hotel-alt {
    grid-template-columns: 60px 1fr;
    padding: 22px 0;
    border-left: none;
  }
  .hotel-alt .price { grid-column: 1 / -1; padding-top: 0; }

  .getting-around {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  .getting-around .ga {
    padding: 24px 0;
    border-left: none;
    border-top: 1px solid var(--rule-soft);
  }
  .getting-around .ga:first-child { border-top: none; padding-top: 0; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  border-top: 1px solid var(--rule-soft);
  padding: 72px 32px 56px;
  text-align: center;
  background: var(--shell);
}
.foot .mono {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--ink);
}
.foot .mono .amp {
  font-family: var(--font-script);
  font-size: 26px;
  color: var(--slate);
  letter-spacing: 0;
  line-height: 0;
  transform: translateY(2px);
}
.foot .meta {
  margin-top: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--smoke);
}
.foot .meta .sep { margin: 0 14px; color: var(--rule); font-style: normal; }
.foot .grace {
  margin-top: 22px;
  font-family: var(--font-script);
  font-size: 26px;
  color: var(--slate);
  line-height: 1;
}

/* ============================================================
   MOBILE
   ============================================================ */
/* Tighter nav on small laptops — drop the date block earlier */
@media (max-width: 1100px) {
  .nav { padding: 14px 28px; }
  .nav .nav-right { display: none; }
  .nav { grid-template-columns: 1fr auto 1fr; }
}

@media (max-width: 820px) {
  .nav { padding: 14px 22px; grid-template-columns: 1fr auto; }
  .nav.is-scrolled { padding: 12px 22px; }
  .nav .nav-right { display: none; }
  /* Mobile menu: hidden by default, shown only when burger is tapped.
     We use display:none (not transform/opacity) because .nav has
     backdrop-filter, which creates a containing block for fixed-position
     descendants — meaning inset:0 resolves to the nav strip, not the
     viewport, and overflow content (bottom menu items) leaks below. */
  .nav ul { display: none; }
  .nav.menu-open ul {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(251, 246, 237, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    /* start from the top (under the nav strip) and allow scroll if the
       list is taller than the viewport on small phones */
    justify-content: flex-start;
    gap: 22px;
    padding: 88px 32px 56px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 90;
    /* fade-in only on open */
    animation: navMenuIn 240ms var(--ease-quiet);
  }
  @keyframes navMenuIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .nav a { font-size: 12px; letter-spacing: 0.4em; }
  .nav-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 100;
    justify-self: end;
  }
  .nav-burger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--espresso);
    transition: transform var(--dur-soft) var(--ease-quiet),
                opacity var(--dur-soft) var(--ease-quiet);
  }
  .nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .hero { padding: 96px 24px 48px; min-height: 92vh; }
  .monogram { width: 96px; height: 96px; margin-bottom: 28px; }
  .hero-meta .date { font-size: 18px; }
  .scroll-cue { bottom: 24px; }
  .scroll-cue .line { height: 40px; }

  .hero-reveal { padding: 0 22px 64px; }
  .hero-reveal-frame { aspect-ratio: 4 / 5; }

  .section { padding: 88px 24px; }
}

/* ============================================================
   GATE — soft password landing
   ============================================================ */
.gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  background: var(--bg);
  color: var(--fg);
  position: relative;
}
.gate::before,
.gate::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 480px;
  height: 1px;
  background: var(--rule-soft);
}
.gate::before { top: 56px; }
.gate::after { bottom: 56px; }
.gate-inner {
  max-width: 460px;
  width: 100%;
  text-align: center;
}
.gate-mark {
  font-family: var(--font-title);
  font-size: 32px;
  letter-spacing: 0.08em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 36px;
}
.gate-mark .amp {
  font-family: var(--font-script);
  font-size: 38px;
  color: var(--gold-deep);
  line-height: 1;
}
.gate-eb {
  font-family: var(--font-utility);
  font-weight: 300;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--track-eyebrow);
  color: var(--smoke);
  margin-bottom: 18px;
}
.gate-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.05;
  margin: 0 0 14px;
}
.gate-lede {
  font-family: var(--font-body);
  font-size: 17px;
  font-style: italic;
  color: var(--smoke);
  margin: 0 0 36px;
}
.gate-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 340px;
  margin: 0 auto;
  border-bottom: 1px solid var(--rule);
  transition: border-color var(--dur-soft) var(--ease-quiet);
}
.gate-form:focus-within { border-bottom-color: var(--ink); }
.gate-form input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  padding: 12px 4px;
  letter-spacing: 0.18em;
  text-align: center;
  outline: none;
}
.gate-form input::placeholder { color: var(--rule); }
.gate-form button {
  border: none;
  background: transparent;
  font-family: var(--font-utility);
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--track-eyebrow);
  color: var(--ink);
  padding: 0 14px;
  cursor: pointer;
  transition: color var(--dur-soft) var(--ease-quiet);
}
.gate-form button:hover { color: var(--gold-deep); }
.gate-msg {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--smoke);
  margin-top: 22px;
  min-height: 1.4em;
  transition: color var(--dur-soft) var(--ease-quiet);
}
.gate-msg.is-error { color: var(--gold-deep); font-style: normal; }

/* ============================================================
   PHONE — comprehensive mobile pass
   Targets ≤480px (typical phone widths). Tightens padding, scales
   type to fit narrow viewports, makes tap targets large enough,
   and prevents iOS zoom-on-focus.
   ============================================================ */
@media (max-width: 480px) {
  /* Global rhythm */
  :root {
    /* nothing yet — kept here in case we want to scale tokens later */
  }
  body { -webkit-text-size-adjust: 100%; }

  /* Tighter page gutters; the design uses 24–32px, drop to 18px */
  .section { padding: 64px 18px; }

  /* Don't let any image or media bust the viewport */
  img, video, svg { max-width: 100%; height: auto; }

  /* ----- Gate / password screen ----- */
  .gate { padding: 32px 22px; }
  .gate::before, .gate::after { width: 70%; }
  .gate::before { top: 36px; }
  .gate::after { bottom: 36px; }
  .gate-mark { font-size: 26px; margin-bottom: 28px; }
  .gate-mark .amp { font-size: 32px; }
  .gate-title { font-size: 44px; }
  .gate-lede { font-size: 16px; margin-bottom: 28px; }
  .gate-form { max-width: 300px; }
  /* iOS would zoom on input focus if font-size < 16px */
  .gate-form input { font-size: 16px; padding: 12px 4px; letter-spacing: 0.14em; }
  .gate-form button { padding: 0 10px; min-height: 44px; }
  .gate-msg { font-size: 13px; }

  /* ----- Nav ----- */
  .nav { padding: 12px 18px; }
  .nav.is-scrolled { padding: 10px 18px; }
  .nav .mark { font-size: 11px; letter-spacing: 0.34em; }
  .nav .mark .amp { font-size: 22px; }
  /* Burger needs to be a real tap target */
  .nav-burger { padding: 12px; }

  /* ----- Hero ----- */
  .hero { padding: 88px 22px 40px; min-height: 88vh; }
  .monogram { width: 84px; height: 84px; margin-bottom: 22px; }
  .crest .top, .crest .base { font-size: 13px; letter-spacing: 0.22em; }
  .crest .base .amp { font-size: 22px; }

  /* Hero names — the big visual moment. The clamp() floors at 56–64px,
     too large for 390px-wide phones. Override the floor here. */
  .hero-names .name,
  .hero-names .name-script,
  .hero-names .name-italic,
  .hero-names .name-caps,
  .hero-names .name-stacked { font-size: 44px !important; }
  .hero-names .amp { font-size: 38px !important; }

  .hero-eyebrow { font-size: 10px; letter-spacing: 0.34em; }
  .hero-meta { gap: 8px; }
  .hero-meta .date { font-size: 16px; letter-spacing: 0.18em; }
  .hero-meta .place,
  .hero-meta .sep { font-size: 10px; letter-spacing: 0.32em; }

  .scroll-cue { bottom: 18px; }
  .scroll-cue .line { height: 32px; }
  .scroll-cue .word { font-size: 9px; letter-spacing: 0.34em; }

  .hero-reveal { padding: 0 18px 56px; }
  .hero-reveal-frame { aspect-ratio: 4 / 5; border-radius: 8px; }
  .hero-reveal-caption { font-size: 13px; letter-spacing: 0.2em; }

  /* ----- Welcome ----- */
  .welcome { padding: 80px 22px 56px; text-align: center; }
  .welcome .greeting { font-size: 38px !important; }
  .welcome p { font-size: 16px; line-height: 1.75; text-align: center !important; }
  .welcome p:first-of-type::first-letter {
    /* drop cap looks awkward when centered — neutralize on phone */
    font-size: 1em;
    font-family: inherit;
    float: none;
    line-height: inherit;
    margin: 0;
  }
  .welcome .sig .role { font-size: 9px; letter-spacing: 0.4em; }
  .welcome .sig .names { font-size: 34px; }

  /* ----- Countdown ----- */
  .countdown { padding: 56px 18px; }
  .countdown .units { gap: 18px; }
  .countdown .num { font-size: 32px !important; letter-spacing: 0; }
  .countdown .lbl { font-size: 9px; letter-spacing: 0.34em; }
  .countdown .lede { font-size: 14px; }

  /* ----- Page ornament ----- */
  .page-ornament img { width: 130px; }

  /* ----- Shower ----- */
  .shower { padding: 48px 22px 28px; }
  .shower .card { padding: 32px 6px 28px; }
  .shower .title { font-size: 26px; }
  .shower .lede { font-size: 15px; }
  .shower .meta { gap: 22px; }
  .shower .meta .v { font-size: 15px; }

  /* ----- Schedule ----- */
  .schedule { padding: 80px 18px 64px; }
  .schedule .head .title { font-size: 36px !important; line-height: 1.05; }
  .schedule .head .lede { font-size: 16px; }
  .schedule .head .eb { font-size: 10px; letter-spacing: 0.34em; }

  .day { padding: 32px 0 24px; gap: 18px; }
  .day .stamp .roman { font-size: 36px !important; }
  .day .stamp .day-name { font-size: 10px; letter-spacing: 0.32em; }
  .day .stamp .full { font-size: 14px; }

  .event { grid-template-columns: 70px 1fr; gap: 14px; }
  .event .time { font-size: 15px; letter-spacing: 0.02em; }
  .event .body .name { font-size: 18px !important; line-height: 1.25; }
  .event.beat .body .name { font-size: 22px !important; }
  .event .body .where { font-size: 13px; }
  .event .body .desc { font-size: 14px; line-height: 1.55; }
  /* On phones the attire chip moves under the body as a small inline label
     prefixed "Wear:" to make its meaning unambiguous. */
  .event .attire {
    grid-column: 2 / -1 !important;
    grid-row: auto !important;
    justify-self: start !important;
    margin-top: 12px !important;
    padding: 4px 10px !important;
    border: 1px solid var(--rule-soft) !important;
    border-radius: 999px !important;
    font-size: 9px !important;
    letter-spacing: 0.22em !important;
    background: rgba(0,0,0,0.02) !important;
    text-transform: uppercase;
  }
  .event .attire::before {
    content: "Wear · ";
    color: var(--smoke);
    margin-right: 2px;
  }

  /* ----- Section heads (Carmel/Attire/Registry/Travel/etc.) ----- */
  .sec-head .eb { font-size: 10px; letter-spacing: 0.34em; }
  .sec-head .title { font-size: 32px !important; line-height: 1.05; }
  .sec-head .lede { font-size: 15px; }

  /* ----- Things to do (Carmel) ----- */
  .todo .cards { gap: 28px; }
  .todo .card .num { font-size: 12px; letter-spacing: 0.18em; }
  .todo .card .name { font-size: 19px; }
  .todo .card .meta { font-size: 9px; letter-spacing: 0.28em; }
  .todo .card .note { font-size: 15px; }
  .todo .card .tip { font-size: 12px; }

  /* ----- Attire ----- */
  .attire-sec { text-align: center; }
  .attire-sec .grid { justify-items: center; }
  .attire-sec .col { text-align: center; width: 100%; max-width: 460px; }
  .attire-sec .col .eb { font-size: 10px; letter-spacing: 0.34em; }
  .attire-sec .col .head-line { font-size: 26px !important; }
  .attire-sec .col p { font-size: 15px; line-height: 1.65; text-align: center; }
  .attire-sec .col .label { text-align: center; }
  .attire-sec .swatches { justify-content: center; }
  .attire-sec .col ul { margin-left: auto; margin-right: auto; max-width: 360px; }
  .attire-sec .col ul li {
    grid-template-columns: 110px 1fr;
    text-align: left;
  }
  .attire-sec .palette-eb { font-size: 9px; letter-spacing: 0.28em; }
  .attire-sec .palette-row { font-size: 14px; }

  /* ----- Registry ----- */
  .registry { text-align: center; }
  .registry .sec-head { text-align: center; }
  .registry .sec-head .lede { margin-left: auto; margin-right: auto; }
  .registry .row {
    padding: 24px 0;
    text-align: center;
    justify-items: center;
    gap: 10px;
  }
  .registry .row .num { font-size: 12px; letter-spacing: 0.18em; }
  .registry .row .name { font-size: 22px; }
  .registry .row .desc { font-size: 14px; max-width: 30ch; margin-left: auto; margin-right: auto; }
  .registry .row .eb { font-size: 9px; letter-spacing: 0.34em; }
  .registry .row a, .registry .row a.btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-self: center !important;
    margin-top: 6px;
  }

  /* ----- FAQ ----- */
  .faq .q { font-size: 17px; line-height: 1.35; padding: 22px 0; }
  .faq .a { font-size: 15px; line-height: 1.65; }

  /* ----- Travel ----- */
  .travel { padding: 80px 18px 56px; }
  .airport { padding: 24px 0; }
  .airport .code { font-size: 38px !important; letter-spacing: 0.04em; }
  .airport .city { font-size: 15px; }
  .airport .meta { font-size: 13px; }
  .airport .desc { font-size: 14px; }
  .airport .tag { font-size: 11px; }

  .hotel-hero { text-align: center; }
  .hotel-hero .body { align-items: center; }
  .hotel-hero .name { font-size: 28px !important; }
  .hotel-hero .place,
  .hotel-hero .where { font-size: 15px; }
  .hotel-hero .lede { font-size: 15px; line-height: 1.65; max-width: 36ch; margin-left: auto; margin-right: auto; text-align: center; }
  .hotel-hero .seal { font-size: 9px; letter-spacing: 0.28em; }
  /* Hotel hero details list — center the rows */
  .hotel-hero .specs { width: 100%; max-width: 360px; margin: 0 auto; }
  .hotel-hero .specs .row,
  .hotel-hero .row { font-size: 14px; padding: 12px 0; text-align: left; }
  .hotel-hero .ctas { justify-content: center; }
  /* Book online button — make it a real tap target */
  .hotel-hero a, .hotel-hero button { min-height: 44px; }

  .hotel-alt { padding: 18px 0; }
  .hotel-alt .num { font-size: 12px; letter-spacing: 0.18em; }
  .hotel-alt .name { font-size: 18px; }
  .hotel-alt .place { font-size: 13px; }
  .hotel-alt .desc { font-size: 14px; }

  .getting-around .ga { padding: 22px 0; }
  .getting-around .ga .lbl { font-size: 11px; letter-spacing: 0.18em; }
  .getting-around .ga h4 { font-size: 19px; }
  .getting-around .ga p { font-size: 14px; line-height: 1.6; }

  /* ----- Footer ----- */
  .foot { padding: 56px 22px 40px; }
  .foot .mono { font-size: 11px; letter-spacing: 0.36em; }
  .foot .mono .amp { font-size: 22px; }
  .foot .lede { font-size: 14px; }
  .foot .sig { font-size: 22px; }

  /* Make all anchors and buttons inside content tap-friendly */
  .section a, .section button { min-height: 36px; }

  /* Stop letter-spacing from causing words to break out of containers */
  .eb, [class*="eb-"], [class*="-eb"] { word-break: keep-all; }
}

/* Tiny phones (≤360px) — one more squeeze */
@media (max-width: 360px) {
  .section { padding: 56px 16px; }
  .hero-names .name,
  .hero-names .name-script,
  .hero-names .name-italic,
  .hero-names .name-caps,
  .hero-names .name-stacked { font-size: 38px !important; }
  .schedule .head .title,
  .sec-head .title { font-size: 28px !important; }
  .welcome .greeting { font-size: 32px !important; }
  .event { grid-template-columns: 64px 1fr; gap: 12px; }
  .event .time { font-size: 14px; }
  .airport .code { font-size: 32px !important; }
}
