/* =========================================================
   Olive Grove Learning Community — Stylesheet
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Color */
  --sage-900: #2E3826;
  --sage-800: #384633;
  --sage-700: #47593C;
  --sage-600: #5B7049;
  --sage-500: #7C8F63;
  --sage-400: #9CAB82;
  --sage-300: #B9C5A2;
  --sage-200: #D6DEC6;
  --sage-100: #E7EDDC;
  --sage-50:  #F3F6EC;

  --cream: #FBF8EF;
  --cream-alt: #F3EDDC;
  --white: #FFFFFF;

  --gold-600: #A9843C;
  --gold-500: #C4A057;
  --gold-300: #E3CD97;
  --gold-100: #F3E7C9;

  --ink-900: #262319;
  --ink-700: #4A4636;
  --ink-500: #736C57;

  --focus-ring: #A9843C;

  /* Type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale (8pt) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* Layout */
  --container-max: 1200px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(46, 56, 38, 0.08);
  --shadow-md: 0 8px 30px rgba(46, 56, 38, 0.12);
  --shadow-lg: 0 20px 60px rgba(46, 56, 38, 0.18);

  --dur-fast: 180ms;
  --dur-med: 320ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::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;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--cream);
  min-height: 100dvh;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--sage-900);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { max-width: 68ch; }
p.lede {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ink-700);
}

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

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
@media (min-width: 768px) {
  .container { padding-inline: var(--sp-7); }
}

.section { padding-block: var(--sp-9); }
.section--tight { padding-block: var(--sp-8); }
.section--alt { background: var(--cream-alt); }
.section--sage { background: var(--sage-900); color: var(--sage-50); }
.section--sage h2, .section--sage h3 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: var(--sp-3);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold-500);
}
.section--sage .eyebrow { color: var(--gold-300); }

.section-head {
  max-width: 720px;
  margin-bottom: var(--sp-7);
}
.section-head.center { margin-inline: auto; text-align: center; }

.text-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  touch-action: manipulation;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--gold-500);
  color: var(--sage-900);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--gold-600); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-outline-dark {
  background: transparent;
  color: var(--sage-900);
  border: 1.5px solid var(--sage-500);
}
.btn-outline-dark:hover { background: var(--sage-100); }

.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 239, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(46, 56, 38, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--sage-900);
}
.brand img { height: 52px; width: 52px; object-fit: contain; }
.brand span { display: flex; flex-direction: column; line-height: 1.15; }
.brand small { font-family: var(--font-body); font-weight: 500; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage-600); }

.nav-links {
  display: none;
  align-items: center;
  gap: var(--sp-7);
}
.nav-links a {
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink-700);
  position: relative;
  padding-block: 4px;
  transition: color var(--dur-fast);
}
.nav-links a:hover { color: var(--sage-700); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width var(--dur-fast) var(--ease-out);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--sage-800); }

.header-actions { display: none; align-items: center; gap: var(--sp-4); }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  position: relative;
  z-index: 2;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(122, 143, 99, 0.25);
}
.nav-toggle:hover { background: var(--sage-100); }
.nav-toggle svg { width: 24px; height: 24px; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .header-actions { display: flex; }
  .nav-toggle { display: none; }
}

/* ---------- Donate popover ---------- */
.donate-wrap { position: relative; }
.btn-donate {
  background: transparent;
  color: var(--gold-600);
  border: 1.5px solid var(--gold-500);
  padding: 0.75rem 1.4rem;
}
.btn-donate:hover { background: var(--gold-100); }
.btn-donate[aria-expanded="true"] { background: var(--gold-100); }

.donate-tooltip {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 300px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out), visibility var(--dur-med);
  z-index: 200;
  text-align: left;
}
.donate-tooltip.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.donate-tooltip p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-700);
  margin-bottom: var(--sp-4);
  max-width: none;
}
.donate-tooltip a.donate-confirm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--gold-600);
}
.donate-tooltip a.donate-confirm:hover { color: var(--gold-700, var(--gold-600)); text-decoration: underline; }

