/* ============================================================
   Devicentrix — Fresh-Cut Grass / Queensland Morning
   ============================================================ */
:root {
  --paper: #FFFFFF;
  --offwhite: #F9FBF9;
  --grass-tint: #F1F8E9;
  --grass-stripe: #E8F3E0;
  --ink: #1A231E;
  --muted: #4A5A50;
  --ink-faint: rgba(26, 35, 30, 0.68);
  --green: #2E7D32;
  --green-dark: #1B5E20;
  --deep: #123816;
  --sun: #FFC107;
  --sun-dark: #FFB300;
  --line: #E1E8E3;
  --display: "Outfit", "Trebuchet MS", sans-serif;
  --body: "Atkinson Hyperlegible", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 82px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.125rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--green); color: #fff; }

:focus-visible {
  outline: 3px solid var(--green-dark); outline-offset: 3px; border-radius: 6px;
  box-shadow: 0 0 0 7px rgba(255, 193, 7, 0.45);
}

.container { max-width: 74rem; margin-inline: auto; padding-inline: 1.5rem; }
@media (min-width: 768px) { .container { padding-inline: 2.5rem; } }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--deep); color: #fff;
  padding: 0.9rem 1.4rem; font-weight: 700; border-radius: 0 0 12px 0; font-size: 1rem;
}
.skip-link:focus { left: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, .display { font-family: var(--display); font-weight: 700; line-height: 1.08; letter-spacing: -0.015em; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(2.05rem, 4vw, 3rem); line-height: 1.12; }
h3 { font-size: clamp(1.4rem, 2.3vw, 1.75rem); line-height: 1.25; font-weight: 600; }
em, .italic { font-style: normal; color: var(--green); }
.section-dark h2, .section-dark h3 { color: var(--offwhite); }
.section-dark em { color: var(--sun); }

.overline {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green);
  display: inline-flex; align-items: center; gap: 0.7rem;
}
.overline::before { content: ""; width: 1.6rem; height: 4px; border-radius: 4px; background: var(--sun); }
.overline.light { color: var(--sun); }

.lead { font-size: clamp(1.15rem, 1.6vw, 1.28rem); line-height: 1.8; color: var(--muted); max-width: 42rem; }
.muted { color: var(--ink-faint); }

