/* =========================================================================
   Scott & Dominik — Wedding Site
   Design system: Rich & regal — deep green, burgundy, antique gold, on ivory
   Type: Cormorant Garamond (display) · EB Garamond (body) · Jost (labels)
   ========================================================================= */

:root {
  /* ---- Palette ---- */
  --ivory:        #f6efe1;   /* primary page background */
  --parchment:    #efe6d3;   /* alternating warm band */
  --cream-card:   #fbf6ec;   /* raised cards on light bands */
  --green:        #163a2b;   /* deep forest green — primary */
  --green-deep:   #0f2a1f;   /* darker still, for backgrounds */
  --green-soft:   #2c5340;
  --burgundy:     #6c2233;   /* secondary accent */
  --burgundy-deep:#4f1726;
  --gold:         #b08b46;   /* antique gold — fine details */
  --gold-light:   #cda968;
  --gold-pale:    #e6d3a8;
  --ink:          #271f17;   /* warm near-black text */
  --ink-soft:     #5a4f41;
  --line:         rgba(176,139,70,0.34); /* hairline gold rule */
  --on-dark:      #f3ead8;
  --on-dark-soft: #cdbf9f;

  /* ---- Type ---- */
  --display: "Cormorant Garamond", Georgia, serif;
  --body:    "EB Garamond", Georgia, serif;
  --label:   "Jost", "Century Gothic", sans-serif;

  --maxw: 1180px;
  --shadow-soft: 0 24px 60px -28px rgba(15,42,31,0.45);
  --shadow-card: 0 18px 44px -26px rgba(39,31,23,0.42);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--ivory);
  font-size: 19px;
  line-height: 1.65;
  font-weight: 420;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: 0.005em; }
p { margin: 0 0 1em; text-wrap: pretty; }
::selection { background: var(--burgundy); color: var(--on-dark); }

/* ---- Shared text atoms ---- */
.eyebrow {
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 1.1rem;
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gold-light); }

.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.6rem, 5.4vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.lede {
  font-size: clamp(1.12rem, 1.7vw, 1.34rem);
  color: var(--ink-soft);
  max-width: 60ch;
  line-height: 1.7;
}

/* gold ornamental divider */
.ornament {
  display: flex; align-items: center; gap: 0.9rem;
  color: var(--gold);
}
.ornament::before, .ornament::after {
  content: ""; height: 1px; width: 64px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament .diamond { width: 7px; height: 7px; transform: rotate(45deg); background: var(--gold); }

/* =========================================================================
   Layout helpers
   ========================================================================= */
section { position: relative; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.band { padding: clamp(72px, 11vw, 148px) 0; }
.band--ivory     { background: var(--ivory); }
.band--parchment { background: var(--parchment); }
.band--green     { background: var(--green); color: var(--on-dark); }
.band--green .lede, .band--green p { color: var(--on-dark-soft); }
.band--burgundy  { background: var(--burgundy); color: var(--on-dark); }

.center { text-align: center; }
.center .ornament { justify-content: center; }
.center .lede { margin-left: auto; margin-right: auto; }
.stack-sm > * + * { margin-top: 0.9rem; }

/* =========================================================================
   Navigation
   ========================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 48px);
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
}
.nav--scrolled {
  background: rgba(15,42,31,0.93);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(176,139,70,0.25);
  padding-top: 12px; padding-bottom: 12px;
}
.nav__brand {
  font-family: var(--display);
  font-size: 1.5rem; font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--on-dark);
  text-decoration: none;
  display: flex; align-items: center; gap: 0.5rem;
}
.nav__brand .amp { color: var(--gold-light); font-style: italic; }
.nav__links { display: flex; gap: clamp(14px, 2vw, 30px); align-items: center; }
.nav__links a {
  font-family: var(--label);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11.5px; font-weight: 400;
  color: var(--on-dark);
  text-decoration: none;
  opacity: 0.86;
  transition: opacity .2s, color .2s;
  position: relative; padding-bottom: 3px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold-light); transition: width .28s ease;
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }
.nav__links a.rsvp-link {
  border: 1px solid var(--gold-light);
  padding: 8px 18px; border-radius: 100px; opacity: 1;
}
.nav__links a.rsvp-link::after { display: none; }
.nav__links a.rsvp-link:hover { background: var(--gold-light); color: var(--green-deep); }
.nav__toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--on-dark); font-family: var(--label); letter-spacing: 0.2em;
  font-size: 12px; text-transform: uppercase; padding: 8px;
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--on-dark);
  overflow: hidden;
  background: var(--green-deep);
}
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero__bg .ph { width: 100%; height: 100%; }

/* =========================================================================
   Image placeholders — drop real files into the /images folder
   ========================================================================= */
.ph {
  position: relative; overflow: hidden; margin: 0;
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(45deg, rgba(176,139,70,0.13) 0 11px, rgba(176,139,70,0.03) 11px 22px),
    var(--cream-card);
}
.ph > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ph__label {
  position: relative; z-index: 0; max-width: 84%; text-align: center;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 11px; line-height: 1.55; letter-spacing: 0.02em; color: var(--ink-soft);
}
/* Engagement food photo — fills the text height, dips below, fades into the band */
.food-media { display: flex; align-items: stretch; }
.food-photo {
  width: 100%; margin: 0; min-height: 340px;
}
@media (max-width: 860px) {
  .food-photo {
    margin-bottom: 0;
  }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 18%, rgba(15,42,31,0.30), rgba(15,42,31,0.78) 78%),
    linear-gradient(180deg, rgba(15,42,31,0.55), rgba(15,42,31,0.40) 40%, rgba(15,42,31,0.88));
}
.hero__inner { position: relative; z-index: 2; padding: 120px 24px 80px; max-width: 920px; }
.hero__kicker {
  font-family: var(--label);
  text-transform: uppercase; letter-spacing: 0.5em;
  font-size: 13px; color: var(--gold-light); margin-bottom: 1.6rem;
}
.hero__names {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(3.6rem, 13vw, 9rem);
  line-height: 0.92; letter-spacing: -0.01em;
  margin: 0;
}
.hero__names .amp {
  display: block; font-style: italic; font-weight: 400;
  color: var(--gold-light);
  font-size: clamp(2rem, 6vw, 4rem); margin: 0.1em 0;
}
.hero__sub {
  margin-top: 1.8rem; font-size: clamp(1.05rem, 2vw, 1.4rem);
  letter-spacing: 0.04em; color: var(--on-dark-soft);
}
.hero__sub strong { color: var(--on-dark); font-weight: 500; }

/* Countdown */
.countdown { display: flex; gap: clamp(14px, 4vw, 42px); justify-content: center; margin-top: 2.6rem; }
.countdown__unit { min-width: 64px; }
.countdown__num {
  font-family: var(--display); font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 500; line-height: 1; color: var(--on-dark);
}
.countdown__label {
  font-family: var(--label); text-transform: uppercase;
  letter-spacing: 0.24em; font-size: 10.5px; color: var(--gold-light);
  margin-top: 0.5rem;
}
.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--gold-light); font-family: var(--label);
  text-transform: uppercase; letter-spacing: 0.3em; font-size: 10px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0.85;
}
.scroll-cue .line { width: 1px; height: 40px; background: linear-gradient(var(--gold-light), transparent); animation: cue 2.4s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: scaleY(0.5); opacity: .4; transform-origin: top; } 50% { transform: scaleY(1); opacity: 1; } }

