/* ==========================================================================
   Healthier UK — Design System
   Warm, natural, club-like. Built on the logo's greens, teals and sun.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Nunito+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand — sampled from the Healthier UK tree */
  --hu-ink:          #234E4D;   /* trunk / figure teal  */
  --hu-ink-deep:     #0E3B39;
  --hu-green:        #4A9C33;
  --hu-green-bright: #6DBE45;
  --hu-green-light:  #8CCB5E;
  --hu-green-deep:   #2F8F4E;
  --hu-teal:         #2E9E9A;
  --hu-teal-light:   #5BB0AE;
  --hu-blue:         #4A8FD4;
  --hu-sun:          #F5A623;
  --hu-coral:        #E2684F;
  --hu-coral-dark:   #C9553D;

  /* Warm neutrals */
  --hu-cream:        #FBF7F0;
  --hu-cream-deep:   #F4EBDD;
  --hu-sand:         #EFE3D2;
  --hu-white:        #FFFFFF;

  /* Text */
  --hu-text:         #26403B;
  --hu-text-muted:   #5E7370;
  --hu-text-light:   #8B9E9A;
  --hu-text-soft:    #7C918D;
  --hu-text-inverse: #FFFFFF;
  --hu-border:       #E4DACA;
  --hu-border-soft:  #EFE6D8;

  /* Type */
  --font-display: 'Nunito', 'Trebuchet MS', system-ui, sans-serif;
  --font-body: 'Nunito Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Metrics */
  --container-max: 1180px;
  --container-narrow: 760px;
  --header-height: 84px;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(22, 81, 78, .06);
  --shadow-md: 0 8px 24px rgba(22, 81, 78, .08);
  --shadow-lg: 0 20px 48px rgba(22, 81, 78, .12);
  --shadow-xl: 0 32px 70px rgba(22, 81, 78, .16);

  --ease: cubic-bezier(.22, .68, .36, 1);
  --transition-base: all .28s cubic-bezier(.22, .68, .36, 1);

  /* ---- Legacy aliases (inner pages use these in inline styles) ---- */
  --color-primary:       var(--hu-ink);
  --color-primary-dark:  var(--hu-ink-deep);
  --color-primary-light: var(--hu-teal);
  --color-accent:        var(--hu-coral);
  --color-accent-warm:   var(--hu-sun);
  --color-accent-salmon: var(--hu-coral);
  --color-accent-hover:  var(--hu-coral-dark);
  --color-green:         var(--hu-green-deep);
  --color-green-light:   var(--hu-green);
  --color-green-bg:      #EAF5E4;
  --color-text:          var(--hu-text);
  --color-text-muted:    var(--hu-text-muted);
  --color-text-light:    var(--hu-text-soft);
  --color-text-inverse:  #FFFFFF;
  --color-bg:            var(--hu-cream);
  --color-bg-alt:        var(--hu-cream-deep);
  --color-bg-subtle:     var(--hu-sand);
  --color-border:        var(--hu-border);
  --color-border-subtle: var(--hu-border-soft);
  --font-serif: var(--font-display);
  --font-sans: var(--font-body);
  --radius-md-legacy: var(--radius-md);
  --shadow-hover: var(--shadow-lg);
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  font-family: var(--font-body);
  color: var(--hu-text);
  background: var(--hu-cream);
  line-height: 1.7;
  font-weight: 400;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--hu-green-deep); text-decoration: none; transition: var(--transition-base); }
a:hover { color: var(--hu-coral); }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
:focus-visible { outline: 3px solid var(--hu-sun); outline-offset: 3px; border-radius: 4px; }

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--hu-ink);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.015em;
  margin-bottom: .75em;
}

h1 { font-size: clamp(2.25rem, 5.4vw, 3.75rem); font-weight: 900; letter-spacing: -.025em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2.1vw, 1.55rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1.15rem; }
p:last-child { margin-bottom: 0; }

p.lead, .lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--hu-text-muted);
  line-height: 1.65;
}

p.italic-lead, .italic-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--hu-text-muted);
  line-height: 1.7;
}

strong, b { font-weight: 700; color: var(--hu-ink); }
em { font-style: italic; }

blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--hu-ink);
  padding: 1.75rem 0 1.75rem 2rem;
  border-left: 5px solid var(--hu-green-bright);
  margin: 2rem 0;
}

/* Handwritten-feel eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--hu-green-deep);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 3px; border-radius: 3px;
  background: var(--hu-green-bright);
}
.eyebrow-light { color: var(--hu-green-light); }
.eyebrow-light::before { background: var(--hu-sun); }

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.5rem; }

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; position: relative; }
.section-sm { padding: clamp(2.5rem, 4vw, 3.5rem) 0; }
.section-alt { background: var(--hu-cream-deep); }
.section-sand { background: var(--hu-sand); }
.section-white { background: var(--hu-white); }
.section-dark { background: var(--hu-ink); color: rgba(255,255,255,.88); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .lead { color: rgba(255,255,255,.8); }
.section-dark a { color: var(--hu-green-light); }

/* Layered / stacked panels (Roots-style) */
.section-layer {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: clamp(-4rem, -5vw, -2.5rem);
  box-shadow: 0 -18px 44px rgba(22, 81, 78, .08);
}
.section-layer-end { border-radius: 0 0 var(--radius-xl) var(--radius-xl); }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 3vw, 3rem); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: clamp(1.25rem, 2.4vw, 2rem); }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

@media (min-width: 760px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.mb-0{margin-bottom:0}.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}
.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}.mb-5{margin-bottom:3rem}
.mt-0{margin-top:0}.mt-2{margin-top:1rem}.mt-4{margin-top:2rem}.mt-5{margin-top:3rem}

