/* ============================================================
   KAWTAL HORE FULBE AFRICA (KHFA) — Design System
   Theme: deep forest green + gold (logo colours), warm ivory,
   editorial serif (Fraunces) + humanist sans (Albert Sans)
   ============================================================ */

:root {
  --green-950: #0b2415;
  --green-900: #103820;
  --green-800: #15522d;
  --green-700: #1a6b3a;
  --green-600: #218545;
  --green-100: #e2f0e4;
  --gold-500: #eeb211;
  --gold-400: #f5c53d;
  --gold-100: #fdf3d7;
  --terra: #b65a24;
  --cream: #faf6ec;
  --cream-2: #f3ecdb;
  --ink: #1d2620;
  --ink-soft: #47544b;
  --white: #ffffff;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Albert Sans", "Segoe UI", sans-serif;

  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(11, 36, 21, .08);
  --shadow-lg: 0 18px 50px -12px rgba(11, 36, 21, .28);
  --container: 1180px;
  --ease: cubic-bezier(.22, .8, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* ---------- Bilingual switching (no-JS-rerender, CSS only) ---------- */
:root[lang="en"] [lang="fr"] { display: none !important; }
:root[lang="fr"] [lang="en"] { display: none !important; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .5em;
  color: var(--green-950);
  letter-spacing: -.01em;
}

p { margin: 0 0 1em; }
a { color: var(--green-700); }

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--gold-500); color: var(--green-950);
  padding: .6rem 1rem; z-index: 200; font-weight: 700;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
}

/* ---------- Woven pattern (Fulbe textile-inspired, pure CSS) ---------- */
.weave {
  background-image:
    repeating-linear-gradient(45deg, rgba(238,178,17,.05) 0 2px, transparent 2px 14px),
    repeating-linear-gradient(-45deg, rgba(238,178,17,.05) 0 2px, transparent 2px 14px);
}

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--green-950);
  color: #cfe0d2;
  font-size: .8125rem;
  padding: .45rem 0;
}
.topbar .container {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
}
.topbar a { color: #e8f1e9; text-decoration: none; }
.topbar a:hover { color: var(--gold-400); }
.topbar .agreement { opacity: .75; letter-spacing: .02em; }
.topbar .spacer { flex: 1; }

/* Language toggle */
.lang-toggle {
  display: inline-flex; border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px; overflow: hidden;
}
.lang-toggle button {
  appearance: none; border: 0; background: transparent;
  color: #cfe0d2; font: 700 .75rem var(--font-body);
  padding: .3rem .7rem; cursor: pointer; letter-spacing: .06em;
}
.lang-toggle button.active {
  background: var(--gold-500); color: var(--green-950);
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 236, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11,36,21,.09);
}
.site-header .container {
  display: flex; align-items: center; gap: 1.5rem;
  padding-block: .7rem;
}
.brand {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none; color: var(--green-950);
}
.brand svg { width: 46px; height: 46px; flex: none; }
.brand .brand-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.05rem; line-height: 1.1;
}
.brand .brand-sub {
  font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft);
}

.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex; gap: .25rem; list-style: none; margin: 0; padding: 0;
}
.main-nav a {
  display: block; padding: .55rem .85rem;
  text-decoration: none; color: var(--ink);
  font-weight: 600; font-size: .95rem; border-radius: 8px;
}
.main-nav a:hover { background: var(--green-100); color: var(--green-800); }
.main-nav a[aria-current="page"] {
  color: var(--green-800);
  box-shadow: inset 0 -3px 0 var(--gold-500);
  border-radius: 8px 8px 0 0;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.5rem; border-radius: 999px;
  font: 700 .95rem var(--font-body);
  text-decoration: none; cursor: pointer; border: 0;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
}
.btn-gold {
  background: var(--gold-500); color: var(--green-950);
  box-shadow: 0 6px 20px -6px rgba(238,178,17,.55);
}
.btn-gold:hover { transform: translateY(-2px); background: var(--gold-400); }
.btn-outline {
  border: 2px solid var(--green-800); color: var(--green-800); background: transparent;
}
.btn-outline:hover { background: var(--green-800); color: var(--cream); transform: translateY(-2px); }
.btn-light {
  background: var(--cream); color: var(--green-900);
}
.btn-light:hover { transform: translateY(-2px); }

