/* ===========================================================
   Lily & Igor — Burning Man 2026
   Design system: warm tan/sand neutrals, deep forest green,
   terracotta clay accent. Pinyon Script (names) + Cormorant
   Garamond (display) + Mulish (body). Botanical leaf motif.
   =========================================================== */

:root {
  /* neutrals — warm, low saturation */
  --paper:    #f6efdf;
  --paper-2:  #efe4cd;
  --sand:     #ddc9a3;
  --sand-2:   #cbb288;
  --ink:      #2b2719;
  --ink-soft: #5c543f;
  --ink-faint:#8a7f64;

  /* greens (primary accent) */
  --green-900: #283523;
  --green-700: #41553a;
  --green-500: #6b7e54;
  --green-200: #aeb892;

  /* clay (secondary warm accent, used sparingly) */
  --clay: #b97d52;

  --line:  rgba(43, 39, 25, 0.14);
  --line-2:rgba(43, 39, 25, 0.08);

  --accent: var(--green-700);
  --accent-deep: var(--green-900);

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);

  --font-script: "Pinyon Script", cursive;
  --font-names: "Great Vibes", cursive;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Mulish", system-ui, sans-serif;

  --shadow-soft: 0 18px 50px -28px rgba(40, 53, 35, 0.55);
  --shadow-card: 0 2px 0 rgba(43,39,25,0.04), 0 22px 44px -30px rgba(40,53,35,0.5);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* subtle paper grain via layered gradients */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(107,126,84,0.10), transparent 60%),
    radial-gradient(100% 70% at 0% 110%, rgba(185,125,82,0.07), transparent 55%);
}

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

h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.08; }
p { margin: 0 0 1em; text-wrap: pretty; }
a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
  z-index: 1;
}

.section { padding: clamp(64px, 9vw, 132px) 0; position: relative; }
.section--tint { background: var(--paper-2); }
.section--green {
  background: linear-gradient(170deg, var(--green-900), #1f2a1b);
  color: #f0ead8;
}
section[id] { scroll-margin-top: 78px; }

/* ---- shared type helpers ---- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section--green .eyebrow { color: var(--green-200); }
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 0.9;
  color: var(--green-700);
}

.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 14px 0 0;
}

.lede {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.2vw, 24px);
  font-style: italic;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ---- buttons ---- */
.btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  padding: 15px 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease;
  text-decoration: none;
}
.btn--solid {
  background: var(--green-700);
  color: #f4eedd;
  box-shadow: 0 14px 30px -16px rgba(40,53,35,0.9);
}
.btn--solid:hover { background: var(--green-900); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--green-900);
  border: 1.5px solid var(--green-700);
}
.btn--ghost:hover { background: var(--green-700); color: #f4eedd; transform: translateY(-2px); }
.section--green .btn--ghost { color: #f0ead8; border-color: var(--green-200); }
.section--green .btn--ghost:hover { background: var(--green-200); color: var(--green-900); }

/* ---- leaf motif ---- */
.leaf {
  width: 1em; height: 1em;
  display: inline-block;
  vertical-align: middle;
  color: var(--green-500);
}
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--green-500);
  margin: 0 auto;
}
.divider::before, .divider::after {
  content: "";
  height: 1px;
  width: min(90px, 16vw);
  background: linear-gradient(to var(--dir, right), transparent, var(--green-500));
}
.divider::after { --dir: left; }

