/* ==========================================================================
   Travel First Horizons — site.css
   Register: LUXURY EDITORIAL. Built to DESIGN-LANGUAGE.md (the authority).
   Warm-paper light base · forest dark bookends · Fraunces + Inter (self-hosted
   variable woff2, zero external requests) · brass as rule/stroke/one-CTA only.
   ========================================================================== */

/* ---- Self-hosted variable fonts (no CDN, no external request) ---- */
@font-face {
  font-family: "Fraunces";
  src: url("/fonts/fraunces.woff2") format("woff2");
  font-weight: 300 700;
  font-stretch: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("/fonts/fraunces-italic.woff2") format("woff2");
  font-weight: 300 700;
  font-stretch: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/inter.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: normal;
  font-style: normal;
  font-display: swap;
}

/* ---- Tokens (measured, per DESIGN-LANGUAGE §2) ---- */
:root {
  --paper:      #f6f2ea;
  --paper-alt:  #eee7d8;
  --surface:    #ffffff;
  --line:       #ddd4bf;

  --ink:        #1c1b18;
  --ink-dim:    #5c574c;
  --ink-faint:  #78715f;

  --brass:        #a9772f;
  --brass-ink:    #8a5f24;
  --brass-bright: #d4a437;

  --forest:   #1b2921;
  --forest-2: #24352b;
  --forest-ink: #c9c2b0;   /* paper-equivalent text on forest, 8.5:1 */

  --danger: #b3432f;
  --amber:  #9a6a12;       /* "pending confirmation" placeholder marks */
  --amber-bg: #fbeecb;

  --radius-card: 0px;
  --radius-control: 3px;
  --radius-pill: 999px;

  --container: 1280px;
  --prose: 66ch;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --dur-fast: 180ms;
  --dur-slow: 380ms;
  --ease: cubic-bezier(0.16, 0.68, 0.32, 1);

  --nav-h: 76px;
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--brass-ink); text-decoration: none; }
strong { font-weight: 600; }
:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--brass); }