/* =========================================================================
   Three celebrations teaser
   ========================================================================= */
.tri { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 3rem; }
.tri__card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  padding: 40px 32px; text-align: center;
  position: relative; transition: transform .35s ease, box-shadow .35s ease;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; align-items: center;
}
.tri__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.tri__num {
  font-family: var(--display); font-style: italic;
  color: var(--gold); font-size: 1.5rem; margin-bottom: 0.4rem;
}
.tri__card h3 { font-family: var(--display); font-size: 2rem; margin-bottom: 0.5rem; }
.tri__date { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.2em; font-size: 11px; color: var(--burgundy); margin-bottom: 1rem; }
.tri__card p { color: var(--ink-soft); font-size: 1.02rem; margin: 0; }
.tri__arrow { margin-top: 1.4rem; color: var(--gold); font-family: var(--label); letter-spacing: 0.2em; font-size: 11px; text-transform: uppercase; }

/* =========================================================================
   Story
   ========================================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.split--reverse .split__media { order: 2; }
.story-img { width: 100%; aspect-ratio: 4/5; }
.story-img--wide { aspect-ratio: 5/4; }
.story-img-frame { position: relative; padding: 14px; }
.story-img-frame::before { content: ""; position: absolute; inset: 0; border: 1px solid var(--gold); transform: translate(16px, 16px); z-index: -1; }

/* =========================================================================
   Detail rows / info cards
   ========================================================================= */
.detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 2.4rem; }
.detail {
  background: var(--cream-card); padding: 32px 28px;
}
.band--green .detail { background: rgba(255,255,255,0.04); }
.detail__k { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.22em; font-size: 11px; color: var(--gold); margin-bottom: 0.6rem; }
.detail__v { font-family: var(--display); font-size: 1.7rem; line-height: 1.15; }
.detail__note { font-size: 0.98rem; color: var(--ink-soft); margin-top: 0.4rem; }
.band--green .detail__v { color: var(--on-dark); }
.band--green .detail__note { color: var(--on-dark-soft); }

/* =========================================================================
   Invitation card
   ========================================================================= */
.invite-wrap { display: flex; justify-content: center; margin-top: 3rem; perspective: 1600px; }
.invite {
  width: min(1116px, 100%);
  background:
    linear-gradient(155deg, #fdfaf2, #f3e9d4);
  border: 1px solid var(--gold);
  box-shadow: var(--shadow-soft), inset 0 0 0 1px rgba(255,255,255,0.6);
  padding: clamp(36px, 5vw, 60px) clamp(28px, 5vw, 56px);
  text-align: center; position: relative;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.invite::before {
  content: ""; position: absolute; inset: 14px; border: 1px solid var(--line); pointer-events: none;
}
.invite__corner { position: absolute; width: 26px; height: 26px; border: 1px solid var(--gold); }
.invite__corner.tl { top: 20px; left: 20px; border-right: none; border-bottom: none; }
.invite__corner.tr { top: 20px; right: 20px; border-left: none; border-bottom: none; }
.invite__corner.bl { bottom: 20px; left: 20px; border-right: none; border-top: none; }
.invite__corner.br { bottom: 20px; right: 20px; border-left: none; border-top: none; }
.invite__kicker { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.42em; font-size: 11px; color: var(--burgundy); }
.invite__names { font-family: var(--display); font-size: clamp(2.6rem, 7vw, 3.8rem); line-height: 1; margin: 1.1rem 0 0.4rem; color: var(--green); }
.invite__names .amp { font-style: italic; color: var(--gold); }
.invite__body { font-size: 1.06rem; color: var(--ink-soft); margin: 1.2rem auto; max-width: 38ch; }
.invite__date { font-family: var(--display); font-size: 1.5rem; color: var(--ink); margin: 1.2rem 0 0.2rem; }
.invite__meta { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.2em; font-size: 11px; color: var(--ink-soft); }
.invite__seal {
  width: 64px; height: 64px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--burgundy), var(--burgundy-deep));
  color: var(--gold-pale); display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 1.5rem; font-weight: 600;
  margin: 1.6rem auto 0; box-shadow: 0 6px 16px -6px rgba(79,23,38,0.7);
  border: 1px solid var(--gold);
}
.invite__stamp {
  display: block; width: 92px; height: 92px; margin: 1.8rem auto 0;
  filter: drop-shadow(0 4px 7px rgba(45,10,15,0.4)) drop-shadow(0 1px 2px rgba(0,0,0,0.22));
}

