/* ============================================================
   The Gotham Suite — Skyline Noir Edition
   High-End Design Pass · Editorial Luxury
   Display: Fraunces  ·  Body: Cormorant Garamond  ·  Micro: Jost
   ============================================================ */

:root {
  /* ---- Color: rich near-blacks + warm off-whites, ONE accent ---- */
  --base:        #0A0C13;  /* Near-black, faint blue undertone */
  --base-2:      #0E111B;  /* Slightly lifted panel base */
  --secondary:   #161B27;  /* Charcoal slate */
  --line:        rgba(233, 224, 205, 0.10); /* Hairline borders */
  --line-strong: rgba(233, 224, 205, 0.16);

  --accent:      #C9A24B;  /* Skyline gold — the ONLY accent */
  --accent-2:    #B98F36;  /* Deeper gold for gradients */
  --highlight:   #EAD9A4;  /* Champagne (accent tint, sparing) */

  --ivory:       #F2ECDD;  /* Warm off-white — primary text */
  --ivory-dim:   rgba(242, 236, 221, 0.74);
  --ivory-faint: rgba(242, 236, 221, 0.46);
  --ivory-ghost: rgba(242, 236, 221, 0.30);

  --gold-soft:   rgba(201, 162, 75, 0.40);
  --gold-faint:  rgba(201, 162, 75, 0.14);
  --gold-glow:   rgba(201, 162, 75, 0.22);

  /* ---- Fonts ---- */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Cormorant Garamond', Georgia, serif;
  --font-micro:   'Jost', 'Helvetica Neue', Arial, sans-serif;

  /* ---- Type scale: dramatic contrast ---- */
  --text-hero:  clamp(3.2rem, 9vw, 6.5rem);
  --text-3xl:   clamp(2.6rem, 6vw, 4.2rem);
  --text-2xl:   clamp(2rem, 4.4vw, 3rem);
  --text-xl:    clamp(1.5rem, 3vw, 2.1rem);
  --text-lg:    1.25rem;
  --text-base:  1.08rem;
  --text-sm:    0.95rem;
  --text-xs:    0.78rem;
  --text-2xs:   0.68rem;

  /* ---- Spacing scale (generous, calm) ---- */
  --space-section: clamp(5rem, 12vw, 10rem);
  --maxw:      680px;   /* comfortable reading width */
  --maxw-wide: 1080px;  /* editorial container */
  --gutter:    clamp(1.5rem, 5vw, 3rem);

  /* ---- Radii ---- */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* ---- Layered soft shadows (never harsh) ---- */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.30), 0 4px 12px rgba(0,0,0,0.22);
  --shadow-md: 0 4px 10px rgba(0,0,0,0.28), 0 18px 44px rgba(0,0,0,0.38);
  --shadow-lg:
    0 2px 6px rgba(0,0,0,0.30),
    0 18px 40px rgba(0,0,0,0.40),
    0 48px 90px rgba(0,0,0,0.42);
  --shadow-gold: 0 12px 34px rgba(201,162,75,0.24);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.4s;
}

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

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

body {
  background: var(--base);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: rgba(201,162,75,0.28); color: var(--ivory); }

/* ---- Ambient background: warm horizon glow + fine grain ---- */
.sky-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(130% 70% at 50% 116%, rgba(201,162,75,0.16), transparent 58%),
    radial-gradient(100% 60% at 50% -14%, rgba(22,27,39,0.9), transparent 68%),
    linear-gradient(180deg, var(--base) 0%, var(--base-2) 60%, var(--base) 100%);
}
.stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(242,236,221,0.7), transparent),
    radial-gradient(1px 1px at 27% 42%, rgba(242,236,221,0.5), transparent),
    radial-gradient(1px 1px at 43% 12%, rgba(242,236,221,0.6), transparent),
    radial-gradient(1px 1px at 58% 33%, rgba(242,236,221,0.45), transparent),
    radial-gradient(1px 1px at 71% 8%, rgba(242,236,221,0.6), transparent),
    radial-gradient(1px 1px at 83% 26%, rgba(242,236,221,0.5), transparent),
    radial-gradient(1px 1px at 91% 15%, rgba(242,236,221,0.55), transparent),
    radial-gradient(1px 1px at 6% 55%, rgba(242,236,221,0.4), transparent),
    radial-gradient(1.5px 1.5px at 35% 6%, rgba(242,236,221,0.8), transparent),
    radial-gradient(1.5px 1.5px at 64% 20%, rgba(242,236,221,0.72), transparent);
  animation: twinkle 7s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: 0.5; } to { opacity: 0.95; } }