/* ---- Typography ladder (DESIGN-LANGUAGE §3) ---- */
h1, h2, h3, .display { font-family: var(--serif); font-weight: 400; margin: 0; }
.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 1rem;
}
.h2 { font-size: clamp(2rem, 4vw, 2.5rem); line-height: 1.15; letter-spacing: -0.015em; }
.h3 { font-size: 1.75rem; line-height: 1.2; letter-spacing: -0.01em; }
.lead { font-size: 1.375rem; line-height: 1.5; color: var(--ink-dim); }
.meta { font-size: 1rem; color: var(--ink-faint); }
p { margin: 0 0 1.2rem; }
.prose { max-width: var(--prose); }
.prose p { margin: 0 0 1.25rem; }
.prose h2 { font-size: 1.75rem; line-height: 1.2; letter-spacing: -0.01em; margin: 2.6rem 0 0.9rem; }
.prose h3 {
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--brass-ink);
  margin: 2.2rem 0 0.6rem;
}
.prose a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: color-mix(in srgb, var(--brass-ink) 45%, transparent); }
.prose a:hover { text-decoration-color: var(--brass-ink); }
.prose ul { padding-left: 1.2rem; margin: 0 0 1.25rem; }
.prose li { margin: 0 0 0.5rem; }

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section--tint { background: var(--paper-alt); }
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 0.85em 1.6em; border-radius: var(--radius-control);
  border: 1px solid transparent; cursor: pointer;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  text-align: center;
}
/* THE one solid-fill button in the system (measured 6.6:1) */
.btn-primary { background: var(--brass-bright); color: var(--forest); }
.btn-primary:hover { background: #e3b346; }
.btn-outline { background: transparent; color: var(--brass-ink); border-color: var(--brass); }
.btn-outline:hover { background: color-mix(in srgb, var(--brass) 10%, transparent); }
.btn-ondark { background: var(--brass-bright); color: var(--forest); }
/* .admin's link-color rule (.admin a) out-specifies .btn-ondark and painted
   this button gold-on-gold — pin the label color at higher specificity */
.admin a.btn-ondark, .admin .btn-ondark { color: var(--forest); }
.btn-ondark:hover { background: #e3b346; }
.btn-ghost-dark { background: transparent; color: var(--forest-ink); border-color: color-mix(in srgb, var(--forest-ink) 40%, transparent); }
.btn-ghost-dark:hover { border-color: var(--brass-bright); color: #fff; }
.btn-block { display: flex; width: 100%; }

/* Text link with underline-sweep (M7) */
.link-brass { color: var(--brass-ink); font-weight: 600; position: relative; display: inline-block; }
.link-brass::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 100%;
  background: var(--brass-ink); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-fast) var(--ease);
}
.link-brass:hover::after { transform: scaleX(1); }

/* ==========================================================================
   NAV — fixed, transparent over hero, solid --paper after scroll (§6)
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--dur-slow) var(--ease), border-color var(--dur-slow) var(--ease),
              box-shadow var(--dur-slow) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav__brand { display: flex; align-items: center; }
.nav__brand img { height: 52px; width: auto; }
.nav__brand .wordmark-light { display: block; filter: drop-shadow(0 1px 6px rgba(27,41,33,0.6)); }
.nav__brand .wordmark-ink { display: none; }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.1rem); list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-family: var(--sans); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.01em;
  color: var(--paper); position: relative; padding: 0.4rem 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-fast) var(--ease);
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__cta { margin-left: 0.5rem; }
.nav__cta .btn { padding: 0.6em 1.15em; }

/* Over-hero (default, transparent) state */
.nav .btn-outline { color: var(--paper); border-color: color-mix(in srgb, var(--paper) 55%, transparent); }
.nav .btn-outline:hover { border-color: var(--brass-bright); color: #fff; background: transparent; }

/* Solid (scrolled / non-hero pages) state */
.nav.is-solid { background: var(--paper); border-bottom-color: var(--line); box-shadow: 0 1px 0 rgba(0,0,0,0.02); }
.nav.is-solid .nav__links a { color: var(--ink); }
.nav.is-solid .nav__brand .wordmark-light { display: none; }
.nav.is-solid .nav__brand .wordmark-ink { display: block; }
.nav.is-solid .btn-outline { color: var(--brass-ink); border-color: var(--brass); }
.nav.is-solid .btn-outline:hover { background: color-mix(in srgb, var(--brass) 10%, transparent); border-color: var(--brass); color: var(--brass-ink); }

/* Pages without a hero force the solid nav immediately */
.nav--solid-static { position: fixed; background: var(--paper); border-bottom-color: var(--line); }
.nav--solid-static .nav__links a { color: var(--ink); }
.nav--solid-static .nav__brand .wordmark-light { display: none; }
.nav--solid-static .nav__brand .wordmark-ink { display: block; }
.nav--solid-static .btn-outline { color: var(--brass-ink); border-color: var(--brass); }

/* Mobile: collapse primary links + CTA into the hamburger sheet (≤820px) */
@media (max-width: 820px) {
  .nav__links, .nav__cta { display: none; }
}

/* Mobile hamburger + full-screen sheet */
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.5rem; margin: -0.5rem;
  width: 44px; height: 44px; align-items: center; justify-content: center; color: currentColor; }
.nav__toggle svg { width: 26px; height: 26px; stroke: currentColor; }
.nav__toggle { color: #fff; filter: drop-shadow(0 1px 5px rgba(27,41,33,0.65)); }
.nav.is-solid .nav__toggle, .nav--solid-static .nav__toggle { color: var(--ink); filter: none; }
.nav:not(.is-solid):not(.nav--solid-static) .nav__toggle { color: var(--paper); }
/* Mobile: the toggle only exists ≤820px — declared AFTER the base display:none
   so author order resolves correctly (this ordering bug once hid the burger). */
@media (max-width: 820px) { .nav__toggle { display: inline-flex; } }

.nav__sheet {
  position: fixed; inset: 0; z-index: 200; background: var(--forest);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.75rem;
  opacity: 0; visibility: hidden; transition: opacity var(--dur-slow) var(--ease), visibility var(--dur-slow);
}
.nav__sheet.is-open { opacity: 1; visibility: visible; }
.nav__sheet a { font-family: var(--serif); font-size: 1.9rem; color: var(--paper); }
.nav__sheet .btn { margin-top: 0.5rem; font-family: var(--sans); }
.nav__sheet-close { position: absolute; top: 1.4rem; right: 1.4rem; width: 44px; height: 44px;
  background: none; border: 0; color: var(--paper); cursor: pointer; }
.nav__sheet-close svg { width: 28px; height: 28px; stroke: currentColor; }

/* ==========================================================================
   HERO — full-bleed photo, bottom forest scrim, one headline + one CTA (§4)
   ========================================================================== */
.hero { position: relative; height: 92vh; min-height: 560px; display: flex; align-items: flex-end;
  overflow: hidden; background: var(--forest); }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(27,41,33,0.78) 0%, rgba(27,41,33,0.42) 10%, rgba(27,41,33,0) 28%, rgba(27,41,33,0) 45%, rgba(27,41,33,0.35) 68%, rgba(27,41,33,0.82) 100%); }
