/* ==========================================================
   Accountability Elevator Consultants
   One stylesheet for every page.

   Layout reference: the Struxel template, played straight, in AEC's
   own black and white. Cardo for display, Rubik for everything else.
   No accent colour: hierarchy comes from scale, weight and black fields.
   ========================================================== */

:root {
  --ink: #141414;
  --ink-2: #2a2a2a;
  --white: #ffffff;
  --ground: #f5f5f4;          /* the split hero's left half, quiet bands */
  --rule: #e2e2e0;
  --rule-dark: rgba(255, 255, 255, 0.14);
  --text: #4d4d4d;            /* body copy on white: 8.6:1 */
  --label: #6b6b6b;           /* small labels: 5.3:1 on white, 4.9:1 on ground */
  --on-dark: #c9c9c9;         /* body copy on ink: 11:1 */
  --on-dark-2: #9a9a9a;       /* labels on ink: 6.4:1 */

  --display: 'Cardo', Georgia, 'Times New Roman', serif;
  --body: 'Rubik', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --pill: 999px;

  --shadow-float: 0 18px 44px -20px rgba(20, 20, 20, 0.38);
  --shadow-card: 0 26px 60px -28px rgba(20, 20, 20, 0.45);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --wrap: 1320px;
  --gutter: clamp(20px, 4vw, 48px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; }
::selection { background: var(--ink); color: var(--white); }

/* The parts of the browser the design would otherwise leave to defaults. */
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 4px; }
.on-dark :focus-visible, .band-dark :focus-visible, footer :focus-visible { outline-color: var(--white); }
html { scrollbar-color: #9a9a9a var(--ground); }
input, textarea, select { caret-color: var(--ink); }

h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
p { text-wrap: pretty; }
/* Only Rubik Light is loaded: never let the browser fake a heavier weight. */
b, strong { font-weight: 300; }
body { font-synthesis: none; }
.num { font-variant-numeric: tabular-nums lining-nums; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.skip-link {
  position: absolute; left: -9999px; top: 12px; z-index: 1000;
  background: var(--ink); color: var(--white); padding: 12px 20px;
  border-radius: var(--pill); text-decoration: none; font-size: 14px;
}
.skip-link:focus { left: 16px; }

/* ==========================================================
   NAV — Struxel's floating white pill
   ========================================================== */
.nav-shell { position: fixed; top: 16px; left: 0; right: 0; z-index: 200; padding: 0 var(--gutter); pointer-events: none; }
.nav {
  pointer-events: auto;
  max-width: var(--wrap); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: var(--white);
  border-radius: var(--pill);
  padding: 7px 9px 7px 22px;
  box-shadow: var(--shadow-float);
  transition: box-shadow 0.3s var(--ease);
}
.nav.scrolled { box-shadow: 0 18px 44px -18px rgba(20, 20, 20, 0.5); }

.lockup { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.lockup img { height: 38px; width: auto; flex: none; }
.lockup .words { display: flex; flex-direction: column; line-height: 1; }
.lockup .name { font-family: var(--display); font-size: 23px; letter-spacing: 0.01em; }
.lockup .tag { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text); margin-top: 5px; }
footer .lockup { color: var(--white); }
footer .lockup .tag { color: var(--on-dark); }
footer .lockup img { height: 44px; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  display: block; padding: 10px 16px; border-radius: var(--pill);
  font-size: 15px; font-weight: 300; text-decoration: none; color: var(--ink);
  transition: background-color 0.2s var(--ease);
}
.nav-links a:hover { background: var(--ground); }
.nav-links a[aria-current="page"] { background: var(--ground); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-phone { font-size: 15px; font-weight: 300; text-decoration: none; padding: 10px 14px; font-variant-numeric: tabular-nums; }
.nav-phone:hover { text-decoration: underline; text-underline-offset: 4px; }

.menu-btn { display: none; width: 46px; height: 46px; border: none; background: var(--ground); border-radius: 50%; cursor: pointer; position: relative; }
.menu-btn span { position: absolute; left: 14px; right: 14px; height: 1.5px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.2s; }
.menu-btn span:nth-child(1) { top: 17px; } .menu-btn span:nth-child(2) { top: 22px; } .menu-btn span:nth-child(3) { top: 27px; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: 86px; left: var(--gutter); right: var(--gutter); z-index: 190;
  background: var(--white); border-radius: var(--r-lg); padding: 14px; box-shadow: var(--shadow-card);
}
.mobile-menu.open { display: block; }
.mobile-menu a:not(.pill) { display: block; padding: 15px 16px; border-radius: var(--r-sm); text-decoration: none; font-size: 17px; }
.mobile-menu a:not(.pill):hover, .mobile-menu a:not(.pill)[aria-current="page"] { background: var(--ground); }
.mobile-menu .pill { display: flex; margin-top: 8px; width: 100%; justify-content: space-between; font-size: 16px; }

/* ==========================================================
   PILL BUTTON — Struxel's label plus circled arrow
   ========================================================== */
.pill {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--ink); color: var(--white);
  font-family: var(--body); font-size: 15px; font-weight: 300;
  text-decoration: none; border: none; cursor: pointer;
  padding: 7px 7px 7px 24px; border-radius: var(--pill);
  transition: background-color 0.25s var(--ease), transform 0.15s var(--ease);
  white-space: nowrap;
}
/* The circle is an elevator call button. The ring is a real circle drawn by
   ::before (not stacked shadows), so it stays crisp and perfectly round, and
   every effect sits inside the button, so it reads the same on any background.
   Resting: a dark ring. Hover, focus, press: the ring lights white. */
.pill .arrow, .svc-row .go {
  position: relative; box-sizing: border-box;
  width: 38px; height: 38px; flex: 0 0 38px; aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center;
  background: #0b0b0b;
  box-shadow: inset 0 0 0 1px #3a3a3a;
}
.pill .arrow::before, .svc-row .go::before {
  content: ""; position: absolute; inset: 3px; border-radius: 50%;
  border: 1.5px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  pointer-events: none;
}
.pill .arrow svg, .svc-row .go svg {
  position: relative; width: 13px; height: 13px; fill: none; stroke: var(--white); stroke-width: 1.6;
  transition: filter 0.3s var(--ease);
}
.pill:hover .arrow::before, .pill:focus-visible .arrow::before,
.svc-row:hover .go::before, .svc-row:focus-visible .go::before {
  border-color: #fff;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.55), inset 0 0 6px rgba(255, 255, 255, 0.35);
}
.pill:hover .arrow svg, .pill:focus-visible .arrow svg,
.svc-row:hover .go svg, .svc-row:focus-visible .go svg { filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.8)); }
.pill:active .arrow::before, .svc-row:active .go::before {
  border-color: #fff; border-width: 2px;
  box-shadow: 0 0 9px rgba(255, 255, 255, 0.8), inset 0 0 8px rgba(255, 255, 255, 0.5);
}

