/* ==========================================================================
   ARCWELL ELECTRIC — DESIGN SYSTEM
   Premium practical local electrical contractor
   ========================================================================== */

/* -----------------------------------------------------------
   01. DESIGN TOKENS
   ----------------------------------------------------------- */
:root {
  /* Core neutrals — dark graphite scale */
  --ink: #0B0E12;
  --ink-2: #10141A;
  --graphite: #1A1F27;
  --graphite-2: #232932;
  --steel: #2F3641;
  --steel-2: #3C4551;
  --mist: #6F7785;
  --mist-2: #9BA3B0;
  --fog: #D5D9DF;
  --paper: #F2EEE8;
  --paper-2: #F7F5F1;
  --bone: #FAF8F4;
  --white: #FFFFFF;

  /* Brand accents — controlled voltage */
  --volt: #D9A441;          /* muted voltage gold — primary accent */
  --volt-bright: #E9B958;
  --volt-deep: #B78627;
  --ion: #4E8FB8;           /* ion blue — trust / secondary */
  --ion-deep: #2E6A91;
  --copper: #B86E3E;        /* oxidized copper — warmth */
  --signal-red: #D9451E;    /* emergency signal */
  --signal-red-deep: #A8321A;
  --signal-green: #3F9E6F;  /* availability / success */

  /* Surfaces */
  --surface-base: var(--bone);
  --surface-raised: var(--white);
  --surface-sunken: var(--paper);
  --surface-ink: var(--ink);
  --surface-ink-raised: var(--graphite);
  --surface-ink-card: var(--graphite-2);

  /* Borders */
  --line: rgba(11, 14, 18, 0.08);
  --line-strong: rgba(11, 14, 18, 0.14);
  --line-ink: rgba(255, 255, 255, 0.08);
  --line-ink-strong: rgba(255, 255, 255, 0.14);

  /* Text */
  --text: #11151B;
  --text-2: #2E3540;
  --text-mute: #5A626E;
  --text-faint: #858E9A;
  --text-inv: #F7F5F1;
  --text-inv-2: #C9CCD1;
  --text-inv-mute: #8E95A0;

  /* Typography */
  --font-display: 'Space Grotesk', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* Type scale (fluid) */
  --fs-eyebrow: 0.72rem;
  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1.0625rem;
  --fs-lg: 1.1875rem;
  --fs-xl: 1.375rem;
  --fs-2xl: clamp(1.5rem, 1.2rem + 1vw, 1.875rem);
  --fs-3xl: clamp(1.875rem, 1.4rem + 1.8vw, 2.5rem);
  --fs-4xl: clamp(2.25rem, 1.6rem + 2.5vw, 3.25rem);
  --fs-5xl: clamp(2.75rem, 1.8rem + 3.6vw, 4.25rem);
  --fs-6xl: clamp(3.25rem, 2rem + 5vw, 5.5rem);

  /* Spacing */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-7: 32px;
  --s-8: 40px;
  --s-9: 48px;
  --s-10: 64px;
  --s-11: 80px;
  --s-12: 96px;
  --s-13: 120px;
  --s-14: 160px;

  /* Radii */
  --r-0: 0;
  --r-1: 2px;
  --r-2: 4px;
  --r-3: 6px;
  --r-4: 10px;
  --r-5: 14px;
  --r-6: 20px;
  --r-pill: 999px;

  /* Shadows (restrained) */
  --shadow-sm: 0 1px 2px rgba(11, 14, 18, 0.04), 0 1px 1px rgba(11, 14, 18, 0.06);
  --shadow-md: 0 4px 12px rgba(11, 14, 18, 0.06), 0 2px 4px rgba(11, 14, 18, 0.04);
  --shadow-lg: 0 18px 40px -12px rgba(11, 14, 18, 0.18), 0 6px 14px -6px rgba(11, 14, 18, 0.08);
  --shadow-xl: 0 30px 60px -20px rgba(11, 14, 18, 0.28), 0 12px 24px -12px rgba(11, 14, 18, 0.1);
  --shadow-ink: 0 20px 50px -15px rgba(0, 0, 0, 0.55);
  --shadow-volt: 0 10px 30px -10px rgba(217, 164, 65, 0.45);

  /* Layout */
  --container: 1240px;
  --container-tight: 1040px;
  --container-narrow: 840px;
  --container-ultra: 1360px;
  --nav-h: 76px;
  --nav-h-scrolled: 64px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 160ms;
  --t: 260ms;
  --t-slow: 420ms;
}

/* -----------------------------------------------------------
   02. RESET + BASE
   ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--surface-base);
  min-height: 100vh;
  overflow-x: hidden;
  font-feature-settings: 'kern', 'liga', 'calt', 'ss01';
}

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

a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease-out); }
a:hover { color: var(--volt-deep); }

button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

input, textarea, select { font: inherit; color: inherit; }

ul, ol { list-style: none; }

hr { border: none; border-top: 1px solid var(--line); }

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

/* Focus */
:focus-visible {
  outline: 2px solid var(--volt);
  outline-offset: 3px;
  border-radius: var(--r-2);
}