.hero__content { position: relative; z-index: 2; width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 3rem) clamp(3.5rem, 8vh, 6rem); }
.hero__eyebrow { color: var(--paper); letter-spacing: 0.14em; margin-bottom: 1.1rem; text-shadow: 0 1px 12px rgba(27,41,33,0.45); }
/* each half is unbreakable, so any wrap lands exactly at the divider */
.hero__eyebrow .seg { white-space: nowrap; }
.hero__title { font-family: var(--serif); color: #fff; font-weight: 460;
  /* explicit 4-line break (Justin's structure); min sized so the longest line
     ("hunting & fly fishing") holds on a 390px phone without a re-wrap */
  font-size: clamp(2.3rem, 6vw, 5.5rem); line-height: 1.06; letter-spacing: -0.02em;
  max-width: none; margin: 0 0 1.5rem;
  /* opsz capped at 84: Fraunces' 144 display cut thins crossbars (H) to
     hairlines that drop out on low-DPI/scaled screens — same fix as og-card */
  font-variation-settings: "opsz" 84, "SOFT" 0, "WONK" 0; }
.hero__dek { color: var(--paper); font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.55;
  max-width: 44ch; margin: 0 0 2rem; opacity: 0.94; }
.hero__scrollhint { position: absolute; z-index: 2; left: 50%; bottom: 1.5rem; transform: translateX(-50%);
  color: var(--paper); opacity: 0.6; }
.hero__scrollhint svg { width: 22px; height: 22px; stroke: currentColor; }

/* ==========================================================================
   INTRO / concierge blurb
   ========================================================================== */
.intro__label { color: var(--brass-ink); }
.intro__statement { font-family: var(--serif); font-size: clamp(1.6rem, 3.1vw, 2.4rem);
  line-height: 1.28; letter-spacing: -0.01em; color: var(--ink); max-width: 24ch;
  font-variation-settings: "opsz" 60; }
.intro__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.intro__body { max-width: 46ch; }
@media (max-width: 820px) { .intro__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   PARTNERS — editorial: framed photo + forest scrim + white logo + copy (§4/§6)
   ========================================================================== */
.partners { display: grid; gap: clamp(2rem, 4vw, 3rem); }
.partner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch;
  background: var(--surface); border: 1px solid var(--line);
}
.partner:nth-child(even) .partner__figure { order: 2; }
.partner__figure { position: relative; overflow: hidden; min-height: 340px; background: var(--forest); }
.partner__figure .partner__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease); }
.partner__figure-scrim { position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,41,33,0.55), rgba(27,41,33,0.15) 55%, rgba(27,41,33,0.35)); }
.partner__logo { position: absolute; z-index: 2; left: 2rem; bottom: 2rem; max-width: 200px; height: auto; }
.partner__body { padding: clamp(2rem, 4vw, 3.25rem); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.partner__discipline { color: var(--brass-ink); }
.partner__name { font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.25rem); line-height: 1.1;
  letter-spacing: -0.01em; margin: 0 0 0.5rem; font-variation-settings: "opsz" 72; }
.partner__tagline { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--ink-dim);
  margin: 0 0 1.1rem; }
.partner__copy { color: var(--ink-dim); max-width: 46ch; margin: 0 0 1.6rem; }
@media (max-width: 780px) {
  .partner { grid-template-columns: 1fr; }
  .partner:nth-child(even) .partner__figure { order: 0; }
  .partner__figure { min-height: 260px; }
}

/* ==========================================================================
   TESTIMONIALS — Fraunces italic pull-quote, Inter attribution (§6)
   ========================================================================== */
.quote { max-width: 62ch; }
.quote__mark { font-family: var(--serif); font-size: 3.5rem; line-height: 0.6; color: var(--brass);
  display: block; margin-bottom: 0.4rem; height: 1.4rem; }
