/* ==========================================================================
   Kenjura Tile, Inc. — Design System
   Build per research/03-build-brief.md
   Tokens · Type · Components · Sections · Motion
   No frameworks. Vanilla CSS. Mobile-first.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand colors (updated May 2026 brand kit) */
  --ink:           #575554;          /* Charcoal - headings & dark text */
  --ink-deep:      #0E0F0E;          /* Deep rich off-black background */
  --ink-soft:      #1E1F1E;          /* Dark charcoal-gray surface */
  --steel:         #696A63;          /* Slate - warm gray borders, dots, captions */
  --steel-text:    #575554;          /* Charcoal text on light surfaces */
  --steel-mute:    #897666;          /* Tan - muted accents */
  --concrete:      #F9F8F6;          /* Light cream-gray background */
  --concrete-deep: #BFB6AF;          /* Taupe - medium borders, light surfaces */
  --paper-warm:    #FFFFFF;          /* Pure white surfaces */
  --asphalt:       #1A1A1A;          /* Off-black for main body text */
  --rule:          #BFB6AF;          /* Taupe line colors */
  --rule-soft:     #EBE8E3;          /* Very light cream-taupe for soft borders */

  --hi-vis:        #897666;          /* Tan - accent color for lines, buttons, dots */
  --hi-vis-text:   #897666;          /* Tan text on light backgrounds */
  --hi-vis-bright: #BFB6AF;          /* Taupe for bright highlights on dark backgrounds */
  --hi-vis-tint:   rgba(137, 118, 102, 0.10); /* Tan tint for background highlights */

  /* Functional */
  --bg:            var(--concrete);
  --fg:            var(--asphalt);
  --fg-mute:       var(--steel);
  --surface:       var(--paper-warm);
  --line:          var(--rule);

  /* Type families */
  --ff-display:    "Montserrat", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-body:       "Montserrat", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --ff-subheading: "Red Hat Display", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-mono:       "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Fluid scale (clamps go mobile→desktop) */
  --fs-eyebrow: 0.75rem;
  --fs-small:   0.875rem;
  --fs-body:    1rem;
  --fs-lead:    clamp(1.0625rem, 0.95rem + 0.5vw, 1.25rem);
  --fs-h4:      clamp(1.125rem, 0.95rem + 0.85vw, 1.5rem);
  --fs-h3:      clamp(1.5rem,  1.18rem + 1.6vw, 2.25rem);
  --fs-h2:      clamp(2rem,    1.42rem + 2.9vw, 3.75rem);
  --fs-h1:      clamp(2.75rem, 1.65rem + 5.5vw, 6.5rem);

  /* Spacing rhythm */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-7:  2rem;
  --space-8:  2.5rem;
  --space-9:  3rem;
  --space-10: 4rem;
  --space-11: 5rem;
  --space-12: 6rem;
  --space-13: 7.5rem;
  --space-14: 9rem;
  --space-15: 11rem;

  /* Layout */
  --container:    1280px;
  --container-lg: 1440px;
  --gutter:       clamp(1rem, 3vw, 2rem);
  --section-y:    clamp(4rem, 9vw, 8rem);

  /* Edges */
  --r-1: 2px;
  --r-2: 4px;
  --r-3: 6px;       /* max in brief */

  /* Borders */
  --bd-1:  1px solid var(--line);
  --bd-2:  1px solid var(--rule-soft);
  --bd-on-dark: 1px solid rgba(255,255,255,0.08);

  /* Tinted shadows */
  --shadow-1: 0 1px 2px rgba(87,85,84,0.06), 0 0 0 1px rgba(87,85,84,0.04);
  --shadow-2: 0 8px 22px -18px rgba(87,85,84,0.22);
  --shadow-3: 0 18px 40px -28px rgba(87,85,84,0.32);

  /* Motion */
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-1: 180ms;
  --dur-2: 320ms;
  --dur-3: 600ms;

  /* Z layers */
  --z-base: 1;
  --z-nav: 50;
  --z-overlay: 80;
  --z-modal: 100;
}

/* --------------------------------------------------------------------------
   2. RESET / BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html, body { height: 100%; }
html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  font-feature-settings: "ss01", "ss02", "cv11";
  overflow-x: hidden;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color var(--dur-1) var(--ease); }
a:hover { color: var(--hi-vis); }
ul, ol { list-style: none; padding: 0; }
hr { border: 0; border-top: var(--bd-1); }

::selection { background: var(--ink); color: var(--paper-warm); }

/* Lenis sets this when active */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY UTILITIES
   -------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--ff-mono);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hi-vis);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--hi-vis);
  display: inline-block;
}
.eyebrow--light {
  color: var(--steel);
}
.eyebrow--light::before {
  background: var(--steel);
}

h1, h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.96;
  color: var(--ink);
}
h1 { font-size: var(--fs-h1); font-weight: 900; letter-spacing: -0.035em; }
h2 { font-size: var(--fs-h2); }