/* ---- placeholder image ---- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      rgba(107,126,84,0.10) 0 11px,
      rgba(107,126,84,0.02) 11px 22px),
    var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-faint);
}
.ph::after {
  content: attr(data-label);
  font-family: "Courier New", monospace;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
  background: rgba(246,239,223,0.82);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  max-width: 80%;
  text-align: center;
  line-height: 1.4;
}

/* =====================  NAV  ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246,239,223,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-2);
  transition: box-shadow .3s ease, background .3s ease;
}
.nav.is-scrolled { box-shadow: 0 10px 30px -22px rgba(40,53,35,0.7); }
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__brand-mark {
  font-family: var(--font-names);
  font-size: 28px;
  color: var(--green-700);
  line-height: 1;
  white-space: nowrap;
}
.nav__brand-amp {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
}
.nav__brand-tag {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 3px;
  padding-left: 3px;
  white-space: nowrap;
}
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 8px 13px;
  border-radius: 999px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav__link:hover { color: var(--green-900); }
.nav__link.is-active { color: var(--green-900); background: rgba(107,126,84,0.16); }
.nav__cta { margin-left: 8px; padding: 11px 20px; }
.nav__toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 42px; height: 42px;
  color: var(--green-900);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px var(--gutter) 18px;
  border-bottom: 1px solid var(--line-2);
  background: var(--paper);
}
.mobile-menu a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--line-2);
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
}

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
  .mobile-menu.is-open { display: flex; }
}

/* =====================  HERO  ===================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 96px 0 70px;
  overflow: hidden;
  background:
    radial-gradient(130% 90% at 50% 0%, #fbf6ea, transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
.hero__leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: var(--green-500);
  opacity: 0.5;
}
.hero__leaf { position: absolute; opacity: 0.55; }
.hero__inner { text-align: center; width: 100%; position: relative; z-index: 2; }
.hero__topline {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--green-700);
}
.hero__amp {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 7vw, 88px);
  color: var(--clay);
  line-height: 1;
  display: block;
  padding: 0.1em 0;
  margin: 0;
  overflow: visible;
}
.hero__names {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--green-900);
  margin: 10px 0 4px;
  line-height: 1.15;
  overflow: visible;
}
.hero__name {
  font-family: var(--font-names);
  font-size: clamp(62px, 13.5vw, 168px);
  line-height: 1.12;
  padding: 0 0.12em;
  overflow: visible;
}
.hero__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 27px);
  color: var(--ink-soft);
  margin-top: 18px;
}
.hero__meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  margin-top: 26px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--green-900);
}
.hero__meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--clay); }
.hero__cta { margin-top: 38px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* countdown */
.countdown {
  margin-top: 46px;
  display: inline-flex;
  gap: clamp(14px, 4vw, 40px);
}
.countdown__unit { text-align: center; min-width: 56px; }
.countdown__num {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  color: var(--green-900);
  line-height: 1;
}
.countdown__label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 8px;
}

.scroll-cue {
  position: absolute;
  bottom: 26px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 700;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue span:last-child { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* =====================  STORY  ===================== */
.story__head { text-align: center; margin-bottom: clamp(40px, 6vw, 72px); }
.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--green-200), var(--sand), var(--green-200));
  transform: translateX(-50%);
}
.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 54px;
}
.tl-item:last-child { margin-bottom: 0; }
.tl-node {
  position: absolute;
  left: 50%; top: 8px;
  width: 16px; height: 16px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--green-700);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 2px var(--green-200);
  z-index: 2;
}
.tl-text { padding-top: 2px; }
.tl-item:nth-child(odd) .tl-text { text-align: right; padding-right: 18px; }
.tl-item:nth-child(odd) .tl-media { grid-column: 2; padding-left: 18px; }
.tl-item:nth-child(even) .tl-text { grid-column: 2; padding-left: 18px; }
.tl-item:nth-child(even) .tl-media { grid-column: 1; grid-row: 1; padding-right: 18px; }
.tl-date {
  font-family: var(--font-body);
  font-weight: 800; font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--clay);
}
.tl-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 33px);
  font-weight: 600;
  margin: 6px 0 8px;
}
.tl-body { color: var(--ink-soft); font-size: 16px; }
.tl-media .ph { aspect-ratio: 4/3; }

@media (max-width: 720px) {
  .timeline::before { left: 9px; }
  .tl-item { grid-template-columns: 1fr; gap: 16px; padding-left: 34px; }
  .tl-node { left: 9px; }
  .tl-item:nth-child(odd) .tl-text,
  .tl-item:nth-child(even) .tl-text { text-align: left; padding: 0; grid-column: 1; }
  .tl-item:nth-child(odd) .tl-media,
  .tl-item:nth-child(even) .tl-media { grid-column: 1; grid-row: auto; padding: 0; }
}

