/* ============================================================
   Maranda & Brandon — Wedding Website
   Palette matches the approved mockup exactly. Swap these six
   variables to re-theme the whole site from one place.
   ============================================================ */

/* Custom fonts (supplied font files, self-hosted — no external request) */
@font-face {
  font-family: "Karatone";
  src: url("fonts/Karatone.woff2") format("woff2"),
       url("fonts/Karatone.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Boulders Beach Script";
  src: url("fonts/BouldersBeachScript.woff2") format("woff2"),
       url("fonts/BouldersBeachScript.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Amoresa Aged";
  src: url("fonts/AmoresaAged.woff2") format("woff2"),
       url("fonts/AmoresaAged.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #3d2b22;         /* dark brown — headings, dark buttons, footer (full site) */
  --brown: #5a4636;       /* secondary dark brown */
  --rose: #b7787a;        /* primary accent — buttons, icons, links */
  --rose-deep: #8c5b5d;   /* footer band (landing + weekend/travel), hover states */
  --pink: #d787ad;        /* script/italic accent color, used sparingly */
  --cream: #f2e9e1;       /* page background */
  --card: #fbf6f0;        /* card / panel background */
  --sage: #a8b399;        /* tertiary accent */
  --gold: #cba977;        /* tertiary accent — borders, "book" buttons */
  --line: #e6dace;        /* hairline borders */
  --white: #ffffff;

  --font-display: "Karatone", "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-ui: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Amoresa Aged", "Boulders Beach Script", "Parisienne", cursive;

  --max-width: 1120px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
h3.label {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.4em;
}
p { margin: 0 0 1.1em; }

.script { font-family: var(--font-script); font-weight: 400; color: var(--pink); font-size: 1.4em; line-height: 1; letter-spacing: -0.02em; }

.eyebrow {
  display: block;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.76rem;
  color: inherit;
  opacity: 0.85;
  font-weight: 500;
  margin-bottom: 10px;
}

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
.center { text-align: center; }

/* ---------- Heart divider ---------- */
.hdiv { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 16px auto; }
.hdiv::before, .hdiv::after { content: ""; height: 1px; width: 44px; background: currentColor; opacity: 0.35; }
.hdiv svg { width: 14px; height: 14px; opacity: 0.7; }

/* ---------- Photo placeholder (swap for real photos later) ---------- */
.photo {
  position: relative;
  background: linear-gradient(135deg, #ded0c2, #c9b6a8 45%, #b7938a);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 160px;
}
.photo.dark { background: linear-gradient(135deg, #4a3830, #2c211b 55%, #1c1512); }
.photo::after {
  content: attr(data-caption);
  position: absolute;
  bottom: 10px; left: 10px; right: 10px;
  font-family: var(--font-ui);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  background: rgba(0,0,0,0.28);
  padding: 5px 9px;
  border-radius: 3px;
  text-align: center;
}
.photo svg { width: 34px; height: 34px; opacity: 0.55; color: #fff; }

/* ---------- Real embedded photo/illustration (no longer a placeholder) ---------- */
.photo-img { border-radius: 4px; overflow: hidden; background: var(--card); }
.photo-img img { display: block; width: 100%; height: auto; }

/* ---------- Hero band using a real venue photo ---------- */
.hero-photo.hero-with-photo {
  background:
    linear-gradient(180deg, rgba(18,14,10,0.58) 0%, rgba(18,14,10,0.52) 32%, rgba(18,14,10,0.64) 58%, rgba(18,14,10,0.8) 100%),
    url("../images/venue-hero.jpg");
  background-size: cover;
  background-position: center 48%;
  min-height: 680px;
}
@media (max-width: 760px) {
  .hero-photo.hero-with-photo { min-height: 560px; }
}
.hero-photo.hero-with-photo::after {
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.4) 100%);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 4px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, opacity .2s ease;
}
.btn:hover { background: var(--ink); color: var(--white); }
.btn.solid { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn.solid:hover { opacity: 0.85; }
.btn.rose { border-color: var(--rose); color: var(--rose); }
.btn.rose:hover { background: var(--rose); color: var(--white); }
.btn.gold { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn.gold:hover { opacity: 0.85; }
.btn[disabled], .btn.selected { }
.btn.selected { background: var(--ink); color: var(--white); }

/* ---------- Pre-launch banner (shown on inner pages only, never landing) ---------- */
.prelaunch-banner {
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 9px 16px;
}
html.launched [data-prelaunch-only] { display: none !important; }
html:not(.launched) [data-launched-only] { display: none !important; }

/* ---------- Header / Nav (full site only — landing page has none) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(242, 233, 225, 0.94);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 14px 28px;
  display: flex; flex-wrap: nowrap; align-items: center; justify-content: space-between; gap: 16px;
}
.monogram {
  display: flex; align-items: center; justify-content: center;
  width: 54px; height: 66px;
  border: 1px solid var(--ink);
  border-radius: 50% / 42%;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink);
  text-align: center;
  line-height: 1.15;
  flex-shrink: 0;
  padding-top: 2px;
}
.monogram .amp { display: block; font-style: italic; font-size: 0.85em; opacity: 0.75; }

nav.main-nav { display: flex; align-items: center; gap: 22px; flex-wrap: nowrap; }
nav.main-nav a {
  font-family: var(--font-ui); font-size: 0.8rem; letter-spacing: 0.09em; text-transform: uppercase;
  text-decoration: none; color: var(--ink); opacity: 0.75;
  padding: 6px 0; border-bottom: 1px solid transparent; white-space: nowrap;
  transition: opacity .2s ease, border-color .2s ease;
}
nav.main-nav a:hover, nav.main-nav a.current { opacity: 1; border-color: var(--rose); }
nav.main-nav a.pill {
  opacity: 1; padding: 9px 22px; border-radius: 3px; background: var(--rose); color: var(--white);
}
nav.main-nav a.pill:hover { background: var(--rose-deep); }

.menu-toggle {
  display: none; background: none; border: 1px solid var(--line); border-radius: 6px;
  padding: 8px 12px; cursor: pointer; font-family: var(--font-ui); font-size: 0.85rem; flex-shrink: 0;
}
@media (max-width: 1010px) {
  nav.main-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--cream);
    border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start;
    padding: 10px 28px 22px; gap: 14px; display: none; flex-wrap: wrap;
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a.pill { align-self: flex-start; }
  .menu-toggle { display: inline-block; }
}

/* ---------- Hero (both landing + inner-page hero photo band) ---------- */
.hero-photo {
  position: relative;
  min-height: 460px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--white); padding: 60px 28px;
  background:
    radial-gradient(circle at 18% 28%, rgba(203,169,119,0.30) 0%, rgba(203,169,119,0) 7%),
    radial-gradient(circle at 82% 20%, rgba(203,169,119,0.22) 0%, rgba(203,169,119,0) 6%),
    radial-gradient(circle at 12% 78%, rgba(215,135,173,0.18) 0%, rgba(215,135,173,0) 6%),
    radial-gradient(circle at 88% 72%, rgba(203,169,119,0.26) 0%, rgba(203,169,119,0) 7%),
    radial-gradient(circle at 55% 88%, rgba(203,169,119,0.16) 0%, rgba(203,169,119,0) 8%),
    linear-gradient(160deg, #4a3830, #241c17 60%, #17110d);
  overflow: hidden;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 40%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.hero-photo .hero-caption {
  position: absolute; bottom: 14px; right: 18px; z-index: 2;
  font-family: var(--font-ui); font-size: 0.62rem; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
}
.hero-photo .hero-inner { position: relative; z-index: 2; max-width: 720px; }
.hero-photo .eyebrow { color: var(--gold); }
.hero-photo h1 { color: var(--white); font-family: var(--font-script); font-weight: 400; letter-spacing: -0.01em; }
.hero-photo .amp-script {
  color: var(--gold); font-style: normal; margin: 0 0.06em;
}
.hero-photo .date-line {
  font-family: var(--font-ui); letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.95rem; margin-top: 10px;
}
.hero-photo .venue-line { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--gold); margin-top: 6px; letter-spacing: 0.01em; }
.hero-photo .sub { max-width: 480px; margin: 20px auto 0; opacity: 0.9; font-size: 0.95rem; letter-spacing: 0.03em; }
.hero-photo .sub-fine { max-width: 420px; margin: 8px auto 0; opacity: 0.75; font-size: 0.82rem; line-height: 1.6; }
.heart-divider { display: block; height: auto; margin: 10px auto; }
.hero-photo .hero-heart-divider { width: 170px; margin: 8px auto; opacity: 0.95; }
.landing-footer .footer-heart-divider { width: 130px; margin: 16px auto 0; opacity: 0.95; }
.hero-photo.short { min-height: 300px; }

/* ---------- Quick-RSVP strip attached under the landing hero ---------- */
.hero-rsvp-strip {
  background: var(--rose-deep);
  color: var(--white);
  text-align: center;
  padding: 26px 24px;
}
.hero-rsvp-strip .wrap { max-width: 620px; }
.hero-rsvp-strip .rsvp-strip-text {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  margin: 0 0 16px;
}
.hero-rsvp-strip .rsvp-strip-text strong { color: var(--gold); letter-spacing: 0.08em; }
.hero-rsvp-strip .poll-buttons { margin-top: 0; }
.hero-rsvp-strip .poll-reveal input[type="text"] {
  color: var(--white); border-bottom-color: rgba(255,255,255,0.5);
}
.hero-rsvp-strip .poll-reveal input[type="text"]::placeholder { color: rgba(255,255,255,0.75); }
.hero-rsvp-strip .poll-reveal input[type="text"]:focus { border-bottom-color: var(--white); }
.hero-rsvp-strip .btn.solid { background: var(--white); color: var(--rose-deep); border-color: var(--white); }
.hero-rsvp-strip .btn.solid:hover { opacity: 0.85; }
.hero-rsvp-strip .poll-success { color: var(--white); }
.btn.on-dark { border-color: var(--white); color: var(--white); }
.btn.on-dark:hover, .btn.on-dark.selected { background: var(--white); color: var(--rose-deep); }

/* ---------- Landing page specific ---------- */
.landing-footer {
  background: var(--rose-deep); color: var(--white);
  text-align: center; padding: 42px 28px 46px;
}
.landing-footer .script { font-family: var(--font-script); color: var(--white); font-size: 2rem; letter-spacing: -6px; }
.landing-footer p { font-family: var(--font-ui); font-size: 0.78rem; letter-spacing: 0.08em; opacity: 0.9; margin: 4px 0; }
.landing-footer .hdiv { color: var(--white); max-width: 300px; }

/* ---------- Sections ---------- */
section.block { padding: 64px 0; }
section.block.tight { padding: 44px 0; }
section.block.alt { background: var(--card); }
.lead { max-width: 620px; margin: 0 auto; color: var(--brown); }

.placeholder-note {
  display: inline-block; margin-top: 10px; font-family: var(--font-ui); font-size: 0.72rem;
  letter-spacing: 0.04em; color: var(--rose-deep); background: var(--card);
  border: 1px dashed var(--gold); border-radius: 6px; padding: 6px 12px;
}

/* ---------- Grids / cards ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
@media (max-width: 860px) { .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; } }

.panel {
  background: var(--card); border: 1px solid var(--line); border-radius: 6px; padding: 28px 24px;
}

.icon-circle {
  width: 40px; height: 40px; margin: 0 auto 12px; border-radius: 50%;
  border: 1px solid var(--rose); display: flex; align-items: center; justify-content: center; color: var(--rose);
}
.icon-circle svg { width: 18px; height: 18px; }
.icon-circle img { width: 22px; height: 22px; object-fit: contain; }
.icon-circle.icon-circle-lg { width: 72px; height: 72px; border-width: 1.5px; margin-bottom: 16px; }
.icon-circle.icon-circle-lg svg { width: 32px; height: 32px; }
.icon-circle.icon-circle-lg img { width: 34px; height: 34px; }

/* ---------- Essentials / poll row (landing) ---------- */
.essentials-item { text-align: center; }
.essentials-item .icon-circle { border-color: var(--gold); color: var(--gold); }
.essentials-item h4 { font-family: var(--font-ui); text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.1em; margin: 0 0 6px; }
.essentials-item p { font-size: 0.92rem; color: var(--brown); margin: 0; }

.poll-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.poll-buttons .btn { min-width: 128px; }

/* Poll panel — a more considered look than a plain bordered box */
.poll-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 44px 40px;
  box-shadow: 0 16px 40px rgba(61, 43, 34, 0.08);
}
.poll-panel .hdiv { color: var(--rose); max-width: 190px; margin: 0 auto 28px; }
.poll-form input[type="text"] {
  width: 100%; max-width: 320px; margin: 0 auto 28px; display: block;
  border: none; border-bottom: 1.5px solid var(--line); border-radius: 0;
  background: transparent; padding: 10px 6px; text-align: center;
  font-family: var(--font-display); font-size: 1.2rem; color: var(--ink);
  transition: border-color .2s ease;
}
.poll-form input[type="text"]:focus { outline: none; border-bottom-color: var(--rose); }
.poll-form input[type="text"]::placeholder { color: var(--brown); opacity: 0.55; font-family: var(--font-body); font-style: italic; }
.poll-panel .btn.solid { padding: 13px 40px; }
.poll-success { display: none; margin-top: 16px; color: var(--rose-deep); font-family: var(--font-ui); font-size: 0.9rem; text-align: center; }
.form-note { font-family: var(--font-ui); font-size: 0.74rem; color: var(--brown); opacity: 0.8; margin-top: 18px; text-align: center; }

/* ---------- Coming soon strip (landing) ---------- */
.coming-strip { text-align: center; }
.coming-strip .icon-circle { width: 84px; height: 84px; border-color: var(--rose); }
.coming-strip .icon-circle svg { width: 36px; height: 36px; }
.coming-strip .icon-circle img { width: 45px; height: 45px; }
.coming-strip h4 { font-family: var(--font-ui); text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.08em; margin: 10px 0 4px; }
.coming-strip p { font-size: 0.85rem; color: var(--brown); margin: 0; }
.coming-strip > div { position: relative; padding: 0 12px; }
.coming-strip > div:not(:last-child)::after {
  content: "";
  position: absolute; top: 6px; bottom: 6px; right: -10px;
  width: 1px; background: var(--line);
}
@media (max-width: 860px) { .coming-strip > div::after { display: none; } }

.coming-soon-wrap { position: relative; }
.corner-branch { position: absolute; width: 90px; height: auto; opacity: 0.35; color: var(--gold); pointer-events: none; }
.corner-branch.left { bottom: -10px; left: -10px; transform: scaleX(-1); }
.corner-branch.right { bottom: -10px; right: -10px; }
@media (max-width: 760px) { .corner-branch { display: none; } }

/* ---------- Essentials + Planning Poll split card (landing) ---------- */
.split-card {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line); border-radius: 16px; background: var(--card);
  overflow: hidden;
}
.split-card-col { padding: 40px 38px; }
.split-card-col + .split-card-col { border-left: 1px solid var(--line); }
.split-card-col .eyebrow { justify-content: center; }
.split-card-col .split-head { text-align: center; margin-bottom: 26px; }
.split-card-col h3.split-title { font-size: 1.3rem; margin: 0 0 6px; }
.split-card-col .split-sub { font-size: 0.86rem; color: var(--brown); margin: 0 0 20px; }
.essentials-mini { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
.essentials-mini .essentials-item h4 { font-size: 0.7rem; }
.essentials-mini .essentials-item p { font-size: 0.84rem; }
@media (max-width: 780px) {
  .split-card { grid-template-columns: 1fr; }
  .split-card-col + .split-card-col { border-left: none; border-top: 1px solid var(--line); }
}

.poll-reveal { display: none; margin-top: 20px; }
.poll-reveal.shown { display: block; }
.poll-reveal input[type="text"] {
  width: 100%; margin: 0 0 14px; display: block;
  border: none; border-bottom: 1.5px solid var(--line); border-radius: 0;
  background: transparent; padding: 8px 4px; text-align: center;
  font-family: var(--font-display); font-size: 1.1rem; color: var(--ink);
}
.poll-reveal input[type="text"]:focus { outline: none; border-bottom-color: var(--rose); }

/* ---------- Coming soon card (inner pages, pre-launch) ---------- */
.coming-soon-card {
  max-width: 560px; margin: 90px auto; text-align: center; padding: 48px 36px;
  background: var(--card); border: 1px solid var(--line); border-radius: 6px;
}

/* ---------- Palette swatches ---------- */
.palette-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.swatch { text-align: center; }
.swatch .chip { width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 8px; border: 1px solid rgba(0,0,0,0.08); }
.swatch span { font-family: var(--font-ui); font-size: 0.7rem; color: var(--brown); }

/* ---------- Timeline (Our Story / Weekend) ---------- */
.timeline { display: flex; justify-content: space-between; gap: 10px; position: relative; }
.timeline::before { content: ""; position: absolute; top: 20px; left: 5%; right: 5%; height: 1px; background: var(--line); }
.timeline-item { flex: 1; text-align: center; position: relative; z-index: 1; }
.timeline-item .icon-circle { background: var(--cream); }
.timeline-item h4 { font-family: var(--font-ui); text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.08em; margin: 8px 0 2px; }
.timeline-item .when { font-size: 0.82rem; color: var(--rose-deep); margin-bottom: 4px; }
.timeline-item p { font-size: 0.82rem; color: var(--brown); }
@media (max-width: 780px) { .timeline { flex-direction: column; gap: 26px; } .timeline::before { display: none; } }

/* ---------- Day schedule list (Weekend) ---------- */
.day-schedule { border: 1px solid var(--line); border-radius: 6px; background: var(--card); overflow: hidden; }
.day-schedule .row { display: flex; gap: 16px; padding: 14px 20px; border-bottom: 1px solid var(--line); align-items: baseline; }
.day-schedule .row:last-child { border-bottom: none; }
.day-schedule .time { font-family: var(--font-ui); font-weight: 500; white-space: nowrap; min-width: 76px; }
.day-schedule .what { font-family: var(--font-display); font-size: 1.1rem; }
.day-schedule .what small { display: block; font-family: var(--font-body); font-style: italic; font-size: 0.85rem; color: var(--brown); }

/* ---------- Quote block ---------- */
.quote-block { background: var(--card); padding: 46px 28px; }
.quote-block blockquote { max-width: 640px; margin: 0 auto; font-family: var(--font-display); font-size: 1.4rem; font-style: italic; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 6px; }

/* ---------- Bridge / redirect pages ---------- */
.bridge { min-height: 66vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 28px; }
.bridge-box { max-width: 460px; }
.spinner { width: 32px; height: 32px; border: 2px solid var(--line); border-top-color: var(--rose); border-radius: 50%; margin: 20px auto 0; animation: spin .9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Footer (full site, dark) ---------- */
footer.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.85);
  padding: 40px 28px; text-align: center; font-family: var(--font-ui); font-size: 0.82rem;
}
footer.site-footer.mauve { background: var(--rose-deep); }
footer.site-footer .foot-wrap { max-width: var(--max-width); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
footer.site-footer .monogram { border-color: rgba(255,255,255,0.6); color: var(--white); }
footer.site-footer .script { color: var(--gold); }

.hashtag-line {
  font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.72rem; color: var(--gold);
}
footer.site-footer .hashtag-line { color: var(--gold); }

.script-fallback { font-family: var(--font-display); font-style: italic; color: var(--rose-deep); }