.nav-cta { white-space: nowrap; }

/* Mobile nav */
.nav-burger {
  display: none; appearance: none; background: none; border: 0;
  width: 44px; height: 44px; cursor: pointer; margin-left: auto;
  flex-direction: column; justify-content: center; gap: 6px; padding: 10px;
}
.nav-burger span {
  display: block; height: 3px; border-radius: 2px;
  background: var(--green-900); transition: .3s var(--ease);
}

@media (max-width: 900px) {
  .nav-burger { display: flex; }
  .main-nav {
    position: fixed; inset: 0; top: var(--headerH, 118px);
    background: var(--cream); margin: 0; padding: 1.5rem;
    transform: translateX(100%); transition: transform .35s var(--ease);
  }
  .main-nav.open { transform: none; }
  .main-nav ul { flex-direction: column; gap: .3rem; }
  .main-nav a { font-size: 1.2rem; padding: .9rem 1rem; }
  .main-nav a[aria-current="page"] { box-shadow: inset 4px 0 0 var(--gold-500); border-radius: 0 8px 8px 0; }
  .nav-cta-wrap { display: none; }
  body.nav-open { overflow: hidden; }
  .nav-open .nav-burger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .nav-open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-open .nav-burger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(238,178,17,.14), transparent 60%),
    linear-gradient(160deg, var(--green-950) 0%, var(--green-900) 55%, #0e2f1b 100%);
  color: #eef5ee;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(5rem, 9vw, 7.5rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(45deg, rgba(238,178,17,.045) 0 2px, transparent 2px 16px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.02) 0 2px, transparent 2px 16px);
}
.hero .container {
  position: relative;
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 4.6vw, 3.9rem);
  font-weight: 640;
  margin-bottom: .45em;
}
.hero h1 em {
  font-style: italic; color: var(--gold-400);
}
.hero .lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: #c9dccc; max-width: 34rem;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-400);
  margin-bottom: 1.2rem;
}
.hero-eyebrow::before {
  content: ""; width: 34px; height: 2px; background: var(--gold-500);
}
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.8rem; }

/* Hero collage */
.hero-collage { position: relative; min-height: 420px; }
.hero-collage figure {
  margin: 0; position: absolute; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
  background: linear-gradient(140deg, var(--green-700), var(--green-950));
}
.hero-collage img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage .ph-a {
  width: 68%; aspect-ratio: 4/5; right: 0; top: 0;
  border: 4px solid rgba(238,178,17,.9);
  rotate: 2deg;
}
.hero-collage .ph-b {
  width: 52%; aspect-ratio: 1/1; left: 0; bottom: 0;
  rotate: -3deg; z-index: 2;
  border: 4px solid rgba(250,246,236,.9);
}
.hero-collage::after {
  content: ""; position: absolute; width: 120px; height: 120px;
  border-radius: 50%; border: 2px dashed rgba(238,178,17,.5);
  right: -30px; bottom: 40px; animation: spin 30s linear infinite;
}
@keyframes spin { to { rotate: 360deg; } }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-collage { min-height: 340px; max-width: 460px; }
}

/* ---------- Motto marquee ---------- */
.marquee {
  background: var(--gold-500); color: var(--green-950);
  overflow: hidden; padding: .8rem 0;
  border-block: 3px solid var(--green-950);
}
.marquee-track {
  display: flex; gap: 3rem; width: max-content;
  animation: marquee 26s linear infinite;
  font: 700 1rem var(--font-display);
  letter-spacing: .06em; text-transform: uppercase; white-space: nowrap;
}
.marquee-track span { display: flex; align-items: center; gap: 3rem; }
.marquee-track .dot::after { content: "✦"; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-alt { background: var(--cream-2); }
.section-dark {
  background: linear-gradient(165deg, var(--green-950), var(--green-900));
  color: #dcE8de;
}
.section-dark h2, .section-dark h3 { color: var(--white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--terra);
  margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold-500); }
