/* ==========================================================================
   Hope Ineza Foundation
   A restrained editorial system. One brand colour, one accent, neutrals.
   Hairline rules and whitespace do the work that cards would otherwise do.
   ========================================================================== */

:root {
  /* ---- Colour, taken from the official logo ----
     The logo's script is gold (#c9a24a, shadowed to #9a712b, highlit to
     #e1ba68) and the FOUNDATION wordmark is emerald #6ac699. Every colour
     below sits on one of those two hues; the deep greens are the logo's
     emerald (hue 151) taken down in lightness, and the neutrals carry a
     trace of the same hue so nothing reads as flat grey. */

  --brand:        #143b28;   /* deep emerald — logo hue, 12.5:1 with white */
  --brand-dark:   #0e2d1e;
  --brand-mid:    #1f5139;
  --brand-tint:   #deede6;

  --accent:       #866928;   /* logo gold darkened to 5.17:1 on white */
  --gold:         #c9a24a;   /* the logo gold itself — dark grounds only */
  --gold-light:   #e1ba68;   /* logo highlight — dark grounds only */
  --emerald:      #6ac699;   /* the FOUNDATION green — dark grounds only */

  --ink:          #18201c;
  --body:         #4c5752;
  --muted:        #65726b;   /* 4.76:1 on the alt background */
  --line:         #e3e8e6;   /* decorative hairlines */
  --line-strong:  #c7d1cc;
  --field-border: #687870;   /* 4.66:1 — form controls need 3:1 (WCAG 1.4.11) */

  --bg:           #ffffff;
  --bg-alt:       #f7f9f8;

  /* Type */
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Metrics */
  --max: 1140px;
  --gutter: 24px;
  --r: 3px;
  --r-lg: 5px;

  /* Spacing scale — every vertical gap comes from this set */
  --sp-1: 12px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-6: clamp(40px, 5vw, 64px);

  --t: 160ms cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* height:auto is load-bearing. Images carry width/height attributes so the
   browser can reserve their space before they load; without this those
   attributes act as presentational hints that pin height in pixels and
   override every aspect-ratio set below. */
img { max-width: 100%; display: block; height: auto; }
button { font: inherit; cursor: pointer; }

a { color: var(--brand); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; text-decoration-color: var(--line-strong); transition: text-decoration-color var(--t), color var(--t); }
a:hover { color: var(--accent); text-decoration-color: currentColor; }

h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); margin: 0 0 .5em; font-weight: 600; letter-spacing: -.005em; }
h1 { font-size: clamp(2rem, 3.4vw, 2.8rem); line-height: 1.16; }
h2 { font-size: clamp(1.45rem, 2.3vw, 1.9rem); line-height: 1.24; }
h3 { font-size: 1.14rem; line-height: 1.35; }
h4 { font-size: 1rem; line-height: 1.4; font-family: var(--sans); font-weight: 600; letter-spacing: 0; }
p  { margin: 0 0 1.1em; max-width: 68ch; }
p:last-child { margin-bottom: 0; }
strong { color: var(--ink); font-weight: 600; }

ul, ol { padding-left: 1.15rem; margin: 0 0 1.1em; }
li { margin-bottom: .4em; }