/* Mobile menu donate block: always expanded, no toggle needed */
.mobile-donate {
  margin-top: var(--sp-5);
  padding: var(--sp-5);
  background: var(--sage-50);
  border-radius: var(--radius-md);
}
.mobile-donate .btn { margin-top: 0; }
.mobile-donate p {
  font-size: 0.9rem;
  color: var(--ink-700);
  margin-top: var(--sp-3);
}
.mobile-donate a.donate-confirm {
  display: inline-block;
  margin-top: var(--sp-2);
  font-weight: 700;
  color: var(--gold-600);
}

.footer-donate-note {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

.mobile-menu {
  position: fixed;
  top: 84px;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--cream);
  z-index: 99;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out), visibility var(--dur-med);
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu { transition: opacity var(--dur-fast); transform: none; }
}
.mobile-menu-inner {
  padding: var(--sp-6) var(--sp-5) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--sage-100);
  color: var(--sage-900);
}
.mobile-menu .btn { margin-top: var(--sp-5); align-self: flex-start; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 34, 22, 0.35) 0%, rgba(28, 34, 22, 0.35) 40%, rgba(24, 29, 18, 0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--sp-9) var(--sp-8);
  max-width: 780px;
}
.hero-content .eyebrow { color: var(--gold-300); }
.hero-content h1 { color: var(--white); margin-bottom: var(--sp-5); }
.hero-content p.lede { color: rgba(255,255,255,0.88); margin-bottom: var(--sp-6); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); }

.page-hero {
  position: relative;
  padding-block: calc(var(--sp-9) + 40px) var(--sp-8);
  color: var(--white);
  overflow: hidden;
}
.page-hero .hero-media img { object-position: center 45%; }
.page-hero .hero-content { padding: 0; max-width: 720px; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.grid {
  display: grid;
  gap: var(--sp-5);
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 560px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* BRIE pillar cards */
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  border-top: 3px solid var(--gold-500);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
  height: 100%;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pillar-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4);
}
.pillar-icon svg { width: 26px; height: 26px; flex-shrink: 0; }
.pillar-card h3 { margin-bottom: var(--sp-3); }
.pillar-card p { font-size: 0.98rem; color: var(--ink-700); }
.pillar-letter {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--sage-300);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

/* Principle / feature list */
.feature-row {
  display: flex;
  gap: var(--sp-4);
  padding-block: var(--sp-5);
  border-bottom: 1px solid var(--sage-100);
}
.feature-row:last-child { border-bottom: none; }
.feature-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-700);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-row h4 { margin-bottom: var(--sp-1); }
.feature-row p { font-size: 0.96rem; color: var(--ink-700); margin: 0; }

/* ---------- Verse / Quote block ---------- */
.verse-block {
  position: relative;
  text-align: center;
  padding: var(--sp-9) var(--sp-5);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--sage-800), var(--sage-900));
  color: var(--white);
  overflow: hidden;
}
.verse-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(196,160,87,0.18), transparent 45%), radial-gradient(circle at 85% 80%, rgba(196,160,87,0.14), transparent 40%);
}
.verse-mark {
  position: relative;
  width: 60px; height: 60px;
  margin: 0 auto var(--sp-5);
  color: var(--gold-300);
}
.verse-text {
  position: relative;
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.45;
  max-width: 780px;
  margin-inline: auto;
  color: var(--white);
}
.verse-cite {
  position: relative;
  display: block;
  margin-top: var(--sp-5);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--gold-300);
}

/* ---------- Pull quote ---------- */
.pull-quote {
  border-left: 3px solid var(--gold-500);
  padding-left: var(--sp-5);
  margin-block: var(--sp-6);
}
.pull-quote p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--sage-800);
  line-height: 1.5;
}