/* -----------------------------------------------------------
   03. TYPOGRAPHY
   ----------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 { font-size: var(--fs-5xl); letter-spacing: -0.035em; line-height: 1.02; }
h2 { font-size: var(--fs-4xl); letter-spacing: -0.03em; line-height: 1.05; }
h3 { font-size: var(--fs-2xl); letter-spacing: -0.02em; line-height: 1.15; }
h4 { font-size: var(--fs-xl); letter-spacing: -0.015em; line-height: 1.25; }
h5 { font-size: var(--fs-lg); line-height: 1.3; }
h6 { font-size: var(--fs-base); line-height: 1.35; font-weight: 600; }

p { color: var(--text-2); font-size: var(--fs-base); line-height: 1.65; }
.lede { font-size: var(--fs-lg); line-height: 1.55; color: var(--text-2); }
.lede--xl { font-size: var(--fs-xl); line-height: 1.5; color: var(--text-2); max-width: 62ch; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--volt-deep);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow--inv { color: var(--volt-bright); }
.eyebrow--plain::before { display: none; }

.kicker {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}

.t-display { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.03em; }
.t-mono { font-family: var(--font-mono); }
.t-mute { color: var(--text-mute); }
.t-faint { color: var(--text-faint); }
.t-inv { color: var(--text-inv); }
.t-inv-2 { color: var(--text-inv-2); }
.t-inv-mute { color: var(--text-inv-mute); }
.t-center { text-align: center; }
.t-balance { text-wrap: balance; }
.t-pretty { text-wrap: pretty; }

.num {
  font-family: var(--font-display);
  font-feature-settings: 'tnum' 1, 'lnum' 1;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.link-underline {
  background: linear-gradient(currentColor, currentColor) bottom left / 100% 1px no-repeat;
  padding-bottom: 1px;
  transition: background-size var(--t) var(--ease-out);
}
.link-underline:hover { background-size: 100% 2px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  font-size: var(--fs-sm);
  letter-spacing: -0.01em;
  position: relative;
}
.link-arrow::after {
  content: "→";
  transition: transform var(--t) var(--ease-out);
  display: inline-block;
}
.link-arrow:hover::after { transform: translateX(4px); }

/* -----------------------------------------------------------
   04. LAYOUT PRIMITIVES
   ----------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-6);
}
.container--tight { max-width: var(--container-tight); }
.container--narrow { max-width: var(--container-narrow); }
.container--ultra { max-width: var(--container-ultra); }

.section { padding: var(--s-12) 0; }
.section--sm { padding: var(--s-10) 0; }
.section--lg { padding: var(--s-13) 0; }
.section--xl { padding: var(--s-14) 0 var(--s-13); }
.section--compact { padding: var(--s-9) 0; }

.section--ink { background: var(--surface-ink); color: var(--text-inv); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4, .section--ink h5, .section--ink h6 { color: var(--text-inv); }
.section--ink p { color: var(--text-inv-2); }
.section--ink .eyebrow { color: var(--volt-bright); }
.section--ink .link-arrow { color: var(--text-inv); }

.section--paper { background: var(--paper); }
.section--paper-2 { background: var(--paper-2); }

.section-head {
  display: grid;
  gap: var(--s-5);
  max-width: 62rem;
  margin-bottom: var(--s-10);
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--narrow { max-width: 44rem; }
.section-head p { font-size: var(--fs-lg); line-height: 1.55; color: var(--text-mute); max-width: 58ch; }
.section--ink .section-head p { color: var(--text-inv-mute); }

.section-head--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  align-items: end;
  max-width: var(--container);
  margin-bottom: var(--s-10);
}
.section-head--split h2 { margin: 0; }
@media (max-width: 800px) {
  .section-head--split { grid-template-columns: 1fr; align-items: start; gap: var(--s-5); }
}

.grid { display: grid; gap: var(--s-6); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--auto-lg { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

@media (max-width: 1000px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.stack { display: grid; gap: var(--s-4); }
.stack--sm { gap: var(--s-2); }
.stack--lg { gap: var(--s-6); }
.stack--xl { gap: var(--s-8); }

.row { display: flex; gap: var(--s-4); flex-wrap: wrap; align-items: center; }
.row--sm { gap: var(--s-2); }
.row--lg { gap: var(--s-6); }
.row--between { justify-content: space-between; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-10);
  align-items: center;
}
.split--narrow { gap: var(--s-8); }
.split--wide { grid-template-columns: 1.1fr 0.9fr; }
.split--flip { grid-template-columns: 0.9fr 1.1fr; }
@media (max-width: 900px) {
  .split, .split--wide, .split--flip { grid-template-columns: 1fr; gap: var(--s-8); }
}

.divider { height: 1px; background: var(--line); width: 100%; }
.divider--ink { background: var(--line-ink); }
.divider--strong { background: var(--line-strong); }

/* -----------------------------------------------------------
   05. BUTTONS
   ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 14px 22px;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1;
  border-radius: var(--r-3);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--t) var(--ease-out),
              color var(--t) var(--ease-out),
              border-color var(--t) var(--ease-out),
              transform var(--t) var(--ease-out),
              box-shadow var(--t) var(--ease-out);
  white-space: nowrap;
  user-select: none;
  position: relative;
  text-decoration: none;
}

.btn:active { transform: translateY(1px); }

.btn--sm { padding: 10px 16px; font-size: var(--fs-xs); }
.btn--lg { padding: 18px 28px; font-size: var(--fs-base); }
.btn--xl { padding: 22px 32px; font-size: var(--fs-lg); }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--volt);
  color: var(--ink);
  border-color: var(--volt);
}
.btn--primary:hover {
  background: var(--volt-bright);
  border-color: var(--volt-bright);
  box-shadow: var(--shadow-volt);
  color: var(--ink);
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn--dark:hover {
  background: var(--graphite);
  border-color: var(--graphite);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn--light:hover {
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn--ghost-inv {
  background: transparent;
  color: var(--text-inv);
  border-color: var(--line-ink-strong);
}
.btn--ghost-inv:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn--emergency {
  background: var(--signal-red);
  color: var(--white);
  border-color: var(--signal-red);
}
.btn--emergency:hover {
  background: var(--signal-red-deep);
  border-color: var(--signal-red-deep);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(217, 69, 30, 0.5);
}

.btn--phone {
  background: var(--ink);
  color: var(--volt-bright);
  border-color: var(--ink);
  font-family: var(--font-display);
}
.btn--phone:hover {
  background: var(--volt);
  color: var(--ink);
  border-color: var(--volt);
}

.btn__icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.btn--lg .btn__icon, .btn--xl .btn__icon { width: 18px; height: 18px; }

/* -----------------------------------------------------------
   06. CHIPS + BADGES
   ----------------------------------------------------------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 7px 12px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 500;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  line-height: 1;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.chip--ink {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-ink-strong);
  color: var(--text-inv);
  backdrop-filter: blur(10px);
}
.chip--volt {
  background: rgba(217, 164, 65, 0.12);
  border-color: rgba(217, 164, 65, 0.35);
  color: var(--volt-deep);
}
.chip--success {
  background: rgba(63, 158, 111, 0.1);
  border-color: rgba(63, 158, 111, 0.3);
  color: var(--signal-green);
}
.chip--alert {
  background: rgba(217, 69, 30, 0.08);
  border-color: rgba(217, 69, 30, 0.3);
  color: var(--signal-red);
}
.chip__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--signal-green);
  box-shadow: 0 0 0 3px rgba(63, 158, 111, 0.2);
}
.chip__dot--pulse { animation: pulse 2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(63, 158, 111, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(63, 158, 111, 0); }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 5px 10px;
  border-radius: var(--r-2);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  background: var(--graphite-2);
  color: var(--text-inv-2);
  border: 1px solid var(--line-ink-strong);
}
.badge--volt { background: var(--volt); color: var(--ink); border-color: var(--volt); }
.badge--alert { background: var(--signal-red); color: var(--white); border-color: var(--signal-red); }

/* -----------------------------------------------------------
   07. NAV + HEADER
   ----------------------------------------------------------- */
