/* =========================================================
   Phoenix Rising — V1
   A council-led response. The voices still rise.
   ========================================================= */

:root {
  --bg: #F5EDE2;
  --bg-tint: #EFE5D6;
  --bg-deep: #1B1410;
  --bg-deep-2: #241A14;
  --ink: #1F1916;
  --ink-soft: #4A3F38;
  --ink-mute: #7A6B5F;
  --ember: #B7421C;
  --ember-glow: #E07A3C;
  --gold: #C9A96A;
  --gold-soft: #E0C892;
  --line: rgba(31, 25, 22, 0.14);
  --line-strong: rgba(31, 25, 22, 0.28);
  --line-on-dark: rgba(245, 237, 226, 0.16);

  --shadow-sm: 0 1px 2px rgba(31, 25, 22, 0.06);
  --shadow-md: 0 8px 24px rgba(31, 25, 22, 0.08);
  --shadow-lg: 0 24px 60px rgba(31, 25, 22, 0.14);

  --radius: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --container: 1180px;
  --container-narrow: 820px;

  --serif: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 180ms;
  --t-med: 320ms;
  --t-slow: 600ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---------- Base ---------- */
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--ember); color: var(--bg); }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--ink);
  line-height: 1.08;
  font-variation-settings: "opsz" 72, "SOFT" 30, "WONK" 0;
  font-feature-settings: "ss01" 0, "ss02" 0, "ss03" 0;
}

.display {
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
}
.display em {
  font-style: italic;
  color: var(--ember);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.35rem; line-height: 1.25; }
h4 { font-size: 1.1rem; line-height: 1.3; }

p { color: var(--ink-soft); }
p.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.6;
  color: var(--ink);
  max-width: 60ch;
}

.muted { color: var(--ink-mute); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

section { padding: clamp(64px, 9vw, 120px) 0; }
section + section { border-top: 1px solid var(--line); }

.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med) var(--ease), background var(--t-med) var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.005em;
}
.brand .mark { width: 36px; height: 36px; color: var(--ink); }
.brand .mark .ember-dot { fill: var(--ember); }
.brand strong { font-weight: 500; }
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  position: relative;
  padding: 10px 14px;
  font-size: 14.5px;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.nav-links a:hover { color: var(--ink); background: rgba(31, 25, 22, 0.04); }
.nav-links a.is-current { color: var(--ember); }
.nav-links a.is-current::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--ink);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute; left: 0;
  width: 18px; height: 1.5px;
  background: var(--ink);
  transition: transform var(--t-med) var(--ease), top var(--t-fast) var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 0 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 84px 16px 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    transform: translateY(-100%);
    transition: transform var(--t-med) var(--ease), visibility 0s linear var(--t-med);
    visibility: hidden;
  }
  .nav-links.is-open {
    transform: translateY(0);
    visibility: visible;
    transition: transform var(--t-med) var(--ease), visibility 0s;
  }
  .nav-links a { padding: 14px 12px; font-size: 1rem; }
  .nav-links a.is-current::after { display: none; }
  .nav-cta { margin-left: 0; margin-top: 8px; justify-content: center; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: transform var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              box-shadow var(--t-med) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--ember);
  color: #FBF4E9;
  box-shadow: 0 8px 20px -8px rgba(183, 66, 28, 0.6);
}
.btn-primary:hover {
  background: #A33A18;
  box-shadow: 0 14px 28px -10px rgba(183, 66, 28, 0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(31, 25, 22, 0.03); }

.btn-on-dark {
  background: transparent;
  color: var(--bg);
  border-color: rgba(245, 237, 226, 0.32);
}
.btn-on-dark:hover { border-color: var(--bg); background: rgba(245, 237, 226, 0.06); }

.btn .arrow { transition: transform var(--t-fast) var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(72px, 11vw, 140px) 0 clamp(64px, 9vw, 120px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(224, 122, 60, 0.18), transparent 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(201, 169, 106, 0.16), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-copy { display: flex; flex-direction: column; gap: 28px; max-width: 640px; }
.hero-copy .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.hero-meta div { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero-meta .value { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); }

/* Hero visual: layered phoenix mark */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  margin-left: auto;
  justify-self: end;
}
@media (max-width: 900px) {
  .hero-visual { margin: 0 auto; }
}
.hero-visual .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
}
.hero-visual .ring.r2 { inset: 8%; opacity: 0.7; }
.hero-visual .ring.r3 { inset: 16%; opacity: 0.45; }
.hero-visual .glow {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 122, 60, 0.45), rgba(183, 66, 28, 0.18) 50%, transparent 75%);
  filter: blur(2px);
  animation: emberPulse 5s ease-in-out infinite;
}
.hero-visual .phoenix {
  position: absolute;
  inset: 28%;
  color: var(--ink);
  display: grid;
  place-items: center;
}
.hero-visual .horizon {
  position: absolute;
  left: 8%; right: 8%; bottom: 28%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--ink-mute), transparent);
  opacity: 0.45;
}

