/* ============================================================
   HASH DIGIPOINT — design system
   From the brand manual: Ink #111111 · Paper #FFF · Point Blue
   #0066FF · Signal Green #00C853 · Fog #F5F5F5 · Inter/Manrope.
   Swiss grid, huge whitespace, one blue point, no gradients.
   ============================================================ */

/* ————— Tokens ————— */
:root {
  --ink: #111111;
  --ink-soft: #1a1a1a;
  --hairline-dark: #2a2a2a;
  --paper: #ffffff;
  --fog: #f5f5f5;
  --point: #0066ff;
  --point-soft: #6ea8ff;
  --signal: #00c853;
  --muted: #6e6e73; /* brand grey darkened to meet WCAG 4.5:1 on white/fog */
  --muted-dark: #b9b9be;

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-num: "Manrope", var(--font-sans);

  /* Fluid type scale (360px → 1280px) */
  --text-xs: clamp(0.72rem, 0.7rem + 0.1vw, 0.78rem);
  --text-sm: clamp(0.85rem, 0.82rem + 0.15vw, 0.94rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.09rem);
  --text-lg: clamp(1.13rem, 1.06rem + 0.33vw, 1.33rem);
  --text-xl: clamp(1.35rem, 1.22rem + 0.6vw, 1.7rem);
  --text-2xl: clamp(1.7rem, 1.45rem + 1.1vw, 2.35rem);
  --text-3xl: clamp(2.1rem, 1.7rem + 1.9vw, 3.2rem);
  --text-4xl: clamp(2.6rem, 1.95rem + 3vw, 4.4rem);

  /* Spacing scale */
  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem; --sp-7: 3rem; --sp-8: 4rem;
  --sp-9: 6rem; --sp-10: 8rem;

  --section-y: clamp(4rem, 3rem + 5vw, 8rem);
  --container: 76rem;
  --radius: 1.1rem;
  --radius-lg: 1.6rem;

  --dur-fast: 160ms;
  --dur: 280ms;
  --dur-slow: 600ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-card: 0 1px 2px rgba(17, 17, 17, 0.05), 0 12px 32px -12px rgba(17, 17, 17, 0.12);
}

/* ————— Fonts (self-hosted variable) ————— */
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-var.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}

/* ————— Reset ————— */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "cv11";
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; }
a { color: inherit; }
ul[class], ol[class],
nav ul, nav ol { list-style: none; padding: 0; }
address { font-style: normal; }

h1, h2, h3, h4 { line-height: 1.12; text-wrap: balance; font-weight: 650; }

/* ————— Utilities ————— */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.container.narrow { max-width: 52rem; }

.display { letter-spacing: -0.02em; font-weight: 630; }
.bluestop::after { content: "."; color: var(--point); }
.on-dark .bluestop::after { color: var(--point-soft); }
.point { color: var(--point); }

.eyebrow {
  display: block;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 560;
  font-size: var(--text-xs);
  color: var(--muted);
  margin-bottom: var(--sp-4);
}
.on-dark .eyebrow { color: var(--muted-dark); }

