/* ==========================================================================
   Sons & Daughters Foundation — "Morning Light" design system
   Warm, organic, editorial. Palette drawn from the SDF forest-green logo
   and the She Rises Collective blush/olive artwork.
   ========================================================================== */

:root {
  /* Color */
  --cream: #FAF5EC;          /* page background */
  --paper: #FFFDF8;          /* cards */
  --blush: #F4E4D8;          /* warm section band */
  --blush-deep: #EBD3C2;
  --rose: #C2807C;           /* She Rises rose */
  --rose-soft: #E9C9C4;
  --olive: #75814F;          /* She Rises olive */
  --sage-light: #EAEDDD;
  --sage: #97A385;
  --evergreen: #1E3B2A;      /* SDF green: type, buttons */
  --ever-deep: #142A1D;      /* footer */
  --terracotta: #B4643C;     /* warm accent */
  --gold: #C2A05C;
  --gold-light: #F0E3C6;
  --ink: #27251D;
  --ink-soft: #6A6557;
  --line: #E7DCC8;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius: 22px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --arch: 999px 999px 22px 22px;
  --shadow: 0 18px 44px -18px rgba(39, 37, 29, 0.22);
  --shadow-soft: 0 8px 22px -10px rgba(39, 37, 29, 0.14);

  --container: 1180px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 520;
  line-height: 1.08;
  color: var(--evergreen);
  margin: 0 0 0.55em;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.9rem, 7vw, 5.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; color: var(--ink); margin: 0 0 0.6em; }
h1 em, h2 em, h3 em {
  font-style: italic; font-weight: 480; color: var(--terracotta);
}
p { margin: 0 0 1em; }
a { color: var(--terracotta); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--evergreen); }
ul { padding-left: 1.2em; }
strong { font-weight: 650; }

:focus { outline: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--evergreen); color: var(--cream);
  padding: 0.8rem 1.4rem; border-radius: 0 0 var(--radius-sm) 0;
  z-index: 200; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; color: var(--cream); }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: clamp(4.2rem, 9vw, 7rem) 0; }
.section--tight { padding: clamp(2.8rem, 5vw, 4.2rem) 0; }
.section--blush { background: var(--blush); }
.section--sagelt { background: var(--sage-light); }
.section--paper { background: var(--paper); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--terracotta);
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1.5px; background: var(--gold); }
.eyebrow--center::after { content: ""; width: 34px; height: 1.5px; background: var(--gold); }
.center .eyebrow, .eyebrow--center { justify-content: center; }

