@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Stencil:wght@700;800&family=Archivo:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --ink: #1B1B1A;
  --concrete: #86867E;
  --concrete-light: #DBD7CC;
  --steel: #3A4045;
  --paper: #F2EFE6;
  --safety-orange: #E2531D;
  --trail-green: #4B5A3A;

  --ink-90: rgba(27, 27, 26, 0.9);
  --ink-70: rgba(27, 27, 26, 0.7);
  --ink-55: rgba(27, 27, 26, 0.55);
  --ink-12: rgba(27, 27, 26, 0.12);
  --paper-80: rgba(242, 239, 230, 0.82);
  --paper-60: rgba(242, 239, 230, 0.62);
  --steel-dark: #2C3135;
  --steel-light: #4E565C;
  --orange-dim: #B93F13;
  --green-dim: #3B4930;

  --font-display: 'Big Shoulders Stencil', 'Archivo', system-ui, sans-serif;
  --font-body: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', 'Consolas', monospace;

  --w-body: 400;
  --w-body-md: 500;
  --w-body-sb: 600;
  --w-display: 700;
  --w-display-hi: 800;

  --step--1: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  --step-0: clamp(0.98rem, 0.94rem + 0.2vw, 1.08rem);
  --step-1: clamp(1.1rem, 1.03rem + 0.32vw, 1.28rem);
  --step-2: clamp(1.32rem, 1.18rem + 0.66vw, 1.72rem);
  --step-3: clamp(1.7rem, 1.42rem + 1.3vw, 2.6rem);
  --step-4: clamp(2.1rem, 1.6rem + 2.4vw, 3.7rem);
  --step-5: clamp(2.6rem, 1.75rem + 4vw, 5.4rem);

  --lh-tight: 0.96;
  --lh-head: 1.06;
  --lh-body: 1.62;
  --lh-meta: 1.4;

  --track-display: 0.01em;
  --track-mono: 0.04em;
  --track-caps: 0.14em;

  --shell: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(3.5rem, 8vw, 6.5rem);
  --section-sm: clamp(2.25rem, 5vw, 3.75rem);
  --gap: clamp(1rem, 2.4vw, 1.9rem);
  --gap-sm: clamp(0.6rem, 1.4vw, 1rem);
  --measure: 68ch;
  --measure-narrow: 56ch;

  --rule: 1px solid var(--concrete);
  --rule-hair: 1px solid var(--ink-12);
  --rule-heavy: 3px solid var(--ink);
  --radius: 0;
  --radius-check: 2px;
  --tap: 44px;

  --hazard: repeating-linear-gradient(45deg, var(--ink) 0 10px, var(--safety-orange) 10px 20px);
  --hazard-soft: repeating-linear-gradient(45deg, var(--steel) 0 12px, var(--concrete-light) 12px 24px);

  --focus-ring: 3px solid var(--safety-orange);
  --focus-offset: 2px;

  --t-state: 110ms linear;
  --t-panel: 160ms ease-out;

  --z-nav: 60;
  --z-panel: 70;
  --z-chat: 80;
  --z-consent: 90;
  --z-skip: 100;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: var(--w-body);
  font-size: var(--step-0);
  line-height: var(--lh-body);
  overflow-x: hidden;
  min-height: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd, ul, ol, pre {
  margin: 0;
}

ul, ol {
  padding-left: 1.15em;
}

img,
svg,
picture,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
  background-color: var(--concrete-light);
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  border-radius: var(--radius);
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  width: 100%;
}

hr {
  border: 0;
  border-top: var(--rule);
  margin: var(--section-sm) 0;
}

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--safety-orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
  transition: color var(--t-state), background-color var(--t-state), text-decoration-color var(--t-state);
}

a:hover {
  color: var(--orange-dim);
  text-decoration-color: var(--ink);
}

:focus {
  outline: none;
}

:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

.js :focus:not(:focus-visible) {
  outline: none;
}

::selection {
  background: var(--safety-orange);
  color: var(--paper);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--w-display-hi);
  line-height: var(--lh-head);
  letter-spacing: var(--track-display);
  text-transform: uppercase;
  text-wrap: balance;
}

h1 {
  font-size: var(--step-5);
  line-height: var(--lh-tight);
}

h2 {
  font-size: var(--step-4);
  line-height: var(--lh-tight);
}

h3 {
  font-size: var(--step-2);
  font-weight: var(--w-display);
}

h4 {
  font-size: var(--step-1);
  font-weight: var(--w-display);
  letter-spacing: 0.03em;
}

h5, h6 {
  font-family: var(--font-body);
  font-weight: var(--w-body-sb);
  font-size: var(--step-0);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  line-height: var(--lh-meta);
}

strong, b {
  font-weight: var(--w-body-sb);
}

code, kbd, samp, pre {
  font-family: var(--font-mono);
  font-weight: var(--w-body);
  font-size: 0.92em;
}

.mono,
.meta,
.seg-id,
.price-basis,
address,
time {
  font-family: var(--font-mono);
  font-style: normal;
  letter-spacing: var(--track-mono);
}

.meta {
  font-size: var(--step--1);
  color: var(--ink-70);
  line-height: var(--lh-meta);
}

.eyebrow {
  font-family: var(--font-mono);
  font-weight: var(--w-body-md);
  font-size: var(--step--1);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--orange-dim);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: "";
  width: 1.9rem;
  height: 3px;
  background: var(--safety-orange);
  flex: none;
}