h3, h4 {
  font-family: var(--ff-subheading);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h3 { font-size: var(--fs-h3); line-height: 1.05; }
h4 { font-size: var(--fs-h4); line-height: 1.15; letter-spacing: -0.01em; }

.lead {
  font-size: var(--fs-lead);
  color: var(--asphalt);
  max-width: 60ch;
  line-height: 1.55;
}
p {
  max-width: 65ch;
  color: var(--asphalt);
  line-height: 1.65;
}
.text-mute  { color: var(--steel); }
.text-light { color: rgba(255,255,255,0.78); }
.text-bright { color: var(--paper-warm); }

.mono {
  font-family: var(--ff-mono);
  font-feature-settings: "tnum";
}

/* Display caps for ultra-large hero numbers / tags */
.cap {
  font-family: var(--ff-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
}

/* --------------------------------------------------------------------------
   4. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--lg { max-width: var(--container-lg); }

.section {
  padding-block: var(--section-y);
  position: relative;
}
.section--tight { padding-block: clamp(2.5rem, 6vw, 5rem); }
.section--dark {
  background: var(--ink);
  color: var(--paper-warm);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--paper-warm); }
.section--dark p { color: rgba(255,255,255,0.82); }
.section--ink-deep { background: var(--ink-deep); color: var(--paper-warm); }
.section--ink-deep h1, .section--ink-deep h2, .section--ink-deep h3, .section--ink-deep h4 { color: var(--paper-warm); }

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 880px) {
  .split--7-5  { grid-template-columns: 7fr 5fr; }
  .split--6-6  { grid-template-columns: 1fr 1fr; }
  .split--5-7  { grid-template-columns: 5fr 7fr; }
  .split--8-4  { grid-template-columns: 8fr 4fr; }
  .split--4-8  { grid-template-columns: 4fr 8fr; }
}

.stack-1 > * + * { margin-top: var(--space-1); }
.stack-2 > * + * { margin-top: var(--space-2); }
.stack-3 > * + * { margin-top: var(--space-3); }
.stack-4 > * + * { margin-top: var(--space-4); }
.stack-5 > * + * { margin-top: var(--space-5); }
.stack-6 > * + * { margin-top: var(--space-6); }
.stack-7 > * + * { margin-top: var(--space-7); }
.stack-8 > * + * { margin-top: var(--space-8); }
.stack-10 > * + * { margin-top: var(--space-10); }

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

.kicker {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* Asymmetric "feature" frame around imagery */
.frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-3);
  background: var(--ink-deep);
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.frame--16x9 { aspect-ratio: 16 / 9; }
.frame--4x3  { aspect-ratio: 4 / 3; }
.frame--3x4  { aspect-ratio: 3 / 4; }
.frame--1x1  { aspect-ratio: 1 / 1; }
.frame--3x2  { aspect-ratio: 3 / 2; }

.frame__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--space-5) var(--space-6);
  background: linear-gradient(to top, rgba(14,15,14,0.78), rgba(14,15,14,0));
  color: var(--paper-warm);
  font-family: var(--ff-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   5. HEADER / NAV
   -------------------------------------------------------------------------- */
.site-header {
  /* fixed (not sticky) so the hero can render full-bleed under the
     translucent nav and the scroll cue stays inside 100dvh */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  background: rgba(14,15,14,0.92);
  color: var(--paper-warm);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--dur-2) var(--ease);
}
.site-header.is-scrolled { background: rgba(14,15,14,0.96); }

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-6);
  align-items: center;
  height: 76px;
}
@media (max-width: 879px) { .nav { height: 68px; } }

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--paper-warm);
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.0625rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand:hover { color: var(--paper-warm); }
.brand__mark {
  width: auto;
  height: 22px;
  aspect-ratio: 1718.2405 / 680.019;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand__name { line-height: 1; }
.brand__name span {
  display: block;
  font-family: var(--ff-mono);
  font-weight: 500;
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.nav__links {
  display: none;
  justify-self: center;
  gap: clamp(1rem, 2vw, 1.75rem);
}
@media (min-width: 1080px) {
  .nav__links { display: inline-flex; align-items: center; }
}
.nav__link {
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.82);
  position: relative;
  padding: 0.5rem 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  inset: auto 0 -4px 0;
  height: 2px;
  background: var(--hi-vis);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-2) var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--paper-warm); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__right {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.nav__phone {
  display: none;
  font-family: var(--ff-mono);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
  align-items: center;
  gap: var(--space-2);
}
@media (min-width: 720px) { .nav__phone { display: inline-flex; } }
.nav__phone:hover { color: var(--paper-warm); }
.nav__phone span:first-child {
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel-mute);
  margin-right: 4px;
}

/* Hamburger */
.nav__burger {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: var(--bd-on-dark);
  border-radius: var(--r-3);
  color: var(--paper-warm);
}
@media (min-width: 1080px) { .nav__burger { display: none; } }
.nav__burger:hover { background: rgba(255,255,255,0.06); color: var(--paper-warm); }
.nav__burger svg { width: 18px; height: 18px; overflow: visible; }
/* SVG <line> transforms need transform-box: fill-box so transform-origin: center
   resolves to each line's own bounding-box center. Without this, the default
   transform-box: view-box rotates every line around the SVG canvas center,
   which produces a misaligned, "broken" X on toggle. */
.nav__burger .line {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform var(--dur-2) var(--ease), opacity var(--dur-1) var(--ease);
}
/* Lines sit at y=5, 9, 13 in an 18×18 viewBox. To converge at the
   viewBox center (y=9) the outer lines need ±4 user units, not ±5. */
.nav__burger[aria-expanded="true"] .line-1 { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] .line-2 { opacity: 0; }
.nav__burger[aria-expanded="true"] .line-3 { transform: translateY(-4px) rotate(-45deg); }

/* Mobile drawer.
   Uses 100dvh (dynamic viewport height) so the panel always matches the
   visible viewport on iOS Safari — where the URL bar / home-indicator chrome
   shrinks the actual viewport at runtime. Bottom padding respects the
   safe-area inset so the last drawer__meta row is never hidden under the
   iOS home indicator (the page sets viewport-fit=cover). */
.nav__drawer {
  position: fixed;
  top: 76px;
  right: 0;
  left: 0;
  height: calc(100dvh - 76px);
  background: var(--ink-deep);
  color: var(--paper-warm);
  padding: var(--space-7) var(--gutter) max(var(--space-10), calc(var(--space-7) + env(safe-area-inset-bottom)));
  z-index: calc(var(--z-nav) - 1);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-2) var(--ease), transform var(--dur-2) var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