.section-intro { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-intro .lead { margin-top: .25rem; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  padding: .95rem 1.75rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-base);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--hu-green); color: #fff; box-shadow: 0 6px 18px rgba(74,156,51,.28); }
.btn-primary:hover { background: #3F8A2B; color: #fff; box-shadow: 0 10px 26px rgba(74,156,51,.34); }

.btn-accent { background: var(--hu-coral); color: #fff; box-shadow: 0 6px 18px rgba(226,104,79,.28); }
.btn-accent:hover { background: var(--hu-coral-dark); color: #fff; box-shadow: 0 10px 26px rgba(226,104,79,.34); }

.btn-ink { background: var(--hu-ink); color: #fff; }
.btn-ink:hover { background: var(--hu-ink-deep); color: #fff; }

.btn-outline { background: transparent; color: var(--hu-ink); border-color: var(--hu-ink); }
.btn-outline:hover { background: var(--hu-ink); color: #fff; }

.btn-light { background: #fff; color: var(--hu-ink); }
.btn-light:hover { background: var(--hu-cream-deep); color: var(--hu-ink); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover { background: #fff; color: var(--hu-ink); }

.btn-sm { padding: .65rem 1.2rem; font-size: .88rem; }
.btn-lg { padding: 1.1rem 2.25rem; font-size: 1.08rem; }

.btn-group { display: flex; gap: .85rem; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(251, 247, 240, .92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 6px 26px rgba(22,81,78,.08); border-bottom-color: var(--hu-border-soft); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.site-logo { display: inline-flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.site-logo img, .site-logo svg { height: 52px; width: auto; }
.site-logo .brand-lockup { height: 52px; }
@media (max-width: 560px) { .site-logo .brand-lockup { height: 42px; } }
.site-logo:hover .brand-word { color: var(--hu-ink); }

.brand-word {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -.02em;
  color: var(--hu-ink);
  line-height: 1;
  white-space: nowrap;
}
.brand-word span { color: var(--hu-blue); }

.nav-desktop { display: none; }

@media (min-width: 1080px) {
  .nav-desktop { display: block; }
  .mobile-menu-toggle { display: none !important; }
}

.nav-menu { display: flex; align-items: center; gap: .1rem; }
.nav-item { position: relative; }

.nav-link {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .93rem;
  color: var(--hu-ink);
  padding: .55rem .7rem;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}
.nav-link:hover { background: rgba(109,190,69,.10); color: var(--hu-ink); }
.nav-link.active { background: var(--hu-ink); color: #fff; }
.nav-link.active:hover { background: var(--hu-ink-deep); color: #fff; }

.nav-cta { margin-left: .6rem; }

/* Dropdowns */
.dropdown-menu, .dropdown-sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--hu-border-soft);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition-base);
  z-index: 950;
}
.has-dropdown:hover > .dropdown-menu,
.has-dropdown:focus-within > .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-sub-menu { top: -.5rem; left: calc(100% + 4px); }
.dropdown-submenu { position: relative; }
.dropdown-submenu:hover > .dropdown-sub-menu,
.dropdown-submenu:focus-within > .dropdown-sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-link {
  display: block;
  padding: .6rem .85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--hu-ink);
}
.dropdown-link:hover { background: var(--hu-cream-deep); color: var(--hu-green-deep); }

/* Mobile toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px; height: 48px;
  border-radius: var(--radius-full);
  background: var(--hu-ink);
  align-items: center;
  flex-shrink: 0;
}
.hamburger-line {
  display: block;
  width: 20px; height: 2.5px;
  border-radius: 3px;
  background: #fff;
  transition: var(--transition-base);
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav-drawer {
  max-height: 0;
  overflow: hidden;
  background: var(--hu-cream);
  border-top: 1px solid transparent;
  transition: max-height .42s var(--ease);
}
.mobile-nav-drawer.open { max-height: 85vh; overflow-y: auto; border-top-color: var(--hu-border-soft); }
.mobile-nav-list { padding: 1rem 1.5rem 2rem; }
.mobile-nav-item { border-bottom: 1px solid var(--hu-border-soft); }
.mobile-nav-link {
  display: block;
  padding: .95rem .25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--hu-ink);
}
.mobile-nav-link.active { color: var(--hu-green-deep); }
.mobile-submenu-toggle {
  width: 38px; height: 38px;
  border-radius: var(--radius-full);
  background: var(--hu-cream-deep);
  color: var(--hu-ink);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.mobile-submenu { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.mobile-submenu.open { max-height: 460px; }
.mobile-submenu-link {
  display: block;
  padding: .6rem .25rem .6rem 1.1rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--hu-text-muted);
}
.mobile-submenu-link:hover { color: var(--hu-green-deep); }

/* --------------------------------------------------------------------------
   7. Splash / enter screen
   -------------------------------------------------------------------------- */
.splash {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 90% at 50% 8%, #FFFDF8 0%, var(--hu-cream) 45%, var(--hu-cream-deep) 100%);
  transition: opacity .9s var(--ease), visibility .9s var(--ease);
}
.splash.is-open { opacity: 1; visibility: visible; }
.splash.is-gone { opacity: 0; visibility: hidden; pointer-events: none; }

body.splash-locked { overflow: hidden; }

.splash-inner {
  text-align: center;
  padding: 1.5rem;
  max-width: 620px;
  width: 100%;
}

.splash-stage {
  width: min(76vw, 400px);
  margin: 0 auto;
  position: relative;
}
.splash-stage svg { width: 100%; height: auto; overflow: visible; }

.splash-word {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 7vw, 3.2rem);
  letter-spacing: -.03em;
  color: var(--hu-ink);
  line-height: 1;
  margin-top: .35rem;
}
.splash-word span { color: var(--hu-blue); }

.splash-tag {
  font-family: var(--font-body);
  font-size: clamp(.98rem, 2vw, 1.12rem);
  color: var(--hu-text-muted);
  margin: .9rem auto 1.9rem;
  max-width: 30ch;
}

.splash-enter {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  background: var(--hu-green);
  padding: 1.05rem 2.6rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(74,156,51,.32);
  transition: var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.splash-enter:hover { background: #3F8A2B; transform: translateY(-3px); box-shadow: 0 16px 38px rgba(74,156,51,.4); }
.splash-enter .arrow { transition: transform .3s var(--ease); }
.splash-enter:hover .arrow { transform: translateX(4px); }

.splash-skip {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  color: var(--hu-text-muted);
  padding: .5rem 1rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--hu-border);
  background: rgba(255,255,255,.7);
}
.splash-skip:hover { color: var(--hu-ink); border-color: var(--hu-ink); }

/* Entrance: petals settle in */
.splash .hu-petal {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  opacity: 0;
  animation: petal-in .7s var(--ease) forwards;
}
@keyframes petal-in {
  from { opacity: 0; transform: scale(.3) rotate(-25deg); }
  to   { opacity: 1; transform: scale(1) rotate(0); }
}

.splash #hu-figure, .splash #hu-grass, .splash #hu-word {
  opacity: 0;
  animation: fig-in .8s var(--ease) .15s forwards;
  transform-box: fill-box;
  transform-origin: 50% 100%;
}
@keyframes fig-in {
  from { opacity: 0; transform: translateY(18px) scaleY(.9); }
  to   { opacity: 1; transform: none; }
}

/* Scatter: leaves fly off in all directions */
.splash.is-scattering .hu-petal {
  animation: none;
  opacity: 1;
  transition:
    transform 2.1s cubic-bezier(.42, 0, .3, 1),
    opacity   1.1s ease-in .75s;
}
.splash.is-scattering .hu-petal.gone { opacity: 0; }

.splash.is-scattering #hu-figure,
.splash.is-scattering #hu-word,
.splash.is-scattering #hu-grass {
  animation: none;
  opacity: 1;
  transition: transform 1.2s var(--ease) .55s, opacity 1s ease-in .7s;
}
.splash.is-scattering.is-lifting #hu-figure,
.splash.is-scattering.is-lifting #hu-word,
.splash.is-scattering.is-lifting #hu-grass { opacity: 0; transform: translateY(26px) scale(.94); }

.splash.is-scattering .splash-word,
.splash.is-scattering .splash-tag,
.splash.is-scattering .splash-enter,
.splash.is-scattering .splash-skip {
  transition: opacity .45s ease, transform .55s var(--ease);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}

/* Reveal the page underneath */
body.revealing .page-shell { animation: page-rise 1s var(--ease) forwards; }
@keyframes page-rise {
  from { opacity: 0; transform: scale(.985) translateY(14px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .splash .hu-petal, .splash #hu-figure, .splash #hu-grass, .splash #hu-word { animation: none; opacity: 1; }
  .splash.is-scattering .hu-petal { transition: opacity .4s ease; transform: none !important; }
  * { animation-duration: .01ms !important; transition-duration: .12s !important; }
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(5rem, 9vw, 8rem);
  background:
    radial-gradient(90% 120% at 82% 6%, #FFF6E4 0%, rgba(255,246,228,0) 55%),
    radial-gradient(80% 100% at 6% 90%, #EBF6E4 0%, rgba(235,246,228,0) 60%),
    var(--hu-cream);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 940px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
}

.hero-content h1 { margin-bottom: 1.1rem; }
.highlight-word {
  color: var(--hu-green-deep);
  background-image: linear-gradient(transparent 58%, rgba(245, 166, 35, .38) 58%, rgba(245, 166, 35, .38) 92%, transparent 92%);
  padding: 0 .06em;
  border-radius: 3px;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: rotate(-1.2deg);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* Floating blobs & leaves */
.hero-blob {
  position: absolute;
  border-radius: 48% 52% 58% 42% / 44% 46% 54% 56%;
  filter: blur(48px);
  opacity: .75;
  pointer-events: none;
}
.hero-blob-1 { width: 420px; height: 420px; background: #DCEFCE; top: -170px; left: -190px; }
.hero-blob-2 { width: 340px; height: 340px; background: #FBE6C2; bottom: -150px; right: -140px; }

.float-leaf { position: absolute; z-index: 3; pointer-events: none; opacity: .85;
  filter: drop-shadow(0 6px 12px rgba(22,81,78,.14)); animation: bob 7s ease-in-out infinite; }
.float-leaf-2 { animation-delay: -2.4s; animation-duration: 8.5s; }
.float-leaf-3 { animation-delay: -4.6s; animation-duration: 9.5s; }
@keyframes bob {
  0%,100% { transform: translateY(0) rotate(0); }
  50%     { transform: translateY(-16px) rotate(6deg); }
}

/* Stat strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 2px dashed var(--hu-border);
}
@media (max-width: 460px) { .hero-stats { grid-template-columns: 1fr 1fr; } }
.hero-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  color: var(--hu-ink);
  line-height: 1;
}
.hero-stat-label { font-size: .88rem; color: var(--hu-text-muted); margin-top: .3rem; }

/* --------------------------------------------------------------------------
   9. Marquee (scrolling partners)
   -------------------------------------------------------------------------- */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 1.4rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 3.5rem;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--hu-ink);
  opacity: .78;
  white-space: nowrap;
}
.marquee-item .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--hu-green-bright); flex-shrink: 0; }
.marquee-item:nth-child(3n) .dot { background: var(--hu-teal); }
.marquee-item:nth-child(3n+1) .dot { background: var(--hu-sun); }

.marquee-label {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--hu-text-soft);
  margin-bottom: .35rem;
}

/* --------------------------------------------------------------------------
   10. Cards
   -------------------------------------------------------------------------- */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--hu-border-soft);
  transition: var(--transition-base);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* Pillar cards — with a leaf badge */
.card-pillar {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.6rem 1.9rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--hu-border-soft);
  transition: var(--transition-base);
  overflow: hidden;
}
.card-pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--hu-green-bright), var(--hu-teal));
}
.card-pillar:nth-child(2)::before { background: linear-gradient(90deg, var(--hu-teal), var(--hu-blue)); }
.card-pillar:nth-child(3)::before { background: linear-gradient(90deg, var(--hu-sun), var(--hu-coral)); }
.card-pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-pillar h3 { margin-bottom: .6rem; }
.card-pillar p { color: var(--hu-text-muted); font-size: .98rem; }

/* Join / audience cards */
.join-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--hu-border-soft);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 100%;
}
.join-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--hu-green-bright); }
.join-icon {
  width: 62px; height: 62px;
  border-radius: 42% 58% 55% 45% / 50% 44% 56% 50%;
  display: grid; place-items: center;
  margin-bottom: 1.1rem;
  background: #E9F5E1;
}
.join-icon svg { width: 30px; height: 30px; }
.join-card:nth-child(2) .join-icon { background: #E2F2F1; }
.join-card:nth-child(3) .join-icon { background: #E6F0FB; }
.join-card:nth-child(4) .join-icon { background: #FDF0DA; }
.join-card h3 { font-size: 1.22rem; margin-bottom: .5rem; }
.join-card p { color: var(--hu-text-muted); font-size: .96rem; }

/* Post cards */
.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--hu-border-soft);
  transition: var(--transition-base);
  height: 100%;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.post-card-image { aspect-ratio: 16/10; overflow: hidden; background: var(--hu-cream-deep); }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-card:hover .post-card-image img { transform: scale(1.05); }
.post-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-date {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--hu-green-deep);
  margin-bottom: .55rem;
}
.post-title { font-size: 1.2rem; margin-bottom: .55rem; }
.post-title a { color: var(--hu-ink); }
.post-title a:hover { color: var(--hu-green-deep); }
.post-excerpt { color: var(--hu-text-muted); font-size: .96rem; flex: 1; }
.post-readmore {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-display); font-weight: 800; font-size: .92rem;
  color: var(--hu-coral); margin-top: 1rem;
}
.post-readmore:hover { color: var(--hu-coral-dark); gap: .7rem; }

/* Team cards */
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--hu-border-soft);
  transition: var(--transition-base);
  text-align: center;
  height: 100%;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-card-image { aspect-ratio: 1/1; overflow: hidden; background: var(--hu-cream-deep); }
