/* =========================================================
   RTC Cameroon — Design System
   Aesthetic: refined organic / natural editorial
   Palette: deep forest greens + warm cream + honey accent
   Type: Fraunces (display serif) + Mulish (body sans)
   ========================================================= */

:root {
  /* Greens */
  --green-900: #0e3d20;
  --green-800: #14512a;
  --green-700: #1f6b34;
  --green-600: #2c7a40;
  --green-500: #3f8f4f;
  --green-300: #8fc79a;
  --green-100: #e4efe2;

  /* Warm neutrals */
  --cream:     #f7f4ec;
  --cream-2:   #efe9da;
  --paper:     #fffdf8;
  --ink:       #20281f;
  --ink-soft:  #4a564a;

  /* Honey accent */
  --honey:     #e8a833;
  --honey-dark:#c98a1e;

  /* Functional */
  --error:     #b23a2e;
  --ok:        #1f6b34;

  --shadow-sm: 0 2px 10px rgba(20,60,30,.06);
  --shadow-md: 0 14px 40px rgba(14,61,32,.10);
  --shadow-lg: 0 30px 70px rgba(14,61,32,.16);

  --radius:    18px;
  --radius-sm: 12px;

  --serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --sans:  'Mulish', system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.08; color: var(--green-900); letter-spacing: -.01em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p  { color: var(--ink-soft); }
.eyebrow {
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--honey); display: inline-block;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.2rem, 4vw, 2.4rem); }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section--tint { background: var(--paper); }
.section--green {
  background:
    radial-gradient(120% 140% at 100% 0, rgba(232,168,51,.10), transparent 50%),
    linear-gradient(160deg, var(--green-900), var(--green-800));
  color: #eaf2e6;
}
.section--green h2, .section--green h3 { color: #fff; }
.section--green p { color: #c9dcc6; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-soft); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--green-700);
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-weight: 800; font-size: .95rem;
  padding: .95rem 1.7rem; border-radius: 100px; cursor: pointer; border: 0;
  background: var(--bg); color: #fff; transition: transform .25s ease, box-shadow .25s ease, background .25s;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--honey { --bg: var(--honey); color: #3a2a06; }
.btn--honey:hover { background: var(--honey-dark); }
.btn--ghost {
  background: transparent; color: var(--green-800);
  box-shadow: inset 0 0 0 2px rgba(31,107,52,.3);
}
.btn--ghost:hover { background: rgba(31,107,52,.06); box-shadow: inset 0 0 0 2px var(--green-700); }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,244,236,.82);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid rgba(20,81,42,.10);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 88px; }
.brand img { height: 62px; width: auto; }
.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  font-weight: 700; font-size: .95rem; color: var(--green-900);
  padding: .55rem .9rem; border-radius: 100px; position: relative; transition: color .2s, background .2s;
}
.nav-links a:hover { background: rgba(31,107,52,.08); }
.nav-links a.active { color: var(--green-700); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 50%; bottom: 4px; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--honey);
}
.nav-cta { margin-left: .5rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--green-900); border-radius: 3px; transition: .3s; }
.nav-toggle span + span { margin-top: 6px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(80% 90% at 85% -10%, rgba(232,168,51,.18), transparent 55%),
    radial-gradient(70% 80% at 0% 110%, rgba(63,143,79,.16), transparent 55%),
    var(--cream);
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { margin: 1.1rem 0 1.3rem; }
.hero h1 em { font-style: italic; color: var(--green-600); }
.hero .lead { margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.hero-card {
  position: relative; border-radius: var(--radius);
  background: linear-gradient(160deg, var(--green-800), var(--green-900));
  color: #fff; padding: 2.2rem; box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-card::before {
  content: ""; position: absolute; inset: auto -40px -50px auto; width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(232,168,51,.35), transparent 70%);
}
.hero-card .tag { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--honey); font-weight: 800; }
.hero-card h3 { color: #fff; margin: .6rem 0 .8rem; font-size: 1.5rem; }
.hero-card p { color: #c7dcc3; font-size: .98rem; }
.hero-card .seal {
  margin-top: 1.6rem; display: inline-flex; align-items: center; gap: .6rem;
  font-size: .82rem; color: #bfe0c2; font-weight: 700;
}
.hero-card .seal .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--honey); }