@media (max-width: 879px) {
  .nav__drawer {
    top: 68px;
    height: calc(100dvh - 68px);
  }
}
.nav__drawer[data-open="true"] {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.nav__drawer ul { display: grid; gap: var(--space-2); }
.nav__drawer a {
  display: block;
  padding: var(--space-4) 0;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  color: var(--paper-warm);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: -0.015em;
}
.nav__drawer a:hover { color: var(--hi-vis); }
.nav__drawer .drawer__meta {
  margin-top: var(--space-7);
  display: grid;
  gap: var(--space-3);
  font-family: var(--ff-mono);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
}
.nav__drawer .drawer__meta a {
  font-family: var(--ff-mono);
  font-size: 0.875rem;
  font-weight: 500;
  padding: var(--space-2) 0;
  border-bottom: 0;
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--hi-vis-text);
  --btn-fg: var(--paper-warm);
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 22px;
  min-height: 44px; /* WCAG 2.5.5 / Apple HIG touch target */
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--r-3);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--dur-1) var(--ease), background var(--dur-2) var(--ease), color var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease);
  white-space: nowrap;
  touch-action: manipulation; /* removes 300ms tap delay on iOS */
}
.btn:hover { color: var(--btn-fg); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible {
  outline: 2px solid var(--hi-vis-bright);
  outline-offset: 3px;
}
.btn .arrow {
  width: 14px; height: 14px;
  transition: transform var(--dur-2) var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary { background: var(--hi-vis-text); color: var(--paper-warm); }
.btn--primary:hover {
  /* hover goes to ink for a strong "pressed" cue and 15.66:1 contrast */
  background: var(--ink);
  color: var(--paper-warm);
}

.btn--secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--secondary:hover {
  background: var(--ink);
  color: var(--paper-warm);
  border-color: var(--ink);
}

.btn--ghost {
  background: transparent;
  color: var(--paper-warm);
  border-color: rgba(255,255,255,0.32);
}
.btn--ghost:hover {
  background: var(--paper-warm);
  color: var(--ink);
  border-color: var(--paper-warm);
}

.btn--lg { padding: 20px 28px; font-size: 1rem; }
.btn--sm { padding: 10px 14px; font-size: 0.8125rem; }

.btn--in-nav {
  display: none;
  padding: 12px 18px;
  font-size: 0.875rem;
}
@media (min-width: 1080px) { .btn--in-nav { display: inline-flex; } }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--ff-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 8px 0 6px; /* widened tap area while preserving inline rhythm */
  touch-action: manipulation;
}
.btn-link:hover { color: var(--hi-vis); border-color: var(--hi-vis); }
.btn-link .arrow { width: 12px; height: 12px; transition: transform var(--dur-2) var(--ease); }
.btn-link:hover .arrow { transform: translateX(3px); }

.section--dark .btn-link, .section--ink-deep .btn-link {
  color: var(--paper-warm);
  border-color: rgba(255,255,255,0.32);
}
.section--dark .btn-link:hover, .section--ink-deep .btn-link:hover {
  color: var(--hi-vis-bright);
  border-color: var(--hi-vis-bright);
}

/* --------------------------------------------------------------------------
   7. HERO (Home — asymmetric)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-content: center;
  /* top padding clears the 76px sticky nav + breathing room; bottom leaves
     space for the absolute scroll cue (~64px) without crowding it. */
  padding-block: clamp(5.5rem, 9vw, 7.5rem) clamp(4rem, 6vw, 5rem);
  background: var(--ink-deep);
  color: var(--paper-warm);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.92) contrast(1.02);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,15,14,0.85) 0%, rgba(14,15,14,0.55) 38%, rgba(14,15,14,0.92) 100%),
    linear-gradient(110deg, rgba(14,15,14,0.78) 0%, rgba(14,15,14,0.10) 60%);
  z-index: 1;
}
.hero__bg img { z-index: 0; }
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-9);
  width: 100%;
}
@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: end; gap: var(--space-12); }
}
.hero__eyebrow {
  font-family: var(--ff-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.hero__eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--hi-vis);
  display: inline-block;
}
.hero h1 {
  color: var(--paper-warm);
  margin-top: var(--space-4);
  text-wrap: balance;
}
.hero__sub {
  margin-top: var(--space-5);
  max-width: 58ch;
  color: rgba(255,255,255,0.82);
  font-size: var(--fs-lead);
  line-height: 1.5;
}
.hero__ctas {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.hero__meta {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--space-5);
  display: grid;
  gap: var(--space-5);
  align-self: end;
}
@media (min-width: 1024px) {
  .hero__meta { padding-left: var(--space-7); border-top: 0; border-left: 1px solid rgba(255,255,255,0.12); padding-top: 0; }
}
.hero__meta-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-4);
  align-items: baseline;
}
.hero__meta-key {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero__meta-val {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  color: var(--paper-warm);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

/* hero scroll cue */
.hero__cue {
  position: absolute;
  left: var(--gutter);
  bottom: var(--space-5);
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.hero__cue-line {
  display: inline-block;
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.65) 30%, rgba(255,255,255,0.65));
  position: relative;
  overflow: hidden;
}
.hero__cue-line::after {
  content: "";
  position: absolute;
  inset: -36px 0 auto 0;
  height: 36px;
  background: linear-gradient(180deg, transparent, var(--hi-vis-bright), transparent);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue {
  0%   { transform: translateY(0); }
  100% { transform: translateY(72px); }
}

/* Short-viewport hero compression — keeps the scroll cue above the fold on
   laptops with viewport height <= 740px (e.g. 1024x640, 1280x720). The 1280+
   tall-viewport experience is preserved unchanged. */
@media (max-height: 740px) {
  .hero {
    padding-block: clamp(4.5rem, 7vw, 5.5rem) clamp(3rem, 5vw, 4rem);
  }
  .hero h1 {
    /* hold the design weight but reduce the cap and slope to save ~30px on 3-line wraps */
    font-size: clamp(2.5rem, 1.4rem + 4.6vw, 4.75rem);
    margin-top: var(--space-3);
  }
  .hero__sub {
    font-size: 1rem;
    line-height: 1.45;
    margin-top: var(--space-4);
  }
  .hero__ctas {
    margin-top: var(--space-5);
  }
  .hero__cue-line { height: 28px; }
}

/* --------------------------------------------------------------------------
   8. PAGE HERO (internal pages — leaner)
   -------------------------------------------------------------------------- */
.page-hero {
  background: var(--ink);
  color: var(--paper-warm);
  padding-block: clamp(6rem, 11vw, 9rem) clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero h1 {
  color: var(--paper-warm);
  text-wrap: balance;
}
.page-hero__lead {
  margin-top: var(--space-6);
  max-width: 62ch;
  color: rgba(255,255,255,0.82);
  font-size: var(--fs-lead);
}
.page-hero__crumbs {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.page-hero__crumbs a { color: rgba(255,255,255,0.55); }
.page-hero__crumbs a:hover { color: var(--paper-warm); }
.page-hero__crumbs .sep { color: var(--hi-vis); }
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18) 20%, rgba(255,255,255,0.18) 80%, transparent);
  z-index: 2;
}

/* Optional photographic background for internal page heroes. Mirrors the
   homepage .hero__bg pattern: image at z-index -2 inside an isolation
   context, with a layered ink gradient overlay that keeps headings,
   breadcrumbs, and lead copy fully legible against any photo. */
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.92) contrast(1.02);
  z-index: 0;
}
.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,15,14,0.88) 0%, rgba(14,15,14,0.70) 38%, rgba(14,15,14,0.95) 100%),
    linear-gradient(110deg, rgba(14,15,14,0.78) 0%, rgba(14,15,14,0.18) 60%);
  z-index: 1;
}