@keyframes emberPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50%      { transform: scale(1.06); opacity: 1; }
}

/* ---------- Mission strip ---------- */
.mission {
  background: var(--bg-tint);
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 800px) { .mission-grid { grid-template-columns: 1fr; } }

.mission-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.mission-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.mission-card .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ember);
  font-size: 1.1rem;
}
.mission-card h3 { font-size: 1.25rem; }

/* ---------- Format / numbered grid ---------- */
.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 800px) { .format-grid { grid-template-columns: 1fr; } }

.format-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-tint);
  display: flex;
  gap: 24px;
  transition: border-color var(--t-med) var(--ease), background var(--t-med) var(--ease);
}
.format-card:hover { border-color: var(--ember); background: var(--bg); }

.format-card .minute {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--ember);
  font-variation-settings: "opsz" 144;
  flex-shrink: 0;
}
.format-card h3 { margin-bottom: 6px; }
.format-card p { font-size: 0.97rem; }

/* ---------- Quote / pull ---------- */
.pull {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 32px;
  text-align: center;
  background: var(--bg-deep);
  color: var(--bg);
  overflow: hidden;
}
.pull::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 50% 100%, rgba(224, 122, 60, 0.35), transparent 60%),
    radial-gradient(40% 50% at 50% 0%, rgba(201, 169, 106, 0.18), transparent 60%);
  pointer-events: none;
}
.pull blockquote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.25;
  font-style: italic;
  max-width: 22ch;
  margin: 0 auto;
  color: var(--bg);
  position: relative;
}
.pull blockquote em { color: var(--gold-soft); }
.pull cite {
  display: block;
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
}

/* ---------- Schedule ---------- */
.schedule {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.schedule-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 24px 8px;
  border-bottom: 1px solid var(--line);
  transition: background var(--t-fast) var(--ease);
}
.schedule-row:last-child { border-bottom: 0; }
.schedule-row:hover { background: rgba(183, 66, 28, 0.04); }

.schedule-row .date {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ember);
}
.schedule-row .title { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); }
.schedule-row .meta { font-size: 0.92rem; color: var(--ink-mute); }
.schedule-row .pill {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
  white-space: nowrap;
}
.schedule-row.is-next .pill {
  background: var(--ember);
  color: var(--bg);
  border-color: var(--ember);
}
@media (max-width: 720px) {
  .schedule-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 4px; }
  .schedule-row .pill { justify-self: start; }
}

/* ---------- Two-col / Journey ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

.checklist { display: flex; flex-direction: column; gap: 20px; }
.checklist li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.checklist li:last-child { border-bottom: 0; padding-bottom: 0; }
.checklist .icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ember);
  font-family: var(--serif);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.checklist h4 { margin-bottom: 4px; font-family: var(--serif); font-size: 1.05rem; color: var(--ink); }
.checklist p { font-size: 0.97rem; }

/* ---------- Embed / form box ---------- */
.embed-card {
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-lg);
  background: var(--bg-tint);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.embed-card h3 { font-size: 1.4rem; }
.embed-iframe {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  color: var(--ink-mute);
  font-size: 0.92rem;
  text-align: center;
  padding: 32px;
}

/* ---------- Insights coming soon ---------- */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .insight-grid { grid-template-columns: 1fr; } }

