/*
 * styles.css — High Desert Environmental Services
 * Statement of Findings — a stamped, typeset environmental report at rest.
 * Three-family instrument: Zilla Slab (determinations) / IBM Plex Sans (prose) / IBM Plex Mono (field-log data).
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --color-primary: #16130E;   /* iron-gall ink */
  --color-secondary: #43515B; /* coastal-plain survey slate */
  --color-accent: #8C3B2A;    /* oxide certification-stamp red */
  --color-bg: #F4F0E8;        /* bone paper */
  --color-surface: #EAE2D3;   /* deep-bone (rails, inset blocks) */
  --color-text: #16130E;
  --color-text-secondary: #574F43;
  --color-border: #C9BFA8;
  --color-ink: #0C0A06;       /* filed-black (footer / CTA fields) */
  --color-paper: #F1ECE0;     /* paper-on-ink type */
  --color-paper-dim: #B7B0A2; /* muted paper-on-ink for secondary type */

  --font-primary: 'Zilla Slab', Georgia, serif;
  --font-secondary: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --font-size-base: 16px;
  --spacing-base: 8px;

  --motion-duration: 180ms;
  --motion-duration-slow: 380ms;
  --motion-ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  --measure: 65ch;
  --shell: 1240px;
}

/* ============================================================
   Base Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: var(--font-size-base, 16px); scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-secondary, sans-serif);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  padding-bottom: 42px; /* required */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: var(--color-accent); text-decoration: none; }

:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* Skip navigation link — WCAG 2.4.1 */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  padding: 0.75rem 1.25rem; background: var(--color-surface); color: var(--color-accent);
  font-weight: 600; text-decoration: none; border: 2px solid var(--color-accent); border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Reveal-gating floor — content visible without JS
   ============================================================ */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--motion-ease), transform .6s var(--motion-ease); }
html.js .reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   Typographic system
   ============================================================ */
.u-mono {
  font-family: var(--font-mono); font-size: 0.8125rem; line-height: 1.5;
  letter-spacing: 0.02em; color: var(--color-secondary);
}
.u-mono--up { text-transform: uppercase; }

.display {
  font-family: var(--font-primary); font-weight: 600;
  font-size: clamp(2.75rem, 6vw, 5.25rem); line-height: 1.02; letter-spacing: -0.015em;
  color: var(--color-text);
}
h1, .h1 {
  font-family: var(--font-primary); font-weight: 600;
  font-size: clamp(2.25rem, 4vw, 3.5rem); line-height: 1.08; letter-spacing: -0.01em; color: var(--color-text);
}
h2, .h2 {
  font-family: var(--font-primary); font-weight: 600;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem); line-height: 1.12; color: var(--color-text);
}
h3, .h3 { font-family: var(--font-primary); font-weight: 500; font-size: 1.35rem; line-height: 1.2; color: var(--color-text); }

.lead {
  font-family: var(--font-secondary); font-weight: 400; font-size: 1.2rem; line-height: 1.6;
  color: var(--color-text-secondary); max-width: 62ch;
}
p { max-width: var(--measure); }
.determination {
  font-family: var(--font-secondary); font-size: 1.05rem; line-height: 1.7; color: var(--color-text-secondary);
  max-width: 62ch; text-align: justify; hyphens: auto;
}
.prose { color: var(--color-text-secondary); max-width: var(--measure); }
.prose p + p { margin-top: 1.1rem; }

/* ============================================================
   Layout primitives
   ============================================================ */
