/* Firm Seven Design — styles
   Order: fonts → tokens → base → layout → components → sections → utilities.
   Every text/background pair is computed; ratios live in Drive docs/design.md. */

/* ============ Fonts (self-hosted, SIL OFL) ============ */
@font-face {
  font-family: "Archivo";
  src: url("../assets/fonts/archivo-variable.woff2") format("woff2");
  font-weight: 100 900; font-stretch: 62% 125%; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../assets/fonts/archivo-variable-italic.woff2") format("woff2");
  font-weight: 100 900; font-stretch: 62% 125%; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("../assets/fonts/source-serif-4-variable.woff2") format("woff2");
  font-weight: 200 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("../assets/fonts/source-serif-4-variable-italic.woff2") format("woff2");
  font-weight: 200 900; font-style: italic; font-display: swap;
}

/* ============ Tokens ============ */
:root {
  /* Brand solids (from Logo-fonts-colors.rtf) */
  --green: #99cc33;        /* fills, lines, text on dark only — 1.9:1 on white, never text on light */
  --ink: #333333;          /* 12.63:1 on white */
  --gray: #666666;         /* 5.74:1 on white */
  --white: #ffffff;

  /* Supporting */
  --green-ink: #4e7a0e;    /* green text/links on light: 5.10 white · 4.77 paper */
  --night: #181c15;        /* green-tinted dark: white 17.27 · green 9.08 */
  --night-2: #232820;      /* second dark: green 7.91 · mist 8.16 */
  --mist: #b9c2ae;         /* secondary text on dark: 9.37 night */
  --paper: #f6f8f1;        /* light field: ink 11.80 · gray 5.36 */
  --tint: #eef5dd;         /* green tint field: ink 11.28 · gray 5.12 */
  --purple: #9b5cff;       /* accent, sparingly — lines/rules on dark: 4.42 night · 3.85 night-2 (≥3 graphics) */
  --purple-ink: #6a2fd6;   /* royal purple for text on light: 7.02 white · 6.56 paper */

  /* Ambient variants for gradients (never under body text at full strength) */
  --rgb-green: 153 204 51;
  --rgb-lime: 214 222 70;   /* analogous light green for the green Work band */
  --rgb-purple: 138 77 255; /* purple glow; bridged from green via teal, never overlapped directly */
  --rgb-teal: 58 150 120;

  /* Type */
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Source Serif 4", Georgia, "Times New Roman", serif;
  --step--1: 0.875rem;
  --step-0: 1.0625rem;
  --step-1: clamp(1.125rem, 1.05rem + 0.35vw, 1.3rem);
  --step-2: clamp(1.35rem, 1.2rem + 0.7vw, 1.75rem);
  --step-3: clamp(2rem, 1.5rem + 2.4vw, 3.5rem);
  --step-4: clamp(2.9rem, 1.6rem + 6.4vw, 7.25rem);

  /* Space */
  --gutter: clamp(1rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 10vw, 9rem);
  --max: 76rem;
  --header-h: 4.25rem;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============ Base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scrollbar-color: var(--green) var(--night); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  background: var(--night);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  caret-color: var(--green);
}
::selection { background: var(--green); color: var(--night); }
img, svg { display: block; max-width: 100%; }
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0 0 1em; text-wrap: pretty; }
ul { margin: 0; padding: 0; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid var(--focus, var(--green-ink)); outline-offset: 3px; border-radius: 2px; }

/* Theme scopes: each section declares light or dark */
.theme-dark { --focus: var(--green); --link-line: var(--green); color: var(--white); background: var(--night); }
.theme-light { --focus: var(--green-ink); --link-line: var(--green-ink); color: var(--ink); background: var(--paper); }
.theme-dark a, .theme-light a { text-decoration-color: var(--link-line); }

/* ============ Layout ============ */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 1; }
.section { position: relative; overflow: hidden; padding-block: var(--section-y); scroll-margin-top: var(--header-h); isolation: isolate; }

/* ============ Components ============ */

/* Skip link */
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--green); color: var(--night); padding: 0.75rem 1rem;
  font-family: var(--font-display); font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: 1rem; outline-color: var(--white); }

