/* ============================================================================
   Hopper Oak AI — site stylesheet
   Layout, components, responsive. Tokens live in tokens.css.
   ============================================================================ */

/* ---------- reset ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img, picture, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }

body {
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-feature-settings: "kern" 1, "liga" 1, "onum" 1;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---------- a11y ---------------------------------------------------------- */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--ho-gold-deep);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
.skip-link {
  position: absolute; left: var(--sp-4); top: -100%;
  z-index: 100; padding: var(--sp-3) var(--sp-5);
  background: var(--ho-navy); color: var(--ho-on-navy);
  font-family: var(--font-mono); font-size: var(--fs-caption);
  letter-spacing: var(--ls-label); text-transform: uppercase;
  text-decoration: none; border-radius: var(--radius);
}
.skip-link:focus { top: var(--sp-4); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ---------- type ---------------------------------------------------------- */
h1, h2, h3, h4 { color: var(--text-heading); line-height: var(--lh-snug); text-wrap: balance; }
h1 { font-family: var(--font-display); font-size: var(--fs-hero); font-weight: var(--fw-semi);
     letter-spacing: var(--ls-cover); line-height: var(--lh-tight); text-transform: uppercase; }
h2 { font-family: var(--font-heading); font-size: var(--fs-display); font-weight: var(--fw-semi); }
h3 { font-family: var(--font-heading); font-size: var(--fs-h2); font-weight: var(--fw-semi); }
h4 { font-family: var(--font-body); font-size: var(--fs-h4); font-weight: var(--fw-semi); }

p { text-wrap: pretty; }
p + p { margin-top: var(--sp-5); }
strong { font-weight: var(--fw-semi); }
em { font-style: italic; }

a { color: var(--ho-navy); text-decoration-color: var(--ho-gold);
    text-decoration-thickness: 1px; text-underline-offset: 3px;
    transition: color var(--t-fast), text-decoration-color var(--t-fast); }
a:hover { color: var(--ho-gold-deep); text-decoration-color: var(--ho-gold-deep); }

/* Mono eyebrow — the "audit" voice. Structural label, never decorative. */
.eyebrow {
  font-family: var(--font-mono); font-size: var(--fs-label); font-weight: 500;
  letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
  color: var(--ho-gold-deep); margin-bottom: var(--sp-4);
  display: block;
}
.eyebrow--on-navy { color: var(--ho-gold-soft); }

.lede { font-size: var(--fs-body-lg); color: var(--ho-text); max-width: var(--measure); }
.muted { color: var(--text-caption); }
.prose { max-width: var(--measure); }
.prose > * + * { margin-top: var(--sp-5); }
.prose h2 { margin-top: var(--sp-12); }
.prose h3 { margin-top: var(--sp-10); }
.prose ul, .prose ol { padding-left: var(--sp-6); }
.prose li + li { margin-top: var(--sp-2); }
.prose blockquote {
  border-left: var(--rule) solid var(--ho-gold);
  padding-left: var(--sp-6); margin-left: 0;
  font-family: var(--font-heading); font-size: var(--fs-h3); font-style: italic;
  color: var(--ho-navy);
}

/* ---------- layout ------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-nr); }
.section { padding-block: var(--section-y); }
.section--panel { background: var(--surface-panel); border-block: var(--hair) solid var(--ho-rule); }
.section--ink { background: var(--ho-navy); color: var(--ho-on-navy); }
.section--ink h2, .section--ink h3, .section--ink h4 { color: var(--ho-on-navy); }
/* :not(.btn) matters. Without it this rule outranks .btn--on-ink (0,2,0 beats
   0,1,0) and repaints the primary CTA gold-on-parchment at 1.92:1. */
.section--ink a:not(.btn) { color: var(--ho-gold-soft); text-decoration-color: var(--ho-gold-soft); }
.section--ink a:not(.btn):hover { color: var(--ho-paper); }
.section--ink .muted { color: var(--ho-on-navy-muted); }

.section__head { max-width: 62ch; margin-bottom: var(--sp-12); }
.section__head p { margin-top: var(--sp-4); color: var(--text-caption); font-size: var(--fs-body-lg); }
.section--ink .section__head p { color: var(--ho-on-navy-muted); }

.grid { display: grid; gap: var(--sp-6); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }

/* Gold hairline used as a structural divider — does most of the work */
.rule-gold { height: var(--rule); width: 64px; background: var(--ho-gold); border: 0; margin: 0; }

/* ---------- buttons ------------------------------------------------------ */
/* Primary CTA is solid navy: 14.25:1 on parchment, higher contrast than any
   "vibrant accent" would give us, and it keeps gold as a line-and-touch. */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  font-family: var(--font-mono); font-size: var(--fs-body-sm); font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  padding: var(--sp-4) var(--sp-8); border-radius: var(--radius);
  border: var(--hair) solid transparent; cursor: pointer;
  transition: background var(--t-base), border-color var(--t-base),
              color var(--t-base), transform var(--t-fast);
  text-align: center;
}
.btn--primary { background: var(--ho-navy); color: var(--ho-on-navy); border-color: var(--ho-gold); }
.btn--primary:hover { background: var(--ho-navy-soft); color: var(--ho-paper); }
.btn--primary:active { background: var(--ho-navy-deep); transform: translateY(1px); }