.lede { font-size: clamp(1.12rem, 1.9vw, 1.32rem); line-height: 1.65; color: var(--ink-soft); max-width: 46em; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.measure { max-width: 46em; }
.small { font-size: 0.9rem; color: var(--ink-soft); }

.grid { display: grid; gap: 1.6rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.2rem, 6vw, 5.5rem); align-items: center; }
.split--wide { grid-template-columns: 1.15fr 0.85fr; }
@media (max-width: 880px) { .split, .split--wide { grid-template-columns: 1fr; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 50px; padding: 0.8rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body); font-weight: 620; font-size: 0.98rem;
  text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--primary { background: var(--evergreen); color: var(--cream); }
.btn--primary:hover { background: var(--ever-deep); color: var(--cream); }
.btn--donate { background: var(--terracotta); color: #FFF8F0; }
.btn--donate:hover { background: #9C5330; color: #FFF8F0; }
.btn--outline { background: transparent; color: var(--evergreen); border-color: var(--evergreen); }
.btn--outline:hover { background: rgba(30,59,42,0.07); color: var(--evergreen); }
.btn--rose { background: var(--rose); color: #FFF6F3; }
.btn--rose:hover { background: #A9645F; color: #FFF6F3; }
.btn--sm { min-height: 42px; padding: 0.55rem 1.3rem; font-size: 0.92rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }
.text-link {
  font-weight: 650; color: var(--evergreen); text-decoration: none;
  border-bottom: 2px solid var(--gold); padding-bottom: 2px;
}
.text-link:hover { color: var(--terracotta); }

/* ---------- Alert ribbon ---------- */
.alert-banner {
  background: var(--evergreen); color: var(--cream);
  font-size: 0.93rem; text-align: center; padding: 0.7rem 1rem;
}
.alert-banner a { color: var(--gold-light); font-weight: 650; }
.alert-banner a:hover { color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 245, 236, 0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 80px; }
.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brand img { height: 46px; width: auto; }
.brand__name { font-family: var(--font-display); font-weight: 560; color: var(--evergreen); font-size: 1.14rem; line-height: 1.08; }
.brand__name small { display: block; font-family: var(--font-body); font-weight: 560; font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--terracotta); margin-top: 3px; }

.site-nav { display: flex; align-items: center; gap: 0.15rem; }
.site-nav a { text-decoration: none; color: var(--ink); font-weight: 560; font-size: 0.97rem; padding: 0.6rem 0.85rem; border-radius: var(--radius-pill); }
.site-nav a:hover { background: var(--blush); color: var(--evergreen); }
.site-nav a[aria-current="page"] { color: var(--evergreen); font-weight: 700; background: var(--blush); }
.site-nav .btn { margin-left: 0.7rem; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.6rem; border-radius: var(--radius-sm); color: var(--evergreen); }
@media (max-width: 1040px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0.2rem;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 0.9rem 1.5rem 1.3rem; box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 0.9rem 1rem; }
  .site-nav .btn { margin: 0.5rem 0 0; }
  .brand img { height: 40px; }
}

/* ---------- Decorative pieces ---------- */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55; pointer-events: none; }
.rays {
  position: absolute; pointer-events: none; opacity: 0.5; color: var(--gold);
}
.hero, .page-hero, .invite, .newsletter-band { position: relative; overflow: hidden; }

/* ---------- Hero (light, editorial) ---------- */
.hero { background: var(--cream); }
.hero__inner {
  display: grid; grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2.4rem, 6vw, 5rem); align-items: center;
  padding: clamp(3.4rem, 7vw, 6rem) 0 clamp(3.8rem, 8vw, 6.4rem);
  position: relative;
}
@media (max-width: 880px) { .hero__inner { grid-template-columns: 1fr; } }
.hero h1 { margin-bottom: 0.45em; }
.hero .lede { margin-bottom: 1.8rem; }
.hero__note { margin-top: 1.2rem; font-size: 0.95rem; color: var(--ink-soft); }
.hero__note a { font-weight: 650; }

.underline-accent { position: relative; white-space: nowrap; }
.underline-accent svg {
  position: absolute; left: 0; right: 0; bottom: -0.18em; width: 100%; height: 0.32em;
  color: var(--rose); overflow: visible;
}

/* Arch visual */
.arch-frame { position: relative; }
.arch {
  border-radius: var(--arch); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4 / 4.8; width: min(100%, 470px); margin-inline: auto;
  position: relative;
  background:
    radial-gradient(120% 80% at 30% 12%, rgba(244, 228, 216, 0.95), transparent 60%),
    radial-gradient(120% 90% at 80% 90%, rgba(234, 237, 221, 0.9), transparent 58%),
    linear-gradient(160deg, #EFE0CE 0%, #E4D3BD 48%, #D9C3A8 100%);
  display: flex; align-items: flex-end;
}
.arch--img { aspect-ratio: auto; }
.arch img { width: 100%; height: 100%; object-fit: cover; }
.arch::before {
  content: ""; position: absolute; inset: 0; opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='190' height='190' viewBox='0 0 190 190'%3E%3Cg fill='none' stroke='%23B4643C' stroke-opacity='0.22' stroke-width='1.3'%3E%3Cpath d='M30 160c26-36 12-72 44-102M74 58c-3 17 7 24 22 27M58 105c12-3 24 2 29 14M40 138c15-8 32-5 39 7'/%3E%3Cg stroke='%23C2A05C' stroke-opacity='0.35'%3E%3Cpath d='M138 60v-22M138 60l14-17M138 60l17-6M138 60l-14-17M138 60l-17-6'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.arch__label {
  position: relative; margin: 1.1rem; z-index: 2;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255, 253, 248, 0.94); color: var(--ink-soft);
  border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 620;
  padding: 0.5rem 1rem; box-shadow: var(--shadow-soft);
}
.arch-frame__badge {
  position: absolute; left: -14px; bottom: 34px; z-index: 3;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); padding: 0.9rem 1.2rem; max-width: 250px;
}
.arch-frame__badge .when { font-family: var(--font-display); color: var(--terracotta); font-size: 1.05rem; font-weight: 600; }
.arch-frame__badge .what { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.45; }
@media (max-width: 880px) { .arch-frame__badge { left: 0; } }

/* trust strip */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.trust-strip__inner {
  display: flex; flex-wrap: wrap; gap: 0.6rem 2.6rem; align-items: center; justify-content: center;
  padding: 1.05rem 0; font-size: 0.86rem; letter-spacing: 0.05em; color: var(--ink-soft);
}
.trust-strip__inner span { display: inline-flex; align-items: center; gap: 0.5rem; }
.trust-strip__inner svg { color: var(--olive); }

/* ---------- Numbered editorial rows ---------- */
.rows { border-top: 1px solid var(--line); }
.row-item {
  display: grid; grid-template-columns: 90px 1.1fr 1.6fr auto; gap: 1.4rem; align-items: center;
  padding: 1.7rem 0.4rem; border-bottom: 1px solid var(--line);
  text-decoration: none; color: inherit; transition: background 0.18s ease;
}
.row-item:hover { background: rgba(244, 228, 216, 0.45); }
.row-item .num { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--rose); }
.row-item .title { font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--evergreen); font-weight: 540; }
.row-item .desc { color: var(--ink-soft); font-size: 0.98rem; margin: 0; }
.row-item .go {
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--evergreen);
  display: inline-flex; align-items: center; justify-content: center; color: var(--evergreen);
  transition: all 0.18s ease; flex: none;
}
.row-item:hover .go { background: var(--evergreen); color: var(--cream); transform: translateX(4px); }
@media (max-width: 760px) {
  .row-item { grid-template-columns: 54px 1fr auto; }
  .row-item .desc { grid-column: 2 / 3; grid-row: 2; }
  .row-item .num { font-size: 1.2rem; }
}

