/* ═══════════════════════════════════════════════════════════════
   LIVE PALETTE (v2 "ivory cream"): Kelsey & Jonah's wedding colors.
   white · ivory · cream · linen · stone · black · antique gold accent.
   No terracotta, no green. Linked by index.html AFTER styles.css so it wins.
   Colors only, all fonts match the base site, EXCEPT our signatures, which
   stay in the Pinyon script. Remove the <link> in index.html to revert.
═══════════════════════════════════════════════════════════════ */
@import url("https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap");

:root{
  /* ── neutral field: IVORY CREAM (v2), warm like v1 but with the orange/golden
        undertone pulled out, so it reads as clean paper-ivory rather than cream-orange ── */
  --ivory:#EFEDE5;         /* primary ground, soft ivory cream */
  --ivory-2:#E5E1D8;       /* deeper cream, alternating sections */
  --cream:#F6F4ED;
  --white:#FCFBF8;
  --ink:#131210;           /* near-true black (high-contrast, menu-like) */
  --ink-soft:#55524A;
  --stone:#8A8478;         /* small-cap labels */
  --stone-warm:#DBD6CA;
  --line:rgba(19,18,16,.14);
  --line-2:rgba(19,18,16,.06);

  /* ── the one accent: antique, tarnished gold (never bright/metallic) ── */
  --brass:#A6884F;
  --brass-lt:#CDB484;      /* gold on black */
  --brass-line:rgba(166,136,79,.5);

  /* ── retire the estate terracotta / oxblood: fold them into black + gold
        so every former peach/rust moment reads black-on-stone with gold reserved ── */
  --terra:#131210;
  --terra-lt:#CDB484;
  --oxblood:#1A1A18;
  --oxblood-lt:#2A2A27;

  /* script reserved ONLY for our signatures (see below) */
  --script:"Pinyon Script","Cormorant",cursive;
}

/* Type: everything reverts to the live site's fonts. The ONE exception is our
   signatures: the invitation/letter sign-offs and the "Kelsey and Jonah" line on
   travel tips, which stay in the formal script (echoing the menu). */
.invite__sign{font-family:var(--script);font-size:2.1rem;color:var(--ink)}
.psa__tipsign{font-family:var(--script);font-size:1.25rem}

/* Date keeps the antique-gold accent (a color, not a font change) */
.hero__date{color:var(--brass)}

/* Gate: the couple's name reads "Kelsey and Jonah", small muted italic "and",
   matching the hero (no ampersand). */
.gate__names em{font-family:var(--display);font-style:italic;font-weight:400;color:var(--ink-soft);
  font-size:.5em;line-height:1;padding:0 .12em}

/* ── repaint the hardcoded warm-cream grounds to stone ── */
.hero{background:linear-gradient(180deg,#F5F3EC 0%,#F1EFE8 34%,var(--ivory) 66%,var(--ivory-2) 100%)}
.hero__sky{background:
  radial-gradient(94% 44% at 50% 94%,rgba(239,237,229,.96),rgba(239,237,229,.5) 52%,rgba(239,237,229,0) 82%),
  linear-gradient(180deg,rgba(239,237,229,0) 50%,rgba(239,237,229,.6) 82%,rgba(239,237,229,.85) 100%)}
.vibe-b{background:linear-gradient(180deg,#DDD9CD,#D2CDC0)}          /* ivory stone */
.vibe-dark{background:radial-gradient(130% 110% at 50% 0%,#1B1B19,#050505)} /* the one black moment */
.topbar.scrolled{background:rgba(239,237,229,.92)}
.gate{background:radial-gradient(120% 90% at 50% -10%,#F8F7F2,var(--ivory) 45%,var(--ivory-2))}
/* mobile menu only, desktop .nav is a transparent inline bar and must stay so */
@media(max-width:820px){
  .nav{background:radial-gradient(120% 100% at 50% 0%,#1B1B19,#050505)}
}

/* ── recolor the hardcoded terracotta plane icons to ink. IMPORTANT: only the
      plane, not .doc__fly itself (its background IS the dashed flight line). ── */
.flight__plane{
  background:no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23131210'%3E%3Cpath d='M2 21L23 12L2 3L2 10L17 12L2 14Z'/%3E%3C/svg%3E")}
.doc__fly::after{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23131210'%3E%3Cpath d='M2 21L23 12L2 3L2 10L17 12L2 14Z'/%3E%3C/svg%3E")}
.flight::before{border-top-color:rgba(19,18,16,.28)}

/* ── RSVP "Cleared" stamp → antique gold on the black customs card
      (still the standout moment, now on-palette instead of peach) ── */
.decl__stamp{border-color:var(--brass-lt);color:var(--brass-lt);
  box-shadow:0 0 20px rgba(205,180,132,.35);text-shadow:0 0 9px rgba(205,180,132,.3)}