.announce {
  background: var(--ink);
  color: var(--text-inv);
  font-size: var(--fs-xs);
  padding: 9px 0;
  border-bottom: 1px solid var(--line-ink);
  position: relative;
  z-index: 50;
}
.announce__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.announce__left, .announce__right {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.announce__item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--text-inv-2);
}
.announce__item strong { color: var(--text-inv); font-weight: 500; }
.announce__phone {
  color: var(--volt-bright);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  letter-spacing: -0.01em;
}
.announce__phone:hover { color: var(--volt); }
@media (max-width: 720px) {
  .announce__right { display: none; }
  .announce__left { font-size: 0.75rem; }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t) var(--ease-out), background var(--t) var(--ease-out);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(250, 248, 244, 0.98);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: var(--s-6);
  transition: height var(--t) var(--ease-out);
}
.nav.is-scrolled .nav__inner { height: var(--nav-h-scrolled); }

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.nav__logo-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: var(--r-3);
  background: var(--ink);
  color: var(--volt);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.03em;
  position: relative;
  overflow: hidden;
}
.nav__logo-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(217, 164, 65, 0.2), transparent 60%);
}
.nav__logo span { color: var(--text-mute); font-weight: 400; }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s-7);
}
.nav__link {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-2);
  position: relative;
  padding: 8px 0;
  letter-spacing: -0.005em;
}
.nav__link:hover { color: var(--ink); }
.nav__link[aria-current="page"] { color: var(--ink); }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--volt);
}

.nav__cta-group {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 8px 12px;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink);
  border-radius: var(--r-3);
  transition: background var(--t) var(--ease-out);
}
.nav__phone:hover { background: var(--paper); color: var(--ink); }
.nav__phone svg { width: 16px; height: 16px; stroke: var(--volt-deep); fill: none; stroke-width: 2; }

.nav__mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-3);
  background: var(--white);
  position: relative;
}
.nav__mobile-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--t) var(--ease-out), opacity var(--t) var(--ease-out);
}
.nav__mobile-toggle span:nth-child(1) { top: 14px; }
.nav__mobile-toggle span:nth-child(2) { top: 19px; }
.nav__mobile-toggle span:nth-child(3) { top: 24px; }
body.menu-open .nav__mobile-toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.menu-open .nav__mobile-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__mobile-toggle span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__mobile-toggle { display: block; }
}

/* Mobile menu */
.nav__mobile {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: var(--ink);
  color: var(--text-inv);
  padding: calc(var(--nav-h) + var(--s-8)) var(--s-6) var(--s-8);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease-out);
  display: grid;
  align-content: start;
  gap: var(--s-3);
}
body.menu-open .nav__mobile { transform: translateX(0); }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--line-ink);
  color: var(--text-inv);
  letter-spacing: -0.02em;
}
.nav__mobile-cta { margin-top: var(--s-5); display: grid; gap: var(--s-3); }

/* -----------------------------------------------------------
   08. HERO
   ----------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(600px, 86vh, 820px);
  background: var(--ink);
  color: var(--text-inv);
  overflow: hidden;
  display: grid;
  align-items: end;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 14, 18, 0.55) 0%, rgba(11, 14, 18, 0.35) 40%, rgba(11, 14, 18, 0.92) 92%, rgba(11, 14, 18, 1) 100%),
    linear-gradient(90deg, rgba(11, 14, 18, 0.7) 0%, rgba(11, 14, 18, 0.2) 60%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center bottom, black 30%, transparent 75%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: var(--s-12) 0 var(--s-10);
  display: grid;
  gap: var(--s-7);
}
.hero__content { max-width: 820px; display: grid; gap: var(--s-6); }
.hero__title {
  color: var(--text-inv);
  font-size: var(--fs-6xl);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.hero__title em {
  font-style: normal;
  color: var(--volt);
  font-weight: 600;
}
.hero__sub {
  font-size: var(--fs-lg);
  line-height: 1.55;
  color: var(--text-inv-2);
  max-width: 56ch;
}
.hero__chips { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-2);
}
.hero__meta {
  display: flex;
  gap: var(--s-8);
  flex-wrap: wrap;
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line-ink);
}
.hero__meta-item { display: grid; gap: 4px; }
.hero__meta-item dt {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-inv-mute);
}
.hero__meta-item dd {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--text-inv);
  letter-spacing: -0.015em;
}

.hero--sm { min-height: clamp(340px, 40vh, 460px); }
.hero--sm .hero__inner { padding: var(--s-10) 0 var(--s-9); }

.hero--lg-type .hero__title { font-size: clamp(3rem, 5vw + 1rem, 6.5rem); }

/* Emergency hero variant */
.hero--emergency .hero__bg::after {
  background:
    linear-gradient(180deg, rgba(11, 14, 18, 0.7) 0%, rgba(11, 14, 18, 0.35) 30%, rgba(11, 14, 18, 0.95) 100%),
    linear-gradient(90deg, rgba(168, 50, 26, 0.4) 0%, rgba(11, 14, 18, 0.1) 60%);
}
.hero--emergency .hero__title em { color: var(--signal-red); }

/* -----------------------------------------------------------
   09. TRUST STRIP
   ----------------------------------------------------------- */