/* Eyebrow — three slashes echo the logo's stripes */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-display); font-size: var(--step--1); font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 1.5rem;
}
.eyebrow::before {
  content: ""; width: 2.1rem; height: 0.8rem; flex: none;
  background: repeating-linear-gradient(-58deg, var(--slash, var(--green)) 0 4px, transparent 4px 9px);
}
.theme-light .eyebrow { color: var(--gray); --slash: var(--green-ink); }
.theme-dark .eyebrow { color: var(--mist); }

/* Buttons */
.btn {
  --btn-bg: var(--green); --btn-fg: var(--night);
  display: inline-flex; align-items: center; gap: 0.6rem;
  min-height: 3rem; padding: 0.8rem 1.4rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: 0.01em;
  font-stretch: 108%;
  background: var(--btn-bg); color: var(--btn-fg); text-decoration: none;
  border: 2px solid var(--btn-bg); border-radius: 0;
  box-shadow: 4px 4px 0 rgb(var(--rgb-green) / 0.28);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background-color 0.2s;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgb(var(--rgb-green) / 0.35); }
.btn .arrow { transition: transform 0.2s var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--white); border-color: var(--mist); box-shadow: none; }
.btn--ghost:hover { border-color: var(--green); box-shadow: none; }
.theme-light .btn { --btn-bg: var(--night); --btn-fg: var(--white); box-shadow: 4px 4px 0 rgb(var(--rgb-green) / 0.55); }
.theme-light .btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--ink); box-shadow: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgb(24 28 21 / 0.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgb(var(--rgb-green) / 0.18);
  --focus: var(--green); color: var(--white);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 1rem; }
.brand { display: block; flex: none; }
.brand img { height: 1.6rem; width: auto; }
.site-nav ul { list-style: none; display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); }
.site-nav a:not(.btn) {
  font-family: var(--font-display); font-weight: 500; font-size: 0.95rem; letter-spacing: 0.02em;
  color: var(--mist); text-decoration: none; padding: 0.5rem 0; position: relative;
}
.site-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.15rem; height: 2px;
  background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease-out);
}
.site-nav a:not(.btn):hover, .site-nav a[aria-current="location"] { color: var(--white); }
.site-nav a:not(.btn):hover::after, .site-nav a[aria-current="location"]::after { transform: scaleX(1); }
.site-nav .btn { min-height: 2.6rem; padding: 0.55rem 1.1rem; font-size: 0.95rem; }
.nav-toggle {
  display: none; background: none; border: 1px solid rgb(185 194 174 / 0.5); color: var(--white);
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  min-height: 2.75rem; padding: 0.4rem 0.9rem; gap: 0.55rem; align-items: center; cursor: pointer;
}
.nav-toggle__bars { width: 1.1rem; height: 0.7rem; position: relative;
  background: linear-gradient(currentColor, currentColor) top/100% 2px no-repeat,
              linear-gradient(currentColor, currentColor) bottom/100% 2px no-repeat; }

@media (max-width: 52rem) {
  .brand img { height: 1.3rem; }
  .nav-toggle { display: inline-flex; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--night); border-bottom: 1px solid rgb(var(--rgb-green) / 0.25); display: none; }
  .site-nav[data-open="true"] { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 0.5rem var(--gutter) 1.5rem; }
  .site-nav a:not(.btn) { display: block; padding: 0.9rem 0; font-size: 1.1rem; border-bottom: 1px solid rgb(185 194 174 / 0.15); }
  .site-nav a:not(.btn)::after { display: none; }
  .site-nav li:last-child { padding-top: 1.25rem; }
}