.section-dark .eyebrow { color: var(--gold-400); }

.section h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); max-width: 22ch; }
.section-head { margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.section-head.split {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.section-head .lead { max-width: 46rem; color: var(--ink-soft); font-size: 1.1rem; }
.section-dark .lead { color: #b9ccbc; }

/* ---------- Legal / trust card ---------- */
.grid-2 {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
@media (max-width: 860px) { .grid-2 { grid-template-columns: 1fr; } }

.trust-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--gold-500);
}
.trust-card h3 { font-size: 1.2rem; }
.trust-card dl { margin: 0; display: grid; gap: .85rem; }
.trust-card dt {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-soft);
}
.trust-card dd { margin: .1rem 0 0; font-weight: 600; overflow-wrap: anywhere; }

.checklist { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: .7rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; }
.checklist li::before {
  content: "✓"; flex: none;
  width: 1.45rem; height: 1.45rem; border-radius: 50%;
  background: var(--green-100); color: var(--green-800);
  display: grid; place-items: center; font-weight: 800; font-size: .8rem;
  margin-top: .15rem;
}

/* ---------- Stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(238,178,17,.35);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stat {
  background: var(--green-900); padding: 1.9rem 1.4rem; text-align: center;
}
.stat b {
  display: block; font: 640 clamp(2rem, 4vw, 2.9rem) var(--font-display);
  color: var(--gold-400);
}
.stat span { color: #c9dccc; font-size: .92rem; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Pillar cards ---------- */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem;
}
@media (max-width: 960px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .pillars { grid-template-columns: 1fr; } }

.pillar {
  position: relative; background: var(--white);
  border-radius: var(--radius); padding: 1.7rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  border: 1px solid rgba(11,36,21,.06);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pillar .num {
  font: 700 .8rem var(--font-body); letter-spacing: .1em;
  color: var(--terra);
}
.pillar h3 { font-size: 1.28rem; margin: .5rem 0 .4rem; }
.pillar p { color: var(--ink-soft); font-size: .96rem; margin: 0; }
.pillar::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--green-700));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.pillar:hover::after { transform: none; }
.pillar .icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--green-100); color: var(--green-800);
  display: grid; place-items: center; font-size: 1.3rem; margin-bottom: .9rem;
}

/* ---------- Project cards ---------- */
.projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
@media (max-width: 960px) { .projects { grid-template-columns: 1fr; } }