.trust-strip {
  background: var(--ink-2);
  color: var(--text-inv);
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--line-ink);
}
.trust-strip--light {
  background: var(--paper);
  color: var(--text);
  border: 1px solid var(--line);
  border-left: 0; border-right: 0;
}
.trust-strip__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-5);
  align-items: center;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--fs-sm);
  line-height: 1.3;
  color: var(--text-inv-2);
}
.trust-strip--light .trust-strip__item { color: var(--text-2); }
.trust-strip__item strong { color: var(--text-inv); font-weight: 600; }
.trust-strip--light .trust-strip__item strong { color: var(--ink); }
.trust-strip__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--volt-bright);
  fill: none;
  stroke-width: 1.6;
}
.trust-strip--light .trust-strip__icon { stroke: var(--volt-deep); }
@media (max-width: 900px) {
  .trust-strip__row { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
  .trust-strip__item:nth-child(5) { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .trust-strip__row { grid-template-columns: 1fr; }
  .trust-strip__item:nth-child(5) { grid-column: 1; }
}

/* -----------------------------------------------------------
   10. CARDS
   ----------------------------------------------------------- */
.card {
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: var(--r-5);
  padding: var(--s-7);
  display: grid;
  gap: var(--s-4);
  transition: transform var(--t) var(--ease-out), box-shadow var(--t) var(--ease-out), border-color var(--t) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.card--ink {
  background: var(--graphite);
  color: var(--text-inv);
  border-color: var(--line-ink);
}
.card--ink h3, .card--ink h4, .card--ink h5 { color: var(--text-inv); }
.card--ink p { color: var(--text-inv-2); }

.card--hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}
.card--ink.card--hover:hover { border-color: var(--line-ink-strong); box-shadow: var(--shadow-ink); }

.card--feature {
  padding: var(--s-8);
  background: var(--white);
  border-radius: var(--r-6);
}

.card--stat {
  text-align: left;
  padding: var(--s-6);
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--r-5);
  display: grid;
  gap: var(--s-3);
}
.card--stat .num { font-size: clamp(2rem, 4vw, 2.75rem); line-height: 1; color: var(--ink); }
.card--stat .num em { font-style: normal; color: var(--volt-deep); font-weight: 500; font-size: 0.6em; vertical-align: 0.2em; margin-left: 2px; }
.card--stat .kicker { color: var(--text-mute); }

/* Service Card */
.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-5);
  padding: var(--s-7);
  display: grid;
  gap: var(--s-4);
  grid-template-rows: auto auto 1fr auto;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t) var(--ease-out), box-shadow var(--t) var(--ease-out), border-color var(--t) var(--ease-out);
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--volt);
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left;
  transition: opacity var(--t) var(--ease-out), transform var(--t-slow) var(--ease-out);
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}
.svc-card:hover::before { opacity: 1; transform: scaleX(1); }
.svc-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--r-3);
  background: var(--paper);
  color: var(--volt-deep);
  border: 1px solid var(--line);
}
.svc-card__icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.svc-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.svc-card__body { color: var(--text-mute); font-size: var(--fs-sm); line-height: 1.6; }
.svc-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
  margin-top: var(--s-3);
}
.svc-card__from {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text-mute);
}
.svc-card__from strong { color: var(--ink); font-weight: 600; }

.svc-card--ink {
  background: var(--graphite);
  border-color: var(--line-ink);
  color: var(--text-inv);
}
.svc-card--ink .svc-card__body { color: var(--text-inv-2); }
.svc-card--ink .svc-card__icon { background: var(--graphite-2); border-color: var(--line-ink); color: var(--volt-bright); }
.svc-card--ink .svc-card__foot { border-top-color: var(--line-ink); }
.svc-card--ink .svc-card__from { color: var(--text-inv-mute); }
.svc-card--ink .svc-card__from strong { color: var(--text-inv); }

.svc-card--featured {
  grid-row: span 2;
  background: linear-gradient(180deg, var(--graphite) 0%, var(--ink) 100%);
  color: var(--text-inv);
  border-color: var(--line-ink);
  min-height: 420px;
}

/* -----------------------------------------------------------
   11. OFFER LANES (4-lane band)
   ----------------------------------------------------------- */
.lanes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-5);
  overflow: hidden;
}
.lanes__item {
  background: var(--white);
  padding: var(--s-7);
  display: grid;
  gap: var(--s-3);
  transition: background var(--t) var(--ease-out);
  position: relative;
}
.lanes__item:hover { background: var(--paper); }
.lanes__num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--volt-deep);
  letter-spacing: 0.1em;
}
.lanes__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.2;
}
.lanes__body { font-size: var(--fs-sm); color: var(--text-mute); line-height: 1.55; }
.lanes__link { margin-top: var(--s-3); }

@media (max-width: 900px) { .lanes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .lanes { grid-template-columns: 1fr; } }

/* -----------------------------------------------------------
   12. FEATURE SPLITS
   ----------------------------------------------------------- */
.feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--s-10);
  align-items: center;
}
.feature--flip { grid-template-columns: 0.95fr 1.05fr; }
.feature--flip .feature__visual { order: -1; }
@media (max-width: 900px) {
  .feature, .feature--flip { grid-template-columns: 1fr; gap: var(--s-7); }
  .feature--flip .feature__visual { order: 0; }
}
.feature__body { display: grid; gap: var(--s-5); max-width: 52ch; }
.feature__body h2 { margin: 0; }
.feature__visual {
  position: relative;
  border-radius: var(--r-6);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
}
.feature__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature__badge {
  position: absolute;
  top: var(--s-4);
  left: var(--s-4);
}
.feature__list { display: grid; gap: var(--s-3); }
.feature__li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: var(--s-3);
  align-items: start;
  padding: 2px 0;
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--text-2);
}
.feature__li svg {
  width: 18px; height: 18px;
  stroke: var(--volt-deep);
  fill: none;
  stroke-width: 2;
  margin-top: 2px;
}
.feature__li strong { color: var(--ink); font-weight: 600; }
.section--ink .feature__li { color: var(--text-inv-2); }
.section--ink .feature__li strong { color: var(--text-inv); }
.section--ink .feature__li svg { stroke: var(--volt-bright); }

.feature__pricing {
  display: inline-flex;
  align-items: baseline;
  gap: var(--s-2);
  font-family: var(--font-display);
  color: var(--text-mute);
  font-size: var(--fs-sm);
  padding: var(--s-3) var(--s-4);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  background: var(--paper);
  width: fit-content;
}
.feature__pricing strong { color: var(--ink); font-size: var(--fs-lg); font-weight: 600; letter-spacing: -0.02em; }