.pill:hover { background: var(--ink-2); }
.pill:active { transform: translateY(1px); }
.pill.light { background: var(--white); color: var(--ink); }
.pill.light:hover { background: #ececea; }
.pill.ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.pill.ghost:hover { background: var(--ground); }

.text-link { font-size: 15px; font-weight: 300; text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.text-link:hover { text-decoration-thickness: 2px; }

/* ==========================================================
   SECTIONS
   ========================================================== */
.section { padding: clamp(80px, 9vw, 130px) 0; }
.section.tight { padding: clamp(60px, 7vw, 96px) 0; }
.section.ground { background: var(--ground); }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head h2 { font-size: clamp(32px, 3.4vw, 48px); margin-bottom: 18px; }
.section-head p { font-size: 18px; color: var(--text); max-width: 58ch; }
.section-head.split { max-width: none; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 32px; }
.lede { font-size: clamp(17px, 1.3vw, 19px); color: var(--text); }

.band-dark { background: var(--ink); color: var(--white); }
.band-dark h2, .band-dark h3 { color: var(--white); }
.band-dark p { color: var(--on-dark); }

/* ==========================================================
   HOME HERO — full-bleed colour video, one message per slide
   ========================================================== */
.hero { position: relative; min-height: max(640px, min(92vh, 56.25vw)); min-height: max(640px, min(92svh, 56.25vw)); display: flex; flex-direction: column; justify-content: flex-end; color: var(--white); background: #1c1c1c; overflow: hidden; }
.hero-media { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s var(--ease); }
.hero-media.is-on { opacity: 1; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(14,14,14,0.82) 0%, rgba(14,14,14,0.55) 45%, rgba(14,14,14,0.12) 100%),
              linear-gradient(0deg, rgba(14,14,14,0.6) 0%, rgba(14,14,14,0) 40%); }
.hero-inner { position: relative; z-index: 2; width: 100%; padding-top: 150px; padding-bottom: 40px; }
.hero-copy { display: grid; max-width: 680px; }
.hero-copy .slide { grid-area: 1 / 1; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), visibility 0.6s; }
.hero-copy .slide.is-on { opacity: 1; visibility: visible; transform: none; }
.hero h1, .hero .slide h2 { font-size: clamp(42px, 5vw, 76px); color: var(--white); max-width: 14ch; margin-bottom: 22px; }
.hero .lede { color: #e4e4e4; max-width: 46ch; margin-bottom: 34px; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero .text-link { color: var(--white); }
.hero-tabs { display: flex; gap: 6px; margin-top: 64px; max-width: 720px; }
.hero-tab {
  flex: 1; text-align: left; background: none; border: none; cursor: pointer;
  padding: 14px 0 0; position: relative; color: #b8b8b8;
  font-size: 14px; font-weight: 300; line-height: 1.35;
  transition: color 0.25s var(--ease);
}
.hero-tab::before { content: ""; position: absolute; left: 0; right: 10px; top: 0; height: 2px; background: rgba(255,255,255,0.28); }
.hero-tab::after { content: ""; position: absolute; left: 0; right: 10px; top: 0; height: 2px; background: var(--white); transform: scaleX(0); transform-origin: left; }
.hero-tab:hover, .hero-tab[aria-selected="true"] { color: var(--white); }
.hero-tab[aria-selected="true"]::after { transform: scaleX(1); }
.hero-tab[aria-selected="true"].is-timing::after { animation: tabfill var(--dwell, 9s) linear forwards; }
@keyframes tabfill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hero :focus-visible { outline-color: var(--white); }

/* Proof strip under the hero */
.proof { border-bottom: 1px solid var(--rule); }
.proof .wrap { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.proof .wrap > div { padding: 30px 24px 28px 0; }
.proof .wrap > div + div { padding-left: 24px; border-left: 1px solid var(--rule); }
.proof b { display: block; font-family: var(--display); font-weight: 400; font-size: 26px; line-height: 1.15; margin-bottom: 4px; }
.proof span { font-size: 14.5px; color: var(--text); }

/* Three steps, one line each */
.steps3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--ink); }
.steps3 div { padding: 26px 30px 0 0; }
.steps3 div + div { padding-left: 30px; border-left: 1px solid var(--rule); }
.steps3 h3 { font-size: 28px; margin-bottom: 8px; }
.steps3 p { color: var(--text); font-size: 16px; }

/* Slim region strip */
.region-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.region-strip .region-tile { aspect-ratio: 16 / 9; }
.region-tile { position: relative; display: block; aspect-ratio: 4 / 3; border-radius: var(--r-md); overflow: hidden; color: var(--white); text-decoration: none; background: var(--ink); }
.region-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.region-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(14,14,14,0.88) 0%, rgba(14,14,14,0.35) 55%, rgba(14,14,14,0) 80%); }
.region-tile .label { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 1; }
.region-tile h3 { font-size: 24px; color: var(--white); }
.region-tile span { font-size: 13.5px; color: #dcdcdc; }
.region-tile:hover img { transform: scale(1.05); }
.region-tile.national::after { display: none; }
.region-tile.national .label { top: 20px; display: flex; flex-direction: column; justify-content: flex-end; }


.steps3.dark { border-top-color: var(--white); }
.steps3.dark div + div { border-left-color: var(--rule-dark); }
.steps3.dark p { color: var(--on-dark); }


/* ==========================================================
   INTERIOR PAGE HERO — the same split, smaller, one image
   ========================================================== */
.page-hero { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: min(78vh, 780px); min-height: min(78svh, 780px); }
.page-hero .hero-left {
  background: var(--ground); display: flex; flex-direction: column; justify-content: center;
  padding: clamp(130px, 15vh, 170px) clamp(28px, 5vw, 72px) 64px max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter)));
}
.page-hero .hero-right { position: relative; overflow: hidden; background: #1c1c1c; min-height: 480px; }
.page-hero .hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.page-hero h1 { font-size: clamp(40px, 4.2vw, 64px); max-width: 15ch; margin-bottom: 22px; }
.page-hero .lede { max-width: 46ch; margin-bottom: 32px; }
.page-hero .hero-right img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.crumbs { font-size: 13px; color: var(--label); margin-bottom: 22px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; text-underline-offset: 3px; }
.crumbs span { margin: 0 8px; }

/* ==========================================================
   ABOUT SPLIT
   ========================================================== */
.about-split { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.about-split h2 { font-size: clamp(32px, 3.4vw, 48px); margin-bottom: 24px; max-width: 16ch; }
.about-split p { color: var(--text); margin-bottom: 18px; max-width: 58ch; }
.about-split .figure { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 5; }
.about-split .figure img { width: 100%; height: 100%; object-fit: cover; }
.about-split .figure figcaption {
  position: absolute; left: 0; bottom: 0; background: var(--ink); color: var(--white);
  padding: 22px 26px; max-width: 280px; font-size: 14px; line-height: 1.5; color: var(--on-dark);
}
.about-split .figure figcaption b { display: block; font-family: var(--display); font-weight: 400; font-size: 36px; color: var(--white); line-height: 1; margin-bottom: 8px; font-variant-numeric: tabular-nums; }
.facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin-top: 34px; border-top: 1px solid var(--rule); }
.facts div { padding: 20px 20px 4px 0; }
.facts b { display: block; font-family: var(--display); font-weight: 400; font-size: 20px; }
.facts span { font-size: 14px; color: var(--label); }

/* ==========================================================
   THE CASE — dark band with ruled points
   ========================================================== */
.case h2 { font-size: clamp(34px, 3.8vw, 54px); max-width: 17ch; margin-bottom: 22px; }
.case .lede { color: var(--on-dark); max-width: 58ch; }
.case-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin-top: 64px; border-top: 1px solid var(--rule-dark); }
.case-grid > div { padding: 30px 34px 0 0; }
.case-grid > div + div { padding-left: 34px; border-left: 1px solid var(--rule-dark); }
.case-grid h3 { font-size: 24px; margin-bottom: 12px; }
.case-grid p { font-size: 15.5px; color: var(--on-dark); }