/* Keyboard focus — always visible, never removed */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 2px;
}
.on-dark :focus-visible, .site-footer :focus-visible, .hero :focus-visible { outline-color: #fff; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.measure { max-width: 72ch; }
.section { padding-block: clamp(56px, 7vw, 92px); }
.section--sm { padding-block: clamp(40px, 4.5vw, 60px); }
.section--alt { background: var(--bg-alt); }
.section--brand { background: var(--brand); color: #c2d6cb; }
.section--brand h1, .section--brand h2, .section--brand h3, .section--brand h4 { color: #fff; }
.section--brand strong { color: #fff; }
/* :not(.btn) matters — without it this rule outranks .btn--on-brand and
   paints the light button's label white on a white background. */
.section--brand a:not(.btn) { color: #fff; text-decoration-color: rgba(255,255,255,.4); }
.section--brand a:not(.btn):hover { color: #fff; text-decoration-color: #fff; }
.section + .section:not(.section--alt):not(.section--brand) { border-top: 1px solid var(--line); }

/* Section introduction block */
.intro { max-width: 62ch; margin-bottom: clamp(36px, 4vw, 52px); }
.intro p { font-size: 1.08rem; color: var(--body); }
.intro--split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.25fr); gap: clamp(28px, 5vw, 72px); max-width: none; align-items: start; }
.intro--split h2 { margin-bottom: 0; }

.eyebrow {
  display: block;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .85rem;
}
.section--brand .eyebrow { color: var(--gold-light); }

.lead { font-size: 1.12rem; line-height: 1.62; color: var(--body); max-width: 60ch; }
.section--brand .lead { color: #b3cabf; }

.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }
.section--brand .rule { border-color: rgba(255,255,255,.16); }

/* Vertical spacing utilities — the only way space is added between blocks */
.mt-1 { margin-top: var(--sp-1); }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-3 { margin-bottom: var(--sp-3); }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  padding: 11px 20px; border-radius: var(--r);
  border: 1px solid var(--brand); background: var(--brand); color: #fff;
  font-size: .93rem; font-weight: 500; text-decoration: none;
  transition: background var(--t), border-color var(--t), color var(--t);
}
.btn:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; }
.btn--secondary { background: transparent; color: var(--brand); border-color: var(--field-border); }
.btn--secondary:hover { background: transparent; color: var(--brand-dark); border-color: var(--brand); }
.btn--on-brand { background: #fff; border-color: #fff; color: var(--brand-dark); }
.btn--on-brand:hover { background: var(--brand-tint); border-color: var(--brand-tint); color: var(--brand-dark); }
.btn--ghost-light { background: transparent; border-color: rgba(255,255,255,.42); color: #fff; }
.btn--ghost-light:hover { background: rgba(255,255,255,.09); border-color: #fff; color: #fff; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Text link with directional affordance */
.link-more {
  display: inline-block; font-size: .9rem; font-weight: 500;
  text-decoration: none; border-bottom: 1px solid var(--line-strong); padding-bottom: 2px;
  transition: border-color var(--t), color var(--t);
}
.link-more::after { content: " \2192"; }
.link-more:hover { border-color: var(--accent); }

/* ---------- Editorial grids (no cards) ---------- */
.cols { display: grid; gap: clamp(28px, 3.5vw, 44px); }
.cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

/* An item in an editorial grid: hairline above, no box */
.item { padding-top: 20px; border-top: 1px solid var(--line); }
.item h3 { margin-bottom: .45em; }
.item p { font-size: .97rem; max-width: 44ch; }
.section--brand .item { border-color: rgba(255,255,255,.18); }
.section--brand .item p { color: #b3cabf; }

/* Numbered editorial item */
.item__num {
  display: block; font-family: var(--serif); font-size: .95rem;
  color: var(--accent); margin-bottom: .5rem; font-variant-numeric: tabular-nums;
}
.section--brand .item__num { color: var(--gold-light); }

/* Definition list — used for facts, not cards */
.facts { display: grid; gap: 0; margin: 0; }
.facts > div { display: grid; grid-template-columns: minmax(140px, 22%) 1fr; gap: 24px; padding: 16px 0; border-top: 1px solid var(--line); }
.facts dt { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.facts dd { margin: 0; font-size: .98rem; }
.section--brand .facts > div { border-color: rgba(255,255,255,.16); }
.section--brand .facts dt { color: var(--emerald); }

/* ---------- Panel — only where content genuinely groups ---------- */
.panel { border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 34px); background: var(--bg); }
.panel--alt { background: var(--bg-alt); }
.section--alt .panel { background: #fff; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: #fff; border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand:hover { color: inherit; }
.brand__mark { width: auto; height: 46px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.brand__sub { font-size: .64rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-top: 2px; }

.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links li { margin: 0; }
.nav__links a {
  display: block; padding: 8px 11px; border-radius: var(--r);
  font-size: .91rem; font-weight: 450; color: var(--body); text-decoration: none;
  transition: color var(--t), background var(--t);
}
.nav__links a:hover { color: var(--ink); background: var(--bg-alt); }
.nav__links a.is-active { color: var(--ink); font-weight: 550; box-shadow: inset 0 -2px 0 var(--accent); border-radius: 0; }
.nav__end { display: flex; align-items: center; gap: 10px; }

.nav__toggle {
  display: none; width: 40px; height: 40px;
  border: 1px solid var(--field-border); background: #fff; border-radius: var(--r);
  place-items: center; color: var(--ink);
}
.nav__toggle svg { width: 18px; height: 18px; }

@media (max-width: 1000px) {
  .nav__toggle { display: grid; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 16px; display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 13px 4px; font-size: 1rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__links a.is-active { box-shadow: none; color: var(--accent); }
  .nav__links li:last-child a { border-bottom: 0; }
}

/* ---------- Hero (landing) ---------- */
.hero { position: relative; background: var(--brand-dark); color: #b9cdc2; overflow: hidden; isolation: isolate; }
.hero__layers { position: absolute; inset: 0; z-index: 0; }
.hero__media { position: absolute; inset: -12% 0 -12% 0; will-change: transform; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(14,45,30,.94) 0%, rgba(14,45,30,.86) 46%, rgba(14,45,30,.60) 100%);
}
.hero__inner { position: relative; z-index: 1; padding-block: clamp(76px, 10vw, 132px); will-change: transform, opacity; }
.hero h1 { color: #fff; max-width: 19ch; margin-bottom: .55em; }
.hero__standfirst { font-size: 1.14rem; line-height: 1.62; color: #b9cdc2; max-width: 54ch; }
.hero__meta {
  margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.2);
  display: flex; flex-wrap: wrap; gap: 10px 40px; font-size: .88rem; color: #93a8a0; max-width: 62ch;
}
.hero__meta b { display: block; color: #fff; font-weight: 500; font-size: .95rem; }
.hero .btn-group { margin-top: 32px; }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; background: var(--brand-dark); color: #b0c5b9; overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__scrim { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(14,45,30,.95) 0%, rgba(14,45,30,.88) 52%, rgba(14,45,30,.7) 100%); }
.page-hero__inner { position: relative; z-index: 1; padding-block: clamp(48px, 6vw, 76px); }
.page-hero h1 { color: #fff; margin-bottom: .4em; }
.page-hero .lead { color: #b0c5b9; }
.crumb { font-size: .82rem; color: #8ba296; margin-bottom: 18px; }
.crumb a { color: #a8c0b4; text-decoration-color: rgba(255,255,255,.28); }
.crumb a:hover { color: #fff; }

/* ---------- Figures ---------- */
figure { margin: 0; }
.figure img { width: 100%; border-radius: var(--r); }
.figure figcaption { margin-top: 10px; font-size: .85rem; color: var(--muted); max-width: 58ch; }

/* Two-column feature: text beside image */
.feature { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(32px, 5vw, 68px); align-items: center; }
.feature--reverse > .figure { order: 2; }
.feature .figure img { aspect-ratio: 4 / 3; object-fit: cover; }

/* Primary content beside a narrower supporting image — used where a table or
   list would otherwise leave the right-hand side of the measure empty. */
.feature--aside { grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr); align-items: start; gap: clamp(28px, 4vw, 52px); }


/* A figure carried inside the left column of an .intro--split, so a short
   heading does not leave a tall empty block beside the body copy. */
.intro--split .figure { margin-top: var(--sp-4); }
.intro--split .figure img { aspect-ratio: 4 / 3; object-fit: cover; }

/* Aspect-ratio overrides for figures whose source does not suit the 4:3 box.
   These have to out-rank `.feature .figure img` (0,2,1), so each selector is
   written at the same specificity and placed after it — a bare
   `.figure--tall img` (0,1,1) silently loses and the image gets cropped. */
.feature .figure--tall img,
.intro--split .figure--tall img,
.figure--tall img {
  aspect-ratio: 3 / 4;          /* portrait sources */
  object-fit: cover;
}
.feature .figure--natural img,
.intro--split .figure--natural img,
.figure--natural img {
  aspect-ratio: auto;           /* wide brochure crops — shown uncropped */
  object-fit: contain;
}


/* ---------- Video ---------- */
.videos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 3.5vw, 44px); }
.video figure, figure.video { margin: 0; }
.video video {
  width: 100%; height: auto; display: block;
  aspect-ratio: 16 / 9; background: var(--brand-dark);
  border-radius: var(--r); object-fit: cover;
}
.video figcaption { margin-top: 12px; font-size: .92rem; color: var(--body); max-width: 52ch; }
.video figcaption b { display: block; font-family: var(--serif); font-size: 1.06rem; color: var(--ink); margin-bottom: 4px; font-weight: 600; }
.video__meta { display: block; margin-top: 6px; font-size: .84rem; color: var(--muted); }

/* ---------- Gallery ---------- */
/* Masonry via columns. The photographs are a mix of landscape and portrait;
   flowing them down columns keeps every image uncropped and avoids the ragged
   gaps a fixed grid leaves when the two orientations sit in the same row. */
.gallery { column-count: 3; column-gap: 20px; }
.gallery figure { break-inside: avoid; margin-bottom: 22px; }
.gallery figure img { width: 100%; border-radius: var(--r); }
.gallery figcaption { margin-top: 9px; font-size: .84rem; color: var(--muted); }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; }
table.budget { width: 100%; border-collapse: collapse; min-width: 440px; }
table.budget caption { text-align: left; font-size: .85rem; color: var(--muted); padding-bottom: 12px; }
table.budget th, table.budget td { padding: 14px 0; text-align: left; border-bottom: 1px solid var(--line); font-size: .97rem; }
table.budget thead th { font-family: var(--sans); font-size: .74rem; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); font-weight: 600; padding-bottom: 10px; }
table.budget td:last-child, table.budget th:last-child { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
table.budget tr.total td { border-bottom: 0; border-top: 2px solid var(--ink); font-weight: 600; color: var(--ink); padding-top: 16px; }

/* ---------- Timeline / ordered process ---------- */
.steps { list-style: none; padding: 0; margin: 0; counter-reset: s; }
.steps li { position: relative; padding: 18px 0 18px 46px; border-top: 1px solid var(--line); margin: 0; }
.steps li::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 0; top: 18px;
  font-family: var(--serif); font-size: .92rem; color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.steps b { display: block; color: var(--ink); font-weight: 600; font-size: 1rem; }
.steps span { font-size: .88rem; color: var(--muted); }
.section--brand .steps li { border-color: rgba(255,255,255,.16); }
.section--brand .steps li::before { color: var(--gold-light); }
.section--brand .steps b { color: #fff; }

/* ---------- Pull quote ---------- */
.pullquote { border-left: 2px solid var(--accent); padding-left: 26px; margin: 0; max-width: 60ch; }
.pullquote p { font-family: var(--serif); font-size: 1.22rem; line-height: 1.5; color: var(--ink); }
.pullquote cite { display: block; margin-top: 14px; font-family: var(--sans); font-style: normal; font-size: .88rem; color: var(--muted); }

/* ---------- Notes / disclosure ---------- */
.note { border-left: 2px solid var(--accent); padding: 2px 0 2px 20px; font-size: .93rem; color: var(--body); max-width: 68ch; }
.note strong { color: var(--ink); }
.section--brand .note { border-color: var(--gold); color: #b3cabf; }

/* ---------- Forms ---------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .87rem; font-weight: 550; color: var(--ink); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 13px;
  border: 1px solid var(--field-border); border-radius: var(--r);
  font: inherit; font-size: .95rem; color: var(--ink); background: #fff;
  transition: border-color var(--t), box-shadow var(--t);
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(20,59,40,.16);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .86rem; color: var(--muted); margin-top: 16px; max-width: 60ch; }

/* Amount selector — functional, restrained */
.amounts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.amount {
  border: 1px solid var(--field-border); background: #fff; border-radius: var(--r);
  padding: 13px 8px; text-align: center; color: var(--body);
  transition: border-color var(--t), color var(--t);
}
.amount:hover { border-color: var(--muted); }
.amount.is-active { border-color: var(--brand); box-shadow: inset 0 0 0 1px var(--brand); color: var(--ink); }
.amount b { display: block; font-family: var(--serif); font-size: 1.25rem; color: var(--ink); }
.amount span { font-size: .76rem; color: var(--muted); }
.segmented { display: inline-flex; border: 1px solid var(--field-border); border-radius: var(--r); overflow: hidden; margin-bottom: 20px; }
.segmented button { border: 0; background: #fff; padding: 9px 18px; font-size: .89rem; font-weight: 500; color: var(--body); transition: background var(--t), color var(--t); }
.segmented button + button { border-left: 1px solid var(--field-border); }
.segmented button.is-active { background: var(--brand); color: #fff; }
.impact-note { font-size: .93rem; color: var(--body); margin-bottom: 20px; min-height: 3.2em; }

/* Contact detail list with functional icons only */
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; gap: 13px; align-items: flex-start; padding: 15px 0; border-top: 1px solid var(--line); margin: 0; }
.contact-list svg { width: 17px; height: 17px; flex: none; margin-top: 3px; color: var(--muted); }
.contact-list b { display: block; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 2px; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); max-width: 76ch; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 40px 18px 0; font-family: var(--serif); font-size: 1.05rem; color: var(--ink); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 9px; height: 9px;
  border-right: 1.5px solid var(--muted); border-bottom: 1.5px solid var(--muted);
  transform: translateY(-70%) rotate(45deg); transition: transform var(--t);
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details > p { padding: 0 40px 20px 0; font-size: .97rem; }
.section--brand .faq, .section--brand .faq details { border-color: rgba(255,255,255,.16); }
.section--brand .faq summary { color: #fff; }
.section--brand .faq summary::after { border-color: var(--emerald); }
.section--brand .faq details > p { color: #b3cabf; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brand-dark); color: #93a8a0; padding: 56px 0 24px; font-size: .93rem; }
.site-footer a { color: #c2d6cb; text-decoration-color: rgba(255,255,255,.24); }
.site-footer a:hover { color: #fff; text-decoration-color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.site-footer h2 { color: #fff; font-family: var(--sans); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 15px; font-weight: 600; }
.footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer__links li { margin: 0; }
.site-footer .brand__name { color: #fff; }
.site-footer .brand__sub { color: #7d9389; }
.site-footer .brand { margin-bottom: 16px; }
.site-footer .brand__mark { height: 56px; }
.site-footer p { max-width: 34ch; }
.footer__status { font-size: .84rem; color: #93a8a0; margin-top: 14px; line-height: 1.6; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.14); padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between;
  font-size: .84rem; color: #93a8a0;
}

/* Honeypot: a field no visitor ever sees. Bots fill every input they find, so
   anything arriving with this set is discarded server-side. Kept out of the
   accessibility tree and out of the tab order rather than merely hidden. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Motion: gentle fade, scroll-driven depth only ---------- */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

/* Visually hidden but available to screen readers */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--brand); color: #fff; padding: 10px 18px; border-radius: 0 0 var(--r) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .intro--split { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 860px) {
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery { column-count: 2; }
  .videos { grid-template-columns: 1fr; }
  .feature { grid-template-columns: 1fr; }
  .feature--reverse > .figure { order: 0; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .cols-2, .cols-3, .cols-4, .field-row, .amounts { grid-template-columns: 1fr; }
  .gallery { column-count: 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .facts > div { grid-template-columns: 1fr; gap: 4px; }
  .btn-group .btn { width: 100%; }
  .hero__meta { gap: 14px; }
}