.eyebrow--green {
  color: var(--green-dim);
}

.eyebrow--green::before {
  background: var(--trail-green);
}

.lead {
  font-size: var(--step-1);
  line-height: 1.5;
  max-width: var(--measure-narrow);
}

.prose {
  max-width: var(--measure);
}

.prose > * + * {
  margin-top: 1.05em;
}

.prose > h2 {
  margin-top: 1.9em;
  font-size: var(--step-3);
}

.prose > h3 {
  margin-top: 1.7em;
}

.prose > h4 {
  margin-top: 1.5em;
}

.prose ul,
.prose ol {
  padding-left: 1.3em;
}

.prose li + li {
  margin-top: 0.5em;
}

.prose li::marker {
  color: var(--safety-orange);
  font-weight: var(--w-body-sb);
}

.prose a {
  font-weight: var(--w-body-md);
}

.prose dl {
  display: grid;
  gap: 0.35rem 1.5rem;
}

.prose dt {
  font-weight: var(--w-body-sb);
}

.prose dd {
  margin: 0 0 0.7rem;
  color: var(--ink-90);
}

.prose blockquote {
  border-left: 4px solid var(--safety-orange);
  padding: 0.2rem 0 0.2rem 1.15rem;
  font-size: var(--step-1);
  line-height: 1.45;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell--tight {
  max-width: 940px;
}

.shell--wide {
  max-width: 1420px;
}

.band {
  padding-block: var(--section);
  border-bottom: var(--rule);
}

.band--sm {
  padding-block: var(--section-sm);
}

.band--paper {
  background: var(--paper);
}

.band--stone {
  background: var(--concrete-light);
}

.band--steel {
  background: var(--steel);
  color: var(--paper);
  border-bottom-color: var(--steel-dark);
}

.band--steel h1,
.band--steel h2,
.band--steel h3 {
  color: var(--paper);
}

.band--steel a {
  text-decoration-color: var(--safety-orange);
}

.band--steel .meta {
  color: var(--paper-80);
}

.band--flush {
  border-bottom: 0;
}

.hazard-strip {
  height: 8px;
  background: var(--hazard);
  background-size: 28px 28px;
}

.hazard-strip--thin {
  height: 6px;
}

.hazard-strip--thick {
  height: 10px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.stack--sm {
  gap: var(--gap-sm);
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-sm);
  align-items: center;
}

.grid {
  display: grid;
  gap: var(--gap);
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}

.split {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
}

@media (min-width: 62rem) {
  .split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
  }

  .split--wide-left {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  }

  .split--wide-right {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr);
  }
}

.section-head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3.5vw, 2.75rem);
  max-width: var(--measure);
}

.section-head p {
  color: var(--ink-90);
  max-width: var(--measure-narrow);
}

.rule-top {
  border-top: var(--rule);
  padding-top: clamp(1rem, 2vw, 1.6rem);
}

.rule-bottom {
  border-bottom: var(--rule);
  padding-bottom: clamp(1rem, 2vw, 1.6rem);
}

.frame {
  border: 2px solid var(--ink);
  background: var(--paper);
  padding: clamp(1.1rem, 2.6vw, 2rem);
}

.frame--stone {
  background: var(--concrete-light);
  border-color: var(--ink);
}

.frame--orange {
  border-left: 6px solid var(--safety-orange);
}

.frame--green {
  border-left: 6px solid var(--trail-green);
}

.figure {
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.figure img {
  width: 100%;
  border: 2px solid var(--ink);
}

.figure figcaption {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--ink-70);
  letter-spacing: var(--track-mono);
  line-height: var(--lh-meta);
}

.ratio-wide {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.ratio-tall {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ratio-band {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.hp-field {
  position: absolute !important;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: -100%;
  z-index: var(--z-skip);
  background: var(--safety-orange);
  color: var(--paper);
  font-weight: var(--w-body-sb);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.4rem;
  min-height: var(--tap);
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--ink);
}

.skip-link:focus {
  top: 0.5rem;
  color: var(--paper);
}

.no-wrap {
  white-space: nowrap;
}

.text-mono-lg {
  font-family: var(--font-mono);
  font-size: var(--step-1);
  letter-spacing: var(--track-mono);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: var(--track-mono);
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border: 1px solid var(--ink);
  background: transparent;
  line-height: 1.2;
}

.tag--orange {
  border-color: var(--safety-orange);
  color: var(--orange-dim);
}

.tag--green {
  border-color: var(--trail-green);
  color: var(--green-dim);
}

.tag--solid {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.settle {
  opacity: 1;
}

.js .settle {
  opacity: 0;
  transform: translateY(10px);
}

.js .settle.is-settled {
  opacity: 1;
  transform: none;
  transition: opacity 420ms ease-out, transform 420ms ease-out;
}

.js .settle--delay-1.is-settled {
  transition-delay: 90ms;
}

.js .settle--delay-2.is-settled {
  transition-delay: 170ms;
}

.state-fade {
  transition: opacity var(--t-panel), background-color var(--t-state), border-color var(--t-state), color var(--t-state);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .js .settle,
  .js .settle.is-settled {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .consent-banner,
  .chat-launcher,
  .chat-panel {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}