/* ---------- Buttons (big + friendly) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 54px;
  font-family: var(--display); font-weight: 700; font-size: 1.02rem;
  padding: 0.95rem 2.1rem; border-radius: 999px;
  border: 3px solid transparent;
  text-decoration: none; cursor: pointer;
  box-shadow: 0 8px 26px rgba(46, 125, 50, 0.18);
  transition: transform 0.25s ease-out, background-color 0.25s ease-out,
              color 0.25s ease-out, box-shadow 0.25s ease-out, border-color 0.25s ease-out;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(46, 125, 50, 0.26); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform 0.25s ease-out; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary { background: var(--sun); color: var(--ink); box-shadow: 0 8px 26px rgba(255, 193, 7, 0.35); }
.btn-primary:hover { background: var(--sun-dark); }
.btn-secondary { background: var(--green); color: #fff; }
.btn-secondary:hover { background: var(--green-dark); }
.btn-outline { background: transparent; border-color: var(--green); color: var(--green-dark); box-shadow: none; }
.btn-outline:hover { background: var(--green); color: #fff; box-shadow: none; }
.btn-light { background: var(--paper); color: var(--green-dark); }
.btn-light:hover { background: var(--sun); color: var(--ink); }
.btn-ghost-light { background: transparent; border-color: rgba(249,251,249,0.5); color: var(--offwhite); box-shadow: none; }
.btn-ghost-light:hover { background: var(--offwhite); color: var(--green-dark); border-color: var(--offwhite); }
.btn-sm { min-height: 48px; padding: 0.7rem 1.5rem; font-size: 0.9rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 700; font-size: 1rem;
  color: var(--green); text-decoration: none;
  border-bottom: 3px solid var(--sun); padding-bottom: 2px;
  transition: gap 0.25s ease-out, color 0.25s, border-color 0.25s;
}
.link-arrow:hover { gap: 0.85rem; color: var(--green-dark); border-color: var(--green); }

/* ---------- Topbar + Header ---------- */
.topbar {
  background: var(--deep); color: rgba(249,251,249,0.92);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.55rem 0; position: relative; z-index: 51;
  border-bottom: 4px solid var(--sun);
}
.topbar .container { display: flex; flex-wrap: wrap; gap: 0.3rem 1.6rem; justify-content: center; }
@media (min-width: 768px) { .topbar .container { justify-content: space-between; } }
.topbar strong { color: var(--sun); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 10px 34px rgba(18, 56, 22, 0.08); }
.header-inner { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.brand { display: inline-flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brand-mark { width: 46px; height: 46px; flex: none; transition: transform 0.3s var(--ease); }
.brand:hover .brand-mark { transform: scale(1.07) rotate(-3deg); }
.brand-text { font-family: var(--display); font-size: 1.5rem; font-weight: 700; line-height: 1.02; color: var(--ink); }
.brand-text small { display: block; font-family: var(--body); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin-top: 2px; }

.main-nav { display: none; align-items: center; gap: 1.4rem; }
.main-nav a {
  position: relative; text-decoration: none;
  font-size: 0.98rem; font-weight: 700;
  color: var(--muted); padding: 0.5rem 0;
  transition: color 0.25s var(--ease);
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 4px; border-radius: 4px; background: var(--sun);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--ink); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 0.8rem; }
.header-actions .btn { display: none; }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 6px; width: 52px; height: 52px;
  background: var(--grass-tint); border: none; border-radius: 999px; cursor: pointer;
  transition: background-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.nav-toggle:hover { background: var(--sun); transform: translateY(-2px); }
.nav-toggle span { width: 20px; height: 3px; border-radius: 3px; background: var(--ink); transition: transform 0.3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-menu { display: block; max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); background: var(--paper); border-bottom: 2px solid transparent; }
.mobile-menu.is-open { max-height: 680px; border-bottom-color: var(--line); }
.mobile-menu nav { display: flex; flex-direction: column; padding: 1rem 1.5rem 2rem; gap: 0.15rem; }
.mobile-menu a {
  display: flex; align-items: center; min-height: 52px;
  text-decoration: none; font-family: var(--display); font-size: 1.5rem; font-weight: 700; color: var(--ink);
  border-bottom: 2px solid var(--line);
  transition: color 0.25s, padding-left 0.25s var(--ease);
}
.mobile-menu a:hover, .mobile-menu a[aria-current="page"] { color: var(--green); padding-left: 0.5rem; }
.mobile-menu a.btn, .mobile-menu a.btn:hover {
  color: var(--ink); border-bottom: 3px solid transparent; padding-left: 2.1rem;
  font-size: 1.02rem; font-weight: 700;
}
.mobile-menu .btn { margin-top: 1.2rem; }

@media (min-width: 1060px) {
  .main-nav { display: flex; }
  .header-actions .btn { display: inline-flex; }
  .nav-toggle, .mobile-menu { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(2.8rem, 6.5vw, 5rem); overflow: clip; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
@media (min-width: 1000px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 4.5rem; } }
.hero h1 { margin: 1.3rem 0 1.5rem; }
.reveal-line { display: block; overflow: hidden; padding-bottom: 0.12em; }
html.js .reveal-line-inner { display: inline-block; transform: translateY(115%); animation: line-up 1.1s var(--ease) forwards; }
html.js .reveal-line:nth-child(2) .reveal-line-inner { animation-delay: 0.15s; }
html.js .reveal-line:nth-child(3) .reveal-line-inner { animation-delay: 0.3s; }
@keyframes line-up { to { transform: translateY(0); } }
html.js .hero-fade { opacity: 0; transform: translateY(18px); animation: fade-up 0.9s var(--ease) forwards; }
html.js .hero-fade.d1 { animation-delay: 0.48s; }
html.js .hero-fade.d2 { animation-delay: 0.64s; }
html.js .hero-fade.d3 { animation-delay: 0.8s; }
@keyframes fade-up { to { opacity: 1; transform: translateY(0); } }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.3rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.7rem;
  margin-top: 2.4rem; padding-top: 1.3rem;
  border-top: 3px solid var(--grass-stripe);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-trust strong { color: var(--ink); }

.hero-media { position: relative; }
html.js .hero-media { opacity: 0; transform: translateY(20px); animation: hero-img 1.1s var(--ease) 0.3s forwards; }
@keyframes hero-img { to { opacity: 1; transform: translateY(0); } }
.hero-frame {
  border-radius: 1.75rem 1.75rem 1.75rem 6rem;
  overflow: hidden; aspect-ratio: 4 / 4.5;
  box-shadow: 0 28px 60px -26px rgba(18, 56, 22, 0.4);
  position: relative;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-sticker {
  position: absolute; left: -0.8rem; top: 7%;
  background: var(--sun); color: var(--ink);
  font-family: var(--display); font-weight: 700; font-size: 0.95rem;
  padding: 0.75rem 1.4rem; border-radius: 999px;
  transform: rotate(-3deg);
  box-shadow: 0 12px 28px -10px rgba(255, 179, 0, 0.6);
}

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; background: var(--deep); padding: 1.25rem 0; margin-top: clamp(3.2rem, 7vw, 5.5rem); border-block: 4px solid var(--sun); }
.marquee-track { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track > span {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  white-space: nowrap; padding-right: 2.4rem; color: var(--offwhite);
  display: inline-flex; align-items: center;
}
.marquee-track > span::after { content: ""; width: 0.65rem; height: 0.65rem; border-radius: 50%; margin-left: 2.4rem; background: var(--sun); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding-block: clamp(4rem, 9vw, 7rem); position: relative; }
.section-grass {
  background:
    repeating-linear-gradient(115deg, var(--grass-tint) 0 34px, var(--grass-stripe) 34px 68px);
  border-block: 2px solid var(--line);
}
.section-dark { background: var(--deep); color: var(--offwhite); }
.section-dark .lead, .section-dark .muted { color: rgba(249,251,249,0.82); }
.section-head { max-width: 50rem; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); position: relative; z-index: 1; }
.section-head h2 { margin: 1rem 0 1rem; }
.grid-2 { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; } }
.grid-3 { display: grid; gap: 1.7rem; }
@media (min-width: 860px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Belief rows ---------- */
.belief-row {
  display: grid; grid-template-columns: auto 1fr;
  gap: 1.3rem 2.2rem;
  padding-block: clamp(1.9rem, 4vw, 2.7rem);
  border-top: 3px solid var(--grass-stripe);
  align-items: start;
}
.spark-no {
  width: 2.9rem; height: 2.9rem; flex: none; margin-top: 0.2rem;
  background: var(--sun); color: var(--ink);
  font-family: var(--display); font-weight: 700; font-size: 1.25rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(255, 193, 7, 0.4);
}
.belief-row:nth-child(even) .spark-no { background: var(--green); color: #fff; box-shadow: 0 6px 16px rgba(46, 125, 50, 0.35); }
.belief-row h3 { margin-bottom: 0.5rem; }
.belief-row p { color: var(--muted); max-width: 44rem; }

/* ---------- Cards ---------- */
.card {
  background: var(--paper);
  border-radius: 1.4rem;
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none;
  border: 2px solid var(--line);
  box-shadow: 0 10px 40px rgba(18, 56, 22, 0.07);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -18px rgba(18, 56, 22, 0.25); border-color: var(--green); }
.card-media { overflow: hidden; aspect-ratio: 4 / 3; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; gap: 0.65rem; flex: 1; }
.card-body h3 { font-size: 1.55rem; }
.card-body p { font-size: 1rem; color: var(--muted); flex: 1; }
.card-tag {
  align-self: flex-start;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 999px;
  background: var(--grass-tint); color: var(--green-dark);
}
.card:nth-child(even) .card-tag { background: rgba(255, 193, 7, 0.22); color: #7A5B00; }

/* ---------- Stat pills ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.pill {
  display: inline-flex; flex-direction: column; gap: 0.15rem;
  background: var(--paper); border: 2px solid var(--line); border-radius: 1.3rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 24px rgba(18, 56, 22, 0.07);
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
}
.pill:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(18, 56, 22, 0.14); }
.pill b { font-family: var(--display); font-size: 1.6rem; font-weight: 700; line-height: 1.1; color: var(--ink); }
.pill span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }

/* ---------- Frames ---------- */
.frame { border-radius: 1.4rem; overflow: hidden; box-shadow: 0 20px 50px -22px rgba(18, 56, 22, 0.32); }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame-tall { aspect-ratio: 3 / 3.8; }
.frame-wide { aspect-ratio: 16 / 10; }
.frame-round-l { border-radius: 1.4rem 1.4rem 5rem 1.4rem; }
.frame-round-r { border-radius: 1.4rem 1.4rem 1.4rem 5rem; }
.frame-caption { font-size: 0.84rem; font-weight: 400; color: var(--ink-faint); margin-top: 0.9rem; display: flex; align-items: center; gap: 0.6rem; }
.frame-caption::before { content: ""; width: 0.6rem; height: 0.6rem; border-radius: 50%; background: var(--sun); flex: none; }

/* ---------- Quote band ---------- */
.quote-band blockquote {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.65rem, 3.2vw, 2.4rem); line-height: 1.3;
  max-width: 52rem; color: var(--ink);
}
.section-dark .quote-band blockquote { color: var(--offwhite); }
.section-dark .quote-band blockquote em { color: var(--sun); }
.quote-band cite { display: block; margin-top: 1.4rem; font-family: var(--body); font-style: normal; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }
.section-dark .quote-band cite { color: rgba(249,251,249,0.72); }

/* ---------- CTA band ---------- */
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.cta-band h2 { max-width: 44rem; margin: 1rem 0 1.2rem; }
.cta-band .btn-row { margin-top: 2.1rem; }

/* ---------- Page hero ---------- */
.page-hero { padding-top: clamp(2.8rem, 6vw, 4.5rem); padding-bottom: clamp(2.2rem, 5vw, 3.4rem); position: relative; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); margin: 1.2rem 0 1.3rem; max-width: 54rem; }
.breadcrumb { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }
.breadcrumb a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(46, 125, 50, 0.4); }
.breadcrumb a:hover { text-decoration-color: var(--green); }

/* ---------- Chapters ---------- */
.chapter { padding-block: clamp(3rem, 7vw, 5.2rem); border-top: 3px solid var(--grass-stripe); position: relative; }
.chapter-grid { display: grid; gap: 2.4rem; }
@media (min-width: 960px) {
  .chapter-grid { grid-template-columns: 1.05fr 0.95fr; gap: 4.5rem; align-items: center; }
  .chapter:nth-child(even) .chapter-grid > .chapter-media { order: -1; }
}
.chapter h2 { font-size: clamp(1.95rem, 3.2vw, 2.6rem); margin: 0.9rem 0 1rem; }
.chapter p { color: var(--muted); margin-bottom: 1rem; }
.check-list { list-style: none; margin: 1.3rem 0 1.7rem; display: grid; gap: 0.8rem; }
.check-list li { position: relative; padding-left: 2.3rem; color: var(--muted); font-size: 1.04rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.28em;
  width: 1.25rem; height: 1.25rem; border-radius: 50%;
  background: var(--green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='white'/%3E%3Cpath d='M6 10.5l2.6 2.6L14 7.5' stroke='%23000' stroke-width='2.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='10' fill='white'/%3E%3Cpath d='M6 10.5l2.6 2.6L14 7.5' stroke='%23000' stroke-width='2.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.check-list li strong { color: var(--ink); }

/* ---------- Info panels ---------- */
.info-panel { background: var(--paper); border: 2px solid var(--line); border-radius: 1.4rem; padding: clamp(1.7rem, 3.5vw, 2.4rem); box-shadow: 0 10px 40px rgba(18, 56, 22, 0.07); }
.info-panel h3 { margin-bottom: 1rem; }
.detail-row { display: grid; grid-template-columns: 1fr; gap: 0.15rem; padding: 1rem 0; border-top: 2px solid var(--grass-stripe); }
@media (min-width: 640px) { .detail-row { grid-template-columns: 11rem 1fr; gap: 1.4rem; } }
.detail-row dt { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); padding-top: 0.3rem; }
.detail-row dd { font-size: 1.04rem; font-weight: 400; }
.detail-row dd a { color: var(--green); font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--sun); transition: color 0.25s, border-color 0.25s; }
.detail-row dd a:hover { color: var(--green-dark); border-color: var(--green); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.3rem; }
.form-row { display: grid; gap: 1.3rem; }
@media (min-width: 700px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 54px;
  font-family: var(--body); font-weight: 400; font-size: 1.05rem; color: var(--ink);
  background: var(--offwhite); border: 2px solid var(--line); border-radius: 0.9rem;
  padding: 0.9rem 1.15rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field textarea { min-height: 9rem; resize: vertical; }
.field ::placeholder { color: rgba(26, 35, 30, 0.55); opacity: 1; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 5px rgba(255, 193, 7, 0.3);
}
.form-note { font-size: 0.95rem; font-weight: 400; color: var(--ink-faint); }

/* ---------- Steps ---------- */
.flow-steps { counter-reset: step; display: grid; gap: 1.5rem; list-style: none; }
@media (min-width: 800px) { .flow-steps { grid-template-columns: repeat(3, 1fr); gap: 1.8rem; } }
.flow-steps li {
  background: var(--paper); border: 2px solid var(--line); border-radius: 1.4rem;
  padding: 1.9rem 1.8rem; counter-increment: step;
  box-shadow: 0 10px 40px rgba(18, 56, 22, 0.07);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}
.flow-steps li:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -16px rgba(18, 56, 22, 0.2); }
.flow-steps li::before {
  content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.6rem; height: 2.6rem; margin-bottom: 1rem;
  font-family: var(--display); font-weight: 700; font-size: 1.2rem;
  background: var(--sun); color: var(--ink);
  border-radius: 999px;
}
.flow-steps h3 { font-size: 1.4rem; margin-bottom: 0.45rem; }
.flow-steps p { font-size: 1rem; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--deep); color: var(--offwhite); position: relative; z-index: 2; border-top: 4px solid var(--sun); }
.footer-word {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 5.4rem);
  line-height: 1.05; letter-spacing: -0.015em;
  padding-top: clamp(3.2rem, 7vw, 5.2rem);
}
.footer-word em { color: var(--sun); }
.footer-cta { padding-block: clamp(2.2rem, 5vw, 3.4rem); border-bottom: 2px solid rgba(249,251,249,0.16); }
.footer-cta p { color: rgba(249,251,249,0.84); max-width: 38rem; margin-bottom: 1.9rem; }
.footer-grid { display: grid; gap: 2.4rem; padding-block: clamp(2.6rem, 6vw, 4rem); border-bottom: 2px solid rgba(249,251,249,0.16); }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 3rem; } }
.footer-grid h3 { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sun); margin-bottom: 1.1rem; }
.footer-grid ul { list-style: none; display: grid; gap: 0.2rem; }
.footer-grid a { display: inline-flex; align-items: center; min-height: 40px; color: rgba(249,251,249,0.92); text-decoration: none; font-size: 1rem; transition: color 0.25s, padding-left 0.25s var(--ease); }
.footer-grid a:hover { color: var(--sun); padding-left: 0.3rem; }
.footer-brand p { color: rgba(249,251,249,0.78); font-size: 0.98rem; margin-top: 1.1rem; max-width: 24rem; }
.footer-charity { padding-block: 2.1rem; border-bottom: 2px solid rgba(249,251,249,0.16); }
.footer-charity p { font-size: 0.9rem; color: rgba(249,251,249,0.82); max-width: 62rem; margin-bottom: 0.55rem; }
.footer-charity strong { color: var(--offwhite); }
.footer-base {
  display: flex; flex-wrap: wrap; gap: 0.7rem 2rem;
  align-items: center; justify-content: space-between;
  padding-block: 1.5rem;
  font-size: 0.86rem; font-weight: 400; color: rgba(249,251,249,0.72);
}
.footer-base a { color: rgba(249,251,249,0.92); }
.footer-base a:hover { color: var(--sun); }