.btn--secondary { background: transparent; color: var(--ho-navy); border-color: var(--ho-border); }
.btn--secondary:hover { background: var(--ho-parchment); border-color: var(--ho-gold); color: var(--ho-navy); }
.btn--secondary:active { transform: translateY(1px); }

.btn--on-ink { background: var(--ho-parchment); color: var(--ho-navy); border-color: var(--ho-gold); }
.btn--on-ink:hover { background: var(--ho-paper); }
.btn--ghost-ink { background: transparent; color: var(--ho-on-navy); border-color: rgb(244 236 216 / 0.35); }
.btn--ghost-ink:hover { border-color: var(--ho-gold-soft); color: var(--ho-gold-soft); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-4); margin-top: var(--sp-8); }

/* ---------- header ------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgb(251 248 241 / 0.94);
  backdrop-filter: blur(6px);
  border-bottom: var(--hair) solid var(--ho-rule);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-6); min-height: var(--header-h);
}
.wordmark { display: inline-flex; align-items: center; gap: var(--sp-3); text-decoration: none; }
.wordmark img { width: 34px; height: 34px; }
.wordmark__text {
  font-family: var(--font-display); font-size: 0.9375rem; font-weight: var(--fw-bold);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ho-navy); line-height: 1;
}
.wordmark__ai { color: var(--ho-gold-deep); }

.site-header__actions { display: flex; align-items: center; gap: var(--sp-3); flex: none; }
.btn--compact { padding: var(--sp-3) var(--sp-5); font-size: var(--fs-caption); }

.nav { display: flex; align-items: center; gap: var(--sp-6); }
.nav__list { display: flex; align-items: center; gap: var(--sp-6); list-style: none; margin: 0; padding: 0; }
.nav__link {
  font-family: var(--font-mono); font-size: var(--fs-caption); font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ho-navy); text-decoration: none; padding-block: var(--sp-2);
  border-bottom: var(--rule) solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.nav__link:hover { color: var(--ho-gold-deep); border-bottom-color: var(--ho-gold); }
.nav__link[aria-current="page"] { border-bottom-color: var(--ho-gold); color: var(--ho-gold-deep); }
.nav .btn { padding: var(--sp-3) var(--sp-5); font-size: var(--fs-caption); }

.nav-toggle {
  display: none; background: transparent; border: var(--hair) solid var(--ho-border);
  border-radius: var(--radius); padding: var(--sp-2) var(--sp-3); cursor: pointer;
  font-family: var(--font-mono); font-size: var(--fs-caption); letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ho-navy);
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-block; }
  /* The nav collapses into a dropdown panel. The CTA is not inside it, so the
     primary action stays tappable on every page without opening the menu. */
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ho-paper); border-bottom: var(--hair) solid var(--ho-rule);
    padding: var(--sp-2) var(--gutter) var(--sp-6);
    box-shadow: var(--elev-2);
    display: none;
  }
  .nav[data-open="true"] { display: flex; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { display: block; padding: var(--sp-4) 0; border-bottom: var(--hair) solid var(--ho-rule); }
  .nav__link[aria-current="page"] { border-bottom-color: var(--ho-gold); }
}