/* ==========================================================
   SERVICE ROWS — Struxel's list, without the numbers
   ========================================================== */
.svc-list { border-top: 1px solid var(--rule); }
.svc-row {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr) 46px; align-items: center; gap: 32px;
  padding: 26px 0; border-bottom: 1px solid var(--rule);
  text-decoration: none; color: var(--ink);
  transition: padding 0.35s var(--ease), background-color 0.35s var(--ease);
}
.svc-row h3 { font-size: clamp(22px, 2vw, 28px); }
.svc-row p { font-size: 15.5px; color: var(--text); }
.svc-row:hover { padding-left: 16px; padding-right: 16px; background: var(--ground); }
.svc-row.lead h3 { font-size: clamp(26px, 2.6vw, 36px); }
.svc-row .start { display: block; font-family: var(--body); font-size: 12px; font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase; color: var(--label); margin-top: 6px; }

/* ==========================================================
   AUDIT CALCULATOR — math unchanged from the original
   ========================================================== */
.calc { position: relative; overflow: hidden; }
.calc::before {
  content: ""; position: absolute; inset: 0;
  background: url('images/calculator-bg.jpg') center / cover no-repeat;
  opacity: 0.1;
}
.calc::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--ground) 0%, rgba(245,245,244,0.55) 45%, var(--ground) 100%); }
.calc .wrap { position: relative; z-index: 1; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.calc-fields { display: grid; gap: 30px; }
.calc-field label { display: block; font-size: 12px; font-weight: 300; letter-spacing: 0.16em; text-transform: uppercase; color: var(--label); margin-bottom: 8px; }
.calc-field input, .calc-field select {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid #bdbdbb; border-radius: 0;
  padding: 10px 2px; font-family: var(--body); font-size: 24px; font-weight: 300; color: var(--ink);
  -webkit-appearance: none; appearance: none; font-variant-numeric: tabular-nums;
  transition: border-color 0.2s var(--ease);
}
.calc-field input:focus, .calc-field select:focus { outline: none; border-bottom-color: var(--ink); }
.calc-field select { cursor: pointer; padding-right: 30px;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 16px) 55%, calc(100% - 10px) 55%; background-size: 6px 6px; background-repeat: no-repeat; }
.calc-field .prefix { position: relative; }
.calc-field .prefix span { position: absolute; left: 2px; top: 12px; font-size: 24px; color: var(--label); }
.calc-field .prefix input { padding-left: 24px; }
.calc-result { background: var(--ink); color: var(--white); border-radius: var(--r-lg); padding: clamp(32px, 4vw, 52px); }
.calc-result .label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-2); margin-bottom: 16px; }
.calc-result .range { font-family: var(--display); font-size: clamp(36px, 4vw, 56px); line-height: 1.1; margin-bottom: 6px; font-variant-numeric: tabular-nums; min-height: 1.1em; }
.calc-result .per-year { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-2); margin-bottom: 24px; }
.calc-result .detail { font-size: 15.5px; color: var(--on-dark); margin-bottom: 30px; }
.calc-result .detail strong { color: var(--white); font-weight: 300; }
.calc-result .fine { font-size: 13px; color: var(--on-dark-2); margin-top: 22px; line-height: 1.55; }
.calc-result .fine strong { color: var(--on-dark); font-weight: 300; }

