/* ============================================================================
   DFWI — design system
   Dignified, warm, calm, family-centred (brief §13). Mobile-first.
   Colours sampled from the approved DFWI lockup and campaign artwork.
   ========================================================================== */
@import url('/fonts/fonts.css');

:root {
  /* brand greens — deepest to lightest */
  --green-950: #042014;   /* campaign card field: footer ground */
  --green-900: #003020;   /* banner left panel: hover on dark */
  --green-800: #003c28;   /* banner field: primary brand green */
  --green-700: #104828;   /* logo figure green: interactive accents */
  --green-100: #e7efe9;
  --green-50:  #f2f6f3;

  /* gold — restrained */
  --gold-300: #dcac50;    /* gold on dark ground (6.9:1 on --green-800) */
  --gold-500: #b47814;    /* logo gold: rules, icons, large display only */
  --gold-700: #845407;    /* gold as text on white (5.9:1) */
  --gold-50:  #fbf5e8;

  /* neutrals, biased faintly towards the brand green */
  --ink:     #17221d;
  --ink-2:   #3b4842;
  --muted:   #5a6862;
  --line:    #dbe2dd;
  --paper:   #ffffff;
  --paper-2: #f5f7f5;

  /* review-only marker: deliberately off-brand so it can never be mistaken for design */
  --pending:    #6a3aa2;
  --pending-bg: #f4eefb;

  --font-display: 'Barlow Semi Condensed', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-accent: 'Source Serif 4', Georgia, 'Times New Roman', serif;

  --measure: 68ch;
  --wrap: 1180px;
  --gutter: clamp(16px, 4.5vw, 40px);
  --radius: 10px;
  --radius-lg: 16px;
  --dock-h: 0px;          /* mobile Get Support dock height, set below */
  --shadow: 0 1px 2px rgba(4, 32, 20, .06), 0 6px 22px rgba(4, 32, 20, .07);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 1.0625rem/1.65 var(--font-body);
  padding-bottom: var(--dock-h);
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--green-800); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--green-700); text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; border-radius: 3px; }
.section--dark :focus-visible, .hero :focus-visible, .site-footer :focus-visible { outline-color: var(--gold-300); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--green-800);
  line-height: 1.1;
  letter-spacing: -.005em;
  margin: 0 0 .45em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.15rem, 1.3rem + 3.6vw, 3.7rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 1.1rem + .6vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font: 600 .8rem/1.2 var(--font-body);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: .75rem;
}
.lede { font-size: clamp(1.1rem, 1rem + .4vw, 1.3rem); color: var(--ink-2); max-width: var(--measure); }
.accent { font-family: var(--font-accent); font-style: italic; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter); }
.measure { max-width: var(--measure); }
.visually-hidden {
  position: absolute !important; 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: var(--gutter); top: -60px; z-index: 100;
  background: var(--green-800); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 8px;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 0; color: #fff; }

/* --------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 48px; padding: .7em 1.35em;
  border: 2px solid transparent; border-radius: 999px;
  font: 600 1rem/1.15 var(--font-body);
  text-decoration: none; cursor: pointer;
  transition: background-color .18s, color .18s, border-color .18s, transform .18s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--green-800); color: #fff; }
.btn-primary:hover { background: var(--green-700); color: #fff; }
/* Get Support is the one action that must always stand out */
.btn-support { background: var(--gold-300); color: var(--green-950); }
.btn-support:hover { background: #e7bd6c; color: var(--green-950); }
.btn-secondary { background: transparent; color: var(--green-800); border-color: var(--green-800); }
.btn-secondary:hover { background: var(--green-800); color: #fff; }
.btn-ghost { background: transparent; color: var(--green-800); padding-inline: .4em; }
.btn-ghost:hover { color: var(--green-700); text-decoration: underline; transform: none; }
.on-dark .btn-secondary { color: #fff; border-color: rgba(255, 255, 255, .7); }
.on-dark .btn-secondary:hover { background: #fff; color: var(--green-800); border-color: #fff; }
.on-dark .btn-ghost { color: #fff; }
.on-dark .btn-ghost:hover { color: var(--gold-300); }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }

/* ---------------------------------------------------------- review mode -- */
.review-banner {
  background: var(--pending); color: #fff; font-size: .9rem; line-height: 1.4;
  padding: .55rem var(--gutter); text-align: center;
}
.review-banner strong { font-weight: 700; }
.tag-pending {
  display: inline-flex; align-items: center; gap: .35em;
  font: 600 .72rem/1 var(--font-body); letter-spacing: .06em; text-transform: uppercase;
  color: var(--pending); background: var(--pending-bg);
  border: 1px solid currentColor; border-radius: 999px; padding: .38em .7em;
  vertical-align: middle;
}
.is-pending { outline: 2px dashed var(--pending); outline-offset: 6px; border-radius: 4px; }
.pending-note {
  display: block; margin-top: .6rem; font-size: .88rem; line-height: 1.45;
  color: var(--pending); background: var(--pending-bg); border-left: 3px solid var(--pending);
  padding: .5rem .75rem; border-radius: 0 6px 6px 0;
}
.section--dark .pending-note, .hero .pending-note { background: #efe6f9; }

/* --------------------------------------------------------------- header -- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(1.2) blur(6px);
}
.site-header .bar { display: flex; align-items: center; gap: 16px; min-height: 136px; }
@media (max-width: 1119px) { .site-header .bar { min-height: 120px; } }
@media (max-width: 699px) { .site-header .bar { min-height: 104px; } }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; text-decoration: none; min-width: 0; }
/* The logo stands alone and carries its own wording, so it is shown large enough to read:
   its "DEPOWA" line and "Families Wellness Initiative" are both legible at 120px. */
.brand img { width: 120px; height: 120px; flex: none; }
@media (max-width: 1119px) { .brand img { width: 104px; height: 104px; } }
@media (max-width: 699px) {
  /* A header this tall would take too much of a phone screen if it followed the scroll.
     Get Support stays reachable in the fixed bottom dock. */
  .site-header { position: static; }
  .brand img { width: 88px; height: 88px; }
}
.site-nav { display: none; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 2px; }
.site-nav a {
  display: block; padding: .5rem .55rem; border-radius: 8px; white-space: nowrap;
  color: var(--ink-2); font-weight: 600; font-size: .95rem; text-decoration: none;
}
.site-nav a:hover { color: var(--green-800); background: var(--green-50); }
.site-nav a[aria-current="page"] { color: var(--green-800); box-shadow: inset 0 -3px 0 var(--gold-500); border-radius: 8px 8px 0 0; }
.header-support { display: none; }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 44px; padding: 0 .9rem; border: 1px solid var(--line); border-radius: 999px;
  background: #fff; color: var(--green-800); font: 600 .95rem var(--font-body); cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }
.mobile-nav { border-top: 1px solid var(--line); background: #fff; }
.mobile-nav[hidden] { display: none; }
.mobile-nav ul { list-style: none; margin: 0; padding: .5rem var(--gutter) 1rem; }
.mobile-nav a { display: block; padding: .85rem .25rem; border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 600; text-decoration: none; }
.mobile-nav a[aria-current="page"] { color: var(--green-800); }

/* Mobile: Get Support lives in a bottom dock, within thumb reach on every page. */
.support-dock {
  position: fixed; inset: auto 0 0 0; z-index: 60;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, .98); border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(4, 32, 20, .08);
}
.support-dock .btn { width: 100%; }
body.has-dock { --dock-h: calc(68px + env(safe-area-inset-bottom, 0px)); }

/* Tablets and small laptops: Get Support moves up into the header and the bottom dock
   goes; the full nav waits until there is room for it. */
@media (min-width: 700px) {
  .support-dock { display: none !important; }
  .header-support { display: inline-flex; white-space: nowrap; }
  body.has-dock { --dock-h: 0px; }
}
/* Measured with the full nav forced on: the lockup, seven links and Get Support use
   971px, leaving 49px spare at a 1,100px viewport and none at 1,024. 1,120px keeps
   ~70px in hand for font-loading variance. Below that the links would squeeze. */
@media (min-width: 1120px) {
  .site-nav { display: block; }
  .nav-toggle, .mobile-nav { display: none !important; }
}

/* ----------------------------------------------------------------- hero -- */
.hero {
  position: relative; overflow: hidden;
  background: var(--green-800); color: #fff;
  padding-block: clamp(48px, 9vw, 110px) clamp(56px, 9vw, 120px);
}
.hero::after {
  /* the heart-arc motif from the DFWI mark, as a quiet watermark */
  content: ""; position: absolute; right: -8%; bottom: -30%; width: min(62vw, 640px); aspect-ratio: 1;
  border: clamp(18px, 3vw, 34px) solid rgba(220, 172, 80, .10); border-radius: 50%;
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero .eyebrow { color: var(--gold-300); }
.hero h1 { color: #fff; max-width: 17ch; }
.hero-intro { font-size: clamp(1.1rem, 1rem + .5vw, 1.35rem); line-height: 1.55; color: rgba(255, 255, 255, .92); max-width: 58ch; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.strapline {
  margin: 2.2rem 0 0; padding-top: 1.1rem; border-top: 1px solid rgba(220, 172, 80, .35);
  font-family: var(--font-accent); font-style: italic; font-size: clamp(1.05rem, 1rem + .3vw, 1.25rem);
  color: var(--gold-300); max-width: 60ch;
}

/* ------------------------------------------------------------- sections -- */
.section { padding-block: clamp(52px, 8vw, 96px); }
.section--tint { background: var(--paper-2); }
.section--dark { background: var(--green-950); color: rgba(255, 255, 255, .9); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .eyebrow { color: var(--gold-300); }
.section-head { margin-bottom: clamp(24px, 4vw, 40px); max-width: var(--measure); }
.section-head h2 { margin-bottom: .35em; }
.section-head p { color: var(--ink-2); margin: 0; }
.section--dark .section-head p { color: rgba(255, 255, 255, .8); }

.page-head { background: var(--green-50); border-bottom: 1px solid var(--line); padding-block: clamp(36px, 6vw, 64px); }
.page-head h1 { max-width: 22ch; }
.page-head .lede { margin: 0; }
.crumbs { font-size: .9rem; color: var(--muted); margin-bottom: .9rem; }
.crumbs a { color: var(--muted); }
.crumbs span[aria-hidden] { margin-inline: .4em; }

.split { display: grid; gap: clamp(24px, 5vw, 64px); }
@media (min-width: 880px) { .split { grid-template-columns: 5fr 7fr; align-items: start; } }

/* ------------------------------------------------------------- pathways -- */
.pathways { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .pathways { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .pathways { grid-template-columns: repeat(4, 1fr); } }
.pathway {
  display: flex; flex-direction: column; gap: .55rem; height: 100%;
  padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: #fff; color: var(--ink); text-decoration: none;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.pathway:hover { border-color: var(--green-700); box-shadow: var(--shadow); transform: translateY(-2px); color: var(--ink); text-decoration: none; }
.pathway .icon { width: 44px; height: 44px; color: var(--green-800); }
.pathway h3 { margin: .2rem 0 0; }
.pathway p { margin: 0; color: var(--ink-2); font-size: .98rem; }
.pathway .go { margin-top: auto; padding-top: .5rem; font-weight: 600; color: var(--green-800); }
.pathway--support { background: var(--gold-50); border-color: #ecd7a8; }

/* --------------------------------------------------------- at a glance -- */
.glance { display: grid; gap: 1px; background: rgba(255, 255, 255, .14); border-radius: var(--radius-lg); overflow: hidden; grid-template-columns: 1fr; }
@media (min-width: 560px) { .glance { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .glance { grid-template-columns: repeat(5, 1fr); } }
.stat { background: var(--green-950); padding: 22px 20px 20px; display: flex; flex-direction: column; gap: .35rem; }
.stat-kind {
  align-self: flex-start; font: 600 .7rem/1 var(--font-body); letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-950); background: var(--gold-300); padding: .35em .6em; border-radius: 4px;
}
.stat-value { font: 700 clamp(2.2rem, 1.6rem + 2vw, 3rem)/1 var(--font-display); color: #fff; font-variant-numeric: tabular-nums; margin-top: .3rem; }
.stat-label { color: rgba(255, 255, 255, .85); font-size: 1rem; line-height: 1.35; }
.glance-note { margin: 1.25rem 0 0; font-size: .95rem; color: rgba(255, 255, 255, .78); max-width: var(--measure); }

/* ---------------------------------------------------------------- cards -- */
.card-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 680px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .card-grid.three { grid-template-columns: repeat(3, 1fr); } }
.card {
  display: flex; flex-direction: column; gap: .5rem;
  padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.card .icon { width: 40px; height: 40px; color: var(--gold-500); margin-bottom: .2rem; }
.card h3 { margin: 0; }
.card p { margin: 0; color: var(--ink-2); }
.card-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 10px; margin-bottom: .4rem; background: var(--paper-2); }
.btn .size { font-weight: 400; }

/* ------------------------------------------------------------ news photos -- */
.post-hero { margin: 0 0 2rem; }
.post-hero img { display: block; width: 100%; max-height: 560px; object-fit: cover; border-radius: var(--radius-lg); background: var(--paper-2); }
.gallery-title { margin: 2.5rem 0 1rem; }
.gallery { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
.gallery a { display: block; border-radius: 10px; overflow: hidden; }
.gallery img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--paper-2); transition: transform .2s; }
.gallery a:hover img { transform: scale(1.03); }
@media (prefers-reduced-motion: reduce) { .gallery img { transition: none; } }

/* --------------------------------------------------------------- centres -- */
.centre-card { display: grid; gap: 0; overflow: hidden; padding: 0; }
.centre-card .body { padding: 24px; display: flex; flex-direction: column; gap: .7rem; }
.centre-card .top { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.phase {
  display: inline-flex; align-items: center; gap: .45em;
  font: 600 .78rem/1 var(--font-body); letter-spacing: .04em;
  padding: .45em .75em; border-radius: 999px; border: 1px solid;
}
.phase::before { content: ""; width: .55em; height: .55em; border-radius: 50%; background: currentColor; }
.phase--proposed { color: #5a6470; border-color: #c9d0d6; background: #f3f5f7; }
.phase--under_development { color: var(--gold-700); border-color: #e3c98f; background: var(--gold-50); }
.phase--pilot_open, .phase--open { color: var(--green-800); border-color: #a9c7b4; background: var(--green-100); }
.location { display: flex; gap: .5rem; color: var(--ink-2); }
.location svg { width: 20px; height: 20px; flex: none; margin-top: .2em; color: var(--gold-500); }

.facts { display: grid; gap: 0; margin: 0; border-top: 1px solid var(--line); }
.facts > div { display: grid; gap: .15rem; padding: .85rem 0; border-bottom: 1px solid var(--line); }
@media (min-width: 620px) { .facts > div { grid-template-columns: 11rem 1fr; gap: 1rem; } }
.facts dt { font-weight: 600; color: var(--ink); }
.facts dd { margin: 0; color: var(--ink-2); }
.tbc { color: var(--muted); font-style: italic; }

.service-states { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.service-states li { display: flex; justify-content: space-between; gap: 1rem; padding: .6rem .8rem; background: var(--paper-2); border-radius: 8px; }
.state { font-size: .8rem; font-weight: 600; white-space: nowrap; }
.state--available { color: var(--green-800); }
.state--planned { color: var(--muted); }

/* --------------------------------------------------------------- notices -- */
.notice {
  display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start;
  padding: 18px 20px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff;
}
.notice svg { width: 26px; height: 26px; margin-top: .1rem; }
.notice h2, .notice h3 { font-size: 1.2rem; margin: 0 0 .3rem; }
.notice p { margin: 0; color: var(--ink-2); }
.notice--emergency { background: var(--gold-50); border-color: #e6cd97; border-left: 5px solid var(--gold-500); }
.notice--emergency svg { color: var(--gold-700); }
.notice--info svg { color: var(--green-800); }
.stack { display: grid; gap: 16px; }

.channels { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 680px) { .channels { grid-template-columns: repeat(2, 1fr); } }
.channel { display: flex; gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.channel .icon { width: 30px; height: 30px; color: var(--green-800); flex: none; }
.channel h3 { font-size: 1.15rem; margin: 0 0 .2rem; }
.channel p { margin: 0; color: var(--ink-2); font-size: .98rem; }
.channel .value { font-weight: 700; font-size: 1.1rem; color: var(--green-800); }
.channel--inactive { background: var(--paper-2); border-style: dashed; }
.channel--inactive .icon { color: var(--muted); }
.cf-turnstile { min-height: 65px; }
.empty-state { padding: 22px; border: 1px dashed var(--line); border-radius: var(--radius); background: var(--paper-2); color: var(--ink-2); }

/* ----------------------------------------------------------------- prose -- */
.prose { max-width: var(--measure); }
.prose > * + * { margin-top: 1em; }
.prose h2 { margin-top: 1.8em; font-size: clamp(1.45rem, 1.2rem + 1vw, 1.9rem); }
.prose h3 { margin-top: 1.5em; }
.prose ul, .prose ol { padding-left: 1.25em; }
.prose li { margin: .35em 0; }
.prose li::marker { color: var(--gold-500); }
.prose em { color: var(--muted); }

/* ------------------------------------------------------------------ lists -- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.chips li { padding: .45rem .8rem; border-radius: 999px; background: var(--green-100); color: var(--green-800); font-weight: 600; font-size: .92rem; }
.partner-list { display: grid; gap: 12px; }
.partner { display: flex; align-items: center; gap: 16px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); }
.partner .logo-slot { width: 64px; height: 64px; flex: none; border-radius: 12px; background: var(--paper-2); display: grid; place-items: center; color: var(--muted); font-size: .7rem; text-align: center; }
.partner h3 { font-size: 1.15rem; margin: 0; }
.partner p { margin: 0; color: var(--ink-2); font-size: .95rem; }

.faq { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.1rem 2.4rem 1.1rem 0; position: relative;
  font: 600 1.15rem/1.35 var(--font-body); color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .3rem; top: .85rem; font-size: 1.6rem; color: var(--gold-500); }
.faq[open] summary::after { content: "–"; }
.faq .answer { padding: 0 0 1.2rem; color: var(--ink-2); max-width: var(--measure); }

/* ----------------------------------------------------------------- forms -- */
.form { display: grid; gap: 18px; max-width: 640px; }
.field { display: grid; gap: .35rem; }
.field label, .field legend { font-weight: 600; color: var(--ink); }
.field .hint { font-size: .92rem; color: var(--muted); margin: 0; }
.form input[type="text"], .form input[type="email"], .form input[type="tel"], .form select, .form textarea {
  width: 100%; min-height: 48px; padding: .7rem .85rem;
  font: inherit; color: var(--ink); background: #fff;
  border: 1.5px solid #b9c4bd; border-radius: 8px;
}
.form textarea { min-height: 150px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--green-800); outline: 3px solid rgba(180, 120, 20, .35); outline-offset: 0; }
.consent { display: flex; gap: .7rem; align-items: flex-start; }
.consent input { width: 22px; height: 22px; margin-top: .15rem; flex: none; accent-color: var(--green-800); }
.form-guidance { padding: 14px 16px; border-radius: 8px; background: var(--gold-50); border: 1px solid #ecd7a8; font-size: .95rem; color: var(--ink-2); }
.hp { position: absolute !important; left: -9999px !important; }
.form-msg { font-weight: 600; min-height: 1.2em; }
.form-msg.ok { color: var(--green-800); }
.form-msg.err { color: #9a2d12; }
.req { color: #9a2d12; }

/* --------------------------------------------------------------- footer -- */
.site-footer { background: var(--green-950); color: rgba(255, 255, 255, .82); padding-block: clamp(48px, 7vw, 76px) 28px; font-size: .98rem; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--gold-300); }
.footer-grid { display: grid; gap: 32px; }
@media (min-width: 820px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .emblem { display: block; width: 112px; height: 112px; }
.footer-brand p { margin: 1rem 0 0; max-width: 42ch; }
.site-footer h2 { font: 600 .8rem/1.2 var(--font-body); letter-spacing: .14em; text-transform: uppercase; color: var(--gold-300); margin: 0 0 .9rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer-base {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; font-size: .88rem; color: rgba(255, 255, 255, .65);
}
.footer-base ul { display: flex; flex-wrap: wrap; gap: .5rem 1.1rem; }

/* ----------------------------------------------------------------- misc -- */
.icon { flex: none; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
  .btn:hover, .pathway:hover { transform: none; }
}
@media print {
  .site-header, .support-dock, .site-footer, .review-banner, .hero-actions { display: none !important; }
  body { padding: 0; }
}