.quote__text { font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem); line-height: 1.4; letter-spacing: -0.01em; color: var(--ink);
  margin: 0 0 1.2rem; font-variation-settings: "opsz" 40; }
.quote__attr { font-family: var(--sans); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-faint); }

/* homepage curated 3-up */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 3.5rem); }
.quotes-grid .quote__text { font-size: clamp(1.2rem, 1.7vw, 1.45rem); display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 12; overflow: hidden; }
@media (max-width: 900px) { .quotes-grid { grid-template-columns: 1fr; gap: 2.75rem; } }

/* testimonials page: grouped collections */
.tgroup + .tgroup { margin-top: clamp(3.5rem, 7vw, 6rem); }
.tgroup__head { display: flex; align-items: baseline; gap: 1rem; padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line); margin-bottom: clamp(2rem, 4vw, 3rem); }
.tgroup__name { font-family: var(--serif); font-size: 1.75rem; letter-spacing: -0.01em; }
.tgroup__disc { color: var(--ink-faint); font-size: 0.9rem; }
.tgroup__list { display: grid; gap: clamp(2.25rem, 4vw, 3.25rem); }

/* ==========================================================================
   EDITORIAL BAND — full-bleed divider photo w/ scrim (arrival moment)
   ========================================================================== */
.band { position: relative; min-height: 46vh; display: flex; align-items: center; overflow: hidden; background: var(--forest); }
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(27,41,33,0.72), rgba(27,41,33,0.32)); }
.band__content { position: relative; z-index: 2; color: var(--paper); }
.band__title { font-family: var(--serif); color: #fff; font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.12;
  letter-spacing: -0.015em; max-width: 20ch; font-variation-settings: "opsz" 100; }
.band__dek { color: var(--paper); max-width: 40ch; margin-top: 1rem; opacity: 0.92; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-lines { list-style: none; margin: 1.5rem 0 0; padding: 0; }
.contact-lines li { padding: 1.15rem 0; border-top: 1px solid var(--line); }
.contact-lines li:last-child { border-bottom: 1px solid var(--line); }
.contact-lines .k { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); display: block; margin-bottom: 0.3rem; }
.contact-lines .v { font-size: 1.35rem; font-family: var(--serif); color: var(--ink); font-variation-settings: "opsz" 40; }
.contact-lines .v a { color: var(--ink); }
.contact-lines .v a:hover { color: var(--brass-ink); }

/* ==========================================================================
   FORMS (SMS opt-in) — concierge card, ST1 focus never removed (§6)
   ========================================================================== */
.card { background: var(--surface); border: 1px solid var(--line); padding: clamp(1.75rem, 4vw, 2.75rem); border-radius: var(--radius-card); }
.field { margin-bottom: 1.35rem; }
.field-label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.5rem; }
.field-input {
  width: 100%; font-family: var(--sans); font-size: 16px; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-control);
  padding: 0.8em 0.9em; transition: box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.field-input:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 1px var(--brass); }
.field-input::placeholder { color: var(--ink-faint); opacity: 0.7; }

.consent { display: grid; grid-template-columns: auto 1fr; gap: 0.85rem; align-items: start;
  padding: 1.1rem; background: var(--paper); border: 1px solid var(--line); margin: 0.5rem 0 1.6rem; }