/* The header CTA carries a long and a short label; only one is ever rendered,
   so the button stays readable without the header wrapping. */
.cta-short { display: none; }
@media (max-width: 700px) {
  .cta-long { display: none; }
  .cta-short { display: inline; }
}

/* Below ~430px the wordmark text, CTA and Menu button cannot all fit. The mark
   alone still identifies the site, so the wordmark text is what gives way. */
@media (max-width: 430px) {
  .site-header .wordmark__text { display: none; }
  .btn--compact { padding: var(--sp-3) var(--sp-4); letter-spacing: 0.04em; }
}

/* ---------- hero --------------------------------------------------------- */
.hero {
  background: var(--ho-navy);
  color: var(--ho-on-navy);
  border-bottom: var(--rule) solid var(--ho-gold);
  padding-block: clamp(3rem, 1.5rem + 6vw, 6.5rem);
  position: relative;
  overflow: hidden;
}
.hero__inner { display: grid; gap: var(--sp-12); align-items: center; }
@media (min-width: 900px) { .hero__inner { grid-template-columns: 1.5fr 0.5fr; } }

/* The hero headline carries a deliberate two-line break, so balancing is turned
   off (it would redistribute around the <br>) and tracking is pulled in from the
   cover default so the first line fits on one row at 48px. */
.hero h1 {
  color: var(--ho-paper);
  letter-spacing: 0.09em;
  text-wrap: normal;
}
.hero__lede {
  font-size: var(--fs-body-lg); color: var(--ho-on-navy);
  max-width: 56ch; margin-top: var(--sp-6);
}
.hero__mark { justify-self: center; opacity: 0.96; }
.hero__mark img { width: min(260px, 60vw); height: auto; }
@media (max-width: 899px) { .hero__mark { display: none; } }

.hero__meta {
  display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-6);
  margin-top: var(--sp-10); padding-top: var(--sp-6);
  border-top: var(--hair) solid rgb(244 236 216 / 0.22);
  font-family: var(--font-mono); font-size: var(--fs-caption);
  letter-spacing: 0.06em; color: var(--ho-on-navy-muted);
}

/* Interior page header — lighter than the home hero */
.page-head {
  background: var(--ho-parchment);
  border-bottom: var(--hair) solid var(--ho-rule);
  padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
}
.page-head h1 { font-size: var(--fs-display); letter-spacing: var(--ls-display);
                font-family: var(--font-heading); font-weight: var(--fw-semi);
                text-transform: none; }
.page-head .lede { margin-top: var(--sp-5); }

/* ---------- cards -------------------------------------------------------- */
.card {
  background: var(--surface-panel);
  border: var(--hair) solid var(--ho-border);
  border-radius: var(--radius);
  padding: var(--sp-8);
  display: flex; flex-direction: column; gap: var(--sp-4);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.card--on-page { background: var(--ho-paper); }
a.card, .card--link { text-decoration: none; color: inherit; }
a.card:hover, .card--link:hover { border-color: var(--ho-gold); box-shadow: var(--elev-2); }
.card h3 { font-size: var(--fs-h3); }
.card p { color: var(--text-caption); font-size: var(--fs-body-sm); }
.card__more {
  margin-top: auto; font-family: var(--font-mono); font-size: var(--fs-caption);
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ho-gold-deep);
}

/* Numbered step card — the brand's large Cinzel numeral */
.step { position: relative; }
/* gold-deep, not gold: bright gold on parchment measures 2.71:1, under the 3:1
   floor that large text still has to clear. */
.step__num {
  font-family: var(--font-display); font-size: 2.25rem; font-weight: var(--fw-bold);
  color: var(--ho-gold-deep); line-height: 1; letter-spacing: 0.02em;
  display: block; margin-bottom: var(--sp-2);
}