/* ---------- Image mosaic (home) ---------- */
.mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: var(--sp-3);
}
.mosaic img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); }
.mosaic .m1 { grid-column: span 6; grid-row: span 2; }
.mosaic .m2 { grid-column: span 3; grid-row: span 2; }
.mosaic .m3 { grid-column: span 3; grid-row: span 2; }
@media (min-width: 760px) {
  .mosaic { grid-auto-rows: 160px; }
  .mosaic .m1 { grid-column: span 3; grid-row: span 3; }
  .mosaic .m2 { grid-column: span 3; grid-row: span 2; }
  .mosaic .m3 { grid-column: span 3; grid-row: span 1; }
}
.mosaic .m-illustration {
  background: var(--sage-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.mosaic .m-illustration img { width: 82%; height: 82%; object-fit: contain; object-position: bottom; border-radius: 0; }

/* ---------- Split section ---------- */
.split {
  display: grid;
  gap: var(--sp-7);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse .split-media { order: 2; }
}
.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.split-media.wide img { aspect-ratio: 16/11; }

/* ---------- Stats strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
  text-align: center;
}
@media (min-width: 700px) { .stat-strip { grid-template-columns: repeat(4, 1fr); } }
.stat-strip .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold-500);
}
.stat-strip .label {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  margin-top: var(--sp-1);
}

/* ---------- FAQ Accordion ---------- */
.faq-item {
  border-bottom: 1px solid var(--sage-200);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  touch-action: manipulation;
  color: var(--sage-900);
}
.faq-question .plus {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-700);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur-med) var(--ease-out), background var(--dur-fast);
}
.faq-item.is-open .faq-question .plus { transform: rotate(45deg); background: var(--gold-100); color: var(--gold-600); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-med) var(--ease-out);
}
.faq-answer-inner { padding-bottom: var(--sp-5); }
.faq-answer p { color: var(--ink-700); }

/* ---------- Timeline (admissions) ---------- */
.timeline {
  position: relative;
  padding-left: var(--sp-6);
  border-left: 2px solid var(--sage-200);
}
.timeline-item { position: relative; padding-bottom: var(--sp-6); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--sp-6) - 6px);
  top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold-500);
}

/* ---------- Info / detail cards (admissions schedule) ---------- */
.detail-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  box-shadow: var(--shadow-sm);
}
.detail-card h4 { color: var(--sage-800); margin-bottom: var(--sp-2); }
.detail-card p { margin: 0; color: var(--ink-700); font-size: 0.95rem; }
.detail-card .big {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--sage-900);
  margin-bottom: var(--sp-2);
}

/* ---------- Contact cards (partner page) ---------- */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.contact-card .icon-circle {
  width: 64px; height: 64px;
  margin: 0 auto var(--sp-5);
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-700);
  display: flex; align-items: center; justify-content: center;
}
.contact-card .icon-circle svg { width: 30px; height: 30px; }
.contact-card h3 { margin-bottom: var(--sp-2); }
.contact-card p { margin-inline: auto; margin-bottom: var(--sp-5); color: var(--ink-700); }

.involve-card {
  padding: var(--sp-6);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.involve-card .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-600);
  background: var(--gold-100);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: var(--sp-4);
}

/* ---------- Banner CTA ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  padding: var(--sp-9) var(--sp-6);
  text-align: center;
}
.cta-banner .hero-media img { object-position: center 60%; }
.cta-banner .hero-content { position: relative; max-width: 700px; margin-inline: auto; padding: 0; }
.cta-banner h2 { color: var(--white); }
.cta-banner p.lede { color: rgba(255,255,255,0.9); margin-inline: auto; }
.cta-banner .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--sage-900);
  color: rgba(255,255,255,0.82);
  padding-block: var(--sp-8) var(--sp-6);
}
.footer-grid {
  display: grid;
  gap: var(--sp-7);
  margin-bottom: var(--sp-7);
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.footer-brand img { height: 48px; width: 48px; }
.footer-brand span { font-family: var(--font-display); font-size: 1.15rem; color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.95rem; letter-spacing: 0.04em; margin-bottom: var(--sp-4); }
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a:hover { color: var(--gold-300); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.max-w-prose { max-width: 62ch; }
.mx-auto { margin-inline: auto; }
.gold-underline {
  text-decoration: none;
  border-bottom: 2px solid var(--gold-500);
}