/* ---- Hero with background image ---- */
.hero--image {
  background-image:
    linear-gradient(110deg, rgba(8,38,19,.92) 0%, rgba(10,46,24,.74) 42%, rgba(12,52,28,.42) 100%),
    var(--hero-img);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
}
/* subtle bottom fade into the page */
.hero--image::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 90px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  pointer-events: none;
}
.hero--image .container { position: relative; z-index: 1; }
.hero--image .eyebrow { color: #bfe6c4; }
.hero--image .eyebrow::before { background: var(--honey); }
.hero--image h1 { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.25); }
.hero--image h1 em { color: var(--green-300); font-style: italic; }
.hero--image .lead { color: rgba(255,255,255,.92); }
.hero--image .btn--ghost {
  color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.55);
}
.hero--image .btn--ghost:hover { background: rgba(255,255,255,.12); box-shadow: inset 0 0 0 2px #fff; }
.hero--image .hero-card {
  background: linear-gradient(160deg, rgba(20,81,42,.86), rgba(14,61,32,.92));
  backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.14);
}

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.stat { text-align: center; padding: 1.4rem 1rem; background: var(--paper); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.stat .num { font-family: var(--serif); font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--green-700); font-weight: 600; }
.stat .lbl { font-size: .82rem; color: var(--ink-soft); font-weight: 600; margin-top: .2rem; }