/* =========================================================================
   Folded-invite reveal — pinned, the fold opens as you scroll (scrubbed)
   ========================================================================= */
/* tall track gives the scroll runway; the invite pins to centre while opening */
.invite-pin-track { position: relative; height: 220vh; }
.invite-pin {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; justify-content: center;
}

.invite-reveal { position: relative; --open: 0; width: 100%; }
.invite-reveal .invite { perspective: 2200px; max-width: 920px; }

/* the cover = the folded invitation, two halves sealed with wax */
.fold-cover {
  position: absolute; inset: 0; z-index: 8;
  border: 0; padding: 0; margin: 0; background: none; cursor: pointer;
  transform-style: preserve-3d;
}
.fold-cover:focus-visible { outline: 2px solid var(--gold); outline-offset: 6px; }

.fold {
  position: absolute; left: 0; width: 100%; height: 50%;
  background: linear-gradient(155deg, #fdfaf2, #f3e9d4);
  border: 1px solid var(--gold);
  will-change: transform;
}
/* scrubbed open: 0 = shut, 1 = fully folded open (stays open) */
.fold--top    { top: 0;    transform-origin: top center;    z-index: 2; transform: rotateX(calc(var(--open) * 180deg));  box-shadow: 0 8px 18px -12px rgba(40,18,12,0.5); }
.fold--bottom { bottom: 0; transform-origin: bottom center; z-index: 1; transform: rotateX(calc(var(--open) * -180deg)); }
/* faint inner frame + centre crease so it reads as folded paper */
.fold::before {
  content: ""; position: absolute; inset: 14px; border: 1px solid var(--line); pointer-events: none;
}
.fold--top::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(159,122,53,0.5), transparent);
}

/* wax seal sits at the top of the closed envelope, fades as it opens */
.env__seal {
  position: absolute; left: 50%; bottom: 0; width: 124px; height: 124px;
  transform: translate(-50%, 50%) scale(calc(1 + var(--open) * 0.12));
  opacity: calc(1 - var(--open) * 1.6); z-index: 5;
  filter: drop-shadow(0 3px 5px rgba(45,10,15,0.45)) drop-shadow(0 1px 2px rgba(0,0,0,0.25));
}

.env__hint {
  position: absolute; left: 0; right: 0; bottom: 22%; text-align: center; z-index: 6;
  font-family: var(--label); text-transform: uppercase; letter-spacing: 0.26em;
  font-size: 11px; color: var(--burgundy);
  opacity: calc(1 - var(--open) * 2.2);
}

@media (prefers-reduced-motion: reduce) {
  .invite-pin-track { height: auto; }
  .invite-pin { position: static; height: auto; padding-block: 2rem; }
  .invite-reveal { --open: 1; }
}

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--label); text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 12px; font-weight: 500;
  padding: 15px 34px; border-radius: 100px;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: all .26s ease;
}
.btn--gold { background: var(--gold); color: var(--green-deep); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 28px -12px rgba(176,139,70,0.7); }
.btn--outline { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--green-deep); }
.btn--outline-light { background: transparent; border-color: var(--on-dark); color: var(--on-dark); }
.btn--outline-light:hover { background: var(--on-dark); color: var(--green-deep); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 2rem; }
.center .btn-row { justify-content: center; }

/* =========================================================================
   Travel — staggered cards
   ========================================================================= */
.travel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; margin-top: 3rem; }
.travel-card {
  background: var(--cream-card); border: 1px solid var(--line);
  padding: 38px 32px; position: relative; display: flex; flex-direction: column;
}
.travel-card__tag {
  position: absolute; top: -1px; right: 26px; white-space: nowrap;
  background: var(--green); color: var(--gold-light);
  font-family: var(--label); text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 10px; padding: 6px 14px;
}
.travel-card__tag.burg { background: var(--burgundy); }
.travel-card h3 { font-family: var(--display); font-size: 1.9rem; margin-bottom: 0.2rem; color: var(--green); }
.travel-card .sub { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; color: var(--ink-soft); margin-bottom: 1.1rem; }
.travel-card p { font-size: 1.02rem; color: var(--ink-soft); }
.travel-card .pill {
  display: inline-block; align-self: flex-start; margin-top: auto;
  background: var(--gold-pale); color: var(--burgundy-deep);
  font-family: var(--label); letter-spacing: 0.1em; font-size: 11px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-top: 1.4rem;
}
.travel-card .pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 1.4rem; }
.travel-card .pill-row .pill { margin-top: 0; }