/* ---- Layout wrappers ---- */
.wrap { position: relative; z-index: 1; }
section { position: relative; z-index: 1; }

/* Editorial container for section content */
.section-pad {
  padding: var(--space-section) 0;
}
.section-pad > .card,
.section-pad > .link-actions { position: relative; }

/* ============================================================
   CARDS — layered depth, soft borders, gentle gradient
   ============================================================ */
.card {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2.75rem, 6vw, 5rem) clamp(1.75rem, 5vw, 4rem);
  position: relative;
}

.framed {
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(22,27,39,0.72), rgba(10,12,19,0.82));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: hidden;
}
/* Fine inner gold hairline + top sheen */
.framed::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, var(--gold-soft), transparent 42%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
}
.framed::after {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  pointer-events: none;
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow {
  font-family: var(--font-micro);
  font-weight: 400;
  font-size: var(--text-2xs);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.gold { color: var(--accent); }
.champ { color: var(--highlight); }

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin: 2rem auto;
  color: var(--accent);
}
.divider::before,
.divider::after {
  content: "";
  height: 1px;
  width: min(84px, 20vw);
  background: linear-gradient(90deg, transparent, var(--gold-soft));
}
.divider::after { background: linear-gradient(90deg, var(--gold-soft), transparent); }
.divider svg { width: 24px; height: 20px; fill: var(--accent); flex: none; opacity: 0.9; }

.ph {
  color: var(--highlight);
  font-style: italic;
  border-bottom: 1px dashed var(--gold-soft);
  padding: 0 0.15em;
  white-space: nowrap;
}

/* ============================================================
   HERO — editorial, confident, dramatic scale
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Extra bottom room reserves space for the Bat-Signal zone below the copy */
  padding: 6rem var(--gutter) clamp(15rem, 26vh, 20rem);
  position: relative;
  transition: opacity 0.6s var(--ease), transform 0.8s var(--ease);
}
.hero-skyline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  max-height: 52vh;
  object-fit: cover;
  object-position: bottom;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.35) 30%, #000 62%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.35) 30%, #000 62%);
  z-index: 0;
  opacity: 0.92;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem 1rem;
}
/* Soft scrim keeps hero text legible over the skyline glow */
.hero-inner::before {
  content: "";
  position: absolute;
  inset: -14% -20% -22%;
  z-index: -1;
  background: radial-gradient(72% 70% at 50% 58%, rgba(10,12,19,0.82), rgba(10,12,19,0.35) 62%, transparent 80%);
  pointer-events: none;
}

.hero .eyebrow { margin-bottom: 1.8rem; justify-content: center; }
.hero .eyebrow::before { display: none; }

.hero-event {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-hero);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ivory);
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5), 0 0 60px rgba(201,162,75,0.14);
}
.hero-sub {
  margin-top: 1.8rem;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--ivory);
  font-style: italic;
  text-shadow: 0 1px 3px rgba(0,0,0,0.95), 0 2px 24px rgba(0,0,0,0.9), 0 0 40px rgba(0,0,0,0.7);
}
.hero-host { margin-top: 0.35rem; }
.hero-host span, .hero-host .champ { color: var(--highlight); font-style: normal; }

/* ============================================================
   BAT-SIGNAL — glowing disc button + press transition
   ============================================================ */
.signal-zone {
  position: absolute;
  bottom: 2.6rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
}

/* Soft glowing halo, like a projected disc of light */
.signal-halo {
  position: absolute;
  top: 34%;
  left: 50%;
  width: clamp(240px, 40vw, 380px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 236, 210, 0.55) 0%,
    rgba(201, 162, 75, 0.50) 22%,
    rgba(201, 162, 75, 0.28) 40%,
    rgba(201, 162, 75, 0.14) 58%,
    rgba(201, 162, 75, 0.05) 74%,
    transparent 90%
  );
  filter: blur(20px);
  animation: halo-breathe 4.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes halo-breathe {
  0%, 100% { opacity: 0.72; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.06); }
}

/* Sonar rings pulsing outward */
.signal-ring {
  position: absolute;
  top: 34%;
  left: 50%;
  width: clamp(130px, 26vw, 200px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.40);
  animation: ring-pulse 3.2s ease-out infinite;
  pointer-events: none;
  z-index: 0;
}
.signal-ring.ring-2 { animation-delay: 1.1s; }
.signal-ring.ring-3 { animation-delay: 2.2s; }
@keyframes ring-pulse {
  0%   { transform: translate(-50%, -50%) scale(0.6);  opacity: 0.55; }
  100% { transform: translate(-50%, -50%) scale(1.25); opacity: 0; }
}