.shell { max-width: var(--shell); margin: 0 auto; padding-left: clamp(1.25rem, 5vw, 3.5rem); padding-right: clamp(1.25rem, 5vw, 3.5rem); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.datum-rule { border: 0; border-top: 1px solid var(--color-secondary); margin: 0; }
.hairline { border: 0; border-top: 1px solid var(--color-border); margin: 0; }

/* ============================================================
   Links & buttons
   ============================================================ */
.link-arrow {
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.95rem; color: var(--color-accent);
  display: inline-flex; align-items: center; gap: 0.4rem; border-bottom: 1.5px solid transparent;
  transition: border-color var(--motion-duration) var(--motion-ease);
}
.link-arrow:hover, .link-arrow:focus-visible { border-bottom-color: var(--color-accent); }
.link-arrow i { transition: transform var(--motion-duration) var(--motion-ease); }
.link-arrow:hover i { transform: translateX(3px); }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer;
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.975rem; letter-spacing: 0.01em;
  padding: 0.85rem 1.6rem; border: 1px solid var(--color-accent); background: var(--color-accent); color: var(--color-paper);
  text-decoration: none; transition: background var(--motion-duration) var(--motion-ease), border-color var(--motion-duration) var(--motion-ease);
}
.btn:hover, .btn:focus-visible { background: #75301f; border-color: #75301f; }
.btn--ghost { background: transparent; color: var(--color-accent); }
.btn--ghost:hover, .btn--ghost:focus-visible { background: var(--color-accent); color: var(--color-paper); }

/* ============================================================
   Navigation — document masthead
   ============================================================ */
.nav-header { position: sticky; top: 0; z-index: 100; }
.nav-header__strip {
  background: var(--color-surface); border-bottom: 1px solid var(--color-border);
}
.nav-header__strip .shell { display: flex; align-items: center; min-height: 28px; }
.nav-header__strip p {
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-secondary); margin: 0; max-width: none; padding-block: 5px;
}
.nav-header__strip .dot { color: var(--color-accent); }

.nav {
  background: var(--color-bg); border-bottom: 1px solid var(--color-secondary);
}
.nav .shell { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 68px; }
.nav__brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.nav__brand img { height: 52px; width: auto; max-width: 200px; display: block; } /* sized up for the 3-line wordmark's fine text */
.nav__menu { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); }
.nav__list { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); list-style: none; }
.nav__link {
  font-family: var(--font-secondary); font-weight: 500; font-size: 0.9375rem; letter-spacing: 0.01em;
  color: var(--color-text); border-bottom: 1.5px solid transparent; padding-block: 0.3rem;
  transition: color var(--motion-duration) var(--motion-ease), border-color var(--motion-duration) var(--motion-ease);
}
.nav__link:hover, .nav__link:focus-visible, .nav__link[aria-current="page"] { color: var(--color-accent); border-bottom-color: var(--color-accent); }
.nav__cta {
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.9375rem; letter-spacing: 0.01em;
  color: var(--color-accent); border-bottom: 1.5px solid var(--color-accent); padding-block: 0.3rem;
  transition: color var(--motion-duration) var(--motion-ease);
}
.nav__cta:hover, .nav__cta:focus-visible { color: #75301f; border-bottom-color: #75301f; }
.nav__toggle { display: none; background: none; border: 1px solid var(--color-secondary); color: var(--color-text); width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center; }
.nav__toggle i { font-size: 1.5rem; }

/* ============================================================
   Footer — filed-black substrate, field-log facts
   ============================================================ */
.footer { position: relative; background: var(--color-ink); color: var(--color-paper); overflow: hidden; }
.footer__watermark {
  position: absolute; top: -60px; right: -60px; width: 340px; height: 340px; pointer-events: none;
  background: url("/images/minimal-topographic-contour-line-art-nes_20260729_172931_keyed.png") no-repeat center / contain;
  opacity: 0.06;
}
.footer .shell { position: relative; padding-block: clamp(3rem, 6vw, 4.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); }
.footer__col { min-width: 0; }
.footer__wordmark { font-family: var(--font-primary); font-weight: 600; line-height: 1.06; color: var(--color-paper); font-size: 1.5rem; letter-spacing: -0.01em; }
.footer__wordmark span { display: block; }
.footer__wordmark .footer__wordmark-lead { font-size: 1.9rem; }
.footer__positioning { margin-top: 1.1rem; color: var(--color-paper-dim); font-size: 0.95rem; max-width: 34ch; line-height: 1.6; }
.footer__heading { font-family: var(--font-primary); font-weight: 500; font-size: 1rem; color: var(--color-paper); margin-bottom: 1rem; letter-spacing: 0.01em; }
.footer__nav { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav a { color: var(--color-paper); font-size: 0.95rem; border-bottom: 1px solid transparent; transition: border-color var(--motion-duration) var(--motion-ease); }
.footer__nav a:hover, .footer__nav a:focus-visible { border-bottom-color: var(--color-paper-dim); }
.footer__facts { font-family: var(--font-mono); font-size: 0.8125rem; line-height: 2; color: var(--color-paper); letter-spacing: 0.01em; }
.footer__facts div { display: flex; gap: 0.6rem; align-items: baseline; }
.footer__facts .k { color: var(--color-paper-dim); text-transform: uppercase; min-width: 4.5rem; flex-shrink: 0; }
.footer__facts a { color: var(--color-paper); }
.footer__facts a:hover { color: var(--color-paper); border-bottom: 1px solid var(--color-paper-dim); }
.footer__facts i { color: var(--color-paper-dim); }
.footer__base { position: relative; }
.footer__base .shell { padding-block: 1.1rem; }
.footer__base { border-top: 1px solid var(--color-secondary); }
.footer__colophon { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-paper-dim); margin: 0; max-width: none; }

/* ============================================================
   HERO — Statement of Findings (index.html)
   ============================================================ */
.hero { background: var(--color-bg); }
.hero .shell { padding-block: clamp(3rem, 7vw, 5.5rem) 0; }
.hero__grid { display: grid; grid-template-columns: 62fr 34fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.hero__lead { min-width: 0; }
.hero__filing-tag { font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-secondary); display: block; margin-bottom: 1.5rem; }
.hero__filing-tag b { color: var(--color-accent); font-weight: 500; }
.hero__headline { max-width: 15ch; }
.hero__determination { margin-top: 1.75rem; }
.hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; }