/* --------------------------------------------------------------------------
   9. TRUST STRIP / MARQUEE
   -------------------------------------------------------------------------- */
.trust {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-block: var(--space-7);
  background: var(--ink-deep);
  color: rgba(255,255,255,0.7);
}
.trust__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
}
@media (min-width: 880px) {
  .trust__inner { grid-template-columns: minmax(220px, 280px) 1fr; gap: var(--space-8); }
}
.trust__label {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.trust__label strong {
  display: block;
  color: var(--paper-warm);
  font-family: var(--ff-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 1.125rem;
  text-transform: none;
  margin-top: 6px;
}
/* National programs statement (no named-client logos without written approval). */
.trust__spotlight {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(0.875rem, 2vw, 1.5rem);
  margin: 0;
  position: relative;
  isolation: isolate;
}
.trust__spotlight::before {
  content: "";
  position: absolute;
  left: clamp(110px, 12vw, 160px);
  top: 50%;
  width: clamp(180px, 22vw, 280px);
  height: clamp(60px, 7vw, 90px);
  transform: translateY(-50%);
  background: radial-gradient(ellipse at center, rgba(215, 70, 31, 0.12), transparent 65%);
  pointer-events: none;
  z-index: -1;
}
.trust__spotlight-tag {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  white-space: nowrap;
}
.trust__spotlight-tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--hi-vis);
  display: inline-block;
  flex-shrink: 0;
}
.trust__statement {
  margin: 0;
  max-width: 38ch;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--paper-warm);
}
/* Compact rates + booking block used in the services-page Training Center
   inset. Lives inside .section--ink-deep so all colour values assume a
   dark surface. Mirrors the COPY.md booking details verbatim. */