/* ---------- Values (quiet columns) ---------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.2rem 2.6rem; }
@media (max-width: 900px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values { grid-template-columns: 1fr; } }
.value { border-top: 2px solid var(--gold); padding-top: 1.1rem; }
.value .num { font-family: var(--font-display); font-style: italic; color: var(--rose); font-size: 1rem; display: block; margin-bottom: 0.4rem; }
.value h3 { font-size: 1.25rem; margin-bottom: 0.35em; }
.value p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }

/* ---------- Invitation card (event) ---------- */
.invite {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--arch);
  box-shadow: var(--shadow);
  max-width: 780px; margin-inline: auto;
  padding: clamp(2.6rem, 6vw, 4rem) clamp(1.6rem, 5vw, 3.5rem) clamp(2.2rem, 5vw, 3rem);
  text-align: center;
}
.invite .rule { width: 72px; height: 1.5px; background: var(--gold); margin: 1.3rem auto; }
.invite .date {
  font-family: var(--font-display); color: var(--terracotta);
  font-size: clamp(2rem, 4.6vw, 2.9rem); font-weight: 540; line-height: 1.1;
}
.invite .where { font-size: 1.06rem; color: var(--ink); }
.invite .detail-lines { color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Story / feature cards ---------- */
.feature-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); overflow: hidden;
  display: flex; flex-direction: column;
}
.feature-card__media { position: relative; min-height: 210px; overflow: hidden;
  background:
    radial-gradient(120% 80% at 25% 15%, rgba(244,228,216,0.95), transparent 60%),
    linear-gradient(150deg, #EFE3D2 0%, #E2D4BC 60%, #D8C6AC 100%);
  display: flex; align-items: flex-end;
}
.feature-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-card__media .arch__label { margin: 0.9rem; }
.feature-card__body { padding: 1.6rem 1.8rem 1.9rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.feature-card__body h3 { margin-bottom: 0.1em; }
.feature-card__body p { color: var(--ink-soft); font-size: 0.97rem; }
.feature-card__body .btn, .feature-card__body .text-link { margin-top: auto; align-self: flex-start; }

.chip {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; background: var(--sage-light); color: var(--olive);
  border-radius: var(--radius-pill); padding: 0.35rem 0.9rem; width: fit-content;
}
.chip--rose { background: #F6E4E1; color: #9C5551; }
.chip--gold { background: var(--gold-light); color: #6E5518; }

/* ---------- Needed items ---------- */
.needs {
  columns: 2; column-gap: 2.6rem; padding: 0; margin: 1rem 0; list-style: none;
}
@media (max-width: 620px) { .needs { columns: 1; } }
.needs li {
  break-inside: avoid; padding: 0.5rem 0 0.5rem 1.6rem; position: relative;
  border-bottom: 1px dashed var(--line); font-size: 0.98rem;
}
.needs li::before {
  content: "—"; position: absolute; left: 0; color: var(--gold); font-weight: 600; top: 0.5rem;
}

/* ---------- Detail list ---------- */
.detail-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.detail-list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.detail-list svg { flex: none; margin-top: 4px; color: var(--olive); }
.detail-list .label { font-weight: 700; display: block; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.1rem; }

/* ---------- Forms ---------- */
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-soft); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 650; font-size: 0.95rem; margin-bottom: 0.4rem; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field select, .field textarea {
  width: 100%; padding: 0.85rem 1.05rem; font: inherit; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 1px; border-color: var(--gold);
}
.field .error-msg { display: none; color: #8C2F1B; font-size: 0.88rem; font-weight: 620; margin-top: 0.35rem; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #8C2F1B; }
.field.has-error .error-msg { display: block; }
.checks { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 0.65rem; }
.check {
  display: flex; gap: 0.6rem; align-items: flex-start;
  background: var(--cream); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem; cursor: pointer; font-size: 0.96rem;
}
.check:hover { border-color: var(--sage); }
.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--evergreen); flex: none; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-note { font-size: 0.88rem; color: var(--ink-soft); }
.form-status { display: none; border-radius: var(--radius-sm); padding: 0.9rem 1.1rem; font-weight: 620; margin-bottom: 1rem; }
.form-status.is-ok { display: block; background: var(--sage-light); color: var(--evergreen); }
.form-status.is-err { display: block; background: #F7E3DC; color: #8C2F1B; }
.embed-slot iframe { width: 100%; border: 0; border-radius: var(--radius-sm); min-height: 520px; background: var(--paper); }

/* ---------- Donate ---------- */
.give-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); padding: clamp(1.7rem, 4vw, 2.4rem);
}
.give-card--accent { border-top: 4px solid var(--terracotta); }
.amounts { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 0.8rem 0 1.2rem; }
.amount {
  border: 1.5px solid var(--evergreen); color: var(--evergreen); background: var(--paper);
  border-radius: var(--radius-pill); font-weight: 700; font-size: 1.05rem;
  padding: 0.6rem 1.4rem; min-height: 48px; display: inline-flex; align-items: center;
}
.amount.is-active { background: var(--evergreen); color: var(--cream); }

/* ---------- Progress ---------- */
.progress__track { background: var(--sage-light); border-radius: var(--radius-pill); height: 13px; overflow: hidden; }
.progress__fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--olive), var(--gold)); border-radius: var(--radius-pill); transition: width 0.9s ease; }
.progress__meta { display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem; font-size: 0.92rem; color: var(--ink-soft); margin-top: 0.7rem; }
.progress__meta strong { color: var(--evergreen); }