/* -----------------------------------------------------------
   13. PROCESS
   ----------------------------------------------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-5);
  overflow: hidden;
  background: var(--white);
}
.process__step {
  padding: var(--s-7);
  display: grid;
  gap: var(--s-4);
  border-right: 1px solid var(--line);
  position: relative;
}
.process__step:last-child { border-right: 0; }
.process--ink { background: var(--graphite); border-color: var(--line-ink); }
.process--ink .process__step { border-right-color: var(--line-ink); color: var(--text-inv); }

.process__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--volt-deep);
}
.process--ink .process__num { color: var(--volt-bright); }
.process__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  letter-spacing: -0.015em;
}
.process__body { font-size: var(--fs-sm); color: var(--text-mute); line-height: 1.55; }
.process--ink .process__body { color: var(--text-inv-2); }

@media (max-width: 900px) {
  .process { grid-template-columns: repeat(2, 1fr); }
  .process__step:nth-child(2) { border-right: 0; }
  .process__step:nth-child(1), .process__step:nth-child(2) { border-bottom: 1px solid var(--line); }
  .process--ink .process__step:nth-child(1), .process--ink .process__step:nth-child(2) { border-bottom-color: var(--line-ink); }
}
@media (max-width: 520px) {
  .process { grid-template-columns: 1fr; }
  .process__step { border-right: 0; border-bottom: 1px solid var(--line); }
  .process__step:last-child { border-bottom: 0; }
  .process--ink .process__step { border-bottom-color: var(--line-ink); }
}

/* -----------------------------------------------------------
   14. STAT BAND
   ----------------------------------------------------------- */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--r-5);
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line-ink);
}
.stat-band__item {
  padding: var(--s-7);
  text-align: left;
  border-right: 1px solid var(--line-ink);
  display: grid;
  gap: var(--s-2);
  color: var(--text-inv);
  position: relative;
}
.stat-band__item:last-child { border-right: 0; }
.stat-band__num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 600;
  color: var(--text-inv);
}
.stat-band__num em {
  font-style: normal;
  color: var(--volt-bright);
  font-weight: 500;
  font-size: 0.55em;
  vertical-align: 0.3em;
  margin-left: 3px;
}
.stat-band__label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-inv-mute);
}
.stat-band__sub { color: var(--text-inv-2); font-size: var(--fs-sm); margin-top: var(--s-2); }

@media (max-width: 900px) {
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .stat-band__item:nth-child(2) { border-right: 0; }
  .stat-band__item:nth-child(1), .stat-band__item:nth-child(2) { border-bottom: 1px solid var(--line-ink); }
}
@media (max-width: 520px) {
  .stat-band { grid-template-columns: 1fr; }
  .stat-band__item { border-right: 0; border-bottom: 1px solid var(--line-ink); }
  .stat-band__item:last-child { border-bottom: 0; }
}

/* -----------------------------------------------------------
   15. TESTIMONIALS
   ----------------------------------------------------------- */
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-5);
  padding: var(--s-7);
  display: grid;
  gap: var(--s-5);
  position: relative;
}
.quote::before {
  content: "";
  position: absolute;
  top: var(--s-6);
  right: var(--s-6);
  width: 30px;
  height: 20px;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 28' fill='%23D9A441'%3E%3Cpath d='M0 28V14.667C0 10.444 1 6.889 3 4c2-2.889 5-4.667 9-5.333l3 4c-3 .667-5.333 2-7 4S5 11 5 13.667h5V28H0zm25 0V14.667C25 10.444 26 6.889 28 4c2-2.889 5-4.667 9-5.333l3 4c-3 .667-5.333 2-7 4s-2.667 4.333-3 7h5V28H25z'/%3E%3C/svg%3E");
  opacity: 0.9;
}
.quote__body {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.quote__body--lg { font-size: var(--fs-xl); }
.quote__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
}
.quote__person {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.quote__avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.quote__name { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm); letter-spacing: -0.01em; }
.quote__role { font-size: var(--fs-xs); color: var(--text-mute); font-family: var(--font-mono); }
.quote__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--volt);
}
.quote__stars svg { width: 14px; height: 14px; fill: currentColor; }
.quote__tag {
  display: inline-block;
  margin-bottom: var(--s-2);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--volt-deep);
}

.quote--ink {
  background: var(--graphite);
  border-color: var(--line-ink);
  color: var(--text-inv);
}
.quote--ink .quote__body { color: var(--text-inv); }
.quote--ink .quote__meta { border-top-color: var(--line-ink); }
.quote--ink .quote__role { color: var(--text-inv-mute); }

/* -----------------------------------------------------------
   16. FAQ
   ----------------------------------------------------------- */
.faq { display: grid; gap: var(--s-2); }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r-4);
  background: var(--white);
  overflow: hidden;
  transition: border-color var(--t) var(--ease-out);
}
.faq__item[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq__q {
  cursor: pointer;
  padding: var(--s-5) var(--s-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 600;
  letter-spacing: -0.012em;
  list-style: none;
  color: var(--ink);
  transition: background var(--t-fast) var(--ease-out);
}
.faq__q:hover { background: var(--paper-2); }
.faq__q::-webkit-details-marker { display: none; }
.faq__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--t) var(--ease-out);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1.5px;
  background: var(--volt-deep);
  transform-origin: center;
  transform: translateY(-50%);
  transition: transform var(--t) var(--ease-out);
}
.faq__icon::after { transform: translateY(-50%) rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: translateY(-50%) rotate(0); }
.faq__a {
  padding: 0 var(--s-6) var(--s-6);
  font-size: var(--fs-sm);
  line-height: 1.65;
  color: var(--text-2);
  max-width: 72ch;
}
.faq__a p + p { margin-top: var(--s-3); }

/* -----------------------------------------------------------
   17. FORMS
   ----------------------------------------------------------- */
.form { display: grid; gap: var(--s-5); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.form__row--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 640px) { .form__row, .form__row--3 { grid-template-columns: 1fr; } }

.field { display: grid; gap: 6px; }
.field__label {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.field__label .req { color: var(--signal-red); }
.field__hint { font-size: var(--fs-xs); color: var(--text-faint); }

.input, .select, .textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-3);
  font-size: var(--fs-sm);
  font-family: var(--font-body);
  color: var(--ink);
  transition: border-color var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--volt);
  box-shadow: 0 0 0 4px rgba(217, 164, 65, 0.15);
}
.textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.select {
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2311151B'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
}

.radio-group, .check-group { display: grid; gap: var(--s-2); }
.radio-chips { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.radio-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  border-radius: var(--r-3);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease-out);
  user-select: none;
}
.radio-chip input { position: absolute; opacity: 0; pointer-events: none; }
.radio-chip:has(input:checked) {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.radio-chip:has(input:checked).radio-chip--urgent {
  background: var(--signal-red);
  border-color: var(--signal-red);
}
.radio-chip__dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--line-strong);
  transition: background var(--t-fast) var(--ease-out);
}
.radio-chip:has(input:checked) .radio-chip__dot { background: var(--volt); }