.insight-card {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-tint);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  transition: border-color var(--t-med) var(--ease);
}
.insight-card::before {
  content: "";
  position: absolute;
  inset: auto -40% -40% auto;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(224, 122, 60, 0.18), transparent 70%);
  pointer-events: none;
}
.insight-card:hover { border-color: var(--ember); }
.insight-card .tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 600;
}
.insight-card h3 { font-size: 1.2rem; }
.insight-card .footnote {
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--ink-mute);
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}

/* ---------- The Voices Rising — speaker grid ---------- */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1000px) { .voices-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .voices-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .voices-grid { grid-template-columns: 1fr; } }

.voice-card {
  position: relative;
  padding: 22px 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.voice-card::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ember);
  opacity: 0.85;
  box-shadow: 0 0 0 4px rgba(183, 66, 28, 0.12);
}
.voice-card:hover {
  border-color: var(--ember);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.voice-card .name {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--ink);
  margin-top: 18px;
  letter-spacing: -0.005em;
}
.voice-card .status {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- Trust bar ---------- */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 800px) { .trust { grid-template-columns: repeat(2, 1fr); } }

.trust div { display: flex; flex-direction: column; gap: 4px; }
.trust .label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }
.trust .value { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-tint);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-card h3 { font-size: 1.2rem; }
.contact-card a { color: var(--ember); border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.contact-card a:hover { color: var(--ink); }

form.contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
form.contact label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
form.contact input,
form.contact textarea {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  width: 100%;
}
form.contact input:focus,
form.contact textarea:focus {
  outline: none;
  border-color: var(--ember);
  background: #FFFFFF;
}
form.contact textarea { min-height: 140px; resize: vertical; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  background: var(--bg-deep);
  color: var(--bg);
  padding: clamp(56px, 8vw, 96px) 0;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 60% at 90% 10%, rgba(224, 122, 60, 0.32), transparent 60%),
    radial-gradient(40% 60% at 10% 90%, rgba(201, 169, 106, 0.18), transparent 60%);
}
.cta-banner .wrap { position: relative; }
.cta-banner h2 { color: var(--bg); font-size: clamp(1.8rem, 3.6vw, 2.8rem); max-width: 22ch; }
.cta-banner p { color: rgba(245, 237, 226, 0.72); max-width: 56ch; }
.cta-banner .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.cta-banner .btn-primary { background: var(--gold); color: var(--bg-deep); box-shadow: 0 10px 24px -10px rgba(201, 169, 106, 0.6); }
.cta-banner .btn-primary:hover { background: var(--gold-soft); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-deep-2);
  color: rgba(245, 237, 226, 0.72);
  padding: 64px 0 32px;
}
.site-footer .wrap { display: flex; flex-direction: column; gap: 40px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }

.site-footer .brand { color: var(--bg); }
.site-footer .brand .mark { color: var(--bg); }
.site-footer .brand small { color: rgba(245, 237, 226, 0.55); }

.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 237, 226, 0.55);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(245, 237, 226, 0.85);
  font-size: 14.5px;
  transition: color var(--t-fast) var(--ease);
}
.footer-col a:hover { color: var(--gold-soft); }

.footer-tag {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(245, 237, 226, 0.85);
  margin-top: 12px;
  max-width: 36ch;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 237, 226, 0.12);
  font-size: 12.5px;
  color: rgba(245, 237, 226, 0.55);
}

/* ---------- Page header (sub-pages) ---------- */
.page-head {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0 clamp(40px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 70% at 80% 20%, rgba(224, 122, 60, 0.14), transparent 60%);
  pointer-events: none;
}
.page-head .wrap { position: relative; display: flex; flex-direction: column; gap: 18px; max-width: 760px; }
.page-head h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); }
.page-head p { font-size: 1.1rem; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Utility ---------- */
.divider {
  height: 1px;
  background: var(--line);
  margin: clamp(40px, 6vw, 72px) 0;
}
.center { text-align: center; }
.stack-sm { display: flex; flex-direction: column; gap: 10px; }
.stack-md { display: flex; flex-direction: column; gap: 18px; }
.stack-lg { display: flex; flex-direction: column; gap: 28px; }
.row { display: flex; flex-wrap: wrap; gap: 12px; }