/* ---------- Board ---------- */
.board-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--arch); box-shadow: var(--shadow-soft); text-align: center; padding: 2.2rem 1.4rem 1.8rem; }
.board-card .avatar {
  width: 110px; height: 132px; border-radius: var(--arch); margin: 0 auto 1.1rem;
  background: linear-gradient(160deg, var(--rose-soft), var(--sage-light));
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  font-family: var(--font-display); font-size: 1.9rem; color: var(--olive);
}
.board-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.board-card h3 { font-size: 1.2rem; margin-bottom: 0.15em; }
.board-card .role { color: var(--terracotta); font-weight: 650; font-size: 0.88rem; margin-bottom: 0; }

/* ---------- Trust links ---------- */
.trust-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.trust-list li { border-bottom: 1px solid var(--line); }
.trust-list a, .trust-list .pending {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.05rem 0.3rem; text-decoration: none; color: var(--ink); font-weight: 570; font-size: 0.99rem;
}
.trust-list a:hover { color: var(--terracotta); }
.trust-list .pending { color: var(--ink-soft); font-style: italic; }
.trust-list .tag { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--olive); font-style: normal; font-weight: 700; }

/* ---------- Newsletter band ---------- */
.newsletter-band { background: var(--blush); border-radius: 42px; padding: clamp(2.6rem, 6vw, 4.4rem) clamp(1.4rem, 5vw, 4rem); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ever-deep); color: rgba(250, 245, 236, 0.85); font-size: 0.95rem; }
.site-footer a { color: rgba(250, 245, 236, 0.88); text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); text-decoration: underline; }
.site-footer__main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding: 3.6rem 0 2.6rem; }
@media (max-width: 900px) { .site-footer__main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__main { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--gold-light); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.site-footer .brand img { height: 50px; }
.site-footer .brand__name { color: var(--cream); }
.site-footer .brand__name small { color: rgba(250, 245, 236, 0.65); }
.site-footer__legal {
  border-top: 1px solid rgba(250, 245, 236, 0.16);
  padding: 1.4rem 0; font-size: 0.85rem; color: rgba(250, 245, 236, 0.75);
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; justify-content: space-between; align-items: center;
}
.site-footer__legal ul { list-style: none; display: flex; flex-wrap: wrap; gap: 1.2rem; padding: 0; margin: 0; }

/* ---------- Page hero (interior, light) ---------- */
.page-hero { background: var(--paper); border-bottom: 1px solid var(--line); padding: clamp(3.6rem, 8vw, 6rem) 0; }
.page-hero h1 { margin-bottom: 0.3em; }
.page-hero .lede { margin-bottom: 0; }

/* ---------- Reveal ---------- */
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.65s ease, transform 0.65s ease; }
html.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; } }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 0.75rem; } .mt-2 { margin-top: 1.6rem; } .mt-3 { margin-top: 2.6rem; }
.mb-2 { margin-bottom: 1.6rem; }
.divider { border: none; border-top: 1px solid var(--line); margin: clamp(2rem, 5vw, 3.6rem) 0; }
[hidden] { display: none !important; }