/* margin rail */
.hero__rail {
  position: relative; background: var(--color-surface); border: 1px solid var(--color-border); border-left: 3px solid var(--color-secondary);
  padding: clamp(1.25rem, 2vw, 1.75rem); min-width: 0;
}
.hero__rail-title { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-secondary); padding-bottom: 0.75rem; border-bottom: 1px solid var(--color-border); margin-bottom: 1rem; }
.hero__meta { font-family: var(--font-mono); font-size: 0.8125rem; line-height: 1.9; color: var(--color-secondary); margin: 0; }
.hero__meta div { display: grid; grid-template-columns: 6.2rem 1fr; gap: 0.5rem; padding-block: 0.35rem; border-bottom: 1px dotted var(--color-border); }
.hero__meta dt { text-transform: uppercase; color: var(--color-secondary); font-weight: 500; margin: 0; }
.hero__meta dd { color: var(--color-text); margin: 0; min-width: 0; word-break: break-word; }
.hero__meta .is-cert { position: relative; }
.hero__meta .is-cert dd { color: var(--color-accent); font-weight: 500; }
.hero__stamp {
  position: absolute; right: -14px; bottom: -18px; width: 116px; height: 116px; color: var(--color-accent);
  transform: rotate(-4deg);
}
.hero__stamp svg { width: 100%; height: 100%; display: block; }
html.js .hero__stamp { opacity: 0; transform: scale(1.28) rotate(-9deg); }
html.js .hero__stamp.is-pressed { opacity: 0.92; transform: scale(1) rotate(-4deg);
  transition: opacity var(--motion-duration) var(--motion-ease), transform var(--motion-duration-slow) var(--motion-ease); }
.hero__foot { margin-top: clamp(2.5rem, 5vw, 4rem); }

/* ============================================================
   Exhibit summary (index) — bound ledger of 8 services
   ============================================================ */
.exhibits__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem 2rem; margin-bottom: 2.5rem; }
.exhibits__head-text { min-width: 0; }
.exhibits__plate { width: 180px; height: 180px; flex-shrink: 0; border: 1px solid var(--color-border); overflow: hidden; }
.exhibits__plate img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: grayscale(0.55) contrast(1.03) sepia(0.06) brightness(0.98); }
.exhibit-list { list-style: none; border-top: 1px solid var(--color-secondary); }
.exhibit-row { border-bottom: 1px solid var(--color-border); }
.exhibit-row a { display: grid; grid-template-columns: 3.5rem minmax(0, 1.1fr) minmax(0, 1.4fr); gap: 1rem 1.5rem; align-items: baseline; padding-block: 1.25rem; color: inherit; }
.exhibit-row__num { font-family: var(--font-mono); font-size: 0.8125rem; color: var(--color-secondary); transition: color var(--motion-duration) var(--motion-ease); }
.exhibit-row__name { min-width: 0; }
.exhibit-row__tag { display: block; font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 0.25rem; transition: color var(--motion-duration) var(--motion-ease); }
.exhibit-row__title { font-family: var(--font-primary); font-weight: 500; font-size: 1.2rem; line-height: 1.2; color: var(--color-text); }
.exhibit-row__desc { min-width: 0; font-size: 0.975rem; line-height: 1.6; color: var(--color-text-secondary); max-width: 52ch; }
.exhibit-row a:hover .exhibit-row__num, .exhibit-row a:hover .exhibit-row__tag,
.exhibit-row a:focus-visible .exhibit-row__num, .exhibit-row a:focus-visible .exhibit-row__tag { color: var(--color-accent); }
.exhibit-row a:hover .exhibit-row__title { text-decoration: underline; text-decoration-color: var(--color-border); text-underline-offset: 4px; }
.exhibits__foot { margin-top: 2rem; }