.form__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-3);
  align-items: start;
  font-size: var(--fs-xs);
  color: var(--text-mute);
  line-height: 1.5;
}
.form__actions { display: flex; gap: var(--s-3); flex-wrap: wrap; align-items: center; }
.form__help { font-size: var(--fs-xs); color: var(--text-mute); }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-5);
  padding: var(--s-8);
  box-shadow: var(--shadow-md);
}
.form-card__head { margin-bottom: var(--s-6); }
.form-card__head h3 { margin: 0 0 var(--s-2) 0; }
.form-card__head p { color: var(--text-mute); font-size: var(--fs-sm); }

.form-success {
  display: none;
  padding: var(--s-8);
  text-align: center;
  background: linear-gradient(135deg, rgba(63, 158, 111, 0.06), rgba(217, 164, 65, 0.06));
  border: 1px solid rgba(63, 158, 111, 0.2);
  border-radius: var(--r-5);
}
.form-success.is-active { display: grid; gap: var(--s-4); }
.form-success__icon {
  width: 52px; height: 52px;
  border-radius: 999px;
  background: var(--signal-green);
  color: var(--white);
  display: grid;
  place-items: center;
  margin: 0 auto;
}
.form-success__icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* -----------------------------------------------------------
   18. CTA BANDS
   ----------------------------------------------------------- */
.cta-band {
  background: var(--ink);
  color: var(--text-inv);
  padding: var(--s-12) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(217, 164, 65, 0.12), transparent 60%);
  z-index: -1;
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-8);
  align-items: center;
}
.cta-band__content { display: grid; gap: var(--s-4); }
.cta-band__content h2 { color: var(--text-inv); margin: 0; }
.cta-band__content p { color: var(--text-inv-2); font-size: var(--fs-lg); max-width: 52ch; }
.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  align-items: flex-start;
}
.cta-band__actions .btn { min-width: 280px; justify-content: space-between; }
.cta-band__actions .btn__phone { font-size: var(--fs-base); }
.cta-band__meta {
  display: flex;
  gap: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line-ink);
  font-size: var(--fs-xs);
  color: var(--text-inv-mute);
}

@media (max-width: 900px) {
  .cta-band__inner { grid-template-columns: 1fr; }
  .cta-band__actions .btn { min-width: 100%; }
}

/* -----------------------------------------------------------
   19. FOOTER
   ----------------------------------------------------------- */
.footer {
  background: var(--ink-2);
  color: var(--text-inv-2);
  padding: var(--s-11) 0 var(--s-6);
  border-top: 1px solid var(--line-ink);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: var(--s-7);
  padding-bottom: var(--s-9);
  border-bottom: 1px solid var(--line-ink);
}
@media (max-width: 1000px) {
  .footer__top { grid-template-columns: 1fr 1fr 1fr; gap: var(--s-7); }
  .footer__about { grid-column: 1 / -1; margin-bottom: var(--s-4); }
}
@media (max-width: 640px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__about { grid-column: 1 / -1; }
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--text-inv);
  margin-bottom: var(--s-3);
}
.footer__brand .nav__logo-mark { background: var(--white); color: var(--ink); }
.footer__tagline { color: var(--text-inv-2); max-width: 36ch; font-size: var(--fs-sm); line-height: 1.6; }
.footer__contact {
  display: grid;
  gap: var(--s-2);
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line-ink);
}
.footer__contact-item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-sm);
  color: var(--text-inv-2);
}
.footer__contact-item svg { width: 14px; height: 14px; stroke: var(--volt-bright); fill: none; stroke-width: 1.8; }
.footer__phone {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--volt-bright);
  letter-spacing: -0.018em;
}
.footer__phone:hover { color: var(--volt); }

.footer__col-title {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-inv);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.footer__links { display: grid; gap: 10px; }
.footer__links a {
  color: var(--text-inv-2);
  font-size: var(--fs-sm);
  line-height: 1.4;
  transition: color var(--t-fast) var(--ease-out);
}
.footer__links a:hover { color: var(--volt-bright); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  padding-top: var(--s-6);
  font-size: var(--fs-xs);
  color: var(--text-inv-mute);
  flex-wrap: wrap;
}
.footer__legal { display: inline-flex; gap: var(--s-5); flex-wrap: wrap; }
.footer__legal a { color: var(--text-inv-mute); }
.footer__legal a:hover { color: var(--text-inv-2); }

.footer__badges {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
  margin-top: var(--s-4);
}
.footer__badge {
  padding: 5px 10px;
  border: 1px solid var(--line-ink-strong);
  border-radius: var(--r-2);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-inv-2);
}

/* -----------------------------------------------------------
   20. STICKY MOBILE CTA
   ----------------------------------------------------------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 10px 14px;
  background: rgba(11, 14, 18, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-ink-strong);
  gap: var(--s-2);
}
.sticky-cta .btn { flex: 1; }
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  body.has-sticky-cta { padding-bottom: 76px; }
}

/* -----------------------------------------------------------
   21. PROJECT TILES / GALLERY
   ----------------------------------------------------------- */
.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
@media (max-width: 1000px) { .projects { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .projects { grid-template-columns: 1fr; } }

.project {
  display: block;
  border-radius: var(--r-5);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--graphite);
  border: 1px solid var(--line);
  isolation: isolate;
}
.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.project:hover img { transform: scale(1.04); }
.project__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 30%, rgba(11, 14, 18, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s-5);
  color: var(--text-inv);
  gap: var(--s-2);
}
.project__cat {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--volt-bright);
}
.project__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.2;
}
.project__meta {
  display: flex;
  gap: var(--s-4);
  font-size: var(--fs-xs);
  color: var(--text-inv-2);
  font-family: var(--font-mono);
  padding-top: var(--s-2);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

/* -----------------------------------------------------------
   22. SIGNS / LISTS
   ----------------------------------------------------------- */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3) var(--s-6);
}
@media (max-width: 640px) { .checklist { grid-template-columns: 1fr; } }
.checklist__item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: var(--s-3);
  align-items: start;
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--text-2);
  padding: var(--s-2) 0;
  border-bottom: 1px solid var(--line);
}
.checklist__item svg {
  width: 18px; height: 18px;
  stroke: var(--volt-deep);
  fill: none;
  stroke-width: 2;
  margin-top: 3px;
}
.checklist__item strong { color: var(--ink); font-weight: 600; }
.section--ink .checklist__item { color: var(--text-inv-2); border-bottom-color: var(--line-ink); }
.section--ink .checklist__item strong { color: var(--text-inv); }
.section--ink .checklist__item svg { stroke: var(--volt-bright); }