/* ==========================================================
   REGION GRID — Struxel's project grid, holding regions
   ========================================================== */
.region-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.region-card { text-decoration: none; color: var(--ink); display: block; }
.region-card .shot { position: relative; aspect-ratio: 16 / 10; border-radius: var(--r-md); overflow: hidden; background: var(--ground); }
.region-card .shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.region-card:hover .shot img { transform: scale(1.04); }
.region-card .meta { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding-top: 16px; }
.region-card h3 { font-size: 26px; }
.region-card .who { font-size: 14px; color: var(--label); text-align: right; }
.region-card .card-sub { font-size: 15px; color: var(--text); margin-top: 6px; }
/* Photo at full strength; the line sits on a dark gradient along the bottom so it never covers the subject */
.region-card.national .shot { background: var(--ink); display: flex; align-items: flex-end; }
.region-grid .region-card.national .shot { position: relative; }
.region-card.national .shot img { position: absolute; inset: 0; }
.region-card.national .shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.35) 38%, rgba(10,10,10,0) 62%); }
.region-card.national .shot p { position: relative; z-index: 1; }
.region-card.national .shot p { font-family: var(--display); color: var(--white); font-size: clamp(20px, 1.8vw, 26px); line-height: 1.15; text-align: left; padding: 0 22px 18px; }

/* ==========================================================
   PROCESS — Struxel's "why clients trust us" list plus tall photo
   ========================================================== */