/* =====================  GALLERY  ===================== */
.gallery__head { text-align: center; margin-bottom: clamp(36px, 5vw, 60px); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.g-item {
  position: relative;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  border: none;
  padding: 0;
  background: none;
}
.g-item .ph { width: 100%; height: 100%; border-radius: 14px; }
.g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(40,53,35,0);
  transition: background .3s ease;
  pointer-events: none;
  border-radius: 14px;
}
.g-item:hover::after { background: rgba(40,53,35,0.18); }
.g-item:hover { transform: translateY(-3px); }
.g-item { transition: transform .3s ease; }
/* mosaic spans */
.g-a { grid-column: span 7; aspect-ratio: 16/11; }
.g-b { grid-column: span 5; aspect-ratio: 4/5; }
.g-c { grid-column: span 4; aspect-ratio: 1; }
.g-d { grid-column: span 4; aspect-ratio: 1; }
.g-e { grid-column: span 4; aspect-ratio: 1; }
.g-f { grid-column: span 5; aspect-ratio: 5/4; }
.g-g { grid-column: span 7; aspect-ratio: 16/9; }
@media (max-width: 720px) {
  .g-a,.g-b,.g-c,.g-d,.g-e,.g-f,.g-g { grid-column: span 6; aspect-ratio: 1; }
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(25, 32, 21, 0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 5vw;
  animation: fade .25s ease;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__stage {
  width: min(900px, 92vw);
  max-height: 82vh;
  aspect-ratio: 3/2;
}
.lightbox__stage .ph { width: 100%; height: 100%; border-radius: 16px; }
.lightbox__cap {
  text-align: center; color: #e8e0cb;
  font-family: var(--font-display); font-style: italic;
  margin-top: 18px; font-size: 18px;
}
.lb-btn {
  position: absolute;
  background: rgba(246,239,223,0.12);
  border: 1px solid rgba(246,239,223,0.3);
  color: #f4eedd;
  width: 50px; height: 50px; border-radius: 50%;
  font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lb-btn:hover { background: rgba(246,239,223,0.26); }
.lb-prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lb-next { right: 3vw; top: 50%; transform: translateY(-50%); }
.lb-close { top: 3vh; right: 3vw; }

/* =====================  BATMAN  ===================== */
.batman { background: var(--paper-2); }
.batman__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.batman__portrait {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.batman__stage { position: relative; width: 100%; margin-bottom: 26px; }
.batman__portrait .ph {
  aspect-ratio: 4/5;
  border-radius: 200px 200px 18px 18px;
}
.batman__badge {
  position: absolute;
  bottom: -16px; right: -14px;
  background: var(--green-900);
  color: #f0ead8;
  font-family: var(--font-script);
  font-size: 26px;
  padding: 14px 22px 10px;
  border-radius: 16px;
  transform: rotate(-4deg);
  box-shadow: var(--shadow-soft);
}
.batman__facts { display: flex; flex-direction: column; gap: 14px; margin: 26px 0 30px; }
.fact {
  display: flex; align-items: flex-start; gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.fact__k {
  font-family: var(--font-body); font-weight: 800;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--clay); min-width: 92px; padding-top: 4px;
}
.fact__v { font-family: var(--font-display); font-size: 21px; color: var(--ink); }
.woof {
  margin-top: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--clay); color: #fbf3e7;
  border: none; cursor: pointer;
  padding: 13px 24px; border-radius: 999px;
  transition: transform .2s, background .2s;
}
.woof:hover { transform: translateY(-2px) rotate(-1deg); background: #a76c43; }
.woof.is-woofing { animation: wiggle .4s ease; }
.batman__stage.is-woofing .batman__svg { animation: batWiggle .6s ease; }
@keyframes wiggle { 0%,100%{transform:rotate(0)} 25%{transform:rotate(-4deg)} 75%{transform:rotate(4deg)} }
.woof-bubble {
  margin-top: 14px;
  font-family: var(--font-script);
  font-size: 30px; color: var(--green-700);
  min-height: 36px;
  text-align: center;
}
@media (max-width: 760px) { .batman__grid { grid-template-columns: 1fr; } }

/* =====================  SCHEDULE  ===================== */
.sched__head { text-align: center; margin-bottom: clamp(40px,6vw,64px); }
.sched-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.event {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.event:last-child { border-bottom: 1px solid var(--line); }
.event__time {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600; color: var(--clay);
}
.event__day {
  display: block;
  font-family: var(--font-body); font-size: 11px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint);
  margin-top: 4px;
}
.event__name { font-family: var(--font-display); font-size: 25px; font-weight: 600; }
.event__desc { color: var(--ink-soft); font-size: 15.5px; margin-top: 4px; }
@media (max-width: 560px){ .event { grid-template-columns: 1fr; gap: 6px; } }

/* =====================  BURNING MAN INFO  ===================== */
.bm__head { text-align: center; margin-bottom: clamp(40px,6vw,66px); }
.bm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.bm-card {
  background: rgba(246,239,223,0.06);
  border: 1px solid rgba(174,184,146,0.25);
  border-radius: 18px;
  padding: 28px 26px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.bm-card:hover { transform: translateY(-4px); border-color: var(--green-200); background: rgba(246,239,223,0.1); }
.bm-card__icon { color: var(--green-200); margin-bottom: 16px; }
.bm-card__title {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 600; margin-bottom: 8px;
}
.bm-card__body { color: #cdd3bb; font-size: 15.5px; line-height: 1.6; }
.bm-callout {
  margin-top: 40px;
  border: 1px solid rgba(174,184,146,0.3);
  border-radius: 18px;
  padding: clamp(26px, 4vw, 40px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: center;
  background: rgba(0,0,0,0.14);
}
.bm-callout__big {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 600; color: #fff;
  line-height: 0.9;
}
.bm-callout__big small { display:block; font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-200); font-family: var(--font-body); font-weight: 700; margin-top: 8px; }
.bm-principles {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
}
.principle {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8e0cb;
  border: 1px solid rgba(174,184,146,0.4);
  padding: 9px 16px; border-radius: 999px;
}
@media (max-width: 560px){ .bm-callout { grid-template-columns: 1fr; text-align:center; } }

/* =====================  TRAVEL  ===================== */
.travel__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.travel__map .ph { aspect-ratio: 1/1; border-radius: 20px; }
.travel__steps { display: flex; flex-direction: column; gap: 22px; }
.tstep { display: flex; gap: 18px; }
.tstep__num {
  flex: none;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green-700); color: #f4eedd;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
}
.tstep__title { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.tstep__body { color: var(--ink-soft); font-size: 15.5px; }
@media (max-width: 760px){ .travel__grid { grid-template-columns: 1fr; } }

/* =====================  RSVP  ===================== */
.rsvp { background: var(--paper-2); }
.rsvp__card {
  max-width: 640px; margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(30px, 5vw, 54px);
  box-shadow: var(--shadow-card);
}
.rsvp__head { text-align: center; margin-bottom: 30px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: 7px;
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--font-body); font-size: 16px;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fdfaf1;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(107,126,84,0.18);
}
.field--err input, .field--err select { border-color: var(--clay); }
.err-msg { color: var(--clay); font-size: 12.5px; font-weight: 700; margin-top: 6px; }
.choice-row { display: flex; gap: 12px; }
.choice {
  flex: 1; cursor: pointer;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  font-weight: 700; font-size: 14px;
  background: #fdfaf1;
  transition: all .2s;
}
.choice input { display: none; }
.choice.is-sel { border-color: var(--green-700); background: rgba(107,126,84,0.12); color: var(--green-900); }
.rsvp__submit { width: 100%; justify-content: center; margin-top: 8px; }
.rsvp__success { text-align: center; padding: 20px 0; }
.rsvp__success .script { font-size: clamp(48px, 9vw, 80px); color: var(--green-700); }
.rsvp__success .leaf { width: 40px; height: 40px; color: var(--green-500); }

/* =====================  FAQ  ===================== */
.faq__head { text-align: center; margin-bottom: clamp(36px,5vw,56px); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(19px, 2.4vw, 24px); font-weight: 600;
  color: var(--ink);
}
.faq-q__icon { flex: none; color: var(--green-700); transition: transform .3s ease; font-size: 26px; line-height: 1; }
.faq-item.is-open .faq-q__icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, opacity .3s ease;
  opacity: 0;
}
.faq-item.is-open .faq-a { max-height: 320px; opacity: 1; }
.faq-a__inner { padding: 0 4px 24px; color: var(--ink-soft); font-size: 16px; max-width: 64ch; }

/* =====================  FOOTER  ===================== */
.footer {
  background: var(--green-900);
  color: #d6dac6;
  text-align: center;
  padding: clamp(54px, 8vw, 88px) 0 40px;
}
.footer__names { font-family: var(--font-names); font-size: clamp(54px, 10vw, 96px); color: #f0ead8; line-height: 0.9; }
.footer__sub { font-family: var(--font-display); font-style: italic; font-size: 19px; color: var(--green-200); margin-top: 8px; }
.footer__stamp {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase; color: #d9a373;
  border: 1px solid rgba(217,163,115,0.5);
  border-radius: 999px; padding: 8px 18px;
  transform: rotate(-2deg);
}
.rsvp__stamp {
  font-family: var(--font-script); font-size: 30px; color: var(--clay);
  margin: 10px 0 0; transform: rotate(-2deg);
}
.footer__meta {
  margin-top: 26px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: #9fa98a;
}
.footer__leaf { color: var(--green-500); margin: 22px auto 0; display: block; }

/* =====================  BATMAN IMG  ===================== */
.batman__stage {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.batman__art {
  width: 100%;
  max-width: 400px;
  display: flex;
}
.batman__svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 30px rgba(40,53,35,0.18));
  animation: batFloat 4.2s ease-in-out infinite;
  transform-origin: 50% 90%;
}
@keyframes batFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-11px)} }
@keyframes batWiggle { 0%,100%{transform:rotate(0)} 20%{transform:rotate(-5deg)} 50%{transform:rotate(5deg)} 80%{transform:rotate(-2deg)} }

.bat-heart {
  position: absolute;
  bottom: 40%;
  transform: translateX(-50%);
  font-size: 26px;
  color: var(--clay);
  pointer-events: none;
  animation: heartUp 1.2s ease-out forwards;
}
@keyframes heartUp {
  0% { opacity: 0; transform: translate(-50%, 0) scale(.4); }
  20% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -150px) scale(1.25) rotate(12deg); }
}