/* ============================================================
   Field band — the one breath (index / dark plate)
   ============================================================ */
.field-band { position: relative; background: var(--color-secondary); overflow: hidden; }
.field-band__media { position: absolute; inset: 0; }
.field-band__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; filter: grayscale(1) contrast(1.06) brightness(0.92); mix-blend-mode: multiply; opacity: 0.92; }
.field-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,10,6,0.82) 0%, rgba(12,10,6,0.5) 45%, rgba(12,10,6,0.2) 100%); }
.field-band .shell { position: relative; z-index: 1; min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end; padding-block: clamp(3rem, 7vw, 5rem); }
.field-band__caption { max-width: 46ch; color: var(--color-paper); font-size: 1.05rem; line-height: 1.6; text-align: justify; hyphens: auto; }
.field-band__locator { font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.04em; color: var(--color-paper); margin-top: 1.25rem; opacity: 0.85; }

/* ============================================================
   Certification rule (index)
   ============================================================ */
.cert-rule { text-align: center; }
.cert-rule__inner { max-width: 60ch; margin: 0 auto; }
.cert-rule h2 { margin-bottom: 2rem; }
.cert-rule__line { border-block: 1px solid var(--color-secondary); padding-block: 1.5rem; }
.cert-rule__line p { font-family: var(--font-mono); font-size: 0.875rem; letter-spacing: 0.08em; color: var(--color-secondary); text-transform: uppercase; line-height: 1.9; margin: 0 auto; max-width: none; }
.cert-rule__line .mid { color: var(--color-accent); padding-inline: 0.35rem; }
.cert-rule__foot { margin-top: 2rem; }

/* ============================================================
   CTA closer — solid ink field
   ============================================================ */
.cta-close { background: var(--color-ink); color: var(--color-paper); }
.cta-close__grid { display: grid; grid-template-columns: 1.35fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.cta-close__lead { min-width: 0; }
.cta-close h2 { color: var(--color-paper); font-size: clamp(1.75rem, 3.2vw, 2.5rem); max-width: 16ch; }
.cta-close p { color: var(--color-paper-dim); margin-top: 1.1rem; max-width: 48ch; }
.cta-close__actions { margin-top: 1.75rem; }
.cta-close__aside { min-width: 0; border-left: 3px solid var(--color-secondary); padding-left: clamp(1.25rem, 2.5vw, 2rem); }
.cta-close__aside .u-mono { color: var(--color-paper-dim); display: block; margin-bottom: 0.75rem; }
.cta-close__step { font-family: var(--font-mono); font-size: 0.875rem; line-height: 2; color: var(--color-paper); }
.cta-close__step div { display: flex; gap: 0.75rem; }
.cta-close__step .n { color: var(--color-accent); }

/* ============================================================
   Page head (services / about / credentials / contact)
   ============================================================ */
.page-head { background: var(--color-bg); padding-top: clamp(3rem, 6vw, 4.5rem); }
.page-head__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: end; padding-bottom: clamp(1.75rem, 3vw, 2.5rem); }
.page-head__text { min-width: 0; }
.page-head__standfirst { margin-top: 1.25rem; }
.page-head__rail { min-width: 0; }
.page-head__rail p { font-family: var(--font-mono); font-size: 0.8125rem; line-height: 2; letter-spacing: 0.03em; color: var(--color-secondary); text-transform: uppercase; margin: 0; max-width: none; }
.page-head__rail .v { color: var(--color-accent); }

/* ============================================================
   Records — the eight exhibits (services)
   ============================================================ */