/* The signal disc */
.bat-signal-btn {
  position: relative;
  z-index: 2;
  width: clamp(116px, 21vw, 164px);
  aspect-ratio: 1;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle at 42% 36%,
    #F6ECCB 0%,
    var(--highlight) 24%,
    var(--accent) 52%,
    rgba(185, 143, 54, 0.9) 78%,
    rgba(185, 143, 54, 0.5) 100%
  );
  box-shadow:
    0 12px 40px rgba(201, 162, 75, 0.42),
    0 0 90px rgba(201, 162, 75, 0.38);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.bat-signal-btn:hover { transform: scale(1.04); }
.bat-signal-btn:active { transform: scale(0.97); }
.bat-signal-btn svg {
  width: 54%;
  height: 54%;
  color: var(--base);
  display: block;
}

/* Press transition: bat spins twice, disc bursts with light */
.bat-signal-btn.is-spinning svg {
  animation: bat-spin 900ms cubic-bezier(0.5, 0, 0.2, 1) forwards;
}
.bat-signal-btn.is-spinning {
  animation: signal-pulse 900ms ease-out forwards;
}
@keyframes bat-spin {
  0%   { transform: rotate(0deg) scale(1); }
  60%  { transform: rotate(620deg) scale(1.25); }
  100% { transform: rotate(720deg) scale(1.4); }
}
@keyframes signal-pulse {
  0%   { box-shadow: 0 12px 40px rgba(201,162,75,0.45), 0 0 70px rgba(201,162,75,0.35); }
  100% { box-shadow: 0 0 140px rgba(201,162,75,0.9), 0 0 260px rgba(201,162,75,0.6); }
}

.signal-tap-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-micro);
  font-size: var(--text-2xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  text-shadow: 0 0 5px rgba(0,0,0,0.85), 0 0 12px rgba(0,0,0,0.6), 0 2px 6px rgba(0,0,0,0.6);
  background: rgba(10, 12, 19, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.5rem 1.1rem;
  border-radius: var(--r-pill);
}

/* Full-screen golden iris flash */
.flash-iris {
  position: fixed;
  z-index: 90;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFFBEF 0%, var(--accent) 55%, transparent 100%);
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}
.flash-iris.flash-in  { animation: iris-in  650ms cubic-bezier(0.6, 0, 0.2, 1) forwards; }
.flash-iris.flash-out { animation: iris-out 650ms cubic-bezier(0.6, 0, 0.2, 1) forwards; }
@keyframes iris-in {
  0%   { transform: scale(0);  opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: scale(60); opacity: 1; }
}
@keyframes iris-out {
  0%   { transform: scale(60); opacity: 1; }
  100% { transform: scale(0);  opacity: 0; }
}

/* ============================================================
   INVITATION BODY — editorial, generous rhythm
   ============================================================ */
.invite-body { text-align: center; }
.verse {
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  line-height: 1.85;
  color: var(--ivory-dim);
  font-style: italic;
  max-width: 40ch;
  margin: 0 auto;
  text-wrap: balance;
}
.hosts {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-3xl);
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ivory);
  margin: 0.5rem 0 0.9rem;
}
.occasion {
  font-size: var(--text-lg);
  color: var(--ivory-dim);
  max-width: 42ch;
  margin: 0 auto;
}

.event-name {
  font-family: var(--font-micro);
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 2rem 0;
}

/* Meta as a clean editorial grid */
.meta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 2.5rem auto 0;
  max-width: 540px;
  text-align: left;
}
.meta-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}
.meta-row:last-child { border-bottom: 1px solid var(--line); }
.meta-label {
  font-family: var(--font-micro);
  font-weight: 400;
  font-size: var(--text-2xs);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 0.35rem;
}
.meta-value { font-size: var(--text-lg); color: var(--ivory); line-height: 1.55; }

.rsvp-line {
  margin-top: 1.6rem;
  font-size: var(--text-sm);
  color: var(--ivory-faint);
  font-style: italic;
  font-family: var(--font-body);
}

/* ============================================================
   BUTTONS — clear hierarchy, tactile
   ============================================================ */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.8rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-micro);
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1.05rem 2.1rem;
  border-radius: var(--r-pill);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
    box-shadow 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.btn svg { width: 15px; height: 15px; flex: none; }

/* Primary — solid gold, confident */
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #14100A;
  border: 1px solid transparent;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(201,162,75,0.36);
}
.btn-primary:active { transform: translateY(-1px); }

/* Secondary — ghost with hairline */
.btn-ghost {
  background: rgba(242,236,221,0.02);
  color: var(--highlight);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--gold-soft);
  background: rgba(201,162,75,0.07);
  color: var(--accent);
}
.btn-ghost:active { transform: translateY(-1px); }