.bullet-list {
  display: grid;
  gap: var(--s-3);
  padding-left: 0;
}
.bullet-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: var(--s-3);
  align-items: start;
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--text-2);
}
.bullet-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--volt);
  border-radius: 999px;
  margin-top: 9px;
}

.signs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}
@media (max-width: 640px) { .signs-grid { grid-template-columns: 1fr; } }
.sign {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: var(--s-4);
  padding: var(--s-5);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-4);
  align-items: start;
}
.sign__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border-radius: var(--r-3);
  border: 1px solid var(--line);
}
.sign__icon svg { width: 18px; height: 18px; stroke: var(--volt-deep); fill: none; stroke-width: 2; }
.sign__title { font-family: var(--font-display); font-size: var(--fs-sm); font-weight: 600; letter-spacing: -0.01em; }
.sign__body { font-size: var(--fs-xs); color: var(--text-mute); line-height: 1.55; margin-top: 2px; }

/* -----------------------------------------------------------
   23. PRICING TABLE
   ----------------------------------------------------------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-5);
  padding: var(--s-7);
  display: grid;
  gap: var(--s-5);
}
.price-card__tier {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--volt-deep);
}
.price-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--line);
}
.price-card__from {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-card__amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.price-card__unit { color: var(--text-mute); font-size: var(--fs-sm); font-family: var(--font-body); }
.price-card__list { display: grid; gap: var(--s-2); }
.price-card__li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: var(--s-3);
  font-size: var(--fs-xs);
  color: var(--text-2);
  align-items: start;
  line-height: 1.5;
}
.price-card__li svg { width: 14px; height: 14px; stroke: var(--volt-deep); fill: none; stroke-width: 2.2; margin-top: 3px; }
.price-card__note {
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
  font-size: var(--fs-xs);
  color: var(--text-mute);
}

/* -----------------------------------------------------------
   24. SERVICE AREA MAP
   ----------------------------------------------------------- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-2);
}
@media (max-width: 900px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }

.area-tile {
  padding: var(--s-4) var(--s-5);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.area-tile__dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--signal-green);
  box-shadow: 0 0 0 3px rgba(63, 158, 111, 0.15);
  flex-shrink: 0;
}
.area-tile small { color: var(--text-mute); font-family: var(--font-mono); font-size: 0.7rem; font-weight: 400; }
.section--ink .area-tile { background: var(--graphite); border-color: var(--line-ink); color: var(--text-inv); }
.section--ink .area-tile small { color: var(--text-inv-mute); }

/* -----------------------------------------------------------
   25. WIDE MARQUEE (certs row)
   ----------------------------------------------------------- */
.cert-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-3);
  align-items: stretch;
}
@media (max-width: 1000px) { .cert-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .cert-row { grid-template-columns: repeat(2, 1fr); } }

.cert {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-4);
  padding: var(--s-5);
  text-align: left;
  display: grid;
  gap: var(--s-2);
  align-content: start;
}
.cert__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--r-3);
  background: var(--ink);
  color: var(--volt-bright);
}
.cert__icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.cert__name {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.25;
}
.cert__body { font-size: 0.72rem; color: var(--text-mute); line-height: 1.45; }
.section--ink .cert { background: var(--graphite); border-color: var(--line-ink); }
.section--ink .cert__name { color: var(--text-inv); }
.section--ink .cert__body { color: var(--text-inv-mute); }
.section--ink .cert__icon { background: var(--graphite-2); }

/* -----------------------------------------------------------
   26. COMPARE / VS TABLE
   ----------------------------------------------------------- */
.compare {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-5);
  overflow: hidden;
}
.compare__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.compare__row:last-child { border-bottom: 0; }
.compare__cell {
  padding: var(--s-4) var(--s-5);
  font-size: var(--fs-sm);
  line-height: 1.5;
}
.compare__cell--head {
  background: var(--paper);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  font-size: var(--fs-base);
}
.compare__cell--head-brand {
  background: var(--ink);
  color: var(--text-inv);
  border-right: 1px solid var(--line-ink);
}
.compare__cell--label { font-family: var(--font-display); font-weight: 500; color: var(--text-mute); font-size: var(--fs-sm); }
.compare__cell--yes { color: var(--ink); font-weight: 500; }
.compare__cell--yes::before {
  content: "✓ ";
  color: var(--volt-deep);
  font-weight: 700;
  margin-right: 4px;
}
.compare__cell--no { color: var(--text-faint); }
.compare__cell--no::before {
  content: "— ";
  color: var(--text-faint);
  margin-right: 4px;
}
@media (max-width: 720px) {
  .compare__row { grid-template-columns: 1fr 1fr; }
  .compare__cell--label { grid-column: 1 / -1; background: var(--paper-2); border-top: 1px solid var(--line); }
  .compare__row:first-child .compare__cell--label { display: none; }
}

/* -----------------------------------------------------------
   27. BEFORE / AFTER
   ----------------------------------------------------------- */
.ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--ink);
  border-radius: var(--r-5);
  overflow: hidden;
}
.ba__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.ba__img img { width: 100%; height: 100%; object-fit: cover; }
.ba__tag {
  position: absolute;
  top: var(--s-3);
  left: var(--s-3);
  padding: 5px 10px;
  background: rgba(11, 14, 18, 0.85);
  color: var(--text-inv);
  border-radius: var(--r-2);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* -----------------------------------------------------------
   28. UTILITIES
   ----------------------------------------------------------- */
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: var(--s-2) !important; }
.mt-3 { margin-top: var(--s-3) !important; }
.mt-4 { margin-top: var(--s-4) !important; }
.mt-5 { margin-top: var(--s-5) !important; }
.mt-6 { margin-top: var(--s-6) !important; }
.mt-7 { margin-top: var(--s-7) !important; }
.mt-8 { margin-top: var(--s-8) !important; }
.mt-10 { margin-top: var(--s-10) !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-3 { margin-bottom: var(--s-3) !important; }
.mb-5 { margin-bottom: var(--s-5) !important; }
.mb-7 { margin-bottom: var(--s-7) !important; }
.mb-10 { margin-bottom: var(--s-10) !important; }

.text-sm { font-size: var(--fs-sm); }
.text-xs { font-size: var(--fs-xs); }
.text-lg { font-size: var(--fs-lg); }

.hidden { display: none !important; }
@media (max-width: 640px) { .hidden-mobile { display: none !important; } }
@media (min-width: 641px) { .only-mobile { display: none !important; } }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* -----------------------------------------------------------
   29. REVEAL ANIMATIONS (restrained)
   ----------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .chip__dot--pulse { animation: none; }
}