/* =====================  SCROLLYTELLING (HOW WE MET)  ===================== */
.scrolly { position: relative; height: 540vh; margin: clamp(40px,6vw,72px) 0; }
.scrolly__pin {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: #f0ead8;
}
.scrolly__pin::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 85% at 50% 48%, transparent 52%, rgba(0,0,0,.5));
}
.scrolly__grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 4px 4px; mix-blend-mode: overlay;
}
.scrolly__crowd {
  position: absolute; top: 46%; left: 0; white-space: nowrap;
  font-family: "Courier New", monospace; letter-spacing: .08em;
  font-size: clamp(22px, 4.6vw, 44px); color: #cdd3bb;
  pointer-events: none; will-change: transform; user-select: none;
  text-shadow: 0 2px 0 rgba(0,0,0,.28), 0 6px 14px rgba(0,0,0,.3);
}
.scrolly__crowd--2 {
  top: 63%; font-size: clamp(14px, 3vw, 26px);
  color: #8c9876; filter: blur(1.1px); opacity: .35 !important;
  text-shadow: none;
}
.scrolly__bolt {
  display: block; margin: 0 auto 16px; opacity: .9;
  filter: drop-shadow(0 0 5px rgba(217,203,160,.3));
  animation: boltGlow 4.5s ease-in-out infinite;
}
.scrolly__flash {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  mix-blend-mode: screen;
  background: radial-gradient(120% 80% at 50% 0%, rgba(228,222,200,.55), transparent 52%);
  animation: lightningFlash 6.5s ease-in-out infinite;
}
@keyframes boltGlow { 0%,100%{ opacity:.55 } 50%{ opacity:.95 } }
@keyframes lightningFlash {
  0%,44%,100%{ opacity:0 } 47%{ opacity:.14 } 48%{ opacity:.04 } 49%{ opacity:.12 } 52%{ opacity:0 }
}
.scrolly__rail {
  position: absolute; right: clamp(14px,3.5vw,40px); top: 20%; bottom: 20%;
  width: 2px; background: rgba(240,234,216,.16); border-radius: 2px; overflow: hidden;
}
.scrolly__rail span { display: block; width: 100%; background: var(--green-200); }