.section { padding-block: var(--section-y); }
.section-fog { background: var(--fog); }
.section-dark { background: var(--ink); color: #fff; }

.lede { font-size: var(--text-lg); color: #3d3d40; max-width: 46rem; }
.on-dark .lede, .section-dark .lede { color: var(--muted-dark); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 0.8rem 1.4rem;
  border-radius: 99px;
}
.skip-link:focus { left: 1rem; top: 1rem; }

:focus-visible {
  outline: 2px solid var(--point);
  outline-offset: 3px;
  border-radius: 3px;
}
.on-dark :focus-visible, .section-dark :focus-visible { outline-color: var(--point-soft); }

::selection { background: var(--point); color: #fff; }

/* ————— Buttons ————— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border-radius: 99px;
  border: 1.5px solid transparent;
  font-weight: 570;
  font-size: var(--text-sm);
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.btn:active { transform: scale(0.97); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #000; }
.btn-blue { background: var(--point); color: #fff; }
.btn-blue:hover { background: #0052cc; }
.btn-ghost { border-color: rgba(17,17,17,0.22); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); }
.btn-ghost-light { border-color: rgba(255,255,255,0.28); color: #fff; background: transparent; }
.btn-ghost-light:hover { border-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ————— Header ————— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(17,17,17,0.07);
}
.header-row {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  min-height: 4.25rem;
}
.header-logo { flex: 0 0 auto; display: block; }
.header-logo img { height: 30px; width: auto; }
.header-nav { margin-left: auto; }
.header-nav ul { display: flex; gap: clamp(0.9rem, 2vw, 1.9rem); }
.header-nav a {
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 530;
  color: #3d3d40;
  padding: 0.5rem 0.15rem;
}
.header-nav a:hover, .header-nav a[aria-current="page"] { color: var(--ink); }
.header-nav a[aria-current="page"] { box-shadow: 0 2px 0 var(--point); }
.header-cta { flex: 0 0 auto; }

/* Mobile nav (details/summary — works without JS) */
.mobile-nav { position: relative; display: none; margin-left: auto; }
.mobile-nav summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.5rem 1.1rem;
  border: 1.5px solid rgba(17,17,17,0.16);
  border-radius: 99px;
  font-size: var(--text-sm);
  font-weight: 560;
  cursor: pointer;
  user-select: none;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav-icon {
  width: 16px; height: 2px; background: var(--ink); position: relative; border-radius: 2px;
}
.mobile-nav-icon::before, .mobile-nav-icon::after {
  content: ""; position: absolute; left: 0; width: 16px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: transform var(--dur-fast);
}
.mobile-nav-icon::before { top: -5px; }
.mobile-nav-icon::after { top: 5px; }
.mobile-nav[open] .mobile-nav-icon { background: transparent; }
.mobile-nav[open] .mobile-nav-icon::before { transform: translateY(5px) rotate(45deg); }
.mobile-nav[open] .mobile-nav-icon::after { transform: translateY(-5px) rotate(-45deg); }
.mobile-nav nav {
  position: absolute;
  right: 0;
  top: calc(100% + 0.75rem);
  min-width: 17rem;
  background: var(--paper);
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -20px rgba(17,17,17,0.25);
  padding: 0.6rem;
}
.mobile-nav nav a {
  display: block;
  padding: 0.7rem 1rem;
  border-radius: 0.6rem;
  text-decoration: none;
  font-weight: 530;
  font-size: var(--text-sm);
}
.mobile-nav nav a:hover { background: var(--fog); }

@media (max-width: 940px) {
  .header-nav, .header-cta { display: none; }
  .mobile-nav { display: block; }
}

/* ————— Breadcrumbs ————— */
.breadcrumbs { padding-top: var(--sp-5); font-size: var(--text-xs); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.35rem; color: var(--muted); }
.breadcrumbs li + li::before { content: "/"; margin-right: 0.35rem; color: rgba(17,17,17,0.25); }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 550; }

/* ————— Hero ————— */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: clip;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: var(--sp-6);
  padding-block: clamp(4.5rem, 4rem + 6vw, 9rem);
  max-width: 44rem;
}
.hero h1 {
  font-size: var(--text-4xl);
  letter-spacing: -0.022em;
  font-weight: 640;
  line-height: 1.04;
}
.hero .lede { font-size: var(--text-lg); color: var(--muted-dark); max-width: 36rem; }
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-visual::after {
  /* legibility scrim, solid → transparent via long-hand rgba stops (not a decorative gradient) */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.55) 48%, rgba(17,17,17,0.15) 100%);
}
.hero-visual img, .hero-visual picture { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-visual img { object-position: 72% center; }
#hero-3d { position: absolute; inset: 0; }
#hero-3d canvas { width: 100%; height: 100%; display: block; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  font-size: var(--text-sm);
  color: var(--muted-dark);
}
.hero-meta strong { color: #fff; font-weight: 600; }

@media (max-width: 720px) {
  .hero-visual img { object-position: 78% center; opacity: 0.55; }
  .hero-visual::after {
    background: linear-gradient(180deg, rgba(17,17,17,0.6) 0%, rgba(17,17,17,0.82) 70%, rgba(17,17,17,0.95) 100%);
  }
}

/* ————— Cards & grids ————— */
.grid-2 { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fit, minmax(min(21rem, 100%), 1fr)); }
.grid-3 { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fit, minmax(min(17rem, 100%), 1fr)); }
.grid-4 { display: grid; gap: var(--sp-4); grid-template-columns: repeat(auto-fit, minmax(min(12rem, 100%), 1fr)); }

.card {
  background: var(--paper);
  border: 1px solid rgba(17,17,17,0.07);
  border-radius: var(--radius);
  padding: var(--sp-6);
  box-shadow: var(--shadow-card);
}
.section-dark .card, .on-dark .card {
  background: var(--ink-soft);
  border-color: var(--hairline-dark);
  box-shadow: none;
}

.card h3 { font-size: var(--text-lg); margin-bottom: var(--sp-2); }
.card p { color: #4a4a4e; font-size: var(--text-sm); }
.section-dark .card p { color: var(--muted-dark); }

/* Service cards */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  text-decoration: none;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(17,17,17,0.05), 0 24px 48px -16px rgba(17,17,17,0.18);
}
.service-card .icon {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--fog);
  color: var(--ink);
}
.service-card .icon svg { width: 24px; height: 24px; }
.service-card .more {
  margin-top: auto;
  font-size: var(--text-sm);
  font-weight: 570;
  color: var(--point);
}