.tc-inset-rates {
  margin-top: var(--space-7);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4) var(--space-7);
  max-width: 380px;
}
.tc-inset-rates .rate-key {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.tc-inset-rates .rate-val {
  display: block;
  margin-top: var(--space-2);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  letter-spacing: -0.01em;
  color: var(--paper-warm);
  line-height: 1;
}
.tc-inset-rates .rate-terms {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.tc-inset-booking {
  margin-top: var(--space-5);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}
.tc-inset-booking strong {
  color: var(--paper-warm);
  font-family: var(--ff-display);
  font-weight: 800;
  letter-spacing: -0.005em;
}
.tc-inset-booking a {
  color: var(--paper-warm);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 3px;
}
.tc-inset-booking a:hover {
  text-decoration-color: var(--hi-vis-bright);
}

/* --------------------------------------------------------------------------
   10. STAT TILES
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: var(--bd-2);
  border-left: var(--bd-2);
}
@media (min-width: 880px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  padding: var(--space-7) var(--space-6);
  border-right: var(--bd-2);
  border-bottom: var(--bd-2);
  background: var(--paper-warm);
  position: relative;
}
.stat__num {
  font-family: var(--ff-display);
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  color: var(--ink);
  line-height: 0.95;
  font-feature-settings: "tnum";
}
.stat__num small {
  font-family: var(--ff-mono);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  color: var(--steel);
  display: inline-block;
  margin-left: var(--space-2);
  vertical-align: top;
  margin-top: 6px;
  text-transform: uppercase;
}
.stat__label {
  margin-top: var(--space-3);
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  line-height: 1.5;
}
.stat__line {
  margin-top: var(--space-4);
  height: 1px;
  width: 36px;
  background: var(--hi-vis);
}

.section--dark .stat,
.section--ink-deep .stat {
  background: transparent;
  color: var(--paper-warm);
}
.section--dark .stats,
.section--ink-deep .stats {
  border-color: rgba(255,255,255,0.10);
}
.section--dark .stat,
.section--ink-deep .stat {
  border-color: rgba(255,255,255,0.10);
}
.section--dark .stat__num,
.section--ink-deep .stat__num { color: var(--paper-warm); }
.section--dark .stat__label,
.section--ink-deep .stat__label { color: rgba(255,255,255,0.6); }

/* --------------------------------------------------------------------------
   11. SERVICES BENTO (asymmetric grid)
   -------------------------------------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 720px) {
  .bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: var(--space-5);
  }
  .bento__cell--lg-1 { grid-column: span 4; grid-row: span 2; }
  .bento__cell--lg-2 { grid-column: span 2; grid-row: span 1; }
  .bento__cell--lg-3 { grid-column: span 2; grid-row: span 1; }
  .bento__cell--lg-4 { grid-column: span 3; grid-row: span 1; }
  .bento__cell--lg-5 { grid-column: span 3; grid-row: span 1; }
}

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-7);
  background: var(--paper-warm);
  border: var(--bd-1);
  border-radius: var(--r-3);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
  min-height: 220px;
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: var(--shadow-3);
}
.svc-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--hi-vis);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-3) var(--ease);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__num {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
}
.svc-card h3 {
  margin-top: var(--space-4);
  font-size: clamp(1.375rem, 2.4vw, 1.875rem);
  letter-spacing: -0.015em;
  line-height: 1.05;
}
.svc-card__copy {
  margin-top: var(--space-3);
  color: var(--asphalt);
  max-width: 38ch;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.svc-card__foot {
  margin-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.svc-card__tag {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
}

.svc-card--feature {
  background: var(--ink);
  color: var(--paper-warm);
  border-color: var(--ink);
}
.svc-card--feature::before { background: var(--hi-vis-bright); }
.svc-card--feature:hover { border-color: var(--hi-vis-bright); transform: translateY(-4px); }
.svc-card--feature .svc-card__num,
.svc-card--feature .svc-card__tag { color: rgba(255,255,255,0.6); }
.svc-card--feature h3 { color: var(--paper-warm); }
.svc-card--feature .svc-card__copy { color: rgba(255,255,255,0.78); }
.svc-card--feature .btn-link { color: var(--paper-warm); border-color: rgba(255,255,255,0.32); }
.svc-card--feature .btn-link:hover { color: var(--hi-vis-bright); border-color: var(--hi-vis-bright); }

/* --------------------------------------------------------------------------
   12. PROCESS STEPS
   -------------------------------------------------------------------------- */
.process {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(255,255,255,0.10);
}
@media (min-width: 880px) {
  .process { grid-template-columns: repeat(4, 1fr); }
}
.step {
  padding: var(--space-7) var(--space-5) var(--space-7) 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  position: relative;
}
@media (min-width: 880px) {
  .step {
    border-bottom: 0;
    border-right: 1px solid rgba(255,255,255,0.10);
    padding: var(--space-8) var(--space-6);
  }
  .step:last-child { border-right: 0; }
}
.step__num {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hi-vis-bright);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.step h4 {
  margin-top: var(--space-5);
  color: var(--paper-warm);
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.step p {
  margin-top: var(--space-3);
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  max-width: 30ch;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   13. PILLARS (Why Kenjura — 3 columns w/ asymmetric weight)
   -------------------------------------------------------------------------- */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: var(--bd-2);
}
@media (min-width: 880px) {
  .pillars { grid-template-columns: 1.2fr 1fr 1fr; border-top: var(--bd-2); }
}
.pillar {
  padding: var(--space-9) var(--space-6) var(--space-9) 0;
  border-bottom: var(--bd-2);
  position: relative;
}
@media (min-width: 880px) {
  .pillar {
    padding: var(--space-9) var(--space-8);
    border-bottom: 0;
    border-right: var(--bd-2);
  }
  .pillar:first-child { padding-left: 0; }
  .pillar:last-child { border-right: 0; padding-right: 0; }
}
.pillar__id {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hi-vis);
}
.pillar h3 {
  margin-top: var(--space-3);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 0.95;
}
.pillar p {
  margin-top: var(--space-5);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 40ch;
}
.pillar__anchor {
  margin-top: var(--space-7);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  border-top: 1px solid var(--rule);
  padding-top: var(--space-4);
  width: 100%;
  max-width: 240px;
}
.pillar__anchor-key {
  font-family: var(--ff-mono);
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
}
.pillar__anchor-val {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-left: auto;
  font-feature-settings: "tnum";
}

/* --------------------------------------------------------------------------
   14. FEATURE BLOCK (image left, text right or vice versa)
   -------------------------------------------------------------------------- */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4.5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 1024px) {
  .feature { grid-template-columns: 1fr 1fr; }
  .feature--media-right .feature__media { order: 2; }
}
.feature__media {
  position: relative;
}
.feature__media .frame { box-shadow: var(--shadow-3); }
.feature__media .badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  background: var(--paper-warm);
  color: var(--ink);
  border-radius: var(--r-3);
  padding: var(--space-3) var(--space-5);
  box-shadow: var(--shadow-3);
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  max-width: 240px;
}
.feature__media .badge strong {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: none;
}

.feature__body h2 { text-wrap: balance; }
.feature__body p { margin-top: var(--space-5); max-width: 56ch; }

.feature__list {
  margin-top: var(--space-7);
  display: grid;
  gap: var(--space-3);
}
.feature__list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: var(--space-3);
  align-items: baseline;
  padding-block: var(--space-3);
  border-top: var(--bd-1);
  font-size: 0.9375rem;
  line-height: 1.55;
}
.feature__list li:last-child { border-bottom: var(--bd-1); }
.feature__list .num {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  color: var(--hi-vis);
}

.feature__cta { margin-top: var(--space-7); display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   15. FOOTPRINT (Lower 48 visual)
   -------------------------------------------------------------------------- */
.footprint {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 1024px) {
  .footprint { grid-template-columns: 5fr 7fr; }
}
.footprint__visual {
  background: var(--ink-deep);
  color: var(--paper-warm);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-3);
  padding: var(--space-5);
  position: relative;
  overflow: hidden;
}
.footprint__visual > svg { width: 100%; height: auto; display: block; }
.footprint__legend {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-5);
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-text);
}
.section--dark .footprint__legend {
  color: rgba(255,255,255,0.72);
}
.footprint__legend .swatch {
  width: 18px; height: 8px; display: inline-block; vertical-align: middle; margin-right: var(--space-2);
}
.footprint__legend .swatch--active { background: var(--hi-vis); }
.footprint__legend .swatch--reach  { background: rgba(215,70,31,0.25); }

/* Google Maps iframe — chill, simple, no dependencies. */
.footprint__map {
  width: 100%;
  aspect-ratio: 16 / 11;
  min-height: 320px;
  border-radius: var(--r-2);
  overflow: hidden;
  background: #E8E0D2;
  box-shadow: inset 0 0 0 1px rgba(11, 35, 64, 0.08);
}
.footprint__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* --------------------------------------------------------------------------
   16. TRAINING CENTER FEATURE (homepage)
   -------------------------------------------------------------------------- */