.project {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.project:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project .media {
  aspect-ratio: 16/10; overflow: hidden;
  background: linear-gradient(140deg, var(--green-700), var(--green-950));
  position: relative;
}
.project .media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.project:hover .media img { transform: scale(1.06); }
.project .body { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.project .tag {
  align-self: flex-start;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: var(--gold-100); color: var(--terra);
  padding: .28rem .7rem; border-radius: 999px;
}
.project h3 { font-size: 1.22rem; margin: .2rem 0; }
.project p { color: var(--ink-soft); font-size: .95rem; margin: 0; flex: 1; }
.project .status {
  font-size: .8rem; font-weight: 700; color: var(--green-700); margin-top: .6rem;
}

/* ---------- Quote ---------- */
.quote-wrap { max-width: 60rem; margin-inline: auto; text-align: center; position: relative; }
.quote-wrap blockquote {
  margin: 0; font: italic 500 clamp(1.35rem, 2.8vw, 2rem)/1.4 var(--font-display);
  color: var(--white);
}
.quote-wrap blockquote::before { content: "« "; color: var(--gold-400); }
.quote-wrap blockquote::after { content: " »"; color: var(--gold-400); }
.quote-wrap cite {
  display: block; margin-top: 1.4rem; font: 700 .85rem var(--font-body);
  font-style: normal; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-400);
}

/* ---------- Get involved band ---------- */
.involve { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
@media (max-width: 860px) { .involve { grid-template-columns: 1fr; } }
.involve-card {
  border-radius: var(--radius); padding: 2rem 1.7rem;
  background: var(--white); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: .6rem; align-items: flex-start;
}
.involve-card.feature { background: var(--green-900); color: #d8e6da; }
.involve-card.feature h3 { color: var(--white); }
.involve-card h3 { font-size: 1.35rem; }
.involve-card p { flex: 1; font-size: .97rem; color: var(--ink-soft); }
.involve-card.feature p { color: #b9ccbc; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--green-950), var(--green-800));
  color: var(--white); padding: clamp(3rem, 6vw, 4.5rem) 0;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(238,178,17,.05) 0 2px, transparent 2px 16px);
}
.page-hero h1 { color: var(--white); font-size: clamp(2.1rem, 4vw, 3.2rem); margin: 0; position: relative; }
.page-hero .crumb {
  position: relative; font-size: .8rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-400); margin-bottom: .8rem;
}
.page-hero .lead { position: relative; color: #c9dccc; max-width: 46rem; margin-top: 1rem; }

/* ---------- Values ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
@media (max-width: 860px) { .values { grid-template-columns: 1fr; } }
.value-card {
  border-radius: var(--radius); padding: 2rem 1.6rem;
  background: var(--white); box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--green-700); text-align: center;
}
.value-card:nth-child(2) { border-top-color: var(--gold-500); }
.value-card:nth-child(3) { border-top-color: var(--terra); }
.value-card .big { font-size: 2rem; }
.value-card h3 { font-size: 1.3rem; }
.value-card p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* ---------- Governance ---------- */
.gov-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
@media (max-width: 960px) { .gov-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gov-grid { grid-template-columns: 1fr; } }
.gov-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem 1.3rem; box-shadow: var(--shadow-sm);
}
.gov-card .idx {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green-900); color: var(--gold-400);
  display: grid; place-items: center;
  font: 700 1rem var(--font-display); margin-bottom: .9rem;
}
.gov-card h3 { font-size: 1.08rem; }
.gov-card p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 3.5rem); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ico {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  background: var(--green-100); color: var(--green-800);
  display: grid; place-items: center; font-size: 1.15rem;
}
.contact-list b { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.contact-list a { color: var(--green-800); font-weight: 600; text-decoration: none; overflow-wrap: anywhere; }
.contact-list a:hover { text-decoration: underline; }

.form-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--gold-500);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
label { font-weight: 700; font-size: .85rem; display: block; margin-bottom: .35rem; }
input, textarea, select {
  width: 100%; padding: .8rem .95rem;
  border: 1.5px solid rgba(11,36,21,.18); border-radius: 10px;
  font: 400 1rem var(--font-body); background: var(--cream);
  color: var(--ink);
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(33,133,69,.18);
}

/* ---------- Newsletter / CTA banner ---------- */
.cta-banner {
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(238,178,17,.22), transparent 60%),
    var(--green-900);
  color: #d8e6da; padding: clamp(2.2rem, 5vw, 3.5rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.cta-banner h2 { color: var(--white); margin: 0 0 .3em; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.cta-banner p { margin: 0; max-width: 34rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-950); color: #a8bfab;
  padding: 4rem 0 2rem; font-size: .95rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem; margin-bottom: 3rem;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: var(--gold-400); font-size: .82rem; font-family: var(--font-body);
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.site-footer a { color: #cfe0d2; text-decoration: none; }
.site-footer a:hover { color: var(--gold-400); }
.footer-brand .brand-name { color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.5rem; display: flex; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; font-size: .84rem; opacity: .8;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

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