/* ---------- the engagement ladder --------------------------------------- */
.ladder { display: grid; gap: var(--sp-6); counter-reset: rung; }
@media (min-width: 860px) { .ladder { grid-template-columns: repeat(3, 1fr); } }
.rung {
  background: var(--ho-paper); border: var(--hair) solid var(--ho-border);
  border-top: var(--rule) solid var(--ho-gold);
  border-radius: var(--radius); padding: var(--sp-8);
  display: flex; flex-direction: column; gap: var(--sp-4);
}
.rung__tag {
  font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase; color: var(--text-caption);
}
.rung__title { font-family: var(--font-heading); font-size: var(--fs-h2);
               font-weight: var(--fw-semi); color: var(--ho-navy); }
.rung__term {
  font-family: var(--font-mono); font-size: var(--fs-caption); color: var(--ho-gold-deep);
  letter-spacing: 0.06em;
}
.rung ul { list-style: none; padding: 0; display: grid; gap: var(--sp-2); }
.rung li { position: relative; padding-left: var(--sp-5); font-size: var(--fs-body-sm); }
.rung li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 6px; height: 6px; background: var(--ho-gold);
  transform: rotate(45deg);
}

/* ---------- engagement phases (the taper) ------------------------------- */
/* A CSS-only intensity chart. No JS, no chart library: four columns whose bar
   fill encodes the front-loaded-then-tapering shape of an engagement. */
.phases { display: grid; gap: var(--sp-5); }
@media (min-width: 760px) { .phases { grid-template-columns: repeat(4, 1fr); } }