.tc-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: var(--r-3);
  overflow: hidden;
  background: var(--paper-warm);
  border: var(--bd-1);
}
@media (min-width: 1024px) {
  .tc-feature { grid-template-columns: 6fr 5fr; }
}
.tc-feature__media { position: relative; min-height: 320px; background: var(--ink-deep); }
.tc-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.tc-feature__media .tag {
  position: absolute;
  top: var(--space-5); left: var(--space-5);
  background: rgba(14,15,14,0.85);
  color: var(--paper-warm);
  padding: var(--space-2) var(--space-4);
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: var(--r-2);
  backdrop-filter: blur(6px);
}
.tc-feature__body { padding: clamp(2rem, 4vw, 3.25rem); display: flex; flex-direction: column; justify-content: center; }
.tc-feature__body h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
.tc-feature__amenities {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
}
.tc-feature__amenities li {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  padding: var(--space-2) 0;
  border-top: 1px solid var(--rule-soft);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.tc-feature__amenities li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--hi-vis);
  display: inline-block;
}
.tc-feature__pricing {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: var(--bd-1);
  border-radius: var(--r-3);
  overflow: hidden;
}
.tc-feature__price { padding: var(--space-5); }
.tc-feature__price + .tc-feature__price { border-left: var(--bd-1); }
.tc-feature__price .price-key {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}
.tc-feature__price .price-val {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: var(--space-2);
  font-feature-settings: "tnum";
}
.tc-feature__cta { margin-top: var(--space-7); display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   17. TRAINING CENTER PAGE (gallery, pricing, booking)
   -------------------------------------------------------------------------- */
.tc-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 720px) {
  .tc-gallery {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: var(--space-4);
  }
  .tc-gallery .frame:nth-child(1) { grid-column: span 4; grid-row: span 2; }
  .tc-gallery .frame:nth-child(2) { grid-column: span 2; }
  .tc-gallery .frame:nth-child(3) { grid-column: span 2; }
  .tc-gallery .frame:nth-child(4) { grid-column: span 3; }
  .tc-gallery .frame:nth-child(5) { grid-column: span 3; }
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: var(--bd-1);
  border-left: var(--bd-1);
}
@media (min-width: 720px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .amenities-grid { grid-template-columns: repeat(4, 1fr); } }
.amenity {
  padding: var(--space-7) var(--space-6);
  border-right: var(--bd-1);
  border-bottom: var(--bd-1);
  background: var(--paper-warm);
}
.amenity__num {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hi-vis);
}
.amenity h4 {
  margin-top: var(--space-3);
  font-size: 1.125rem;
  letter-spacing: -0.005em;
}
.amenity p {
  margin-top: var(--space-3);
  font-size: 0.9375rem;
  color: var(--asphalt);
  line-height: 1.55;
  max-width: 30ch;
}

.pricing-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 720px) {
  .pricing-tiles { grid-template-columns: repeat(3, 1fr); }
}
.price-tile {
  padding: var(--space-8);
  border: var(--bd-1);
  border-radius: var(--r-3);
  background: var(--paper-warm);
  display: flex;
  flex-direction: column;
}
.price-tile--ink {
  background: var(--ink);
  color: var(--paper-warm);
  border-color: var(--ink);
}
.price-tile--ink h4, .price-tile--ink .price-tile__price { color: var(--paper-warm); }
.price-tile__tag {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
}
.price-tile--ink .price-tile__tag { color: var(--hi-vis-bright); }
.price-tile h4 {
  margin-top: var(--space-4);
  font-size: 1.25rem;
  letter-spacing: -0.005em;
}
.price-tile__price {
  margin-top: var(--space-6);
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-feature-settings: "tnum";
  color: var(--ink);
}
.price-tile__price small {
  font-family: var(--ff-mono);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  display: block;
  margin-top: var(--space-2);
}
.price-tile__list {
  margin-top: var(--space-6);
  border-top: var(--bd-1);
  padding-top: var(--space-4);
  flex: 1;
}
.price-tile--ink .price-tile__list { border-color: rgba(255,255,255,0.10); }
.price-tile__list li {
  font-size: 0.9375rem;
  padding: var(--space-2) 0;
  display: flex;
  gap: var(--space-3);
  align-items: baseline;
  border-bottom: var(--bd-1);
  color: var(--asphalt);
}
.price-tile__list li:last-child { border-bottom: 0; }
.price-tile--ink .price-tile__list li { border-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.78); }
.price-tile__list li::before {
  content: "—";
  font-family: var(--ff-mono);
  color: var(--hi-vis);
}

.booking-card {
  background: var(--ink);
  color: var(--paper-warm);
  border-radius: var(--r-3);
  padding: clamp(2rem, 4vw, 3.25rem);
  display: grid;
  gap: var(--space-7);
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .booking-card { grid-template-columns: 1fr 1fr; align-items: end; } }
.booking-card h3 { color: var(--paper-warm); font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.booking-card p { color: rgba(255,255,255,0.78); margin-top: var(--space-4); }
.booking-card__contact {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--space-5);
  display: grid;
  gap: var(--space-3);
}
.booking-card__contact .label {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.booking-card__contact a {
  color: var(--paper-warm);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  letter-spacing: -0.005em;
}
.booking-card__contact a:hover { color: var(--hi-vis-bright); }

/* --------------------------------------------------------------------------
   18. SERVICES PAGE — DETAIL BLOCKS (zig-zag)
   -------------------------------------------------------------------------- */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding-block: clamp(3rem, 6vw, 5rem);
  border-bottom: var(--bd-1);
}
.svc-detail:last-of-type { border-bottom: 0; }
@media (min-width: 1024px) {
  .svc-detail { grid-template-columns: 5fr 7fr; }
  .svc-detail--right .svc-detail__media { order: 2; }
}
.svc-detail__num {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hi-vis);
}
.svc-detail h2 {
  margin-top: var(--space-4);
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  text-wrap: balance;
}
.svc-detail__copy { margin-top: var(--space-5); max-width: 56ch; font-size: 1.0625rem; }
.svc-detail__list {
  margin-top: var(--space-7);
  display: grid;
  gap: 0;
  border-top: var(--bd-1);
}
.svc-detail__list li {
  padding: var(--space-4) 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: var(--space-4);
  align-items: baseline;
  border-bottom: var(--bd-1);
}
.svc-detail__list .num {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--steel);
}
.svc-detail__solves {
  margin-top: var(--space-7);
  padding: var(--space-6);
  border: var(--bd-1);
  border-left: 3px solid var(--hi-vis);
  border-radius: var(--r-3);
  background: var(--paper-warm);
  font-size: 0.9375rem;
  max-width: 56ch;
}
.svc-detail__solves strong {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hi-vis);
  display: block;
  margin-bottom: var(--space-2);
}