.consent input[type="checkbox"] { width: 22px; height: 22px; min-width: 22px; margin-top: 2px; accent-color: var(--brass); cursor: pointer; }
.consent label { font-size: 0.95rem; line-height: 1.5; color: var(--ink-dim); }
.consent a { color: var(--brass-ink); text-decoration: underline; text-underline-offset: 2px; }
.fineprint { font-size: 0.85rem; color: var(--ink-faint); margin: 1rem 0 0; }
.visually-offscreen { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* "pending confirmation" amber marks (mirrors the Outfitter compliance pages) */
.pending {
  background: var(--amber-bg); color: var(--amber); font-family: var(--sans);
  font-weight: 600; font-size: 0.9em; padding: 0.05em 0.4em; border-radius: var(--radius-control);
  border: 1px solid color-mix(in srgb, var(--amber) 35%, transparent); white-space: nowrap;
}
.pending-note { display: flex; gap: 0.7rem; align-items: flex-start; background: var(--amber-bg);
  border: 1px solid color-mix(in srgb, var(--amber) 30%, transparent); border-left: 3px solid var(--amber);
  padding: 1rem 1.15rem; margin: 0 0 2rem; font-size: 0.92rem; color: color-mix(in srgb, var(--amber) 78%, var(--ink)); border-radius: var(--radius-control); }
.pending-note strong { color: var(--amber); }

.effective { font-size: 0.9rem; color: var(--ink-faint); margin-bottom: 2rem; }

/* ==========================================================================
   FOOTER — the one dark moment outside the hero (§6)
   ========================================================================== */
.footer { background: var(--forest); color: var(--forest-ink); border-top: 1px solid var(--brass); }
.footer__top { padding-block: clamp(3.5rem, 7vw, 5.5rem); border-bottom: 1px solid color-mix(in srgb, var(--forest-ink) 16%, transparent); }
.footer__lead { max-width: 40rem; }
.footer__lead .eyebrow { color: var(--brass-bright); }
.footer__lead h2 { font-family: var(--serif); color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.6rem); line-height: 1.14; letter-spacing: -0.015em; margin: 0 0 1.1rem; font-variation-settings: "opsz" 90; }
.footer__lead p { color: var(--forest-ink); max-width: 52ch; }
.footer__cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(2rem, 4vw, 3rem); padding-block: clamp(3rem, 5vw, 4rem); }
.footer__brand img { height: 72px; width: auto; margin-bottom: 1.4rem; }
.footer__brand p { color: color-mix(in srgb, var(--forest-ink) 82%, transparent); max-width: 34ch; font-size: 0.95rem; }
.footer__col h3 { font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--brass-bright); margin: 0 0 1rem; }
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: 0.7rem; }
.footer__col a { color: var(--forest-ink); font-size: 0.95rem; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; align-items: center; justify-content: space-between;
  padding-block: 1.75rem; border-top: 1px solid color-mix(in srgb, var(--forest-ink) 16%, transparent); font-size: 0.9rem; }
.footer__bottom a { color: var(--forest-ink); }
.footer__bottom a:hover { color: #fff; }
.footer__contactline a { color: var(--brass-bright); }
@media (max-width: 720px) { .footer__cols { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; text-align: center; } .footer__brand img { margin-inline: auto; display: block; } .footer__brand p { margin-inline: auto; } }

/* ==========================================================================
   MOTION — scroll reveal (fade-up 12px), reduced-motion collapses (§5)
   ========================================================================== */
/* Progressive enhancement: content is VISIBLE by default. Only when JS is
   present (html.js, set by an inline head script before paint) do reveals
   start hidden and fade up. A load-time backstop in site.js force-reveals
   everything so content is NEVER permanently hidden (no-JS, crawler, IO miss). */
.js .reveal { opacity: 0; transform: translateY(12px); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (hover: hover) {
  .partner:hover .partner__figure .partner__bg { transform: scale(1.03); }
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
  .partner:hover .partner__figure .partner__bg { transform: none; }
}

/* textarea shares .field-input chrome but needs vertical resize + comfortable min */
textarea.field-input { resize: vertical; min-height: 120px; font-family: var(--sans); line-height: 1.5; }

/* ==========================================================================
   OWNER PORTAL (/admin) — the private back-office surface.
   DELIBERATE REGISTER DECISION: this is the ONE forest/ondark surface in the
   product. Rationale (noted per charter): (1) it must read as a different place
   from the public marketing site the instant Michael lands — a control room, not
   a brochure; (2) forest + brass rhymes with the sibling Outfitter tool the
   Campaign door leads into, signaling "one toolkit"; (3) DESIGN-LANGUAGE's
   "dashboard darkness" anti-goal governs the PUBLIC site only — a back-office is
   not the public site. Reuses existing forest/brass tokens; no new palette.
   ========================================================================== */
body.admin { background: var(--forest); color: var(--forest-ink); min-height: 100vh; overflow-x: hidden; }
.admin a { color: var(--brass-bright); }

.admin-header { position: sticky; top: 0; z-index: 50; background: var(--forest);
  border-bottom: 1px solid var(--brass); }
.admin-header__inner { width: 100%; max-width: 1080px; margin: 0 auto;
  padding: 0.9rem clamp(1.1rem, 4vw, 2.5rem); display: flex; align-items: center; gap: 1rem; justify-content: space-between; }
.admin-header__brand { display: flex; align-items: center; gap: 0.9rem; min-width: 0; }
.admin-header__brand img { height: 56px; width: auto; }
.admin-header__label { font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.11em; text-transform: uppercase; color: var(--brass-bright);
  padding-left: 0.9rem; border-left: 1px solid color-mix(in srgb, var(--forest-ink) 32%, transparent);
  white-space: nowrap; }
.admin-logout { display: inline-flex; margin: 0; }
.admin-logout button { font-family: var(--sans); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--forest-ink); background: transparent; border: 1px solid color-mix(in srgb, var(--forest-ink) 34%, transparent);
  border-radius: var(--radius-control); padding: 0.5em 1em; cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease); }