/* ============================================================
   SECTION HEADS — editorial, left-aligned inside cards
   ============================================================ */
.section-head { text-align: center; margin-bottom: 2.75rem; }
.section-head .eyebrow { display: inline-flex; margin-bottom: 1rem; justify-content: center; }
.section-head .eyebrow::before { display: none; }
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-2xl);
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--ivory);
}

/* ============================================================
   THANK-YOU / TAGLINE (kept for standalone reuse safety)
   ============================================================ */
.thanks { text-align: center; }
.thanks .verse { margin-bottom: 1.5rem; }
.signoff {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-xl);
  letter-spacing: 0;
  color: var(--ivory);
  margin-top: 1.4rem;
}
.tagline-card {
  text-align: center;
  margin: 4rem auto 0;
  max-width: var(--maxw);
  padding: 0 var(--gutter);
}
.tagline {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  color: var(--accent);
  line-height: 1.15;
}
.guest-message {
  margin: 1.8rem auto 0;
  max-width: 44rem;
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.9;
  color: var(--ivory-dim);
}

/* ---- Monogram ---- */
.monogram {
  width: 68px; height: 68px;
  margin: 0 auto 1.8rem;
  display: block;
  color: var(--accent);
  filter: drop-shadow(0 4px 16px rgba(201,162,75,0.28));
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem var(--gutter) 4.5rem;
  color: var(--ivory-ghost);
  font-family: var(--font-micro);
  font-size: var(--text-2xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
footer .divider { margin: 0 auto; }

/* ============================================================
   ACCESS + REGISTRY helpers
   ============================================================ */
.access-card { margin-top: 0; }
.gate-code {
  font-family: var(--font-micro);
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-size: 1.5rem !important;
}
.registry-card { text-align: center; }
.registry-card .actions { justify-content: center; }

/* ---- Quick action link (Registry) ---- */
.link-actions {
  max-width: var(--maxw);
  margin: 2.5rem auto 0;
  padding: 0 var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.link-actions .btn { min-width: 240px; }

/* ============================================================
   MOTION — elegant scroll reveals
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* Stagger children of the invitation card gently */
.invite-body > * { opacity: 0; transform: translateY(16px); }
.reveal.in .invite-body > * {
  animation: rise 0.9s var(--ease) forwards;
}
.reveal.in .invite-body > *:nth-child(1) { animation-delay: 0.05s; }
.reveal.in .invite-body > *:nth-child(2) { animation-delay: 0.12s; }
.reveal.in .invite-body > *:nth-child(3) { animation-delay: 0.19s; }
.reveal.in .invite-body > *:nth-child(4) { animation-delay: 0.26s; }
.reveal.in .invite-body > *:nth-child(5) { animation-delay: 0.33s; }
.reveal.in .invite-body > *:nth-child(6) { animation-delay: 0.40s; }
.reveal.in .invite-body > *:nth-child(7) { animation-delay: 0.47s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ============================================================
   SCENE SWITCH: Hero <-> Info
   ============================================================ */
.hero.screen-out {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}
#infoScreen {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
#infoScreen.screen-in { opacity: 1; transform: none; }
#infoScreen[hidden] { display: none; }
.hero[hidden] { display: none !important; }

.back-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem 0 0 var(--gutter);
  padding: 0.6rem 1.15rem;
  background: rgba(242,236,221,0.02);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  color: var(--ivory-dim);
  font-family: var(--font-micro);
  font-weight: 500;
  font-size: var(--text-2xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.35s var(--ease), color 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease);
}
.back-cue:hover {
  border-color: var(--gold-soft);
  color: var(--accent);
  background: rgba(201,162,75,0.06);
  transform: translateX(-2px);
}
.back-cue svg { width: 15px; height: 15px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 720px) {
  .meta-row { grid-template-columns: 1fr; gap: 0.3rem; }
  .meta-label { padding-top: 0; }
}
@media (max-width: 560px) {
  .actions { flex-direction: column; }
  .btn { width: 100%; }
  .link-actions { flex-direction: column; align-items: stretch; }
  .link-actions .btn { min-width: 0; width: 100%; }
  .card { border-radius: var(--r-md); }
  .signal-zone { bottom: 2rem; gap: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero, #infoScreen { opacity: 1 !important; transform: none !important; transition: none; }
  .invite-body > * { opacity: 1 !important; transform: none !important; animation: none !important; }
  .stars, .signal-halo, .signal-ring { animation: none !important; }
  html { scroll-behavior: auto; }
}