/* ============ Wireframe forms (drawn by js/main.js) ============ */
.wire {
  position: absolute; z-index: 0; pointer-events: none;
  width: var(--wire-size, min(64vw, 44rem)); aspect-ratio: 1;
  top: var(--wire-top, 50%); left: var(--wire-left, auto); right: var(--wire-right, -6rem);
  transform: translateY(-50%);
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.wire path { vector-effect: non-scaling-stroke; stroke-width: 1; }
.wire .w-back { stroke: var(--wire-color, var(--green)); opacity: 0.28; }
.wire .w-front { stroke: var(--wire-color, var(--green)); opacity: 0.85; }
.wire .w-accent { stroke: var(--purple); opacity: 0.95; stroke-width: 1.5; }
.theme-light .wire { --wire-color: var(--ink); }
.theme-light .wire .w-back { opacity: 0.16; }
.theme-light .wire .w-front { opacity: 0.42; }
.theme-light .wire .w-accent { stroke: var(--green-ink); opacity: 0.8; }
@media (max-width: 52rem) {
  .wire { --wire-size: 120vw; opacity: 0.45; right: -40vw; }
}

/* ============ Hero ============ */
.hero {
  min-height: calc(100svh - var(--header-h));
  display: flex; align-items: center;
  padding-block: clamp(4rem, 9vw, 8rem);
  background:
    radial-gradient(48% 60% at 88% 18%, rgb(var(--rgb-green) / 0.30), rgb(var(--rgb-green) / 0) 70%),
    radial-gradient(34% 40% at 70% 92%, rgb(var(--rgb-purple) / 0.20), rgb(var(--rgb-purple) / 0) 70%),
    radial-gradient(30% 36% at 84% 58%, rgb(var(--rgb-teal) / 0.14), rgb(var(--rgb-teal) / 0) 70%),
    linear-gradient(100deg, var(--night) 0%, var(--night) 42%, #1d2318 100%);
  --wire-size: min(62vw, 48rem); --wire-right: -4rem; --wire-top: 52%;
}
.hero__inner { max-width: 50rem; }
.hero h1 {
  font-size: var(--step-4); font-weight: 800; font-style: italic; font-stretch: 115%;
  letter-spacing: -0.025em; line-height: 0.95; margin-bottom: 1.75rem;
}
.hero h1 .accent { color: var(--green); }
.hero__lede {
  font-family: var(--font-display); font-size: var(--step-2); font-weight: 500; font-stretch: 105%;
  line-height: 1.3; max-width: 36rem; margin-bottom: 1rem;
}
.hero__sub { color: var(--mist); font-size: var(--step-1); max-width: 34rem; margin-bottom: 2.5rem; }
.facts {
  list-style: none; display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; margin-top: 3.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgb(185 194 174 / 0.25); max-width: 44rem;
  font-family: var(--font-display); font-size: var(--step--1); letter-spacing: 0.06em; text-transform: uppercase; color: var(--mist);
}
.facts strong { color: var(--white); font-weight: 700; }

/* ============ Section heads ============ */
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { font-size: var(--step-3); font-weight: 800; font-stretch: 112%; letter-spacing: -0.02em; margin-bottom: 1.25rem; }
.section-head p { font-size: var(--step-1); }
.theme-dark .section-head p { color: var(--mist); }

/* ============ About ============ */
.about {
  background:
    radial-gradient(42% 60% at 100% 0%, rgb(var(--rgb-green) / 0.22), rgb(var(--rgb-green) / 0) 70%),
    radial-gradient(30% 40% at 0% 100%, rgb(var(--rgb-lime) / 0.16), rgb(var(--rgb-lime) / 0) 70%),
    var(--paper);
  --wire-size: min(40vw, 30rem); --wire-right: -9rem; --wire-top: 78%;
}
.about__grid { display: grid; gap: clamp(2.5rem, 6vw, 5rem); grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); align-items: start; }
.about__body h2 { font-size: var(--step-3); font-weight: 800; font-stretch: 112%; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.about__body p { font-size: var(--step-1); }
.people { list-style: none; display: grid; gap: 0; }
.person { border-top: 2px solid var(--ink); padding: 1.5rem 0 1.75rem; }
.person + .person { border-top-width: 1px; }
.person h3 { font-size: var(--step-2); font-weight: 700; font-stretch: 110%; margin-bottom: 0.35rem; }
.person__role { font-family: var(--font-display); color: var(--gray); font-size: 1rem; margin: 0 0 0.75rem; }
.person__link { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--green-ink); }
.name-note {
  margin-top: 2.5rem; padding: 1.5rem 0 0; border-top: 1px solid rgb(51 51 51 / 0.25);
  font-size: var(--step-0); color: var(--ink);
}
.name-note strong { font-family: var(--font-display); font-weight: 700; }
@media (max-width: 52rem) { .about__grid { grid-template-columns: 1fr; } }

/* ============ Services ============ */
.services {
  background:
    radial-gradient(40% 50% at 0% 10%, rgb(var(--rgb-green) / 0.16), rgb(var(--rgb-green) / 0) 70%),
    radial-gradient(36% 46% at 100% 100%, rgb(var(--rgb-teal) / 0.20), rgb(var(--rgb-teal) / 0) 70%),
    var(--night-2);
  --wire-size: min(40vw, 32rem); --wire-right: auto; --wire-left: -9rem; --wire-top: 9rem;
}
.services .section-head { margin-left: auto; max-width: 44rem; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 26rem), 1fr)); gap: 3rem clamp(2rem, 4vw, 3.5rem); }
.service { border-top: 2px solid var(--green); padding-top: 1.5rem; }
.service h3 { font-size: var(--step-2); font-weight: 700; font-stretch: 108%; margin-bottom: 0.75rem; }
.service > p { color: var(--mist); }
.service ul { list-style: none; font-family: var(--font-display); font-size: 0.975rem; }
.service li { padding: 0.5rem 0 0.5rem 1.4rem; border-bottom: 1px solid rgb(185 194 174 / 0.14); position: relative; }
.service li::before {
  content: ""; position: absolute; left: 0; top: 0.95rem; width: 0.55rem; height: 2px; background: var(--green);
  transform: skewX(-30deg);
}
.service--wide { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1rem clamp(2rem, 4vw, 3.5rem); border-top-color: var(--purple); }
.service--wide h3 { grid-column: 1 / -1; }
.service--wide .note { color: var(--mist); font-size: var(--step--1); font-style: italic; }
@media (max-width: 52rem) { .service--wide { grid-template-columns: 1fr; } }