/* numbered steps (e.g. the "take a selfie" arrival ritual) */
.selfie-steps { list-style: none; counter-reset: step; margin: 0; padding: 0; }
.selfie-steps li {
  counter-increment: step; position: relative; padding: 15px 0 15px 60px;
  border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 1.35rem; color: var(--ink);
}
.selfie-steps li:last-child { border-bottom: 0; }
.selfie-steps li::before {
  content: counter(step); position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%; background: var(--gold); color: var(--green-deep);
  display: flex; align-items: center; justify-content: center; font-family: var(--label); font-size: 14px;
}

/* =========================================================================
   Stag voting
   ========================================================================= */
.vote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 3rem; }
.vote-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(205,169,104,0.4);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .35s ease, border-color .35s;
}
.vote-card:hover { transform: translateY(-6px); border-color: var(--gold-light); }
.vote-card.is-voted { border-color: var(--gold-light); box-shadow: 0 0 0 1px var(--gold-light) inset; }
.vote-card__img { width: 100%; height: 220px; }
.vote-card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.vote-card__name { font-family: var(--display); font-size: 2.1rem; color: var(--on-dark); line-height: 1; }
.vote-card__tagline { color: var(--on-dark-soft); font-size: 0.98rem; margin: 0.4rem 0 1.2rem; }
.vote-bar { height: 8px; background: rgba(255,255,255,0.12); border-radius: 100px; overflow: hidden; margin-bottom: 0.7rem; }
.vote-bar__fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 100px; transition: width .8s cubic-bezier(.2,.7,.2,1); }
.vote-stat { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--label); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-soft); margin-bottom: 1.2rem; }
.vote-stat .pct { font-family: var(--display); font-size: 1.5rem; color: var(--gold-light); letter-spacing: 0; }
.vote-btn {
  margin-top: auto; width: 100%; justify-content: center;
  font-family: var(--label); text-transform: uppercase; letter-spacing: 0.2em; font-size: 11.5px;
  padding: 13px; border-radius: 100px; cursor: pointer;
  background: transparent; border: 1px solid var(--gold-light); color: var(--gold-light);
  transition: all .24s;
}
.vote-btn:hover { background: var(--gold-light); color: var(--green-deep); }
.vote-card.is-voted .vote-btn { background: var(--gold-light); color: var(--green-deep); }
.vote-meta { text-align: center; margin-top: 2rem; font-family: var(--label); text-transform: uppercase; letter-spacing: 0.2em; font-size: 11px; color: var(--on-dark-soft); }

/* =========================================================================
   Wedding / GoFundMe
   ========================================================================= */
.fund {
  background: var(--cream-card); border: 1px solid var(--gold);
  padding: clamp(34px, 5vw, 56px); margin-top: 3rem;
  box-shadow: var(--shadow-card);
}
.fund__top { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; }
.fund__raised { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--green); line-height: 1; }
.fund__goal { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px; color: var(--ink-soft); }
.fund__bar { height: 14px; background: var(--parchment); border: 1px solid var(--line); border-radius: 100px; overflow: hidden; margin: 1.6rem 0 0.8rem; }
.fund__fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--green), var(--green-soft)); border-radius: 100px; transition: width 1.1s cubic-bezier(.2,.7,.2,1); }
.fund__pct { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; color: var(--gold); }

/* milestone markers under the fund bar */
.fund__track { position: relative; padding-bottom: 56px; }
.fund__marks { position: absolute; left: 0; right: 0; top: 0; height: 14px; }
.fund__mark { position: absolute; top: -3px; transform: translateX(-50%); text-align: center; }
.fund__mark i { display: block; width: 2px; height: 20px; background: var(--gold); margin: 0 auto; }
.fund__mark.reached i { background: var(--green); }
.fund__mark b { display: block; font-family: var(--display); font-size: 1.05rem; color: var(--ink); margin-top: 6px; line-height: 1; }
.fund__mark small { display: block; font-family: var(--label); text-transform: uppercase; letter-spacing: 0.1em; font-size: 9.5px; color: var(--ink-soft); margin-top: 3px; white-space: nowrap; }
.fund__mark.reached b { color: var(--green); }