/* Media card (image + text) */
.media-card { overflow: clip; padding: 0; }
.media-card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.media-card .media-body { padding: var(--sp-5) var(--sp-6) var(--sp-6); }

/* ————— Process timeline ————— */
.process {
  counter-reset: step;
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
}
.process li {
  counter-increment: step;
  position: relative;
  padding: var(--sp-5);
  border: 1px solid var(--hairline-dark);
  border-radius: var(--radius);
}
.process li::before {
  content: "0" counter(step);
  font-family: var(--font-num);
  font-weight: 650;
  font-size: var(--text-sm);
  color: var(--point-soft);
  letter-spacing: 0.1em;
}
.process h3 { font-size: var(--text-lg); margin: var(--sp-2) 0; }
.process p { color: var(--muted-dark); font-size: var(--text-sm); }
.section:not(.section-dark) .process li { border-color: rgba(17,17,17,0.1); }
.section:not(.section-dark) .process li::before { color: var(--point); }
.section:not(.section-dark) .process p { color: #4a4a4e; }

/* ————— FAQ ————— */
.faq-list { display: grid; gap: var(--sp-3); margin-top: var(--sp-6); }
.faq-item {
  border: 1px solid rgba(17,17,17,0.09);
  border-radius: var(--radius);
  background: var(--paper);
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: 1.1rem 1.4rem;
  font-weight: 570;
  cursor: pointer;
  min-height: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-marker {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  position: relative;
}
.faq-marker::before, .faq-marker::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--point);
  transition: transform var(--dur-fast) var(--ease-out);
}
.faq-marker::before { width: 12px; height: 2px; }
.faq-marker::after { width: 2px; height: 12px; }
.faq-item[open] .faq-marker::after { transform: rotate(90deg); }
.faq-body { padding: 0 1.4rem 1.3rem; color: #4a4a4e; font-size: var(--text-sm); max-width: 60ch; }

/* ————— CTA band ————— */
.cta-band {
  background: var(--ink);
  color: #fff;
  padding-block: var(--section-y);
}
.cta-band h2 { font-size: var(--text-3xl); }
.cta-band-sub { color: var(--muted-dark); margin-top: var(--sp-3); max-width: 40rem; }
.cta-band-grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
  margin-top: var(--sp-7);
}
.cta-band-card {
  border: 1px solid var(--hairline-dark);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
}
.cta-band-card h3 { font-size: var(--text-xl); }
.cta-band-addr { color: var(--muted-dark); font-size: var(--text-sm); margin: var(--sp-2) 0 var(--sp-5); }

/* ————— Footer ————— */
.site-footer {
  background: var(--ink);
  color: #fff;
  border-top: 1px solid var(--hairline-dark);
  padding-block: var(--sp-9) var(--sp-7);
}
.footer-grid {
  display: grid;
  gap: var(--sp-7) var(--sp-6);
  grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
}
.footer-brand { max-width: 22rem; }
.footer-brand img { height: 32px; width: auto; }
.footer-tag { margin-top: var(--sp-4); font-weight: 600; letter-spacing: -0.01em; }
.footer-desc { color: var(--muted-dark); font-size: var(--text-sm); margin-top: var(--sp-2); }
.footer-social { display: flex; gap: var(--sp-4); margin-top: var(--sp-4); }
.footer-social a { color: var(--muted-dark); font-size: var(--text-sm); text-decoration: none; }
.footer-social a:hover { color: #fff; }
.footer-h {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dark);
  font-weight: 560;
  margin-bottom: var(--sp-4);
}
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col a { color: #d9d9de; text-decoration: none; font-size: var(--text-sm); }
.footer-col a:hover { color: #fff; }
.footer-nap address, .footer-nap p { color: #d9d9de; font-size: var(--text-sm); line-height: 1.7; }
.footer-nap a { color: #fff; }
.footer-hours { color: var(--muted-dark); margin-block: var(--sp-2); }
.footer-legal {
  margin-top: var(--sp-8);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--hairline-dark);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: space-between;
  color: var(--muted-dark);
  font-size: var(--text-xs);
}
.footer-legal ul { display: flex; gap: var(--sp-4); }
.footer-legal a { color: var(--muted-dark); text-decoration: none; }
.footer-legal a:hover { color: #fff; }

/* ————— Mobile action bar ————— */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: none;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 1px;
  background: rgba(17,17,17,0.98);
  backdrop-filter: blur(10px);
  padding-bottom: env(safe-area-inset-bottom);
  border-top: 1px solid var(--hairline-dark);
}
.mobile-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 56px;
  color: #fff;
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 570;
}
.mobile-bar-wa { color: #fff; background: var(--point); }
@media (max-width: 720px) {
  .mobile-bar { display: grid; }
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom)); }
}