/* ---------- Program cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.6rem; }
.card {
  background: var(--paper); border-radius: var(--radius); padding: 1.9rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(20,81,42,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card .ico {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--green-100); color: var(--green-700); margin-bottom: 1.1rem;
}
.card .ico svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.card p { font-size: .95rem; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--rev .split-text { order: 2; }
.feature-panel {
  border-radius: var(--radius); padding: 2.4rem; background: var(--paper);
  box-shadow: var(--shadow-md); border: 1px solid rgba(20,81,42,.06);
}
.feature-panel.quote {
  background: linear-gradient(160deg, var(--green-800), var(--green-900)); color: #eaf2e6;
}
.feature-panel.quote .q { font-family: var(--serif); font-style: italic; font-size: 1.35rem; line-height: 1.4; color: #fff; }
.feature-panel.quote .who { margin-top: 1.2rem; font-weight: 800; color: var(--honey); font-size: .9rem; letter-spacing: .04em; }

/* ---------- Values ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.4rem; }
.value {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 1.8rem; backdrop-filter: blur(4px);
}
.value .n { font-family: var(--serif); font-size: 2.4rem; color: var(--honey); line-height: 1; }
.value h3 { margin: .6rem 0 .5rem; }

/* ---------- Timeline ---------- */
.timeline { margin-top: 2.4rem; border-left: 2px solid var(--green-300); padding-left: 1.8rem; display: grid; gap: 1.8rem; }
.tl-item { position: relative; }
.tl-item::before {
  content: ""; position: absolute; left: -2.32rem; top: .35rem; width: 13px; height: 13px;
  border-radius: 50%; background: var(--green-700); box-shadow: 0 0 0 4px var(--green-100);
}
.tl-item .yr { font-weight: 800; color: var(--green-700); font-size: .95rem; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem,5vw,3.4rem); align-items: start; }
.form-card { background: var(--paper); border-radius: var(--radius); padding: clamp(1.8rem,4vw,2.6rem); box-shadow: var(--shadow-md); border: 1px solid rgba(20,81,42,.06); }
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-weight: 800; font-size: .82rem; letter-spacing: .04em; color: var(--green-900); margin-bottom: .45rem; text-transform: uppercase; }
.field input, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: .9rem 1rem; border-radius: var(--radius-sm); border: 1.5px solid rgba(20,81,42,.16);
  background: var(--cream); transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(63,143,79,.16); background: #fff;
}
.field textarea { min-height: 140px; }
.field.has-error input, .field.has-error textarea { border-color: var(--error); box-shadow: 0 0 0 4px rgba(178,58,46,.12); }
.field .err { color: var(--error); font-size: .82rem; font-weight: 700; margin-top: .4rem; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.alert { border-radius: var(--radius-sm); padding: 1rem 1.2rem; font-weight: 600; margin-bottom: 1.6rem; }
.alert--ok { background: var(--green-100); color: var(--green-800); border: 1px solid var(--green-300); }
.alert--err { background: #fbe9e7; color: var(--error); border: 1px solid #f0c2bc; }

.info-list { display: grid; gap: 1.3rem; margin-top: 1.6rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-item .ico { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; }
.info-item .ico svg { width: 22px; height: 22px; }
.info-item .t { font-weight: 800; color: var(--green-900); font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; }
.info-item a, .info-item span { color: var(--ink-soft); font-size: .98rem; }
.info-item a:hover { color: var(--green-700); }

.map-wrap { margin-top: 1.8rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(20,81,42,.1); }
.map-wrap iframe { width: 100%; height: 340px; border: 0; display: block; }
.map-cap { font-size: .82rem; color: var(--ink-soft); padding: .7rem 1rem; background: var(--paper); }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background:
    radial-gradient(70% 120% at 100% 0, rgba(232,168,51,.16), transparent 55%),
    linear-gradient(160deg, var(--green-900), var(--green-800));
  color: #fff; padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.page-hero h1 { color: #fff; }
.page-hero p { color: #c9dcc6; max-width: 60ch; margin-top: 1rem; }
.crumbs { font-size: .8rem; color: #9cc1a2; font-weight: 700; letter-spacing: .04em; margin-bottom: 1rem; }
.crumbs a:hover { color: var(--honey); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--green-900); color: #cfe0cb; padding-block: 3.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer-grid h4 { color: #fff; font-family: var(--sans); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-brand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.footer-brand img { width: 48px; }
.footer-brand .nm { font-family: var(--serif); font-size: 1.2rem; color: #fff; }
.footer-links { display: grid; gap: .55rem; }
.footer-links a { font-size: .95rem; color: #b7cfb4; }
.footer-links a:hover { color: var(--honey); }
.footer-grid p { color: #a7c2a4; font-size: .92rem; }
.footer-bottom { margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .82rem; color: #8fae8d; }
.footer-bottom .reg { color: #7fa07e; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.4rem; }
.filter-btn {
  font-family: var(--sans); font-weight: 700; font-size: .9rem; cursor: pointer;
  padding: .55rem 1.1rem; border-radius: 100px; border: 1.5px solid rgba(20,81,42,.18);
  background: var(--paper); color: var(--green-800); transition: all .2s;
}
.filter-btn:hover { border-color: var(--green-600); background: var(--green-100); }
.filter-btn.is-active { background: var(--green-700); border-color: var(--green-700); color: #fff; }

/* Masonry-style columns */
.gallery-grid { columns: 3; column-gap: 1.1rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1.1rem; }
.gallery-thumb {
  position: relative; display: block; width: 100%; padding: 0; border: 0; cursor: pointer;
  border-radius: var(--radius-sm); overflow: hidden; background: var(--cream-2);
  box-shadow: var(--shadow-sm); line-height: 0;
}
.gallery-thumb img { width: 100%; height: auto; display: block; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.gallery-thumb:hover img { transform: scale(1.06); }
.gallery-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,61,32,.78), rgba(14,61,32,.05) 45%, transparent 65%);
  opacity: 0; transition: opacity .35s;
}
.gallery-thumb:hover::after, .gallery-thumb:focus-visible::after { opacity: 1; }
.gallery-cat {
  position: absolute; top: .8rem; left: .8rem; z-index: 2;
  font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: #3a2a06; background: var(--honey); padding: .28rem .7rem; border-radius: 100px;
  opacity: 0; transform: translateY(-6px); transition: .35s;
}
.gallery-cap {
  position: absolute; left: 1rem; right: 1rem; bottom: .9rem; z-index: 2;
  color: #fff; font-family: var(--sans); font-weight: 600; font-size: .9rem; line-height: 1.35;
  text-align: left; opacity: 0; transform: translateY(8px); transition: .35s;
}
.gallery-thumb:hover .gallery-cat, .gallery-thumb:focus-visible .gallery-cat,
.gallery-thumb:hover .gallery-cap, .gallery-thumb:focus-visible .gallery-cap { opacity: 1; transform: none; }
.gallery-empty { text-align: center; color: var(--ink-soft); padding: 2rem; font-weight: 600; }

/* Lightbox */
.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center;
  background: rgba(8,30,16,.92); backdrop-filter: blur(6px); padding: 4vh 4vw;
  animation: lbfade .25s ease;
}
@keyframes lbfade { from { opacity: 0; } to { opacity: 1; } }
.lb-stage { display: flex; flex-direction: column; align-items: center; gap: 1rem; max-width: 100%; max-height: 100%; }
.lb-stage img { max-width: 86vw; max-height: 78vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.5); object-fit: contain; }
.lb-stage figcaption { color: #e7f2e4; font-weight: 600; font-size: 1rem; text-align: center; max-width: 60ch; }
.lb-close {
  position: absolute; top: 1.2rem; right: 1.4rem; z-index: 2; width: 46px; height: 46px;
  border: 0; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff;
  font-size: 1.8rem; line-height: 1; cursor: pointer; transition: background .2s;
}
.lb-close:hover { background: rgba(255,255,255,.25); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 54px; height: 54px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; transition: background .2s;
}
.lb-nav:hover { background: var(--honey); color: #3a2a06; }
.lb-prev { left: 1.2rem; }
.lb-next { right: 1.2rem; }


/* =========================================================
   GDPR — cookie banner, consent checkbox, legal page
   ========================================================= */
/* Optional dimming scrim behind the banner to draw the eye */
.cookie-scrim {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(8,30,16,.28); backdrop-filter: blur(1px);
  opacity: 0; transition: opacity .35s ease; pointer-events: none;
}
.cookie-scrim.show { opacity: 1; }

.cookie-banner[hidden] { display: none; }
.cookie-banner {
  position: fixed; left: 1.25rem; right: 1.25rem; bottom: 2.5rem; z-index: 120;
  background: var(--paper); color: var(--ink); border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(8,30,16,.45), 0 4px 16px rgba(8,30,16,.2);
  border: 1px solid rgba(20,81,42,.12);
  opacity: 0; transform: translateY(40px) scale(.98);
  transition: opacity .4s cubic-bezier(.2,.7,.2,1), transform .4s cubic-bezier(.2,.7,.2,1);
  max-width: 720px; margin-inline: auto; overflow: hidden;
}
/* honey accent strip across the top of the card */
.cookie-banner::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--honey), var(--green-500));
}
.cookie-banner.show { opacity: 1; transform: none; }
.cookie-inner { display: flex; align-items: center; gap: 1.5rem; padding: 1.5rem 1.6rem; flex-wrap: wrap; }
.cookie-icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--green-100); color: var(--green-700);
}
.cookie-icon svg { width: 24px; height: 24px; }
.cookie-text { color: var(--ink-soft); font-size: .94rem; line-height: 1.55; flex: 1 1 300px; margin: 0; }
.cookie-text strong { color: var(--green-900); }
.cookie-text a { color: var(--green-700); font-weight: 700; text-decoration: underline; }
.cookie-text a:hover { color: var(--honey-dark); }
.cookie-actions { display: flex; gap: .6rem; flex: none; }
.cookie-btn { padding: .7rem 1.4rem; font-size: .9rem; }
.cookie-banner .btn--ghost { color: var(--green-800); box-shadow: inset 0 0 0 2px rgba(31,107,52,.3); }
.cookie-banner .btn--ghost:hover { background: rgba(31,107,52,.06); box-shadow: inset 0 0 0 2px var(--green-700); }


/* Consent checkbox on the contact form */
.consent { display: flex; align-items: flex-start; gap: .7rem; cursor: pointer; text-transform: none; letter-spacing: 0; }
.consent input { width: 20px; height: 20px; flex: none; margin-top: .15rem; accent-color: var(--green-700); cursor: pointer; }
.consent span { font-weight: 600; font-size: .92rem; color: var(--ink-soft); line-height: 1.5; }
.consent a { color: var(--green-700); font-weight: 700; text-decoration: underline; }
.consent-field.has-error .consent span { color: var(--error); }
.consent-field label { margin-bottom: 0; }

/* Footer legal row */
.footer-legal { display: inline-flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.footer-legal a { color: #b7cfb4; }
.footer-legal a:hover { color: var(--honey); }
.footer-sep { color: #5f7d5e; user-select: none; }
.reg-sign { color: var(--honey); font-weight: 700; margin-right: .15rem; }

/* Legal / privacy article */
.legal { max-width: 760px; }
.legal-updated { font-size: .85rem; color: var(--ink-soft); font-weight: 700; margin-bottom: 1.6rem; }
.legal h2 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); margin: 2rem 0 .6rem; }
.legal p { margin-bottom: .9rem; }
.legal a { color: var(--green-700); font-weight: 600; text-decoration: underline; }
.legal a.btn { color: #fff; text-decoration: none; }



/* Animations are progressive enhancement only: they activate when the
   <html class="js"> flag is present. Without JS, all content is visible. */
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.js [data-rise] { opacity: 0; }
.js .is-in [data-rise], .js [data-rise].is-in { animation: rise .8s cubic-bezier(.2,.7,.2,1) forwards; }
.js [data-rise="2"] { animation-delay: .12s; }
.js [data-rise="3"] { animation-delay: .24s; }
.js [data-rise="4"] { animation-delay: .36s; }

.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  [data-rise], .reveal { opacity: 1 !important; transform: none !important; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 940px) {
  .hero-grid, .split, .split--rev .split-text, .contact-grid { grid-template-columns: 1fr; }
  .split--rev .split-text { order: 0; }
  .cards, .values { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 2; }
}
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 88px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); padding: .6rem 1.2rem 1.2rem;
    box-shadow: var(--shadow-md); border-bottom: 1px solid rgba(20,81,42,.1);
    max-height: 0; overflow: hidden; transition: max-height .35s ease; visibility: hidden;
  }
  .nav-links.open { max-height: 420px; visibility: visible; }
  .nav-links a { padding: .85rem .6rem; border-radius: 10px; }
  .nav-cta { margin: .4rem 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}
@media (max-width: 560px) {
  .cards, .values, .stats, .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .lb-nav { width: 42px; height: 42px; font-size: 1.5rem; }
  .lb-prev { left: .4rem; } .lb-next { right: .4rem; }
  .cookie-actions { flex: 1 1 100%; }
  .cookie-btn { flex: 1; justify-content: center; }
}