/* venue ladder */
.venues { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 3rem; }
.venue-card {
  background: var(--cream-card); border: 1px solid var(--line);
  display: flex; flex-direction: column; overflow: hidden; position: relative;
  transition: opacity .4s ease, border-color .4s ease, transform .35s ease;
}
.venue-card:hover { transform: translateY(-5px); }
.venue-card__img { width: 100%; height: 150px; position: relative; }
.venue-card__lock {
  position: absolute; inset: 0; display: none; align-items: center; justify-content: center;
  background: rgba(15,42,31,0.55); color: var(--gold-pale);
  font-family: var(--label); text-transform: uppercase; letter-spacing: 0.18em; font-size: 10px;
  z-index: 2;
}
.venue-card.locked { opacity: 0.66; }
.venue-card.locked .venue-card__lock { display: flex; }
.venue-card.unlocked { border-color: var(--green-soft); }
.venue-card.dream { border-color: var(--gold); box-shadow: var(--shadow-card); }
.venue-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.venue-card__badge {
  align-self: flex-start; font-family: var(--label); text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 9.5px; padding: 5px 11px; border-radius: 100px;
  margin-bottom: 0.9rem; border: 1px solid var(--line); color: var(--ink-soft);
}
.venue-card.dream .venue-card__badge { background: var(--gold); color: var(--green-deep); border-color: var(--gold); }
.venue-card.unlocked:not(.dream) .venue-card__badge { background: var(--green); color: var(--on-dark); border-color: var(--green); }
.venue-card h4 { font-family: var(--display); font-size: 1.55rem; color: var(--green); line-height: 1.05; }
.venue-card .place { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.14em; font-size: 10px; color: var(--burgundy); margin: 0.25rem 0 0.7rem; }
.venue-card .vnote { font-size: 0.95rem; color: var(--ink-soft); margin: 0 0 1.2rem; }
.venue-card .vneed { font-family: var(--display); font-size: 1.4rem; color: var(--ink); }
.venue-card .vneed span { font-family: var(--label); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); display: block; margin-bottom: 2px; }
.venue-card .vlink { margin-top: auto; padding-top: 1.1rem; font-family: var(--label); text-transform: uppercase; letter-spacing: 0.16em; font-size: 10.5px; color: var(--gold); text-decoration: none; }
.venue-card .vlink:hover { color: var(--burgundy); }

/* donor perk note */
.perk { display: flex; gap: 22px; align-items: center; background: var(--green); color: var(--on-dark); padding: 28px 32px; margin-top: 2.6rem; border: 1px solid var(--green-soft); }
.perk__seal { flex: none; width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--gold-light); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 1.5rem; color: var(--gold-light); }
.perk p { margin: 0; color: var(--on-dark-soft); }
.perk strong { color: var(--on-dark); font-weight: 500; }

@media (max-width: 860px) {
  .venues { grid-template-columns: 1fr 1fr; }
  .fund__mark small { display: none; }
  .perk { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) { .venues { grid-template-columns: 1fr; } }

/* =========================================================================
   RSVP form
   ========================================================================= */
.rsvp-card {
  background: var(--cream-card); border: 1px solid var(--line);
  padding: clamp(32px, 5vw, 64px); margin-top: 3rem; box-shadow: var(--shadow-card);
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.field { margin-bottom: 1.6rem; }
.field > label { display: block; font-family: var(--label); text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; color: var(--ink-soft); margin-bottom: 0.55rem; }
.field input[type="text"], .field input[type="email"], .field input[type="number"], .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: 1.05rem; color: var(--ink);
  background: var(--ivory); border: 1px solid var(--line); border-radius: 4px;
  padding: 13px 16px; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,139,70,0.16);
}
.field textarea { resize: vertical; min-height: 96px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.checks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.check {
  position: relative; display: flex; flex-direction: column; gap: 4px;
  border: 1px solid var(--line); border-radius: 6px; padding: 16px 18px; cursor: pointer;
  transition: all .2s; background: var(--ivory);
}
.check:hover { border-color: var(--gold); }
.check input { position: absolute; opacity: 0; }
.check__t { font-family: var(--display); font-size: 1.3rem; }
.check__d { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.12em; font-size: 10px; color: var(--ink-soft); }
.check:has(input:checked) { border-color: var(--gold); background: linear-gradient(var(--gold-pale), var(--cream-card)); box-shadow: 0 0 0 1px var(--gold) inset; }
.radio-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-chip { font-family: var(--label); letter-spacing: 0.1em; font-size: 12px; text-transform: uppercase; padding: 11px 18px; border: 1px solid var(--line); border-radius: 100px; cursor: pointer; transition: all .2s; background: var(--ivory); }
.radio-chip input { position: absolute; opacity: 0; }
.radio-chip:has(input:checked) { background: var(--green); color: var(--on-dark); border-color: var(--green); }
/* chips on the dark green band (RSVP): readable default + clear gold selected state */
.band--green .radio-chip { background: rgba(255,255,255,0.06); color: var(--on-dark); border-color: rgba(205,169,104,0.4); }
.band--green .radio-chip:has(input:checked) { background: var(--gold); color: var(--green-deep); border-color: var(--gold-light); }
.radio-chip.is-disabled { opacity: 0.35; pointer-events: none; }
/* even, full-width chips across a row (e.g. the local / travelling-in choice) */
.radio-row--fill .radio-chip { flex: 1 1 0; text-align: center; }
@media (max-width: 560px) { .radio-row--fill .radio-chip { flex-basis: 100%; } }
.rsvp-success { text-align: center; padding: 2rem 1rem; display: none; }
.rsvp-success.show { display: block; animation: fadein .6s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(8px);} to {opacity:1; transform:none;} }
.rsvp-success .seal-big { width: 84px; height: 84px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, var(--green-soft), var(--green-deep)); color: var(--gold-light); display:flex; align-items:center; justify-content:center; font-family: var(--display); font-size: 2.2rem; margin: 0 auto 1.4rem; border: 1px solid var(--gold); }

/* =========================================================================
   FAQ accordion
   ========================================================================= */
.faq-list { max-width: 820px; margin: 3rem auto 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  padding: 26px 48px 26px 4px; position: relative;
  font-family: var(--display); font-size: 1.5rem; color: var(--ink);
}
.faq-q::after { content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-family: var(--body); color: var(--gold); font-size: 1.7rem; transition: transform .3s; }
.faq-item.open .faq-q::after { content: "–"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding: 0 4px 26px; color: var(--ink-soft); margin: 0; max-width: 70ch; }