/* ————— Forms ————— */
.form-grid { display: grid; gap: var(--sp-4); }
.form-row { display: grid; gap: var(--sp-4); grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr)); }
.field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 570;
  margin-bottom: 0.4rem;
}
.field .hint { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 1rem;
  border: 1.5px solid rgba(17,17,17,0.16);
  border-radius: 0.75rem;
  background: #fff;
  color: var(--ink);
  transition: border-color var(--dur-fast);
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--point);
  box-shadow: 0 0 0 3px rgba(0,102,255,0.15);
}
.field .error { color: #c62828; font-size: var(--text-xs); margin-top: 0.3rem; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #c62828; }
.form-note { font-size: var(--text-xs); color: var(--muted); }
.form-status {
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--text-sm);
  font-weight: 530;
}
.form-status.ok { background: rgba(0,200,83,0.1); color: #00691f; border: 1px solid rgba(0,200,83,0.35); }
.form-status.err { background: rgba(198,40,40,0.07); color: #b3261e; border: 1px solid rgba(198,40,40,0.3); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ————— NAP block ————— */
.nap-block {
  display: grid;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  line-height: 1.7;
}
.nap-block .nap-name { font-weight: 620; font-size: var(--text-base); }
.nap-label {
  display: inline-block;
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 580;
  color: var(--point);
  margin-bottom: var(--sp-1);
}

/* ————— Tables (rate/spec) ————— */
.spec-table { width: 100%; border-collapse: collapse; font-size: var(--text-sm); }
.spec-table th, .spec-table td { text-align: left; padding: 0.8rem 1rem; border-bottom: 1px solid rgba(17,17,17,0.09); }
.spec-table th { font-weight: 600; }

/* ————— Reveal animation (JS-gated; content visible without JS) ————— */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
  }
  html.js .reveal.is-visible { opacity: 1; transform: none; }
  html.js .reveal-stagger > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
  }
  html.js .reveal-stagger.is-visible > * { opacity: 1; transform: none; }
  html.js .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
  html.js .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
  html.js .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
  html.js .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
  html.js .reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }
}

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

/* ————— Page hero (interior pages) ————— */
.page-hero { padding-block: clamp(3rem, 2.4rem + 3vw, 5.5rem) var(--sp-7); }
.page-hero h1 { font-size: var(--text-3xl); letter-spacing: -0.02em; max-width: 46rem; }
.page-hero .lede { margin-top: var(--sp-4); }

/* ————— Misc ————— */
.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-4);
}
.brand-strip li {
  border: 1px solid rgba(17,17,17,0.12);
  border-radius: 99px;
  padding: 0.45rem 1.1rem;
  font-size: var(--text-sm);
  color: #3d3d40;
  font-weight: 530;
}
.section-dark .brand-strip li { border-color: var(--hairline-dark); color: var(--muted-dark); }

.check-list { display: grid; gap: var(--sp-3); }
.check-list li { display: flex; gap: 0.75rem; align-items: flex-start; }
.check-list .tick {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(0,200,83,0.12);
  color: #00691f;
  display: grid;
  place-items: center;
}
.section-dark .check-list .tick { background: rgba(0,200,83,0.16); color: var(--signal); }
.check-list .tick svg { width: 12px; height: 12px; }

.map-embed {
  border: 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  background: var(--fog);
}

.stat-row { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fit, minmax(min(10rem, 100%), 1fr)); }
.stat-row .stat b {
  display: block;
  font-family: var(--font-num);
  font-size: var(--text-2xl);
  font-weight: 680;
  letter-spacing: -0.01em;
}
.stat-row .stat span { color: var(--muted); font-size: var(--text-sm); }
.section-dark .stat-row .stat span { color: var(--muted-dark); }

.prose { max-width: 46rem; }
.prose h2 { font-size: var(--text-xl); margin: var(--sp-6) 0 var(--sp-3); }
.prose h3 { font-size: var(--text-lg); margin: var(--sp-5) 0 var(--sp-2); }
.prose p, .prose li { color: #333336; }
.prose p + p { margin-top: var(--sp-3); }
.prose ul, .prose ol { padding-left: 1.2rem; margin-block: var(--sp-3); display: grid; gap: 0.5rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose a { color: var(--point); }

.pill-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill-list li {
  background: var(--fog);
  border-radius: 99px;
  padding: 0.4rem 1rem;
  font-size: var(--text-sm);
}

/* Horizontal scroll snap for gallery on mobile */
.snap-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(20rem, 82vw);
  gap: var(--sp-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--sp-3);
  scrollbar-width: none;
}
.snap-row::-webkit-scrollbar { display: none; }
.snap-row > * { scroll-snap-align: start; }

@media (min-width: 940px) {
  .snap-row {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
  }
}