.records { list-style: none; }
.record { border-top: 1px solid var(--color-secondary); }
.record--tint { background: var(--color-surface); }
.record .shell { padding-block: clamp(2.75rem, 5vw, 4rem); }
.record__grid { display: grid; grid-template-columns: 63fr 37fr; gap: 0; }
.record__primary { min-width: 0; padding-right: clamp(1.5rem, 3vw, 3rem); border-right: 1px solid var(--color-border); }
.record__meta-line { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; align-items: baseline; margin-bottom: 1rem; }
.record__tag { font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--color-accent); transition: color var(--motion-duration) var(--motion-ease); }
.record__issue { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-secondary); }
.record__name { max-width: 22ch; margin-bottom: 1.1rem; }
.record__determination { max-width: 62ch; }
.record__exhibit { min-width: 0; padding-left: clamp(1.5rem, 3vw, 2.5rem); }
.record__exhibit dl { font-family: var(--font-mono); font-size: 0.8125rem; line-height: 1.8; color: var(--color-secondary); }
.record__exhibit div { padding-block: 0.5rem; border-bottom: 1px dotted var(--color-border); }
.record__exhibit dt { text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-secondary); font-weight: 500; }
.record__exhibit dd { color: var(--color-text); margin-top: 0.15rem; }
.record:hover .record__tag { color: var(--color-accent); }

.records__interstitial { border-top: 1px solid var(--color-secondary); }
.records__interstitial .shell { padding-block: clamp(2rem, 4vw, 3rem); }
.records__interstitial figure { position: relative; overflow: hidden; border: 1px solid var(--color-border); }
.records__interstitial img { width: 100%; height: clamp(220px, 34vw, 380px); object-fit: cover; object-position: center 45%; filter: grayscale(0.7) contrast(1.04) sepia(0.05) brightness(0.9); }
.records__interstitial figcaption { position: absolute; left: 0; bottom: 0; font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-paper); background: rgba(12,10,6,0.72); padding: 0.5rem 0.9rem; }

/* ============================================================
   Forms — ruled report-field inputs
   ============================================================ */
.form-block__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form-intro { min-width: 0; }
.form-intro p { margin-top: 1rem; }
.contact-form { min-width: 0; display: grid; gap: 1.5rem; }
.contact-form .field { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.contact-form label { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-secondary); }
.contact-form input, .contact-form select, .contact-form textarea {
  font-family: var(--font-secondary); font-size: 1rem; color: var(--color-text); background: transparent;
  border: 0; border-bottom: 1px solid var(--color-secondary); padding: 0.6rem 0.15rem; width: 100%;
  transition: border-color var(--motion-duration) var(--motion-ease); border-radius: 0; -webkit-appearance: none; appearance: none;
}
.contact-form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2343515B' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.3rem center; padding-right: 1.5rem; }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-bottom-color: var(--color-accent); border-bottom-width: 2px; }
.contact-form .field--full { grid-column: 1 / -1; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.contact-form__submit { grid-column: 1 / -1; justify-self: start; }

/* ============================================================
   About page
   ============================================================ */
.about-open { position: relative; background: var(--color-secondary); overflow: hidden; }
.about-open__media { position: absolute; inset: 0; }
.about-open__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; filter: grayscale(1) contrast(1.05) brightness(0.95); mix-blend-mode: multiply; opacity: 0.9; }
.about-open::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,10,6,0.8) 0%, rgba(12,10,6,0.45) 55%, rgba(12,10,6,0.15) 100%); }
.about-open .shell { position: relative; z-index: 1; min-height: 440px; display: flex; flex-direction: column; justify-content: flex-end; padding-block: clamp(3rem, 7vw, 5rem); }
.about-open h1 { color: var(--color-paper); max-width: 18ch; }
.about-open__locator { font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.05em; color: var(--color-paper); margin-top: 1.25rem; opacity: 0.85; }

.practice__grid { display: grid; grid-template-columns: 1fr 0.42fr; gap: clamp(1.5rem, 4vw, 3.5rem); }
.practice__body { min-width: 0; max-width: 68ch; }
.practice__part { padding-top: 2.25rem; }
.practice__part:first-child { padding-top: 0; }
.practice__part h2 { margin-bottom: 1rem; }
.practice__pullquote { font-family: var(--font-primary); font-weight: 500; font-size: clamp(1.35rem, 2.4vw, 1.85rem); line-height: 1.3; color: var(--color-text); border-left: 3px solid var(--color-accent); padding-left: 1.25rem; margin-block: 2.25rem; max-width: 30ch; }
.practice__margin { min-width: 0; position: relative; }
.practice__rubrics { position: sticky; top: 120px; list-style: none; font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-secondary); display: flex; flex-direction: column; gap: 0.75rem; border-left: 1px solid var(--color-border); padding-left: 1.25rem; }
.practice__rubrics li::before { content: "§ "; color: var(--color-accent); }
.practice__contour { margin-top: 2rem; width: 100%; max-width: 200px; height: 200px; background: url("/images/minimal-topographic-contour-line-art-nes_20260729_172931_keyed.png") no-repeat center / contain; opacity: 0.4; }