/* =========================================================================
   Footer
   ========================================================================= */
.footer { background: var(--green-deep); color: var(--on-dark-soft); text-align: center; padding: clamp(60px, 8vw, 96px) 0 48px; }
.footer__mono { font-family: var(--display); font-size: clamp(2.6rem, 7vw, 4rem); color: var(--on-dark); }
.footer__mono .amp { color: var(--gold-light); font-style: italic; }
.footer__date { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.3em; font-size: 12px; color: var(--gold-light); margin: 1rem 0 2rem; }
.footer a { color: var(--on-dark-soft); }
.footer__links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; font-family: var(--label); text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; }
.footer__fine { margin-top: 2.4rem; font-size: 0.85rem; opacity: 0.5; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 860px) {
  body { font-size: 18px; }
  .nav__links { position: fixed; inset: 0 0 auto 0; top: 0; flex-direction: column;
    background: rgba(15,42,31,0.98); padding: 92px 32px 36px; gap: 22px;
    transform: translateY(-120%); transition: transform .4s ease; height: auto; }
  .nav__links.open { transform: none; }
  .nav__links a { font-size: 14px; }
  .nav__toggle { display: block; z-index: 70; }
  .nav--scrolled { padding: 12px 20px; }
  .tri, .vote-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .field-row, .checks { grid-template-columns: 1fr; }
  .story-img-frame::before { transform: translate(10px,10px); }
}
@media (max-width: 560px) {
  .wrap { padding: 0 22px; }
  .countdown { gap: 14px; }
  .checks { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue .line { animation: none; }
}

/* =========================================================================
   MULTI-PAGE additions
   ========================================================================= */
/* Solid nav for inner pages (no hero behind it) */
.nav--solid { background: rgba(15,42,31,0.95); backdrop-filter: blur(10px); box-shadow: 0 1px 0 rgba(176,139,70,0.25); }
.nav__links a.active { color: var(--gold-light); opacity: 1; }
.nav__links a.active::after { width: 100%; }

/* inner-page header band — clears the fixed nav */
.page-head { padding-top: clamp(120px, 15vw, 180px); }
.page-head .eyebrow { margin-top: 0; display: block; }
.crumb { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.2em; font-size: 11px; color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 2.4rem; }
.crumb:hover { color: var(--burgundy); }
.band--green .crumb, .band--burgundy .crumb { color: var(--gold-light); }

/* by-invitation ribbon */
.invite-only { display: inline-flex; align-items: center; gap: 10px; font-family: var(--label); text-transform: uppercase; letter-spacing: 0.2em; font-size: 11px; color: var(--gold-light); border: 1px solid rgba(205,169,104,0.5); padding: 8px 18px; border-radius: 100px; margin-bottom: 1.6rem; }

/* simple CTA band */
.cta-band { text-align: center; }
.cta-band h2 { font-family: var(--display); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }

/* =========================================================================
   FLOOR PLAN (top-down schematic)
   ========================================================================= */
.floorplan-wrap { margin-top: 3rem; }
.floorplan {
  position: relative; width: 100%; aspect-ratio: 16 / 10;
  background:
    repeating-linear-gradient(45deg, rgba(176,139,70,0.05) 0 12px, transparent 12px 24px),
    var(--cream-card);
  border: 2px solid var(--gold); box-shadow: var(--shadow-card);
}
.fp-zone {
  position: absolute; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 4px; border: 1px solid var(--line);
  font-family: var(--label); text-transform: uppercase; letter-spacing: 0.12em;
  font-size: clamp(8px, 1.05vw, 12px); color: var(--ink-soft); line-height: 1.3;
}
.fp-zone b { font-family: var(--display); text-transform: none; letter-spacing: 0; font-size: clamp(12px, 1.7vw, 1.25rem); color: var(--ink); font-weight: 500; }
.fp-zone--stage  { background: linear-gradient(180deg, rgba(108,34,51,0.16), rgba(108,34,51,0.07)); border-color: rgba(108,34,51,0.4); }
.fp-zone--stage b { color: var(--burgundy); }
.fp-zone--bar    { background: linear-gradient(90deg, rgba(22,58,43,0.16), rgba(22,58,43,0.06)); border-color: rgba(22,58,43,0.4); }
.fp-zone--bar b  { color: var(--green); }
.fp-zone--buffet { background: linear-gradient(270deg, rgba(176,139,70,0.2), rgba(176,139,70,0.07)); border-color: rgba(176,139,70,0.5); }
.fp-zone--buffet b { color: var(--gold); }
.fp-zone--dance  { background:
    repeating-linear-gradient(45deg, rgba(176,139,70,0.10) 0 14px, transparent 14px 28px);
  border: 1px dashed var(--gold); }
.fp-zone--facility { background: rgba(39,31,23,0.04); font-size: clamp(7px, 0.95vw, 10px); }
.fp-zone--entrance { background: var(--green); color: var(--on-dark); border-color: var(--green); letter-spacing: 0.18em; }

.fp-table {
  position: absolute; transform: translate(-50%, -50%);
  width: clamp(40px, 6.5vw, 74px); height: clamp(40px, 6.5vw, 74px);
  border-radius: 50%; background: var(--ivory); border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 600; color: var(--green);
  font-size: clamp(11px, 1.5vw, 1.1rem); box-shadow: 0 4px 10px -6px rgba(39,31,23,0.4);
}
.fp-table small { position: absolute; bottom: -16px; font-family: var(--label); font-size: 8px; letter-spacing: 0.1em; color: var(--ink-soft); text-transform: uppercase; white-space: nowrap; }

.fp-legend { display: flex; flex-wrap: wrap; gap: 14px 26px; justify-content: center; margin-top: 2rem; }
.fp-legend span { display: inline-flex; align-items: center; gap: 9px; font-family: var(--label); text-transform: uppercase; letter-spacing: 0.12em; font-size: 11px; color: var(--ink-soft); }
.fp-legend i { width: 14px; height: 14px; border-radius: 3px; display: inline-block; }
.lg-stage { background: rgba(108,34,51,0.45); } .lg-bar { background: rgba(22,58,43,0.5); }
.lg-buffet { background: rgba(176,139,70,0.6); } .lg-dance { background: repeating-linear-gradient(45deg, var(--gold) 0 4px, transparent 4px 8px); }
.lg-table { border-radius: 50%; border: 1.5px solid var(--gold); background: var(--ivory); }
.lg-entrance { background: var(--green); }

/* =========================================================================
   SEATING PLAN
   ========================================================================= */
.seating-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 22px; margin-top: 3rem; }
.table-card { background: var(--cream-card); border: 1px solid var(--line); padding: 24px 24px 26px; }
.table-card__head { display: flex; align-items: center; gap: 14px; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--line); }
.table-card__no { flex: none; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--gold); background: var(--ivory); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 600; color: var(--green); font-size: 1.2rem; }
.table-card__title { font-family: var(--display); font-size: 1.4rem; color: var(--ink); line-height: 1; }
.table-card__sub { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.14em; font-size: 10px; color: var(--burgundy); margin-top: 4px; }
.seat-list { list-style: none; margin: 0; padding: 0; counter-reset: seat; }
.seat-list li { counter-increment: seat; display: flex; align-items: center; gap: 10px; padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 1rem; color: var(--ink); }
.seat-list li::before { content: counter(seat); font-family: var(--label); font-size: 10px; color: var(--gold); width: 16px; flex: none; }
.seat-list li.empty { color: var(--ink-soft); font-style: italic; opacity: 0.6; }
.seat-list li:last-child { border-bottom: none; }
.seating-note { text-align: center; max-width: 60ch; margin: 2.4rem auto 0; color: var(--ink-soft); font-style: italic; }