.team-card-image img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 1.35rem 1.1rem 1.6rem; display: flex; flex-direction: column; }
.team-card-name { order: 1; }
.team-card-role { order: 2; }
.team-card-org { order: 3; }
.team-card-name { font-size: 1.1rem; margin-bottom: .2rem; }
.team-card-role { font-weight: 700; color: var(--hu-green-deep); font-size: .92rem; margin-bottom: .2rem; }
.team-card-org { color: var(--hu-text-muted); font-size: .88rem; }

/* Highlight box */
.highlight-box {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hu-border-soft);
  border-left: 6px solid var(--hu-green-bright);
  padding: 1.75rem 1.9rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}
.highlight-box h3, .highlight-box h4 { margin-bottom: .6rem; }
.highlight-box p:last-child { margin-bottom: 0; }

/* Policy steps */
.policy-step { display: flex; gap: 1.1rem; margin-bottom: 1.6rem; align-items: flex-start; }
.policy-step-number {
  flex-shrink: 0;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 45% 55% 52% 48% / 50% 48% 52% 50%;
  background: var(--hu-green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
}
.policy-step:nth-child(2) .policy-step-number { background: var(--hu-teal); }
.policy-step:nth-child(3) .policy-step-number { background: var(--hu-blue); }
.policy-step:nth-child(4) .policy-step-number { background: var(--hu-sun); }
.policy-step-body h4 { margin-bottom: .35rem; }
.policy-step-body p { color: var(--hu-text-muted); font-size: .97rem; margin-bottom: 0; }

/* Quote card */
.quote-card {
  background: var(--hu-ink);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.25rem);
  position: relative;
  overflow: hidden;
}
.quote-card::after {
  content: "";
  position: absolute;
  right: -70px; bottom: -90px;
  width: 260px; height: 260px;
  border-radius: 46% 54% 58% 42% / 50% 44% 56% 50%;
  background: rgba(109,190,69,.10);
}
.quote-card p.quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  line-height: 1.4;
  color: #fff;
  position: relative;
  z-index: 1;
}
.quote-attrib { color: var(--hu-green-light); font-weight: 600; font-size: .95rem; position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   11. Page header (inner pages)
   -------------------------------------------------------------------------- */
.page-header {
  position: relative;
  padding: clamp(2.75rem, 6vw, 4.5rem) 0 clamp(3.5rem, 6vw, 5rem);
  background:
    radial-gradient(80% 130% at 88% 0%, #FFF3DE 0%, rgba(255,243,222,0) 58%),
    radial-gradient(70% 110% at 2% 100%, #E9F5E1 0%, rgba(233,245,225,0) 60%),
    var(--hu-cream-deep);
  overflow: hidden;
}
.page-header h1 { margin-bottom: .75rem; }
.page-header .lead { max-width: 720px; }
.page-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 44px;
  background: var(--hu-cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: scaleX(1.4);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  color: var(--hu-text-soft);
  margin-bottom: 1.15rem;
  font-weight: 600;
}
.breadcrumbs a { color: var(--hu-text-muted); }
.breadcrumbs a:hover { color: var(--hu-green-deep); }
.breadcrumbs .separator { opacity: .5; }
.breadcrumbs .current { color: var(--hu-ink); }

/* --------------------------------------------------------------------------
   12. Content body (articles)
   -------------------------------------------------------------------------- */
.content-body { font-size: 1.05rem; }
.content-body h2 { margin-top: 2.75rem; }
.content-body h3 { margin-top: 2rem; }
.content-body h2:first-child, .content-body h3:first-child { margin-top: 0; }
.content-body ul, .content-body ol { margin: 0 0 1.25rem; padding-left: 0; }
.content-body ul li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: .7rem;
}
.content-body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .58em;
  width: 11px; height: 11px;
  background: var(--hu-green-bright);
  border-radius: 60% 10% 60% 10%;
  transform: rotate(-20deg);
}
.content-body ol { counter-reset: hu-ol; }
.content-body ol li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: .7rem;
  counter-increment: hu-ol;
}
.content-body ol li::before {
  content: counter(hu-ol);
  position: absolute;
  left: 0; top: .12em;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--hu-cream-deep);
  color: var(--hu-ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .82rem;
}
.content-body img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin: 1.75rem 0; }
.content-body a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   13. Gallery & lightbox
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
}
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}
.gallery-item:nth-child(4n+1) { border-radius: var(--radius-lg) var(--radius-md) var(--radius-lg) var(--radius-md); }
.gallery-item:nth-child(4n+3) { border-radius: var(--radius-md) var(--radius-lg) var(--radius-md) var(--radius-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.gallery-item:hover img { transform: scale(1.07); }

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background: rgba(14, 59, 57, .92);
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
}
.lightbox-modal.open { opacity: 1; visibility: visible; }
.lightbox-content { max-width: 92vw; max-height: 86vh; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  display: grid; place-items: center;
}
.lightbox-close:hover { background: rgba(255,255,255,.28); }

/* --------------------------------------------------------------------------
   14. Forms
   -------------------------------------------------------------------------- */
.form-group { margin-bottom: 1.15rem; }
.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--hu-ink);
  margin-bottom: .4rem;
}
.form-control {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--hu-text);
  background: #fff;
  border: 2px solid var(--hu-border);
  border-radius: var(--radius-md);
  padding: .85rem 1.1rem;
  transition: var(--transition-base);
}
.form-control::placeholder { color: #A6B5B1; }
.form-control:focus {
  outline: none;
  border-color: var(--hu-green-bright);
  box-shadow: 0 0 0 4px rgba(109,190,69,.16);
}
textarea.form-control { resize: vertical; min-height: 120px; line-height: 1.6; }

.form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--hu-border-soft);
}