/* -----------------------------------------------------------
   30. PAGE HEAD (internal page headers)
   ----------------------------------------------------------- */
.page-head {
  background: var(--ink);
  color: var(--text-inv);
  padding: calc(var(--s-10) + var(--s-2)) 0 var(--s-10);
  border-bottom: 1px solid var(--line-ink);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-head__grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 70% 30%, black 10%, transparent 70%);
}
.page-head__content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-8);
  align-items: end;
}
@media (max-width: 900px) { .page-head__content { grid-template-columns: 1fr; gap: var(--s-6); } }

.page-head__title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-inv);
  max-width: 18ch;
}
.page-head__title em { font-style: normal; color: var(--volt); }
.page-head__sub {
  color: var(--text-inv-2);
  font-size: var(--fs-lg);
  line-height: 1.5;
  max-width: 52ch;
  margin-top: var(--s-4);
}
.page-head__meta {
  display: grid;
  gap: var(--s-4);
}
.page-head__meta-item {
  padding: var(--s-4);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-ink);
  border-radius: var(--r-4);
  display: grid;
  gap: 4px;
}
.page-head__meta-item dt {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--volt-bright);
}
.page-head__meta-item dd {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  color: var(--text-inv);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-6);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--text-inv-mute);
  letter-spacing: 0.05em;
}
.crumbs a { color: var(--text-inv-mute); }
.crumbs a:hover { color: var(--volt-bright); }
.crumbs span { color: var(--text-inv-mute); }

/* -----------------------------------------------------------
   31. POPOUT CALLOUT
   ----------------------------------------------------------- */
.callout {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--volt);
  padding: var(--s-5) var(--s-6);
  border-radius: var(--r-3);
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--text-2);
  display: grid;
  gap: var(--s-2);
}
.callout strong { color: var(--ink); font-weight: 600; }
.callout--alert { border-left-color: var(--signal-red); background: rgba(217, 69, 30, 0.04); }
.callout--ion { border-left-color: var(--ion); background: rgba(78, 143, 184, 0.05); }

.section--ink .callout {
  background: var(--graphite);
  border-color: var(--line-ink);
  color: var(--text-inv-2);
}
.section--ink .callout strong { color: var(--text-inv); }

/* -----------------------------------------------------------
   32. TEAM
   ----------------------------------------------------------- */
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}
@media (max-width: 900px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team { grid-template-columns: 1fr; } }

.person {
  display: grid;
  gap: var(--s-4);
}
.person__photo {
  aspect-ratio: 3/4;
  border-radius: var(--r-4);
  overflow: hidden;
  background: var(--graphite);
  border: 1px solid var(--line);
}
.person__photo img { width: 100%; height: 100%; object-fit: cover; }
.person__name {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.person__role {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--volt-deep);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.person__bio { font-size: var(--fs-xs); color: var(--text-mute); line-height: 1.55; margin-top: var(--s-2); }

/* -----------------------------------------------------------
   33. TWO-COL LIST
   ----------------------------------------------------------- */
.two-col-list {
  column-count: 2;
  column-gap: var(--s-8);
}
.two-col-list li {
  break-inside: avoid;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-sm);
  color: var(--text-2);
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
}
.two-col-list li::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 999px;
  background: var(--volt);
  flex-shrink: 0;
}
@media (max-width: 640px) { .two-col-list { column-count: 1; } }

/* -----------------------------------------------------------
   34. TICK ROW (inline proof bar)
   ----------------------------------------------------------- */
.tick-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4) var(--s-6);
  align-items: center;
}
.tick-row__item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-sm);
  color: var(--text-2);
  font-family: var(--font-display);
  font-weight: 500;
}
.tick-row__item svg {
  width: 16px; height: 16px;
  stroke: var(--volt-deep);
  fill: none;
  stroke-width: 2.4;
}
.section--ink .tick-row__item { color: var(--text-inv-2); }
.section--ink .tick-row__item svg { stroke: var(--volt-bright); }

/* -----------------------------------------------------------
   35. COVER IMAGE + CAPTION
   ----------------------------------------------------------- */
.cover {
  position: relative;
  border-radius: var(--r-6);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--graphite);
  border: 1px solid var(--line);
}
.cover--tall { aspect-ratio: 4/5; }
.cover--square { aspect-ratio: 1/1; }
.cover img { width: 100%; height: 100%; object-fit: cover; }
.cover__caption {
  position: absolute;
  left: var(--s-5);
  bottom: var(--s-5);
  right: var(--s-5);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: var(--s-3);
  color: var(--text-inv);
}
.cover__cap-tag {
  padding: 6px 10px;
  background: rgba(11, 14, 18, 0.75);
  backdrop-filter: blur(8px);
  border-radius: var(--r-2);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* -----------------------------------------------------------
   36. RESPONSIVE TUNING
   ----------------------------------------------------------- */
@media (max-width: 640px) {
  :root { --nav-h: 64px; --nav-h-scrolled: 56px; }
  .section { padding: var(--s-10) 0; }
  .section--lg { padding: var(--s-11) 0; }
  .hero { min-height: 640px; }
  .hero__title { font-size: clamp(2.5rem, 9vw, 3.5rem); }
  .btn { padding: 12px 18px; }
  .btn--lg { padding: 15px 22px; }
  .quote { padding: var(--s-5); }
  .quote__body { font-size: var(--fs-base); }
  .svc-card { padding: var(--s-5); }
  .form-card { padding: var(--s-6); }
  .hero__meta { gap: var(--s-5); }
}

/* Print */
@media print {
  .nav, .announce, .cta-band, .sticky-cta, .footer { display: none; }
  .hero, .page-head { background: white; color: black; }
  .hero__bg, .page-head__grid-bg { display: none; }
}