@media (max-width: 560px) {
  .fp-zone { font-size: 8px; }
  .fp-zone b { font-size: 10px; }
}

/* =========================================================================
   STAG — world map + pins
   ========================================================================= */
.stagmap-wrap { margin-top: 3rem; }
.stagmap {
  position: relative; width: 100%; aspect-ratio: 2 / 1;
  background: var(--green-deep); border: 1px solid rgba(205,169,104,0.45);
  overflow: hidden; box-shadow: var(--shadow-card);
}
.stagmap__img { position: absolute; inset: 0; width: 100%; height: 100%; }
.stagmap__grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background:
    repeating-linear-gradient(90deg, rgba(205,169,104,0.12) 0 1px, transparent 1px 8.33%),
    repeating-linear-gradient(0deg, rgba(205,169,104,0.12) 0 1px, transparent 1px 12.5%);
}
.stagmap__equator { position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: rgba(205,169,104,0.3); z-index: 2; }
.map-pin {
  position: absolute; transform: translate(-50%, -100%); z-index: 5;
  background: none; border: none; cursor: pointer; padding: 0;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
}
.map-pin__dot {
  width: 18px; height: 18px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  background: var(--gold); border: 2px solid var(--on-dark);
  box-shadow: 0 4px 10px -3px rgba(0,0,0,0.6); transition: all .25s ease;
}
.map-pin__label {
  font-family: var(--label); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 11px; color: var(--on-dark); background: rgba(15,42,31,0.85);
  border: 1px solid rgba(205,169,104,0.5); padding: 4px 10px; border-radius: 100px;
  white-space: nowrap; transition: all .25s ease;
}
.map-pin__count { color: var(--gold-light); margin-left: 6px; }
.map-pin:hover .map-pin__dot { transform: rotate(-45deg) scale(1.18); }
.map-pin.is-voted .map-pin__dot { background: var(--burgundy); border-color: var(--gold-light); transform: rotate(-45deg) scale(1.25); }
.map-pin.is-voted .map-pin__label { background: var(--burgundy); border-color: var(--gold-light); color: var(--on-dark); }
.map-note { text-align: center; margin-top: 1.4rem; font-family: var(--label); text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; color: var(--on-dark-soft); }

/* green callout box (best-men / no-gifts notes) */
.callout {
  display: flex; gap: 22px; align-items: flex-start;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(205,169,104,0.4);
  padding: 30px 34px; margin-top: 2.8rem;
}
.callout__seal { flex: none; width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--gold-light); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 1.3rem; color: var(--gold-light); }
.callout h4 { font-family: var(--display); font-size: 1.5rem; margin-bottom: 0.4rem; }
.callout p { margin: 0; }
.callout--light { background: var(--cream-card); border-color: var(--line); }
.callout--light h4 { color: var(--green); }
.callout--light p { color: var(--ink-soft); }
.callout--light .callout__seal { border-color: var(--gold); color: var(--gold); }