/* ---------- Statement band (institutional) ---------- */
.band { background: var(--evergreen); color: rgba(250, 245, 236, 0.92); }
.band h2, .band h3 { color: var(--cream); }
.band h2 em { color: var(--gold); }
.band .lede { color: rgba(250, 245, 236, 0.82); }
.band .eyebrow { color: var(--gold); }
.band .eyebrow::before, .band .eyebrow--center::after { background: rgba(250,245,236,0.4); }
.band .value { border-top-color: rgba(194, 160, 92, 0.55); }
.band .value .num { color: var(--gold); }
.band .value p { color: rgba(250, 245, 236, 0.78); }

/* Announcement panel (hero right) */
.announce-panel {
  background: var(--evergreen); color: var(--cream);
  border-radius: var(--arch);
  padding: clamp(2.4rem, 5vw, 3.4rem) clamp(1.8rem, 4vw, 2.6rem) clamp(2rem, 4vw, 2.6rem);
  box-shadow: var(--shadow); text-align: center;
  width: min(100%, 460px); margin-inline: auto;
}
.announce-panel .kicker { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.announce-panel .headline { font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 540; line-height: 1.12; margin: 0.7rem 0 0.4rem; color: var(--cream); }
.announce-panel .sub { color: rgba(250, 245, 236, 0.85); font-size: 1rem; margin-bottom: 1.4rem; }
.announce-panel .rule { width: 60px; height: 1.5px; background: rgba(194,160,92,0.7); margin: 1.1rem auto; }
.announce-panel .btn-row { justify-content: center; }
.announce-panel .foot { font-size: 0.85rem; color: rgba(250, 245, 236, 0.7); margin: 1.1rem 0 0; }
.announce-panel .foot a { color: var(--gold-light); }


/* ---------- Instagram embeds ---------- */
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: start; }
@media (max-width: 960px) { .ig-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }
.ig-grid blockquote.instagram-media {
  margin: 0 !important; min-width: 0 !important; width: 100% !important;
  border-radius: var(--radius) !important; border: 1px solid var(--line) !important;
  box-shadow: var(--shadow-soft) !important;
}
.ig-fallback { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; text-align: center; }