/* ---------- Misc ---------- */
.notice { border: 2px solid var(--line); border-left: 8px solid var(--green); background: var(--grass-tint); border-radius: 1rem; padding: 1.4rem 1.6rem; font-size: 1rem; color: var(--muted); }
.notice strong { color: var(--ink); }
.notice a { color: var(--green); font-weight: 700; }
.prose p { margin-bottom: 1.2rem; color: var(--muted); max-width: 46rem; }
.prose h2 { margin: 2.7rem 0 1.1rem; font-size: clamp(1.7rem, 2.9vw, 2.3rem); }
.prose h3 { margin: 2.1rem 0 0.8rem; font-size: 1.5rem; }
.prose ul { margin: 0 0 1.2rem 1.3rem; color: var(--muted); max-width: 44rem; }
.prose li { margin-bottom: 0.5rem; }
.prose a { color: var(--green); font-weight: 700; }
.prose strong { color: var(--ink); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* scroll reveals */
html.js .rv { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
html.js .rv.is-visible { opacity: 1; transform: translateY(0); }
html.js .rv-d1 { transition-delay: 0.1s; }
html.js .rv-d2 { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; scroll-behavior: auto !important; }
  html.js .reveal-line-inner, html.js .hero-fade, html.js .hero-media { transform: none; opacity: 1; animation: none; }
  html.js .rv { opacity: 1; transform: none; }
}