/* interest / stay confirmation success */
.mini-success { display: none; text-align: center; padding: 1.6rem 1rem; }
.mini-success.show { display: block; animation: fadein .5s ease; }

/* =========================================================================
   HONEYMOON BOX
   ========================================================================= */
.honeybox {
  background: linear-gradient(160deg, #fdfaf2, #f1e6cf);
  border: 1px solid var(--gold); box-shadow: var(--shadow-soft);
  padding: clamp(34px, 5vw, 60px); margin-top: 3rem; text-align: center; position: relative;
}
.honeybox::before { content: ""; position: absolute; inset: 12px; border: 1px solid var(--line); pointer-events: none; }
.honeybox__icon {
  width: 70px; height: 70px; margin: 0 auto 1.2rem; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--green-soft), var(--green-deep));
  border: 1px solid var(--gold); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
}
.honeybox h3 { font-family: var(--display); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--green); }
.honeybox .lede { margin: 1rem auto 0; }
.honey-total { font-family: var(--display); font-size: 2.4rem; color: var(--burgundy); margin-top: 1.4rem; }
.honey-total span { display: block; font-family: var(--label); text-transform: uppercase; letter-spacing: 0.18em; font-size: 11px; color: var(--ink-soft); margin-top: 4px; }
.honey-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 2rem 0 0.4rem; }
.honey-chip {
  border: 1px solid var(--gold); border-radius: 10px; padding: 16px 20px; min-width: 130px;
  text-decoration: none; color: var(--ink); background: rgba(255,255,255,0.4);
  transition: all .24s ease; display: flex; flex-direction: column; gap: 4px; cursor: pointer;
}
.honey-chip:hover { background: var(--gold); color: var(--green-deep); transform: translateY(-3px); }
.honey-chip b { font-family: var(--display); font-size: 1.5rem; }
.honey-chip span { font-family: var(--label); text-transform: uppercase; letter-spacing: 0.12em; font-size: 10px; }

/* ---- Koverta (Croatian tradition) story block ---- */
.koverta {
  display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: clamp(28px, 4vw, 56px);
  max-width: 960px; margin: 2.6rem auto 0; padding: clamp(28px, 4vw, 52px);
  background: var(--cream-card); border: 1px solid var(--line); box-shadow: var(--shadow-soft); position: relative;
}
.koverta::before { content: ""; position: absolute; inset: 12px; border: 1px solid var(--line); pointer-events: none; }
.koverta__media {
  position: relative; aspect-ratio: 1.5 / 1; align-self: center;
  background: linear-gradient(158deg, #fdfaf2, #efe2c7);
  border: 1px solid var(--gold); box-shadow: 0 14px 30px -18px rgba(40,18,12,0.6);
}
/* diagonal envelope pocket seams */
.koverta__media::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top right, transparent calc(50% - 0.6px), rgba(176,139,70,0.32) 50%, transparent calc(50% + 0.6px)),
    linear-gradient(to top left,  transparent calc(50% - 0.6px), rgba(176,139,70,0.32) 50%, transparent calc(50% + 0.6px));
}
/* top flap */
.koverta__flap {
  position: absolute; top: 0; left: 0; width: 100%; height: 58%;
  background: linear-gradient(168deg, #f7eed9, #e7d5b1);
  border-bottom: 1px solid var(--gold);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
/* wax-seal style stamp at the flap tip */
.koverta__stamp {
  position: absolute; left: 50%; top: 58%; transform: translate(-50%, -50%); z-index: 2;
  width: clamp(64px, 9vw, 86px); height: clamp(64px, 9vw, 86px); border-radius: 50%;
  background: radial-gradient(circle at 36% 30%, var(--burgundy), var(--burgundy-deep));
  border: 1px solid rgba(230,211,168,0.5); box-shadow: 0 4px 10px -4px rgba(45,10,15,0.6);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--label); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 11px; color: var(--gold-pale); text-align: center;
}
.koverta__body h3 { font-family: var(--display); font-size: clamp(1.7rem, 3.2vw, 2.4rem); color: var(--green); line-height: 1.1; }
.koverta__body p { color: var(--ink-soft); margin: 1.85rem 0 0; }
.koverta__body > p:first-of-type { margin-top: 1.2rem; }
.koverta__note {
  font-family: var(--label); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 12px; color: var(--burgundy); border-top: 1px solid var(--line); padding-top: 1.1rem; margin-top: 1.4rem !important;
}

@media (max-width: 760px) {
  .koverta { grid-template-columns: 1fr; text-align: center; }
  .koverta__media { width: min(320px, 80%); margin: 0 auto; }
  .koverta__note { border-top: none; }
}

/* venue showcase tweaks (wedding page, no funding) */
.venues--show .venue-card { opacity: 1; }
.venues--show .venue-card__badge { background: var(--ivory); border-color: var(--line); color: var(--burgundy); }
.venue-card.dream .venue-card__badge { background: var(--gold); color: var(--green-deep); border-color: var(--gold); }

@media (max-width: 720px) {
  .map-pin__label { font-size: 9px; padding: 3px 7px; }
  .callout, .honeybox { padding-left: 22px; padding-right: 22px; }
  .callout { flex-direction: column; text-align: center; align-items: center; }
}