/* ============ Pricing ============ */
.pricing {
  background:
    radial-gradient(44% 56% at 100% 30%, rgb(var(--rgb-green) / 0.20), rgb(var(--rgb-green) / 0) 70%),
    radial-gradient(28% 34% at 96% 96%, rgb(var(--rgb-purple) / 0.10), rgb(var(--rgb-purple) / 0) 70%),
    var(--white);
  --wire-size: min(44vw, 32rem); --wire-right: -4rem; --wire-top: 20%;
}
.tiers { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); gap: 0; }
.tier { border-top: 2px solid var(--ink); padding: 1.5rem clamp(1rem, 2vw, 1.75rem) 2rem 0; }
.tier + .tier { padding-left: clamp(1rem, 2vw, 1.75rem); border-left: 1px solid rgb(51 51 51 / 0.18); }
.tier h3 { font-size: clamp(1.3rem, 1.15rem + 0.45vw, 1.5rem); font-weight: 800; font-stretch: 104%; letter-spacing: -0.01em; line-height: 1.15; margin: 0 0 0.75rem; }
.tier .tier__price { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--green-ink); margin: 0 0 0.85rem; line-height: 1.3; }
.tier .tier__from { font-size: var(--step--1); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-right: 0.4rem; }
.tier p { color: var(--gray); font-size: 1rem; margin: 0; }
@media (max-width: 40rem) { .tier + .tier { padding-left: 0; border-left: 0; } }

.included { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: clamp(2rem, 5vw, 4.5rem); margin-top: clamp(4rem, 8vw, 6rem); padding-top: clamp(2.5rem, 5vw, 3.5rem); border-top: 1px solid rgb(51 51 51 / 0.2); }
.included h3 { font-size: var(--step-2); font-weight: 800; font-stretch: 110%; margin-bottom: 1rem; }
.checklist { list-style: none; font-family: var(--font-display); }
.checklist li { padding: 0.65rem 0 0.65rem 2rem; border-bottom: 1px solid rgb(51 51 51 / 0.14); position: relative; }
.checklist li::before {
  content: ""; position: absolute; left: 0.2rem; top: 1.05rem; width: 0.8rem; height: 0.42rem;
  border-left: 2px solid var(--green-ink); border-bottom: 2px solid var(--green-ink); transform: rotate(-45deg);
}
.terms { margin-top: 1.5rem; }
.terms p { color: var(--gray); font-size: 1rem; }
@media (max-width: 52rem) { .included { grid-template-columns: 1fr; } }