.newsletter-box {
  position: relative;
  background: linear-gradient(135deg, var(--hu-ink) 0%, #1B6360 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.25rem);
  overflow: hidden;
}
.newsletter-box::before {
  content: "";
  position: absolute;
  left: -80px; top: -100px;
  width: 300px; height: 300px;
  border-radius: 46% 54% 58% 42% / 50% 44% 56% 50%;
  background: rgba(109,190,69,.14);
}
.newsletter-box > * { position: relative; z-index: 1; }
.newsletter-box h2 { color: #fff; }
.newsletter-box p { color: rgba(255,255,255,.82); }
.newsletter-form { display: flex; gap: .6rem; flex-wrap: wrap; }
.newsletter-form .form-control { flex: 1; min-width: 200px; border-color: transparent; }

.toast-notice {
  position: fixed;
  bottom: 1.5rem; left: 50%;
  transform: translate(-50%, 140%);
  background: var(--hu-ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  padding: .95rem 1.6rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  z-index: 5000;
  transition: transform .45s var(--ease);
  max-width: calc(100vw - 3rem);
  text-align: center;
}
.toast-notice.show { transform: translate(-50%, 0); }

/* --------------------------------------------------------------------------
   15. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: linear-gradient(140deg, #4A9C33 0%, #2F8F4E 55%, #2E9E9A 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(2.25rem, 5vw, 4rem);
  overflow: hidden;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-band .btn-group { justify-content: center; margin-top: 1.75rem; }
.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  border-radius: 46% 54% 58% 42% / 50% 44% 56% 50%;
  background: rgba(255,255,255,.1);
}
.cta-band::before { width: 260px; height: 260px; top: -110px; left: -80px; }
.cta-band::after  { width: 320px; height: 320px; bottom: -160px; right: -100px; }

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--hu-ink);
  color: rgba(255,255,255,.74);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  margin-top: auto;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }

.footer-brand-lockup { display: inline-flex; align-items: center; gap: .65rem; margin-bottom: 1rem; }
.footer-brand-lockup img { height: 54px; width: auto; }
.footer-brand-lockup .brand-lockup { height: 54px; }
.footer-brand-lockup .brand-word { color: #fff; font-size: 1.3rem; }
.footer-brand-lockup .brand-word span { color: var(--hu-green-light); }
.footer-brand p { font-size: .94rem; color: rgba(255,255,255,.7); max-width: 34ch; }

.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: rgba(255,255,255,.72); font-size: .94rem; }
.footer-links a:hover { color: var(--hu-green-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.13);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: space-between;
  align-items: center;
  font-size: .86rem;
  color: rgba(255,255,255,.55);
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,.55); }
.footer-bottom a { color: rgba(255,255,255,.68); }
.footer-bottom a:hover { color: var(--hu-green-light); }

/* --------------------------------------------------------------------------
   17. Scroll reveal
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .09s; }
.reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .27s; }

/* Divider waves */
.wave-top, .wave-bottom { display: block; width: 100%; height: auto; }

/* Misc helpers */
.rounded-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.tilt-a { transform: rotate(-1.4deg); }
.tilt-b { transform: rotate(1.2deg); }
.badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .74rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: var(--radius-full);
  background: #E9F5E1;
  color: var(--hu-green-deep);
}
.badge-sun { background: #FDF0DA; color: #A96B06; }
.badge-blue { background: #E6F0FB; color: #2A6BAA; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--hu-ink);
  color: #fff;
  padding: .75rem 1.25rem;
  z-index: 5000;
  border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus { left: 0; color: #fff; }

@media print {
  .site-header, .site-footer, .splash, .marquee { display: none !important; }
}


/* Team cards link through to that person's blog page */
a.team-card { display: block; color: inherit; text-decoration: none; }
a.team-card:hover .team-card-name { color: var(--hu-green-deep); }
.team-card-blogs {
  order: 4;
  display: block;
  margin-top: .7rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .84rem;
  color: var(--hu-coral);
  transition: var(--transition-base);
}
a.team-card:hover .team-card-blogs { color: var(--hu-coral-dark); }

/* ---------- Blog search ---------- */
.blog-search { margin-bottom: 2rem; }
.blog-search-input {
  width: 100%; max-width: 520px; padding: .85rem 1.1rem;
  font-family: var(--font-body); font-size: 1rem; color: var(--hu-ink);
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.blog-search-input:focus {
  outline: 2px solid var(--color-primary-dark); outline-offset: 2px; border-color: transparent;
}
.blog-search-status { margin: .6rem 0 0; font-size: .9rem; color: var(--hu-text-muted); min-height: 1.2em; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Contributor form ---------- */
.contribute-form .form-block {
  border: 0; padding: 0; margin: 0 0 2.75rem;
}
.contribute-form legend { padding: 0; width: 100%; }
.contribute-form legend h2 {
  font-size: 1.35rem; margin: 0 0 1.25rem; padding-bottom: .6rem;
  border-bottom: 1px solid var(--color-border);
}
.contribute-form .field { margin-bottom: 1.4rem; }
.contribute-form label {
  display: block; font-weight: 700; font-family: var(--font-display);
  color: var(--hu-ink); margin-bottom: .4rem;
}
.contribute-form .req { color: var(--color-accent-salmon); }
.contribute-form input[type="text"],
.contribute-form input[type="email"],
.contribute-form input[type="url"],
.contribute-form textarea {
  width: 100%; padding: .8rem 1rem; font-family: var(--font-body); font-size: 1rem;
  color: var(--hu-ink); background: var(--color-bg);
  border: 1px solid var(--color-border); border-radius: var(--radius-md);
}
.contribute-form textarea { resize: vertical; line-height: 1.55; }
.contribute-form input:focus, .contribute-form textarea:focus {
  outline: 2px solid var(--color-primary-dark); outline-offset: 2px; border-color: transparent;
}
.contribute-form input[aria-invalid="true"], .contribute-form textarea[aria-invalid="true"] {
  border-color: var(--color-accent-salmon); background: #fff8f6;
}
.contribute-form .hint { margin: .4rem 0 0; font-size: .86rem; color: var(--hu-text-muted); }
.contribute-form .hint.over { color: var(--color-accent-salmon); font-weight: 600; }
.contribute-form .field-check {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: 1.1rem 1.25rem; background: var(--color-bg-alt); border-radius: var(--radius-md);
}
.contribute-form .field-check input { margin-top: .25rem; flex: 0 0 auto; }
.contribute-form .field-check label { font-weight: 400; font-family: var(--font-body); margin: 0; }
.contribute-form .form-error {
  margin-top: 1.25rem; padding: .9rem 1.1rem; border-radius: var(--radius-md);
  background: #fff1ee; border-left: 4px solid var(--color-accent-salmon); color: var(--hu-ink);
}
.contribute-form button[aria-busy="true"] { opacity: .65; pointer-events: none; }

/* ---------- Editable page content ---------- */
/* Images written as markdown carry no inline width, so set it here. */
.content-body img { width: 100%; }
.content-body p:has(> img:only-child) { margin: 0; }
/* Links inside a highlight box used to carry inline styles; now handled here
   so the box can be edited as plain text in the CMS. */
.highlight-box a { color: var(--color-accent-salmon); font-weight: 600; }

/* ---------- Section headings ---------- */
/* Give centred section headings room for one line, while keeping the
   supporting paragraph at a comfortable reading measure. */
.section-intro { max-width: 880px; }
.section-intro h2 { text-wrap: balance; }
.section-intro .lead, .section-intro > p { max-width: 720px; margin-left: auto; margin-right: auto; }