.process-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(40px, 6vw, 90px); align-items: stretch; }
.steps-list { display: flex; flex-direction: column; justify-content: flex-end; }
.step { border: 1px solid var(--rule); border-radius: var(--r-sm); margin-top: 12px; overflow: hidden; background: var(--white); }
.step summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; font-size: 18px; font-weight: 300; }
.step summary::-webkit-details-marker { display: none; }
.step summary svg { width: 13px; height: 13px; stroke: var(--ink); fill: none; stroke-width: 1.6; transition: transform 0.3s var(--ease); flex: none; }
.step[open] summary svg { transform: rotate(90deg); }
.step p { padding: 0 22px 20px; font-size: 15.5px; color: var(--text); }
.step[open] { border-color: var(--ink); }
.process-photo { border-radius: var(--r-lg); overflow: hidden; min-height: 460px; }
.process-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================
   FAQ
   ========================================================== */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(36px, 5vw, 80px); align-items: start; }
.faq-list details { border-bottom: 1px solid var(--rule); }
.faq-list details:first-child { border-top: 1px solid var(--rule); }
.faq-list summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-family: var(--display); font-size: 21px; line-height: 1.3; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .plus { position: relative; width: 14px; height: 14px; flex: none; }
.faq-list summary .plus::before, .faq-list summary .plus::after { content: ""; position: absolute; background: var(--ink); transition: transform 0.3s var(--ease); }
.faq-list summary .plus::before { left: 0; right: 0; top: 6px; height: 1.5px; }
.faq-list summary .plus::after { top: 0; bottom: 0; left: 6px; width: 1.5px; }
.faq-list details[open] summary .plus::after { transform: scaleY(0); }
.faq-list details p { padding: 0 40px 24px 0; color: var(--text); font-size: 16px; }

/* ==========================================================
   CONTACT — the question first, then who is asking
   ========================================================== */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 90px); align-items: start; }
.contact-direct { display: grid; gap: 26px; margin-top: 36px; }
.contact-direct a { display: block; text-decoration: none; }
.contact-direct .k { display: block; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--label); margin-bottom: 4px; }
.contact-direct .v { font-family: var(--display); font-size: clamp(26px, 2.6vw, 34px); line-height: 1.15; font-variant-numeric: tabular-nums; word-break: break-word; }
.contact-direct a:hover .v { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1px; }
.contact-direct p { font-size: 15px; color: var(--text); }
.contact-direct a[href^="mailto"] .v { font-size: clamp(19px, 1.8vw, 25px); }