/* ============ Work (portfolio) ============ */
.work {
  background:
    radial-gradient(60% 90% at 100% 0%, rgb(var(--rgb-lime) / 0.9), rgb(var(--rgb-lime) / 0) 70%),
    linear-gradient(110deg, #a6d23f 0%, var(--green) 55%, #8cc02c 100%);
  color: var(--night);
  --focus: var(--night); --link-line: var(--night);
  --wire-color: var(--night); --wire-size: min(56vw, 40rem); --wire-right: -6rem; --wire-top: 50%;
}
.work .wire .w-back { opacity: 0.18; }
.work .wire .w-front { opacity: 0.5; }
.work .wire .w-accent { stroke: var(--night); opacity: 0.8; }
.work .eyebrow { color: var(--night); --slash: var(--night); }
.work .section-head p { color: var(--night); }
.work .btn { --btn-bg: var(--night); --btn-fg: var(--white); box-shadow: 5px 5px 0 rgb(24 28 21 / 0.25); }

/* ============ Contact ============ */
.contact {
  background:
    radial-gradient(50% 70% at 50% 110%, rgb(var(--rgb-green) / 0.30), rgb(var(--rgb-green) / 0) 70%),
    radial-gradient(26% 34% at 88% 8%, rgb(var(--rgb-purple) / 0.18), rgb(var(--rgb-purple) / 0) 70%),
    var(--night);
  --wire-size: min(44vw, 34rem); --wire-right: -14rem; --wire-top: 30%;
}
.contact .wire { opacity: 0.7; }
.contact__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(2.5rem, 6vw, 5rem); align-items: end; }
.contact h2 { font-size: var(--step-4); font-weight: 800; font-style: italic; font-stretch: 112%; letter-spacing: -0.025em; line-height: 0.95; margin-bottom: 1.5rem; }
.contact .lede { font-size: var(--step-1); color: var(--mist); max-width: 34rem; margin-bottom: 2.5rem; }
.contact-list { list-style: none; font-family: var(--font-display); }
.contact-list li { border-top: 1px solid rgb(185 194 174 / 0.25); padding: 1rem 0; }
.contact-list li:last-child { border-bottom: 1px solid rgb(185 194 174 / 0.25); }
.contact-list .label { display: block; font-size: var(--step--1); letter-spacing: 0.14em; text-transform: uppercase; color: var(--mist); margin-bottom: 0.2rem; }
.contact-list a, .contact-list .value { font-size: var(--step-1); font-weight: 600; color: var(--white); }
.contact-list .social { display: flex; flex-wrap: wrap; gap: 0.4rem 1.5rem; }
@media (max-width: 52rem) { .contact__grid { grid-template-columns: 1fr; } }

/* ============ Footer ============ */
.site-footer { background: #11140f; color: var(--mist); padding-block: 3rem; font-family: var(--font-display); font-size: 0.9rem; --focus: var(--green); }
.site-footer .wrap { display: grid; gap: 1.5rem; grid-template-columns: auto 1fr; align-items: center; }
.site-footer img { height: 1.3rem; width: auto; }
.footer-meta { justify-self: end; text-align: right; }
.footer-meta p { margin: 0 0 0.35rem; }
.footer-links { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem 1.5rem; justify-content: flex-end; }
.footer-links a { color: var(--white); text-decoration-color: var(--green); }
@media (max-width: 40rem) {
  .site-footer .wrap { grid-template-columns: 1fr; }
  .footer-meta { justify-self: start; text-align: left; }
  .footer-links { justify-content: flex-start; }
}

/* ============ Simple pages (privacy, accessibility, 404) ============ */
.page { background: var(--paper); min-height: 70vh; }
.page .wrap { max-width: 46rem; }
.page h1 { font-size: var(--step-3); font-weight: 800; font-stretch: 112%; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.page h2 { font-size: var(--step-2); font-weight: 700; margin: 2.75rem 0 0.75rem; }
.page .updated { color: var(--gray); font-family: var(--font-display); font-size: var(--step--1); margin-bottom: 2.5rem; }
.page ul { padding-left: 1.25rem; margin-bottom: 1em; }
.page li { margin-bottom: 0.4rem; }
.page a { color: var(--green-ink); }

/* ============ Motion preferences ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ============ Utilities ============ */
.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; }
.header-cta { min-height: 2.6rem; padding: 0.55rem 1.1rem; font-size: 0.95rem; }