.scrolly__beat {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
  will-change: opacity, transform; pointer-events: none;
}
.scrolly__beat > * { max-width: min(860px, 90vw); }
.scrolly__beat--top { justify-content: flex-start; padding-top: 13vh; }
.scrolly__beat--lower { justify-content: flex-end; padding-bottom: 17vh; }
.scrolly__beat--raise { justify-content: flex-start; padding-top: 11vh; }
.scrolly__ascii {
  font-family: "Courier New", monospace; white-space: pre;
  color: var(--green-200); opacity: .85;
  font-size: clamp(11px, 1.7vw, 16px); line-height: 1.35; margin: 0 0 20px;
}
.scrolly__kicker {
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
  letter-spacing: .3em; text-transform: uppercase; color: #d9a373;
}
.scrolly__title {
  font-family: var(--font-script); color: #f6efdf;
  font-size: clamp(58px, 13vw, 150px); line-height: .8; margin: 10px 0;
}
.scrolly__title span {
  display: block; font-family: var(--font-display); font-style: italic;
  font-size: clamp(20px, 3vw, 36px); color: var(--green-200); letter-spacing: .02em; margin: 4px 0;
}
.scrolly__title--sm { font-size: clamp(40px, 9vw, 92px); line-height: .9; }
.scrolly__sub {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(17px, 2.4vw, 25px); color: #cdd3bb; margin: 14px auto 0;
}
.scrolly__line {
  font-family: var(--font-display); font-weight: 500; color: #f6efdf;
  font-size: clamp(26px, 5.2vw, 54px); line-height: 1.08;
}
.scrolly__line--big { font-size: clamp(30px, 6vw, 66px); }
.scrolly__down { margin-top: 22px; font-family: var(--font-body); font-size: 12px; letter-spacing: .25em; text-transform: uppercase; color: var(--green-200); }
.scrolly__b5hearts { display: flex; gap: 12px; justify-content: center; margin-bottom: 18px; }
.scrolly__b5hearts span { color: #e8728a; font-size: clamp(18px, 3vw, 28px); animation: heartFloat 1.6s ease-in-out infinite; }
.scrolly__b5hearts span:nth-child(2) { animation-delay: .2s; }
.scrolly__b5hearts span:nth-child(3) { animation-delay: .4s; transform: scale(1.2); }
.scrolly__b5hearts span:nth-child(4) { animation-delay: .6s; }
.scrolly__b5hearts span:nth-child(5) { animation-delay: .8s; }
.scrolly__hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: #9fa98a; pointer-events: none; }
.scrolly__spark { font-size: clamp(30px, 6vw, 58px); color: var(--clay); margin-bottom: 6px; animation: sparkPulse 1.1s ease-in-out infinite; }

.scrolly__igor, .scrolly__lily {
  position: absolute; transform: translateX(-50%); text-align: center;
  pointer-events: none; will-change: left, opacity, transform;
}
.scrolly__igor { transform-origin: 50% 100%; }
.scrolly__igor.is-smitten .kao { color: #f3b6a0; }
.igor-hearts {
  position: absolute; left: 50%; top: -26px; transform: translateX(-50%);
  display: flex; gap: 6px;
}
.igor-hearts span { color: #e8728a; font-size: 15px; animation: heartFloat 1.4s ease-in-out infinite; }
.igor-hearts span:nth-child(2) { animation-delay: .25s; font-size: 20px; }
.igor-hearts span:nth-child(3) { animation-delay: .5s; }
@keyframes heartFloat { 0%,100%{ transform: translateY(0); opacity:.65 } 50%{ transform: translateY(-8px); opacity:1 } }
.scrolly__impact {
  position: absolute; transform: translateX(-50%); text-align: center;
  pointer-events: none;
}
.impact__stars { display: block; color: #f4e28a; font-size: clamp(24px, 4.5vw, 44px); letter-spacing: .12em; }
.impact__pow {
  display: block; margin-top: 4px;
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  color: var(--clay); font-size: clamp(16px, 2.4vw, 24px);
}
.kao { display: block; font-family: "Courier New", monospace; font-size: clamp(30px, 5.5vw, 56px); color: #e6c894; line-height: 1; text-shadow: 0 3px 8px rgba(0,0,0,.4); }
.kao--lily { color: #f6d9ad; }
.scrolly__lily .kao--lily { animation: runBob .34s ease-in-out infinite; }
.tag { display: block; margin-top: 8px; font-family: var(--font-body); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: #9fa98a; }
.trail { display: block; color: var(--clay); font-size: clamp(13px, 2vw, 20px); letter-spacing: .2em; opacity: .85; margin-bottom: 4px; }
.hoodie { display: block; margin-top: 8px; font-family: var(--font-display); font-style: italic; font-size: clamp(12px,1.6vw,15px); color: var(--green-200); white-space: nowrap; }
@media (max-width: 640px) {
  .kao { font-size: 23px; }
  .scrolly__igor .tag, .scrolly__lily .tag { font-size: 9px; margin-top: 5px; }
  .igor-hearts { top: -20px; }
  .igor-hearts span { font-size: 12px; }
}

@keyframes runBob { 0%,100%{transform:translateY(0) rotate(-3deg)} 50%{transform:translateY(-9px) rotate(3deg)} }
@keyframes sparkPulse { 0%,100%{transform:scale(1); opacity:.8} 50%{transform:scale(1.25); opacity:1} }

@media (prefers-reduced-motion: reduce) {
  .batman__svg,
  .scrolly__lily .kao--lily, .scrolly__spark, .igor-hearts span, .scrolly__b5hearts span { animation: none !important; }
}

/* entrance animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