/* ============================================================
   Credentials ledger
   ============================================================ */
.credledger { list-style: none; border-top: 1px solid var(--color-secondary); }
.credrow { border-bottom: 1px solid var(--color-border); }
.credrow .shell { display: grid; grid-template-columns: 9rem minmax(0, 1fr) auto; gap: 1rem 2rem; align-items: baseline; padding-block: 1.75rem; }
.credrow__code { font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-secondary); }
.credrow__body { min-width: 0; }
.credrow__name { font-family: var(--font-primary); font-weight: 500; font-size: 1.35rem; line-height: 1.2; color: var(--color-text); margin-bottom: 0.4rem; }
.credrow__what { font-size: 0.975rem; line-height: 1.6; color: var(--color-text-secondary); max-width: 60ch; }
.credrow__mark { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-secondary); border: 1px solid var(--color-border); padding: 0.3rem 0.55rem; white-space: nowrap; transition: color var(--motion-duration) var(--motion-ease), border-color var(--motion-duration) var(--motion-ease); }
.credrow:hover .credrow__mark { color: var(--color-accent); border-color: var(--color-accent); }

/* ============================================================
   Contact page aside
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1.2fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__form-col { min-width: 0; }
.contact__aside { min-width: 0; }
.contact__facts { font-family: var(--font-mono); font-size: 0.875rem; line-height: 1.8; color: var(--color-secondary); border: 1px solid var(--color-border); background: var(--color-surface); padding: clamp(1.25rem, 2.5vw, 1.75rem); }
.contact__facts .row { display: flex; gap: 0.9rem; align-items: flex-start; padding-block: 0.75rem; border-bottom: 1px dotted var(--color-border); }
.contact__facts .row:last-child { border-bottom: 0; }
.contact__facts i { color: var(--color-accent); font-size: 1.05rem; margin-top: 0.1rem; }
.contact__facts .k { display: block; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.06em; color: var(--color-secondary); margin-bottom: 0.15rem; }
.contact__facts .v { color: var(--color-text); }
.contact__facts a { color: var(--color-accent); }
.contact__facts a:hover { border-bottom: 1px solid var(--color-accent); }
.contact__figure { margin-top: 1.5rem; border: 1px solid var(--color-border); overflow: hidden; }
.contact__figure img { width: 100%; height: clamp(220px, 30vw, 300px); object-fit: cover; object-position: center 45%; filter: grayscale(0.6) contrast(1.03) sepia(0.05) brightness(0.96); }

/* ============================================================
   404
   ============================================================ */