.phase { display: flex; flex-direction: column; gap: var(--sp-2); }
.phase__bar {
  position: relative; height: 72px;
  background: rgb(14 29 56 / 0.07);
  border: var(--hair) solid var(--ho-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.phase__bar::before {
  content: ""; position: absolute; inset-inline: 0; bottom: 0;
  height: var(--fill); background: var(--ho-navy);
}
.phase--tail .phase__bar::before { background: var(--ho-gold); }
/* The label sits ABOVE the bar rather than inside it. Inside, a short fill left
   the text on the pale track instead of the coloured area. */
.phase__level {
  font-family: var(--font-mono); font-size: var(--fs-label); font-weight: 500;
  letter-spacing: var(--ls-label); text-transform: uppercase;
  color: var(--ho-navy);
}
.phase__when {
  font-family: var(--font-mono); font-size: var(--fs-caption);
  letter-spacing: 0.06em; color: var(--ho-gold-deep); margin-top: var(--sp-3);
}
.phase__title { font-size: var(--fs-h4); color: var(--ho-navy); }
.phase__body { font-size: var(--fs-body-sm); color: var(--text-caption); }

/* ---------- stat / metric callout --------------------------------------- */
.stat { display: flex; flex-direction: column; gap: var(--sp-1); }
.stat__value {
  font-family: var(--font-mono); font-size: clamp(1.75rem, 1.2rem + 2vw, 2.25rem);
  font-weight: 500; color: var(--ho-navy); line-height: 1; font-variant-numeric: tabular-nums;
}
.section--ink .stat__value { color: var(--ho-gold-soft); }
.stat__label {
  font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: var(--ls-label);
  text-transform: uppercase; color: var(--text-caption);
}
.section--ink .stat__label { color: var(--ho-on-navy-muted); }

/* ---------- figure / caption system ------------------------------------- */
/* Every figure sits on parchment and closes with one mono caption label. */
.figure {
  background: var(--surface-panel); border: var(--hair) solid var(--ho-border);
  border-radius: var(--radius); padding: var(--sp-8); margin: 0;
}
.figure__title {
  font-family: var(--font-heading); font-size: var(--fs-h3); font-weight: var(--fw-semi);
  color: var(--ho-navy); margin-bottom: var(--sp-5);
}
.figure__tag {
  font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: var(--ls-label);
  text-transform: uppercase; color: var(--ho-gold-deep); display: block; margin-bottom: var(--sp-2);
}
.figure figcaption {
  margin-top: var(--sp-6); padding-top: var(--sp-4);
  border-top: var(--hair) solid var(--ho-rule);
  font-family: var(--font-mono); font-size: var(--fs-caption);
  color: var(--text-caption); letter-spacing: 0.02em;
}
.figure figcaption b { color: var(--ho-navy); font-weight: 500; letter-spacing: var(--ls-label); }

/* ---------- classification table (Automate / Augment / Abstain) --------- */
.table-wrap { overflow-x: auto; border: var(--hair) solid var(--ho-border); border-radius: var(--radius); }
table { border-collapse: collapse; width: 100%; min-width: 34rem; background: var(--ho-paper); }
thead th {
  background: var(--ho-navy); color: var(--ho-on-navy); text-align: left;
  font-family: var(--font-mono); font-size: var(--fs-label); font-weight: 500;
  letter-spacing: var(--ls-label); text-transform: uppercase;
  padding: var(--sp-4) var(--sp-5);
}
tbody td { padding: var(--sp-4) var(--sp-5); border-top: var(--hair) solid var(--ho-rule);
           font-size: var(--fs-body-sm); vertical-align: top; }
tbody tr:nth-child(even) td { background: rgb(244 236 216 / 0.4); }

.lozenge {
  display: inline-block; font-family: var(--font-mono); font-size: var(--fs-label);
  letter-spacing: var(--ls-label); text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3); border-radius: var(--radius-sm); white-space: nowrap;
}
.lozenge--pos { background: var(--ho-pos-bg); color: var(--ho-pos); }
.lozenge--caution { background: var(--ho-caution-bg); color: var(--ho-gold-deep); }
.lozenge--neg { background: var(--ho-neg-bg); color: var(--ho-neg); }
.lozenge--neutral { background: var(--ho-neutral-bg); color: var(--ho-neutral); }

/* ---------- article ------------------------------------------------------ */
.article__meta {
  display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-5); align-items: center;
  font-family: var(--font-mono); font-size: var(--fs-caption); color: var(--text-caption);
  letter-spacing: 0.04em; margin-top: var(--sp-5);
}
.article__body { margin-top: var(--sp-12); }
.article__body > * + * { margin-top: var(--sp-6); }
.article__body h2 {
  font-size: var(--fs-h2); margin-top: var(--sp-16); padding-top: var(--sp-6);
  border-top: var(--hair) solid var(--ho-rule);
}
.article__body h3 { font-size: var(--fs-h3); margin-top: var(--sp-10); }
.article__body p, .article__body li { max-width: var(--measure); }
.article__body ul, .article__body ol { padding-left: var(--sp-6); display: grid; gap: var(--sp-2); }
.pull {
  font-family: var(--font-heading); font-size: var(--fs-h2); font-style: italic;
  color: var(--ho-navy); border-left: var(--rule) solid var(--ho-gold);
  padding-left: var(--sp-6); margin-block: var(--sp-12);
}

/* ---------- portrait ----------------------------------------------------- */
/* Deliberately reads as a reserved frame rather than a broken image, so the
   About page looks composed while the photograph is still outstanding. */
.portrait { padding: var(--sp-6); }
.portrait__frame {
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(
      45deg,
      var(--ho-parchment-2) 0 10px,
      var(--ho-parchment) 10px 20px
    );
  border: var(--hair) solid var(--ho-border);
  border-radius: var(--radius);
  display: grid; place-items: center;
}
.portrait__label {
  font-family: var(--font-mono); font-size: var(--fs-label);
  letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
  color: var(--ho-text-muted); text-align: center; line-height: 2;
}
.portrait__img {
  width: 100%; height: auto;
  border: var(--hair) solid var(--ho-border);
  border-radius: var(--radius);
}

/* ---------- booking embed ----------------------------------------------- */
.booking-embed {
  border: var(--hair) solid var(--ho-border);
  border-radius: var(--radius);
  background: var(--ho-paper);
  overflow: hidden;
}
.booking-embed iframe { display: block; width: 100%; height: 640px; border: 0; }
@media (max-width: 700px) { .booking-embed iframe { height: 720px; } }