.admin-logout button:hover { border-color: var(--brass-bright); color: #fff; }
@media (max-width: 520px) { .admin-header__label { display: none; } }

.admin-main { width: 100%; max-width: 1080px; margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.25rem) clamp(1.1rem, 4vw, 2.5rem) clamp(3.5rem, 8vw, 6rem); }
.admin-hero { margin-bottom: clamp(2rem, 4vw, 3rem); }
.admin-hero .eyebrow { color: var(--brass-bright); }
.admin-hero h1 { font-family: var(--serif); color: #fff; font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.06; letter-spacing: -0.02em; margin: 0 0 0.6rem; font-variation-settings: "opsz" 110; }
.admin-hero p { color: var(--forest-ink); max-width: 54ch; margin: 0; }

/* stat row */
.admin-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(0.9rem, 2vw, 1.25rem);
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.stat-card { background: var(--forest-2); border: 1px solid color-mix(in srgb, var(--forest-ink) 16%, transparent);
  border-radius: var(--radius-card); padding: clamp(1.15rem, 3vw, 1.6rem) clamp(1.15rem, 3vw, 1.6rem); }
.stat-card__num { font-family: var(--serif); font-size: clamp(2rem, 5vw, 2.75rem); line-height: 1; color: #fff;
  font-variation-settings: "opsz" 72; }
.stat-card__label { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brass-bright); margin-top: 0.55rem; }

/* data panel */
.admin-panel { background: var(--forest-2); border: 1px solid color-mix(in srgb, var(--forest-ink) 16%, transparent);
  border-radius: var(--radius-card); padding: clamp(1.25rem, 3vw, 1.9rem); margin-bottom: clamp(1.25rem, 3vw, 1.75rem); }
.admin-panel__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding-bottom: 1rem; margin-bottom: 0.25rem; border-bottom: 1px solid color-mix(in srgb, var(--forest-ink) 16%, transparent); }
.admin-panel__title { font-family: var(--serif); font-size: 1.4rem; color: #fff; letter-spacing: -0.01em; margin: 0;
  font-variation-settings: "opsz" 48; }
.admin-panel__count { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--forest-ink); white-space: nowrap; }

.admin-table { width: 100%; }
.admin-table__row { display: grid; grid-template-columns: 1.3fr 1.2fr 1fr; gap: 1rem; align-items: baseline;
  padding: 0.85rem 0; border-bottom: 1px solid color-mix(in srgb, var(--forest-ink) 12%, transparent); }