/* --------------------------------------------------------------------------
   19. ABOUT — LEADERSHIP GRID
   -------------------------------------------------------------------------- */
.leaders {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 720px) { .leaders { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .leaders { grid-template-columns: repeat(3, 1fr); } }
.leader {
  padding: var(--space-7);
  background: var(--paper-warm);
  border: var(--bd-1);
  border-radius: var(--r-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-2) var(--ease), border-color var(--dur-2) var(--ease);
}
.leader:hover { transform: translateY(-3px); border-color: var(--ink); }
.leader__monogram {
  width: 56px; height: 56px;
  display: inline-grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper-warm);
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.375rem;
  border-radius: var(--r-3);
  letter-spacing: -0.02em;
}
.leader__role {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hi-vis);
  margin-top: var(--space-3);
}
.leader__name {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
}

/* --------------------------------------------------------------------------
   20. WHO WE SERVE / SECTORS BAR
   -------------------------------------------------------------------------- */
.sectors {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: var(--bd-1);
}
@media (min-width: 720px) { .sectors { grid-template-columns: repeat(3, 1fr); border-top: 0; } }
.sector {
  padding: var(--space-7) var(--space-5);
  border-bottom: var(--bd-1);
}
@media (min-width: 720px) {
  .sector {
    border-bottom: 0;
    border-right: var(--bd-1);
    padding: var(--space-8) var(--space-6);
  }
  .sector:last-child { border-right: 0; }
  .sector:first-child { padding-left: 0; }
}
.sector__num {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hi-vis);
}
.sector h4 { margin-top: var(--space-4); font-size: 1.5rem; line-height: 1.05; }
.sector p { margin-top: var(--space-3); font-size: 0.9375rem; color: var(--asphalt); }

/* --------------------------------------------------------------------------
   21. CTA STRIP / CLOSING CTA
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--ink-deep);
  color: var(--paper-warm);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 90% 10%, rgba(215,70,31,0.18), transparent 60%),
    radial-gradient(50% 70% at 0% 100%, rgba(215,70,31,0.10), transparent 60%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: end;
  padding-block: clamp(4rem, 9vw, 7rem);
}
@media (min-width: 1024px) { .cta-band__inner { grid-template-columns: 7fr 5fr; } }
.cta-band h2 {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  text-wrap: balance;
  color: var(--paper-warm);
}
.cta-band p { max-width: 50ch; color: rgba(255,255,255,0.82); margin-top: var(--space-5); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); align-self: end; justify-content: flex-start; }
@media (min-width: 1024px) { .cta-band__actions { justify-content: flex-end; } }

/* Marquee strip — bold display text band */
.marquee {
  background: var(--hi-vis);
  color: var(--paper-warm);
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.10);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: var(--space-5);
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(1.75rem, 4.5vw, 3.5rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
  width: max-content;
}
.marquee__track > span { display: inline-flex; align-items: center; gap: clamp(2rem, 5vw, 4rem); }
.marquee__track svg { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.7; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee:hover .marquee__track { animation-play-state: paused; }

/* --------------------------------------------------------------------------
   22. FORMS
   -------------------------------------------------------------------------- */
.form {
  display: grid;
  gap: var(--space-5);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 720px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 720px) { .form__row--3 { grid-template-columns: 1fr 1fr 1fr; } }

.field { display: grid; gap: var(--space-2); }
.field label {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}
.field label .req { color: var(--hi-vis); margin-left: 4px; }
.field input,
.field select,
.field textarea {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: var(--paper-warm);
  border: var(--bd-1);
  border-radius: var(--r-3);
  padding: 14px 16px;
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--asphalt);
  transition: border-color var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(87,85,84,0.08);
}
.field input:user-invalid,
.field textarea:user-invalid,
.field select:user-invalid {
  border-color: var(--hi-vis);
  box-shadow: 0 0 0 3px rgba(215,70,31,0.10);
}
.field__help { font-size: 0.8125rem; color: var(--steel); }
.field__error {
  display: none;
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  color: var(--hi-vis);
  letter-spacing: 0.04em;
}
.field.is-error .field__error { display: block; }

.field--file label {
  display: block;
}
.field--file .file-zone {
  border: 1px dashed var(--rule);
  border-radius: var(--r-3);
  padding: var(--space-6);
  background: var(--paper-warm);
  display: grid;
  gap: var(--space-2);
  text-align: center;
  transition: border-color var(--dur-2) var(--ease), background var(--dur-2) var(--ease);
}
.field--file .file-zone:hover { border-color: var(--ink); }
.field--file input[type="file"] { padding: 0; border: 0; background: transparent; cursor: pointer; }

.form__legal {
  font-size: 0.8125rem;
  color: var(--steel);
  max-width: 56ch;
}
.form__legal a { text-decoration: underline; text-underline-offset: 3px; }

.form__submit { margin-top: var(--space-3); display: flex; gap: var(--space-3); flex-wrap: wrap; align-items: center; }
.form__status {
  font-family: var(--ff-mono);
  font-size: 0.8125rem;
  color: var(--steel);
}
.form__status.is-success { color: var(--hi-vis); }
.form__status.is-error   { color: var(--hi-vis); }

.kenjura-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.field-set {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-5);
}
.field-set legend {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hi-vis);
  margin-bottom: var(--space-3);
  padding: 0;
}