/* ---------- article table of contents ----------------------------------- */
.toc {
  background: var(--surface-panel);
  border: var(--hair) solid var(--ho-border);
  border-left: var(--rule) solid var(--ho-gold);
  border-radius: var(--radius);
  padding: var(--sp-6) var(--sp-8);
}
.toc__list { list-style: none; padding: 0; margin: 0; counter-reset: toc;
             display: grid; gap: var(--sp-2); }
.toc__list li { counter-increment: toc; display: flex; gap: var(--sp-4); font-size: var(--fs-body-sm); }
.toc__list li::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-mono); font-size: var(--fs-caption);
  color: var(--ho-gold-deep); flex: none; padding-top: 0.15em;
}
.toc__list a { text-decoration: none; }
.toc__list a:hover { text-decoration: underline; text-decoration-color: var(--ho-gold); }

/* Sticky header would otherwise hide the target of an in-page anchor. */
.article__body h2, .article__body h3 { scroll-margin-top: calc(var(--header-h) + var(--sp-6)); }

/* ---------- forms ------------------------------------------------------- */
.field { display: grid; gap: var(--sp-2); margin-bottom: var(--sp-6); }
.field label {
  font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: var(--ls-label);
  text-transform: uppercase; color: var(--ho-navy);
}
.field .hint { font-size: var(--fs-caption); color: var(--text-caption); }
.field input, .field select, .field textarea {
  background: var(--ho-paper); color: var(--ho-text);
  border: var(--hair) solid var(--ho-border); border-radius: var(--radius);
  padding: var(--sp-4); font-family: var(--font-body); font-size: var(--fs-body);
  width: 100%; transition: border-color var(--t-fast);
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ho-gold); }
.field textarea { min-height: 8rem; resize: vertical; }
.field--error input, .field--error select, .field--error textarea { border-color: var(--ho-neg); }
.field__error { font-size: var(--fs-caption); color: var(--ho-neg); }
.form-note { font-size: var(--fs-caption); color: var(--text-caption); margin-top: var(--sp-5); }

/* honeypot — visually and audibly hidden, but a bot will fill it */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { margin-top: var(--sp-6); padding: var(--sp-5); border-radius: var(--radius);
               font-size: var(--fs-body-sm); display: none; }
.form-status[data-state="ok"]   { display: block; background: var(--ho-pos-bg); color: var(--ho-pos);
                                  border: var(--hair) solid var(--ho-pos); }
.form-status[data-state="err"]  { display: block; background: var(--ho-neg-bg); color: var(--ho-neg);
                                  border: var(--hair) solid var(--ho-neg); }

/* ---------- footer ------------------------------------------------------ */
.site-footer {
  margin-top: auto;
  background: var(--ho-navy-deep); color: var(--ho-on-navy-muted);
  border-top: var(--rule) solid var(--ho-gold);
  padding-block: var(--sp-16) var(--sp-8);
  font-size: var(--fs-body-sm);
}
.site-footer a { color: var(--ho-on-navy); text-decoration: none; }
.site-footer a:hover { color: var(--ho-gold-soft); text-decoration: underline;
                       text-decoration-color: var(--ho-gold-soft); }
.footer__grid { display: grid; gap: var(--sp-10); }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__title {
  font-family: var(--font-mono); font-size: var(--fs-label); letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase; color: var(--ho-gold-soft); margin-bottom: var(--sp-5);
}
.footer__list { display: grid; gap: var(--sp-3); list-style: none; padding: 0; }
.footer__brand .wordmark__text { color: var(--ho-paper); }
.footer__brand p { margin-top: var(--sp-5); max-width: 34ch; }
.footer__legal {
  margin-top: var(--sp-12); padding-top: var(--sp-6);
  border-top: var(--hair) solid rgb(244 236 216 / 0.16);
  display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-6); justify-content: space-between;
  font-family: var(--font-mono); font-size: var(--fs-caption); letter-spacing: 0.04em;
}

/* ---------- print ------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .btn-row, .nav-toggle, .skip-link { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .hero, .section--ink { background: #fff !important; color: #000 !important; }
  .hero h1, .section--ink h2, .section--ink h3 { color: #000 !important; }
  a { text-decoration: none; color: #000; }
  .section { padding-block: 0.5cm; }
}