.admin-table__row--inq { grid-template-columns: 1.1fr 1.5fr 1fr; }
.admin-table__row:last-child { border-bottom: 0; }
.admin-table__head { padding-bottom: 0.35rem; border-bottom: 1px solid color-mix(in srgb, var(--forest-ink) 22%, transparent); }
.admin-table__head span { font-family: var(--sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--brass-bright); }
.admin-table__name { color: #fff; font-weight: 500; }
.admin-table__cell { color: var(--forest-ink); font-size: 0.95rem; word-break: break-word; }
.admin-table__cell--mono { font-variant-numeric: tabular-nums; }
.admin-table__when { color: color-mix(in srgb, var(--forest-ink) 78%, transparent); font-size: 0.85rem; text-align: right; }
.admin-table__msg { color: var(--forest-ink); font-size: 0.92rem; line-height: 1.45; margin: 0.35rem 0 0; }
.admin-table__item { padding: 1rem 0; border-bottom: 1px solid color-mix(in srgb, var(--forest-ink) 12%, transparent); }
.admin-table__item:last-child { border-bottom: 0; }
.admin-table__item-top { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem 1rem; justify-content: space-between; }
.admin-table__contact { color: var(--brass-bright); font-size: 0.9rem; }
@media (max-width: 620px) {
  .admin-table__head { display: none; }
  .admin-table__row, .admin-table__row--inq { grid-template-columns: 1fr; gap: 0.2rem; padding: 0.9rem 0; }
  .admin-table__when { text-align: left; }
}

/* empty state — intentional, confident, not a void */
.admin-empty { text-align: left; padding: 0.5rem 0 0.25rem; }
.admin-empty p { color: var(--forest-ink); margin: 0 0 0.4rem; }
.admin-empty .admin-empty__hint { font-size: 0.9rem; color: color-mix(in srgb, var(--forest-ink) 80%, transparent); }

/* Campaign Manager door — the prominent panel into the Outfitter toolkit */
.campaign-door { display: grid; grid-template-columns: 1fr auto; gap: clamp(1.25rem, 3vw, 2rem); align-items: center;
  background: linear-gradient(135deg, var(--forest-2), color-mix(in srgb, var(--brass) 14%, var(--forest-2)));
  border: 1px solid var(--brass); border-radius: var(--radius-card);
  padding: clamp(1.5rem, 3.5vw, 2.25rem); margin-bottom: clamp(1.25rem, 3vw, 1.75rem); }
.campaign-door__eyebrow { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brass-bright); margin: 0 0 0.5rem; }
.campaign-door__title { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2rem); color: #fff;
  line-height: 1.1; letter-spacing: -0.01em; margin: 0 0 0.6rem; font-variation-settings: "opsz" 60; }
.campaign-door__copy { color: var(--forest-ink); max-width: 46ch; margin: 0; font-size: 0.98rem; }
.campaign-door__cta { white-space: nowrap; }
@media (max-width: 640px) {
  .campaign-door { grid-template-columns: 1fr; }
  .campaign-door__cta .btn { width: 100%; }
}

/* Login — one card centered on forest */
.admin-login-wrap { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: clamp(1.5rem, 5vw, 3rem) clamp(1.1rem, 4vw, 2rem); }
.admin-login-card { width: 100%; max-width: 400px; background: var(--forest-2);
  border: 1px solid color-mix(in srgb, var(--forest-ink) 18%, transparent); border-radius: var(--radius-card);
  padding: clamp(1.75rem, 5vw, 2.75rem); }
.admin-login-brand { display: flex; justify-content: center; margin-bottom: 1.75rem; }
.admin-login-brand img { height: 104px; width: auto; }
.admin-login-card h1 { font-family: var(--serif); font-size: 1.6rem; color: #fff; letter-spacing: -0.01em;
  text-align: center; margin: 0 0 0.4rem; font-variation-settings: "opsz" 48; }
.admin-login-card .admin-login-sub { text-align: center; color: var(--forest-ink); font-size: 0.95rem; margin: 0 0 1.75rem; }
.admin .field-label { color: var(--brass-bright); }
.admin .field-input { background: var(--forest); color: #fff;
  border-color: color-mix(in srgb, var(--forest-ink) 30%, transparent); }
.admin .field-input::placeholder { color: color-mix(in srgb, var(--forest-ink) 65%, transparent); }
.admin .field-input:focus { border-color: var(--brass-bright); box-shadow: 0 0 0 1px var(--brass-bright); }
.admin-error { background: color-mix(in srgb, var(--danger) 20%, var(--forest-2)); color: #f4c9bf;
  border: 1px solid color-mix(in srgb, var(--danger) 55%, transparent); border-radius: var(--radius-control);
  padding: 0.75rem 0.9rem; font-size: 0.9rem; margin: 0 0 1.35rem; }
.admin-note { color: var(--forest-ink); font-size: 0.9rem; line-height: 1.5; margin: 1.5rem 0 0; text-align: center; }
.admin-foot { text-align: center; color: color-mix(in srgb, var(--forest-ink) 70%, transparent); font-size: 0.8rem; margin-top: 1.75rem; }

/* ---- small utilities ---- */
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-2 { margin-top: 2rem; }
.stack > * + * { margin-top: 1.25rem; }
.pagelead { max-width: 52rem; }
.pagelead .h1 { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.75rem); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 1.25rem; font-variation-settings: "opsz" 110; }
.page-top { padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 5rem)); }