/* --------------------------------------------------------------------------
   23. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink-deep);
  color: rgba(255,255,255,0.78);
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: var(--space-7);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.site-footer h4 {
  color: var(--paper-warm);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--ff-mono);
  font-weight: 500;
  margin-bottom: var(--space-4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-9);
  padding-bottom: var(--space-9);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-7); } }
.footer-brand p { color: rgba(255,255,255,0.65); max-width: 32ch; margin-top: var(--space-4); font-size: 0.9375rem; }
.footer-list { display: grid; gap: var(--space-3); font-size: 0.9375rem; }
.footer-list a { color: rgba(255,255,255,0.78); }
.footer-list a:hover { color: var(--paper-warm); }
.footer-meta {
  margin-top: var(--space-6);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.footer-meta a { color: rgba(255,255,255,0.5); }
.footer-meta a:hover { color: var(--paper-warm); }
.footer-bbb {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-3);
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
}
.footer-bbb strong { color: var(--paper-warm); font-weight: 700; }

/* --------------------------------------------------------------------------
   24. SKIP LINK
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--ink);
  color: var(--paper-warm);
  padding: 12px 16px;
  z-index: var(--z-modal);
  font-family: var(--ff-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.skip-link:focus { top: 0; }

/* --------------------------------------------------------------------------
   25. REVEAL ANIMATIONS (JS-gated)
   -------------------------------------------------------------------------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 800ms var(--ease);
  will-change: transform, opacity;
}
html.js [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
}
html.js [data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms var(--ease), transform 700ms var(--ease);
}
html.js [data-reveal-stagger].is-revealed > * {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   26. 404 PAGE
   -------------------------------------------------------------------------- */
.error-hero {
  min-height: 70dvh;
  display: grid;
  align-content: center;
  padding-block: var(--space-13);
}
.error-hero__num {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(6rem, 22vw, 16rem);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--ink);
  font-feature-settings: "tnum";
}
.error-hero h1 { margin-top: var(--space-4); }
.error-hero p { margin-top: var(--space-5); }
.error-hero__actions { margin-top: var(--space-7); display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   27. EMPLOYEE PORTAL
   -------------------------------------------------------------------------- */
.portal {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: start;
  padding-block: clamp(3rem, 6vw, 5rem);
}
@media (min-width: 880px) { .portal { grid-template-columns: 5fr 7fr; } }
.portal-card {
  background: var(--paper-warm);
  border: var(--bd-1);
  border-radius: var(--r-3);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: var(--space-5);
}
.portal-card h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.portal-card .helper {
  font-size: 0.875rem;
  color: var(--steel);
}

/* --------------------------------------------------------------------------
   28. UTILITIES
   -------------------------------------------------------------------------- */
.muted { color: var(--steel); }
.hi    { color: var(--hi-vis); }
.center { text-align: center; }
.flex { display: flex; }
.grid { display: grid; }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-5 { gap: var(--space-5); }
.mt-7 { margin-top: var(--space-7); }
.mt-9 { margin-top: var(--space-9); }
.maxw-md { max-width: 56ch; }
.divider {
  height: 1px;
  background: var(--rule);
  margin-block: var(--space-9);
}
.section--dark .divider, .section--ink-deep .divider { background: rgba(255,255,255,0.10); }

/* --------------------------------------------------------------------------
   29. REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html.js [data-reveal],
  html.js [data-reveal-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
  }
  .marquee__track { animation: none; }
  .hero__cue-line::after { animation: none; opacity: 0; }
}

/* --------------------------------------------------------------------------
   30. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .nav__drawer, .marquee, .cta-band, .hero__cue { display: none !important; }
  .hero { min-height: auto; padding-block: 1rem; background: #fff; color: #000; }
  .hero__bg { display: none; }
  .hero h1 { color: #000; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* --------------------------------------------------------------------------
   31. WCAG AA CONTRAST REMAP
   -------------------------------------------------------------------------- */
/*
   The brand tan (--hi-vis #897666) and slate (--steel #696A63) are used for
   accent purposes across the site. This block remaps text-on-light usage to
   AA-compliant variants (--hi-vis-text #897666, --steel-text #575554) while
   keeping the bright brand colors intact for buttons, decorative dots,
   accent rules, and dark-section type where they already pass.

   Reviewed against WCAG 2.1 SC 1.4.3 (Contrast — Minimum) and SC 2.5.5
   (Target Size).
   -------------------------------------------------------------------------- */

/* Orange-as-text on light surfaces */
a:hover,
.eyebrow,
.btn-link:hover,
.pillar__id,
.feature__list .num,
.amenity__num,
.sector__num,
.leader__role,
.svc-detail__num,
.svc-detail__solves strong,
.field-set legend,
.field label .req,
.field__error,
.form__status.is-success,
.form__status.is-error,
.hi {
  color: var(--hi-vis-text);
}
.btn-link:hover { border-color: var(--hi-vis-text); }

/* Steel-as-secondary-text on light surfaces */
.text-mute,
.cap,
.muted,
.svc-card__num,
.svc-card__tag,
.stat__num small,
.stat__label,
.pillar__anchor-key,
.tc-feature__amenities li,
.tc-feature__price .price-key,
.svc-detail__list .num,
.price-tile__tag,
.price-tile__price small,
.field label,
.field__help,
.form__legal,
.form__status,
.portal-card .helper {
  color: var(--steel-text);
}

/* Restore bright/light variants on dark sections (specificity wins) */
.section--dark a:hover,
.section--ink-deep a:hover,
.cta-band a:hover {
  color: var(--hi-vis-bright);
}
.section--dark .stat__num small,
.section--ink-deep .stat__num small {
  color: rgba(255, 255, 255, 0.6);
}
.price-tile--ink .price-tile__price small {
  color: rgba(255, 255, 255, 0.65);
}
.price-tile--ink .price-tile__list li::before {
  color: var(--hi-vis-bright);
}
.site-footer .muted,
.cta-band .muted {
  color: rgba(255, 255, 255, 0.55);
}
.page-hero__crumbs .sep {
  color: var(--hi-vis-bright); /* bright variant passes 5.27:1 on ink-deep */
}

/* Form invalid border keeps the brand orange (UI component, 3:1 sufficient) */
.field input:user-invalid,
.field textarea:user-invalid,
.field select:user-invalid {
  border-color: var(--hi-vis); /* 3.90:1 on cream — passes 3:1 UI minimum */
}