.q-form { background: var(--ground); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 48px); display: grid; gap: 22px; }
.q-form .field { display: grid; gap: 7px; }
.q-form label { font-size: 13.5px; font-weight: 300; color: var(--ink); }
.q-form label .opt { color: var(--label); font-weight: 300; }
.q-form .hint { font-size: 13px; color: var(--label); }
.q-form input, .q-form textarea {
  width: 100%; font-family: var(--body); font-size: 16px; font-weight: 300; color: var(--ink);
  background: var(--white); border: 1px solid #cfcfcd; border-radius: var(--r-sm); padding: 14px 16px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.q-form input:focus, .q-form textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(20,20,20,0.12); }
.q-form textarea { min-height: 150px; resize: vertical; }
.q-form .question label { font-family: var(--display); font-size: clamp(24px, 2.2vw, 30px); line-height: 1.2; }
.q-form .question textarea { font-size: 17px; min-height: 170px; }
.q-form .pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.q-form .send { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.q-form .field.invalid input, .q-form .field.invalid textarea { border-color: #a4332a; }
.q-form .err { display: none; font-size: 13px; color: #a4332a; }
.q-form .field.invalid .err { display: block; }
.form-status { font-size: 15px; min-height: 22px; }
.form-status.ok { color: var(--ink); }
.form-status.err { color: #a4332a; }
.pill[disabled] { opacity: 0.55; cursor: default; }

/* ==========================================================
   COVERAGE MAP — Integrity's interactive map, in black and white
   ========================================================== */
.coverage .map-stage { position: relative; margin-top: 20px; }
.us-map { width: 100%; height: auto; }
.us-map .land { fill: #efefed; stroke: #d6d6d3; stroke-width: 0.8; stroke-linejoin: round; }
.coverage .pin { cursor: pointer; }
.coverage .pin .dot { fill: var(--ink); transition: r 0.25s var(--ease); }
.coverage .pin .ring { fill: none; stroke: var(--ink); stroke-width: 1.5; opacity: 0.5; transform-origin: center; transform-box: fill-box; animation: covpulse 2.8s ease-out infinite; }
@keyframes covpulse { 0% { opacity: .5; transform: scale(1); } 70% { opacity: 0; transform: scale(1.9); } 100% { opacity: 0; transform: scale(1.9); } }
.coverage .us-map.has-active .pin:not(.active) { opacity: 0.2; transition: opacity .25s; }
.coverage .pin.active .dot { r: 8; }
.us-map .pin-label { font-family: var(--body); font-size: 15px; font-weight: 300; letter-spacing: 0.14em; fill: #4d4d4d; transition: fill 0.25s; }
.coverage .pin.active .pin-label { fill: var(--ink); }
.coverage .atlas-card {
  /* bottom-left, over the Pacific and Mexico: the only corner with no pins under it */
  position: absolute; left: 0; bottom: 0; width: 290px; padding: 24px 26px;
  background: var(--ink); color: var(--white); border-radius: var(--r-md); box-shadow: var(--shadow-card);
}
.coverage .atlas-card .card-region { font-family: var(--display); font-size: 26px; margin-bottom: 8px; }
.coverage .atlas-card .card-cities { font-size: 14px; line-height: 1.65; color: var(--on-dark); }
.coverage .pin-link { cursor: pointer; }
.coverage .pin-link:focus { outline: none; }
.coverage .pin-link:focus-visible .dot { r: 8; }
.coverage .pin-link:focus-visible .pin-label { fill: var(--ink); text-decoration: underline; }
.coverage .atlas-card .card-hint { font-size: 13px; margin-top: 12px; color: var(--white); letter-spacing: 0.02em; }
.coverage .atlas-card .card-hint:empty { display: none; }
.region-list-head { margin-top: 56px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--label); }
.region-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin-top: 56px; border-top: 1px solid var(--rule); }
.region-list-head + .region-list { margin-top: 14px; }
.region-list.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.region-list > div { padding: 24px 24px 22px 0; border-bottom: 1px solid var(--rule); }
.region-list h3 { font-size: 21px; margin-bottom: 6px; }
.region-list p { font-size: 14.5px; color: var(--text); }
.region-list h3 a { text-decoration: none; }
.region-list h3 a::after { content: " \2192"; font-family: var(--body); font-size: 16px; }
.region-list h3 a:hover { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
@media (prefers-reduced-motion: reduce) { .coverage .pin .ring { animation: none; } }

/* ==========================================================
   REGIONAL PAGES
   ========================================================== */
.cities { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--rule); }
.cities > div { padding: 22px 22px 20px 0; border-bottom: 1px solid var(--rule); }
.cities h3 { font-size: 21px; margin-bottom: 4px; }
.cities p { font-size: 14.5px; color: var(--text); }
.buyer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.buyer { background: var(--white); border-radius: var(--r-md); padding: 30px 30px 26px; box-shadow: inset 0 0 0 1px var(--rule); }
.buyer { overflow: hidden; }
.buyer .pic { margin: -30px -30px 24px; aspect-ratio: 3 / 2; overflow: hidden; background: var(--ground); }
.buyer .pic img { width: 100%; height: 100%; object-fit: cover; }
.buyer h3 { font-size: 23px; margin-bottom: 10px; }
.buyer p { font-size: 15.5px; color: var(--text); }
.local-note { border-left: 1px solid var(--ink); padding-left: 24px; max-width: 64ch; }
.local-note h3 { font-size: 24px; margin-bottom: 10px; }
.local-note p { color: var(--text); }

.model-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.model { border-radius: var(--r-md); padding: 32px 30px; background: var(--ground); }
.model.dark { background: var(--ink); color: var(--white); }
.model.dark p { color: var(--on-dark); }
.model h3 { font-size: 25px; margin-bottom: 10px; }
.model p { font-size: 15.5px; color: var(--text); }

/* ==========================================================
   SERVICES BROWSER — grouped index, one service open at a time
   ========================================================== */
.explorer { display: grid; grid-template-columns: 290px minmax(0, 1fr); gap: clamp(32px, 4vw, 64px); align-items: start; }
.svc-index { position: sticky; top: 110px; }
.svc-index .grp + .grp { margin-top: 26px; }
.grp-name { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--label); margin-bottom: 8px; }
.svc-index ul { list-style: none; border-top: 1px solid var(--rule); }
.svc-link { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 14px 12px 0; border-bottom: 1px solid var(--rule); font-family: var(--display); font-size: 19px; line-height: 1.25; color: var(--text); text-decoration: none; transition: color 0.2s var(--ease), padding 0.25s var(--ease); }
.svc-link::after { content: ""; width: 7px; height: 7px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; transform: rotate(45deg); opacity: 0; transition: opacity 0.2s var(--ease); flex: none; }
.svc-link:hover { color: var(--ink); padding-left: 6px; }
.svc-link[aria-current="true"] { color: var(--ink); padding-left: 12px; box-shadow: inset 2px 0 0 var(--ink); }
.svc-link[aria-current="true"]::after { opacity: 1; }
.svc-help { margin-top: 30px; padding: 20px; background: var(--ground); border-radius: var(--r-md); }
.svc-help p { font-size: 14.5px; color: var(--text); margin-bottom: 8px; }
.svc-panels { display: grid; gap: 56px; }
.svc-panel { scroll-margin-top: 110px; }
.svc-panel .pic { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16 / 7; background: var(--ground); margin-bottom: 30px; }
.svc-panel .pic img { width: 100%; height: 100%; object-fit: cover; }
.svc-panel h2 { font-size: clamp(32px, 3.2vw, 44px); margin-bottom: 16px; }
.svc-panel .intro { font-size: 18px; color: var(--text); max-width: 62ch; }
.svc-panel .note { font-family: var(--display); font-style: italic; font-size: 20px; margin-top: 14px; }
.svc-panel h3 { font-family: var(--body); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--label); margin: 30px 0 4px; }
.svc-panel .gets { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 32px; }
.svc-panel .gets li { position: relative; padding: 12px 0 12px 22px; border-bottom: 1px solid var(--rule); font-size: 15.5px; line-height: 1.5; color: var(--ink); }
.svc-panel .gets li::before { content: ""; position: absolute; left: 0; top: 21px; width: 10px; height: 1.5px; background: var(--ink); }
.svc-panel .acts { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 30px; }
/* With the script running on a wide screen, one panel shows at a time. */
.explorer.is-live .svc-panel { display: none; }
.explorer.is-live .svc-panel.is-on { display: block; animation: panelin 0.35s var(--ease); }
@keyframes panelin { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (max-width: 980px) {
  .explorer { grid-template-columns: minmax(0, 1fr); }
  .svc-index { position: sticky; top: 84px; z-index: 5; background: var(--white); margin: 0 calc(var(--gutter) * -1); padding: 10px var(--gutter); display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; border-bottom: 1px solid var(--rule); }
  .svc-index .grp, .svc-index .grp + .grp { margin: 0; display: contents; }
  .svc-index .grp-name, .svc-help { display: none; }
  .svc-index ul { display: contents; }
  .svc-index li { flex: none; }
  .svc-link { padding: 8px 14px; border: none; border-radius: var(--pill); box-shadow: inset 0 0 0 1px var(--rule); font-family: var(--body); font-size: 14px; white-space: nowrap; }
  .svc-link::after { display: none; }
  .svc-link:hover { padding-left: 14px; }
  .svc-link[aria-current="true"] { padding-left: 14px; background: var(--ink); color: var(--white); box-shadow: none; }
  .svc-panel .gets { grid-template-columns: minmax(0, 1fr); }
  .svc-panel { scroll-margin-top: 150px; }
}

/* ==========================================================
   CREDENTIALS (about)
   ========================================================== */
.cred-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--rule); }
.cred-grid > div { padding: 28px 26px 26px 0; }
.cred-grid > div + div { padding-left: 26px; border-left: 1px solid var(--rule); }
.cred-grid h3 { font-size: 22px; margin-bottom: 10px; }
.cred-grid p { font-size: 15px; color: var(--text); }



/* Service detail pages */
.gets { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 32px; }
.gets li { position: relative; padding: 12px 0 12px 22px; border-bottom: 1px solid var(--rule); font-size: 15.5px; line-height: 1.5; color: var(--ink); }
.gets li::before { content: ""; position: absolute; left: 0; top: 21px; width: 10px; height: 1.5px; background: var(--ink); }
.narrow-split { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.narrow-split .section-head { margin-bottom: 0; }
.narrow-split .gets { grid-template-columns: minmax(0, 1fr); border-top: 1px solid var(--rule); }
.model-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stages { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.stage-block { background: var(--white); border-radius: var(--r-md); padding: 30px; box-shadow: inset 0 0 0 1px var(--rule); }
.stage-block h3 { font-size: 26px; margin-bottom: 10px; }
.stage-block > p { color: var(--text); font-size: 15.5px; margin-bottom: 16px; }
.stage-block .gets { grid-template-columns: minmax(0, 1fr); border-top: 1px solid var(--rule); }
@media (max-width: 980px) {
  .narrow-split, .stages { grid-template-columns: minmax(0, 1fr); }
  .model-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gets { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) { .model-grid.four { grid-template-columns: minmax(0, 1fr); } }

/* Case studies */
.case-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--rule-dark); }
.case-cards[data-count="1"] { grid-template-columns: minmax(0, 1fr); max-width: 520px; }
.case-cards[data-count="2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.case-card { padding: 30px 34px 4px 0; }
.case-card + .case-card { padding-left: 34px; border-left: 1px solid var(--rule-dark); }
.case-card .who { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-2); margin-bottom: 14px; }
.case-card .big { font-family: var(--display); font-size: clamp(38px, 3.6vw, 52px); line-height: 1; color: var(--white); }
.case-card .what { font-family: var(--display); font-size: 21px; color: var(--white); margin: 6px 0 14px; }
.case-card .story { font-size: 15.5px; color: var(--on-dark); }
.cred-grid.six { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cred-grid.six > div:nth-child(3n+1) { padding-left: 0; border-left: none; }
.cred-grid.six > div:nth-child(n+4) { border-top: 1px solid var(--rule); }
@media (max-width: 980px) {
  .case-cards, .case-cards[data-count="2"] { grid-template-columns: minmax(0, 1fr); }
  .case-card + .case-card { padding-left: 0; border-left: none; border-top: 1px solid var(--rule-dark); }
  .cred-grid.six { grid-template-columns: minmax(0, 1fr); }
  .cred-grid.six > div { border-top: 1px solid var(--rule); }
}

/* ==========================================================
   CLOSING BAND + FOOTER
   ========================================================== */
.closing { text-align: left; }
.closing .inner { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; }
.closing h2 { font-size: clamp(34px, 4vw, 58px); max-width: 17ch; }
.closing p { margin-top: 18px; max-width: 52ch; }
.closing .acts { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.closing .phone { font-family: var(--display); font-size: clamp(26px, 2.6vw, 36px); color: var(--white); text-decoration: none; font-variant-numeric: tabular-nums; }
.closing .phone:hover { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1px; }

footer.site { background: var(--ink); color: var(--on-dark); padding-top: 72px; overflow: hidden; }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--rule-dark); }
.foot-grid > div { padding: 30px 28px 34px 0; }
.foot-grid > div + div { padding-left: 28px; border-left: 1px solid var(--rule-dark); }
.foot-grid p { font-size: 14.5px; margin-top: 16px; max-width: 34ch; }
.foot-head { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-2); margin-bottom: 16px; }
.foot-grid ul { list-style: none; }
.foot-grid li { margin-bottom: 9px; }
.foot-grid a { color: var(--on-dark); text-decoration: none; font-size: 14.5px; }
.foot-grid a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.foot-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 0 26px; border-top: 1px solid var(--rule-dark); font-size: 13px; color: var(--on-dark-2); }
.foot-bottom a { color: var(--on-dark-2); text-decoration: none; margin-left: 18px; }
.foot-bottom a:hover { color: var(--white); }

/* ==========================================================
   LEGAL + 404
   ========================================================== */
.legal { padding: 170px 0 110px; }
.legal .wrap { max-width: 860px; }
.legal h1 { font-size: clamp(38px, 4vw, 56px); margin-bottom: 10px; }
.legal .updated { font-size: 13px; color: var(--label); margin-bottom: 48px; }
.legal h2 { font-size: 26px; margin: 42px 0 12px; padding-top: 26px; border-top: 1px solid var(--rule); }
.legal p, .legal li { color: var(--text); margin-bottom: 14px; }
.legal ul { padding-left: 20px; }
.legal a { text-underline-offset: 3px; }
.nf { min-height: 90vh; display: grid; place-items: center; text-align: center; padding: 140px 0 80px; background: var(--ground); }
.nf .code { font-family: var(--display); font-size: clamp(90px, 14vw, 180px); line-height: 1; margin-bottom: 12px; font-variant-numeric: tabular-nums; }
.nf h1 { font-size: clamp(30px, 3.4vw, 44px); margin-bottom: 16px; }
.nf p { color: var(--text); max-width: 48ch; margin: 0 auto 32px; }
.nf .acts { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================
   MOTION — one reveal, applied once; inert without JS
   ========================================================== */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@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; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .menu-btn { display: block; }
  .nav-right .pill { display: none; }
}
@media (max-width: 980px) {
  .page-hero { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .page-hero .hero-left { padding: 124px var(--gutter) 40px; }
  .proof .wrap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof .wrap > div { padding: 22px 16px 20px 0; }
  .proof .wrap > div:nth-child(even) { padding-left: 16px; }
  .proof .wrap > div:nth-child(3) { padding-left: 0; border-left: none; }
  .proof .wrap > div:nth-child(n+3) { border-top: 1px solid var(--rule); }
  .region-strip, .region-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-hero .hero-right { min-height: 380px; }
  .about-split, .process-grid, .faq-grid, .contact-grid, .calc-grid { grid-template-columns: minmax(0, 1fr); }
  .case-grid, .cred-grid { grid-template-columns: minmax(0, 1fr); }
  .case-grid > div + div, .cred-grid > div + div { padding-left: 0; border-left: none; border-top: 1px solid var(--rule-dark); }
  .cred-grid > div + div { border-top-color: var(--rule); }
  .svc-row { grid-template-columns: minmax(0, 1fr) 46px; }
  .svc-row p { grid-column: 1; grid-row: 2; }
  .svc-row .go { grid-column: 2; grid-row: 1 / span 2; }
  .buyer-grid, .model-grid, .region-list, .region-list.four, .cities { grid-template-columns: minmax(0, 1fr); }
  .foot-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .foot-grid > div:first-child { grid-column: 1 / -1; }
  .foot-grid > div + div { padding-left: 0; border-left: none; }
  .closing .inner { grid-template-columns: minmax(0, 1fr); }
  .section-head.split { grid-template-columns: minmax(0, 1fr); }
  .coverage .atlas-card { position: static; width: 100%; margin-top: 24px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero-inner { padding-top: 120px; }
  .hero-tabs { margin-top: 40px; }
  .hero-tab { font-size: 12.5px; }
  .steps3 { grid-template-columns: minmax(0, 1fr); }
  .steps3 div + div { padding-left: 0; border-left: none; }
  .proof b { font-size: 21px; }
  .region-grid { grid-template-columns: minmax(0, 1fr); }
  .q-form .pair { grid-template-columns: minmax(0, 1fr); }
  .facts { grid-template-columns: minmax(0, 1fr); }
  .foot-grid { grid-template-columns: minmax(0, 1fr); }
  .region-card .meta { flex-direction: column; gap: 2px; }
  .region-card .who { text-align: left; }
}