.notfound { min-height: 60vh; display: flex; align-items: center; }
.notfound__grid { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; width: 100%; }
.notfound__text { min-width: 0; }
.notfound__rail { min-width: 0; font-family: var(--font-mono); font-size: 0.8125rem; line-height: 2; letter-spacing: 0.03em; text-transform: uppercase; color: var(--color-secondary); background: var(--color-surface); border-left: 3px solid var(--color-secondary); padding: 1.5rem; }
.notfound__rail .v { color: var(--color-accent); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__determination { text-align: left; }
  .hero__rail { border-left: 3px solid var(--color-secondary); }
  .hero__stamp { right: 8px; bottom: -22px; }
  .cta-close__grid { grid-template-columns: 1fr; }
  .cta-close__aside { border-left: 0; border-top: 1px solid var(--color-secondary); padding-left: 0; padding-top: 1.5rem; }
  .page-head__grid { grid-template-columns: 1fr; align-items: start; }
  .record__grid { grid-template-columns: 1fr; }
  .record__primary { padding-right: 0; border-right: 0; border-bottom: 1px solid var(--color-border); padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
  .record__determination { text-align: left; }
  .record__exhibit { padding-left: 0; }
  .form-block__grid { grid-template-columns: 1fr; }
  .practice__grid { grid-template-columns: 1fr; }
  .practice__rubrics { position: static; flex-direction: row; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
  .practice__contour { display: none; }
  .contact__grid { grid-template-columns: 1fr; }
  .notfound__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__menu { position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); background: var(--color-bg);
    border-left: 1px solid var(--color-secondary); flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 5rem 1.75rem 2rem; gap: 0; transform: translateX(100%); transition: transform var(--motion-duration-slow) var(--motion-ease); z-index: 120; box-shadow: -12px 0 40px rgba(12,10,6,0.15); }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav__list li { border-bottom: 1px solid var(--color-border); }
  .nav__link { display: block; padding-block: 1rem; font-size: 1.05rem; border-bottom: 0; }
  .nav__cta { display: block; margin-top: 1.25rem; padding: 0.85rem 1.25rem; text-align: center; border: 1px solid var(--color-accent); border-bottom: 1px solid var(--color-accent); background: var(--color-accent); color: var(--color-paper); }
  .nav__cta:hover, .nav__cta:focus-visible { color: var(--color-paper); background: #75301f; }
  .nav__drawer-phone { display: block; order: -1; font-family: var(--font-mono); font-size: 0.9rem; color: var(--color-secondary); margin-bottom: 1.25rem; }
  .nav__toggle { display: inline-flex; }
  body.nav-open { overflow: hidden; }
  .nav__scrim { position: fixed; inset: 0; background: rgba(12,10,6,0.4); opacity: 0; visibility: hidden; transition: opacity var(--motion-duration) var(--motion-ease); z-index: 110; }
  .nav__scrim.is-open { opacity: 1; visibility: visible; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .exhibit-row a { grid-template-columns: 2.5rem 1fr; }
  .exhibit-row__desc { grid-column: 2; }
  .exhibits__head { flex-direction: column-reverse; align-items: flex-start; }
  .credrow .shell { grid-template-columns: 1fr auto; }
  .credrow__code { grid-column: 1 / -1; }
  .contact-form__row { grid-template-columns: 1fr; }
}

.nav__drawer-phone { display: none; }
.nav__scrim { display: none; }
@media (max-width: 768px) { .nav__scrim { display: block; } }

/* ============================================================
   Self-hosted Google Fonts (localized by 20_performance_sweep)
   ============================================================ */
/* cyrillic-ext */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/-F63fjptAgt5VM-kVkqdyU8n1iIq131nj-otFQ.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/-F63fjptAgt5VM-kVkqdyU8n1isq131nj-otFQ.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/-F63fjptAgt5VM-kVkqdyU8n1iAq131nj-otFQ.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/-F63fjptAgt5VM-kVkqdyU8n1iEq131nj-otFQ.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/-F63fjptAgt5VM-kVkqdyU8n1i8q131nj-o.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/-F6qfjptAgt5VM-kVkqdyU8n3twJwl1FgsAXHNlYzg.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/-F6qfjptAgt5VM-kVkqdyU8n3twJwlRFgsAXHNlYzg.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/-F6qfjptAgt5VM-kVkqdyU8n3twJwl9FgsAXHNlYzg.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/-F6qfjptAgt5VM-kVkqdyU8n3twJwl5FgsAXHNlYzg.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/-F6qfjptAgt5VM-kVkqdyU8n3twJwlBFgsAXHNk.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxTKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxaKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxdKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxRKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxQKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxeKYbSB4Zh.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxTKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxaKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxdKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxRKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxQKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxeKYbSB4Zh.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxTKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxaKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxdKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxRKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxQKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxeKYbSB4Zh.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Zilla Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/dFa6ZfeM_74wlPZtksIFajQ6_V6LVlBKdA.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Zilla Slab';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/dFa6ZfeM_74wlPZtksIFajo6_V6LVlA.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Zilla Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/dFa5ZfeM_74wlPZtksIFYskZ6H2pW3pwfa3Efg.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Zilla Slab';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/dFa5ZfeM_74wlPZtksIFYskZ6HOpW3pwfa0.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Zilla Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/dFa5ZfeM_74wlPZtksIFYuUe6H2pW3pwfa3Efg.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Zilla Slab';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/dFa5ZfeM_74wlPZtksIFYuUe6HOpW3pwfa0.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Zilla Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/dFa5ZfeM_74wlPZtksIFYoEf6H2pW3pwfa3Efg.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Zilla Slab';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/dFa5ZfeM_74wlPZtksIFYoEf6HOpW3pwfa0.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
