/* ============================================================
   JB3 HVAC — Thermal Editorial
   A redesign focused on premium typography, climate duality,
   and editorial composition.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400..900;1,400..900&family=Geist:wght@300..700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Palette — JB3 brand: red, white & blue */
  --ink: #003B79;                       /* JB3 brand blue */
  --ink-2: #002C5C;                     /* deeper for layered surfaces */
  --ink-3: #00214A;                     /* deepest blue */
  --paper: #FFFFFF;                     /* true white */
  --paper-2: #F4F6FA;                   /* faintly blue-tinted white */
  --paper-3: #E5ECF4;
  --cream: #FAFBFD;                     /* near-white card surface */
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --line-ink: rgba(0, 59, 121, 0.14);
  --line-ink-strong: rgba(0, 59, 121, 0.32);
  --muted: #9CB3CC;                     /* blue-grey for muted text on navy */
  --muted-ink: #5A7299;                 /* deeper blue-grey for muted text on white */

  /* Brand accents */
  --flame: #CB2028;                     /* JB3 brand red */
  --flame-deep: #8E1219;
  --ember: #E55561;                     /* lighter red highlight */
  --frost: #5B9BD5;                     /* sky-blue accent */
  --frost-deep: #2D6BAA;
  --signal: #FFFFFF;

  /* Typography */
  --display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --sans: 'Geist', -apple-system, 'Helvetica Neue', sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--ink);
  color: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

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

/* ----------------------------------------------------------
   Grain + thermal background
   ---------------------------------------------------------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ----------------------------------------------------------
   Container + utility
   ---------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--flame);
}
.eyebrow .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--flame);
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(203, 32, 40, 0.6); }
  50% { opacity: 0.55; box-shadow: 0 0 0 6px rgba(203, 32, 40, 0); }
}

.section-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ----------------------------------------------------------
   NAV
   ---------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 18px 0;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(0, 59, 121, 0.62);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease-out), padding 0.35s var(--ease-out);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 96, "SOFT" 30;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.nav__monogram {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--flame) 0%, var(--flame-deep) 60%, #4a0a0e 100%);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 8px 28px -10px rgba(203, 32, 40, 0.55);
  position: relative;
  overflow: hidden;
}
.nav__monogram::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.5), transparent 50%);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav__links a {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
  opacity: 0.78;
}
.nav__links a:hover, .nav__links a.is-active {
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px 11px 14px;
  border-radius: 999px;
  background: var(--flame);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  box-shadow: 0 10px 30px -10px rgba(203, 32, 40, 0.6);
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(203, 32, 40, 0.75);
}
.nav__cta-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink);
  position: relative;
}
.nav__cta-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(0, 59, 121, 0.35);
  animation: ring 1.6s ease-out infinite;
}
@keyframes ring {
  0% { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
}
.nav__toggle span {
  width: 18px; height: 1.5px;
  background: var(--paper);
  position: relative;
}
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 18px; height: 1.5px;
  background: var(--paper);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }

@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
}
@media (max-width: 540px) {
  .nav__cta span { display: none; }
  .nav__cta::after { content: "CALL"; }
}

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  padding: 90px 32px 32px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease-out);
}
.nav__drawer.is-open { transform: translateY(0); }
.nav__drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav__drawer a {
  font-family: var(--display);
  font-size: clamp(32px, 7vw, 56px);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.025em;
  color: var(--paper);
  padding: 6px 0;
  display: block;
  border-bottom: 1px solid var(--line);
}
.nav__drawer-close {
  position: absolute; top: 20px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
}

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */
.hero {
  position: relative;
  padding: 160px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.hero__thermal {
  position: absolute;
  inset: -20% -10% -20% -10%;
  z-index: -1;
  background:
    radial-gradient(60% 60% at 75% 30%, rgba(203, 32, 40, 0.45), transparent 60%),
    radial-gradient(50% 50% at 20% 75%, rgba(91, 155, 213, 0.30), transparent 60%),
    radial-gradient(70% 60% at 50% 50%, rgba(229, 85, 97, 0.10), transparent 70%);
  filter: blur(40px);
  animation: thermal 18s ease-in-out infinite alternate;
}
@keyframes thermal {
  0% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-20px, 10px, 0) scale(1.05); }
  100% { transform: translate3d(15px, -15px, 0) scale(0.98); }
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent 80%);
}
.hero__wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero__wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 120px 0 80px; }
}
.hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.hero__meta-line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, var(--line-strong), transparent);
  max-width: 80px;
}

.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-variation-settings: "opsz" 144, "SOFT" 35, "WONK" 0;
  font-size: clamp(56px, 8.8vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--paper);
  margin-bottom: 28px;
}
.hero__title .row { display: block; overflow: hidden; }
.hero__title em {
  font-style: italic;
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--flame);
  position: relative;
  display: inline-block;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  bottom: 8%; height: 14%;
  background: linear-gradient(90deg, transparent, rgba(203, 32, 40, 0.18), transparent);
  z-index: -1;
  filter: blur(8px);
}
.hero__title .frost { color: var(--frost); }
.hero__sub {
  font-family: var(--sans);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 26px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 0.25s var(--ease-out), background 0.25s, color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.btn--flame {
  background: var(--flame);
  color: var(--ink);
  box-shadow: 0 18px 50px -15px rgba(203, 32, 40, 0.55);
}
.btn--flame:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px -15px rgba(203, 32, 40, 0.75);
}
.btn--ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn--ink {
  background: var(--ink);
  color: var(--paper);
}
.btn--ink:hover {
  transform: translateY(-3px);
  background: var(--ink-3);
  box-shadow: 0 18px 50px -15px rgba(0, 59, 121, 0.45);
}
.btn .arr {
  width: 18px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.25s var(--ease-out);
}
.btn .arr::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arr { width: 28px; }

.hero__strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.hero__strip-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__strip-item .label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__strip-item .value {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: 28px;
  letter-spacing: -0.025em;
  color: var(--paper);
  font-weight: 700;
}
.hero__strip-item .value em {
  font-style: italic;
  color: var(--frost);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
}

/* Hero panel — thermostat dial */
.hero__panel {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.hero__dial {
  position: relative;
  width: 100%; max-width: 480px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.06), transparent 50%),
    radial-gradient(circle at 50% 50%, var(--ink-3), var(--ink) 75%);
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 0 0 1px rgba(203, 32, 40, 0.10),
    0 40px 120px -30px rgba(203, 32, 40, 0.45),
    0 30px 80px -30px rgba(91, 155, 213, 0.25);
}
.hero__dial::before {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: conic-gradient(
    from -120deg,
    var(--frost) 0deg,
    var(--frost-deep) 60deg,
    transparent 90deg,
    transparent 150deg,
    var(--ember) 180deg,
    var(--flame) 240deg,
    var(--flame-deep) 300deg,
    transparent 330deg
  );
  -webkit-mask: radial-gradient(circle, transparent 60%, black 60%, black 64%, transparent 64%);
          mask: radial-gradient(circle, transparent 60%, black 60%, black 64%, transparent 64%);
  opacity: 0.85;
  animation: rotate-dial 30s linear infinite;
}
@keyframes rotate-dial {
  to { transform: rotate(360deg); }
}
.hero__dial-inner {
  position: relative;
  width: 70%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, var(--ink-3), var(--ink));
  display: grid; place-items: center;
  text-align: center;
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.05),
    inset 0 -30px 60px rgba(0,0,0,0.5);
}
.hero__dial-temp {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-size: clamp(72px, 12vw, 130px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--paper);
  position: relative;
}
.hero__dial-temp sup {
  font-size: 0.3em;
  vertical-align: top;
  margin-left: 4px;
  color: var(--flame);
  font-variation-settings: "opsz" 9, "SOFT" 100;
}
.hero__dial-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.hero__dial-mode {
  position: absolute;
  bottom: 16%;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--flame);
  display: flex; align-items: center; gap: 6px;
}
.hero__dial-mode .pip {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--flame);
  animation: pulse 1.6s ease-in-out infinite;
}

/* Floating ticks around dial */
.hero__ticks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__ticks i {
  position: absolute;
  left: 50%; top: 50%;
  width: 1px; height: 8px;
  background: var(--line-strong);
  transform-origin: 50% calc(50% + 200px);
}

/* ----------------------------------------------------------
   MARQUEE
   ---------------------------------------------------------- */
.marquee {
  background: var(--paper);
  color: var(--ink);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--line-ink);
  border-bottom: 1px solid var(--line-ink);
  position: relative;
}
.marquee__track {
  display: flex;
  gap: 60px;
  animation: marquee 50s linear infinite;
  width: max-content;
}
.marquee__track span {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 700;
  font-size: clamp(26px, 4vw, 44px);
  letter-spacing: -0.025em;
  display: inline-flex; align-items: center; gap: 60px;
  white-space: nowrap;
}
.marquee__track span em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--flame);
}
.marquee__track .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink);
  display: inline-block;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ----------------------------------------------------------
   SECTION SHELL
   ---------------------------------------------------------- */
.section {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 720px) { .section { padding: 80px 0; } }

.section--paper {
  background: var(--paper);
  color: var(--ink);
}
.section--paper .section-tag { color: var(--muted-ink); }
.section--paper .eyebrow { color: var(--flame-deep); }
.section--paper .eyebrow .dot { background: var(--flame-deep); }
.section--paper .display { color: var(--ink); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 72px;
}
@media (max-width: 860px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

.display {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--paper);
}
.display em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-weight: 600;
  color: var(--flame);
}
.display--xl { font-size: clamp(48px, 7vw, 100px); }
.display--lg { font-size: clamp(40px, 5.4vw, 80px); }
.display--md { font-size: clamp(32px, 4vw, 56px); }
.display--sm { font-size: clamp(24px, 2.8vw, 36px); }

.lede {
  font-family: var(--sans);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 460px;
}
.section--paper .lede { color: var(--muted-ink); }

/* ----------------------------------------------------------
   WHY CHOOSE (Capabilities grid)
   ---------------------------------------------------------- */
.capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-ink);
  border-bottom: 1px solid var(--line-ink);
}
@media (max-width: 1100px) { .capabilities { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .capabilities { grid-template-columns: 1fr; } }

.cap {
  padding: 40px 32px 36px;
  border-right: 1px solid var(--line-ink);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  background: transparent;
  transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out);
  min-height: 380px;
}
.cap:last-child { border-right: none; }
@media (max-width: 1100px) {
  .cap:nth-child(2n) { border-right: none; }
  .cap:nth-child(1), .cap:nth-child(2) { border-bottom: 1px solid var(--line-ink); }
}
@media (max-width: 600px) {
  .cap { border-right: none; border-bottom: 1px solid var(--line-ink); }
  .cap:last-child { border-bottom: none; }
}
.cap:hover {
  background: var(--ink);
  color: var(--paper);
}
.cap:hover .cap__num { color: var(--flame); }
.cap:hover .cap__tag { color: var(--muted); }
.cap:hover .cap__link { color: var(--flame); border-color: var(--flame); }

.cap__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--muted-ink);
  display: flex; align-items: center; gap: 10px;
}
.cap__num::before {
  content: ""; width: 14px; height: 1px; background: currentColor;
}
.cap__title {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.cap__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--flame);
}
.cap__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-ink);
}
.cap__body {
  font-size: 14.5px;
  line-height: 1.55;
  color: inherit;
  opacity: 0.85;
  flex: 1;
}
.cap__link {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 10px;
  transition: gap 0.25s var(--ease-out);
}
.cap__link:hover { gap: 16px; }

/* ----------------------------------------------------------
   METRICS / Stats
   ---------------------------------------------------------- */
.metrics {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.metrics::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 60% at 100% 0%, rgba(203, 32, 40, 0.20), transparent 60%),
    radial-gradient(50% 70% at 0% 100%, rgba(91, 155, 213, 0.16), transparent 60%);
  z-index: 0;
}
.metrics .wrap { position: relative; z-index: 1; }

.metrics__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 720px) { .metrics__head { grid-template-columns: 1fr; } }

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 900px) { .metrics__grid { grid-template-columns: repeat(2, 1fr); } }
.metric {
  padding: 36px 4px 0 4px;
  border-right: 1px solid var(--line);
  position: relative;
}
.metric:nth-child(1) { padding-left: 0; }
.metric:last-child { border-right: none; }
@media (max-width: 900px) {
  .metric:nth-child(2n) { border-right: none; }
  .metric:nth-child(3), .metric:nth-child(4) { border-top: 1px solid var(--line); margin-top: 36px; }
}

.metric__value {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 20;
  font-weight: 600;
  font-size: clamp(60px, 8vw, 110px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--paper);
  display: flex;
  align-items: flex-start;
  gap: 2px;
}
.metric__value .plus {
  font-size: 0.3em;
  color: var(--flame);
  margin-top: 0.55em;
  font-variation-settings: "opsz" 9, "SOFT" 80;
}
.metric__value .frost { color: var(--frost); }
.metric__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 20px;
  max-width: 200px;
  line-height: 1.5;
}

/* ----------------------------------------------------------
   FEATURE BLOCK — Peace of Mind / problems list
   ---------------------------------------------------------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 980px) { .feature { grid-template-columns: 1fr; gap: 48px; } }

.feature__intro p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted-ink);
  max-width: 480px;
}

.signal-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line-ink);
}
.signal-list li {
  display: grid;
  grid-template-columns: 60px 1fr 24px;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-ink);
  font-size: 15.5px;
  line-height: 1.4;
  transition: padding 0.25s var(--ease-out), color 0.25s var(--ease-out);
}
.signal-list li:hover {
  padding-left: 12px;
  color: var(--flame-deep);
}
.signal-list .ix {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted-ink);
}
.signal-list .arrow {
  width: 14px; height: 14px;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: relative;
  opacity: 0.5;
  transition: opacity 0.25s, transform 0.25s;
}
.signal-list .arrow::after {
  content: ""; position: absolute;
  left: 4px; top: 4px;
  width: 4px; height: 4px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.signal-list li:hover .arrow { opacity: 1; transform: translateX(4px); }

/* ----------------------------------------------------------
   TESTIMONIALS
   ---------------------------------------------------------- */
.reviews {
  position: relative;
}
.reviews__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 720px) { .reviews__head { grid-template-columns: 1fr; } }
.reviews__controls {
  display: flex; gap: 10px;
}
.reviews__ctrl {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  transition: background 0.25s var(--ease-out), color 0.25s, border-color 0.25s;
}
.reviews__ctrl:hover {
  background: var(--flame);
  border-color: var(--flame);
  color: var(--ink);
}
.reviews__ctrl svg { width: 18px; height: 18px; }

.reviews__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
  scrollbar-width: none;
}
.reviews__track::-webkit-scrollbar { display: none; }
.review {
  flex: 0 0 min(440px, 80vw);
  scroll-snap-align: start;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.review:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.review__quote-mark {
  font-family: var(--display);
  font-size: 80px;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-style: italic;
  font-weight: 600;
  line-height: 0.6;
  color: var(--flame);
  height: 30px;
}
.review__body {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 25;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--paper);
  flex: 1;
}
.review__foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.review__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line-strong);
}
.review__name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  line-height: 1.4;
}
.review__name span {
  display: block;
  color: var(--muted);
  margin-top: 2px;
}
.review__source {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--flame);
  padding: 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.review__source:hover {
  background: var(--flame); color: var(--ink); border-color: var(--flame);
}

/* ----------------------------------------------------------
   BRANDS
   ---------------------------------------------------------- */
.brands {
  background: var(--paper);
  color: var(--ink);
  padding: 100px 0 80px;
  border-top: 1px solid var(--line-ink);
}
.brands .display { color: var(--ink); }
.brands .eyebrow { color: var(--flame-deep); }
.brands .eyebrow .dot { background: var(--flame-deep); }
.brands .lede { color: var(--muted-ink); }
.brands .section-tag { color: var(--muted-ink); }
.brands__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-ink-strong);
  margin-top: 56px;
}
@media (max-width: 1080px) { .brands__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 540px) { .brands__grid { grid-template-columns: repeat(2, 1fr); } }
.brand {
  aspect-ratio: 5 / 3;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line-ink);
  border-bottom: 1px solid var(--line-ink);
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s var(--ease-out);
}
.brand:hover { background: var(--cream); }
.brand img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 0.3s var(--ease-out);
}
.brand:hover img { transform: scale(1.06); }

/* ----------------------------------------------------------
   NEWS / Featured article
   ---------------------------------------------------------- */
.article-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border: 1px solid var(--line-ink);
  border-radius: 24px;
  overflow: hidden;
  background: var(--cream);
  margin-top: 56px;
}
@media (max-width: 860px) { .article-card { grid-template-columns: 1fr; } }
.article-card__img {
  aspect-ratio: 16 / 11;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.article-card__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,91,30,0.10), transparent 60%);
  mix-blend-mode: multiply;
}
.article-card__body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
}
.article-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-ink);
}
.article-card__meta .pill {
  padding: 6px 10px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-weight: 500;
}
.article-card__title {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}
.article-card__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--flame);
}
.article-card__desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted-ink);
}

/* ----------------------------------------------------------
   BIG CTA STRIP
   ---------------------------------------------------------- */
.cta-strip {
  background:
    radial-gradient(50% 80% at 80% 50%, rgba(203, 32, 40, 0.4), transparent 60%),
    radial-gradient(40% 70% at 10% 50%, rgba(91, 155, 213, 0.25), transparent 60%),
    var(--ink);
  color: var(--paper);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip .wrap { position: relative; z-index: 2; }
.cta-strip__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) { .cta-strip__grid { grid-template-columns: 1fr; gap: 32px; } }
.cta-strip__title {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 35;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.cta-strip__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--flame);
}
.cta-strip__sub {
  font-size: 16px;
  color: var(--muted);
  margin-top: 18px;
  max-width: 440px;
  line-height: 1.55;
}
.cta-strip__actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.cta-strip__phone {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-weight: 700;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.03em;
}
.cta-strip__phone span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--flame);
}

/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0 36px;
  border-top: 1px solid var(--line);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 980px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 380px;
}
.footer__brand-mark {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 96, "SOFT" 30;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.footer__brand-blurb {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}
.footer__col h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  font-family: var(--display);
  font-variation-settings: "opsz" 14, "SOFT" 20;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--paper);
  transition: color 0.25s;
}
.footer__col a:hover { color: var(--flame); }
.footer__phone {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.03em;
  display: inline-block;
  margin-bottom: 8px;
}
.footer__phone:hover { color: var(--flame); }
.footer__address {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  font-style: normal;
}
.footer__social {
  display: flex; gap: 8px;
  margin-top: 24px;
}
.footer__social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  transition: background 0.25s var(--ease-out), color 0.25s, border-color 0.25s, transform 0.25s;
  color: var(--paper);
}
.footer__social a:hover {
  background: var(--flame);
  color: var(--ink);
  border-color: var(--flame);
  transform: translateY(-2px);
}
.footer__social svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer__bottom {
  padding: 32px 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.footer__bottom a { color: var(--muted); }
.footer__bottom a:hover { color: var(--paper); }

/* Payment + financing icons live at the very bottom */
.footer__partners {
  padding: 32px 0 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}
.footer__partners span.label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer__partners-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}
.footer__partners-list img {
  height: 30px;
  opacity: 0.7;
  filter: grayscale(1) brightness(2.2);
  transition: opacity 0.25s, filter 0.25s;
}
.footer__partners-list img:hover { opacity: 1; filter: none; }
.footer__partners-list img.cards {
  height: 38px;
  width: auto;
  filter: none;
  opacity: 1;
  background: #FFFFFF;
  padding: 4px 8px;
  border-radius: 6px;
  box-shadow: 0 2px 12px -4px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.footer__partners-list img.cards:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px -4px rgba(0, 0, 0, 0.45);
}

/* ----------------------------------------------------------
   FORM
   ---------------------------------------------------------- */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
.form .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--muted-ink);
}
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-ink-strong);
  padding: 10px 0 14px;
  font-family: var(--display);
  font-variation-settings: "opsz" 14, "SOFT" 20;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
  border-radius: 0;
  transition: border-color 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--flame);
}
.field textarea { resize: vertical; min-height: 100px; }
@media (max-width: 640px) { .form { grid-template-columns: 1fr; } }

/* For dark-form on ink */
.section--ink .field label { color: var(--muted); }
.section--ink .field input,
.section--ink .field select,
.section--ink .field textarea {
  color: var(--paper);
  border-bottom-color: var(--line-strong);
}

/* ----------------------------------------------------------
   SERVICES PAGE — Tabs
   ---------------------------------------------------------- */
.page-hero {
  padding: 180px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 60% at 80% 30%, rgba(203, 32, 40, 0.30), transparent 60%),
    radial-gradient(35% 60% at 15% 70%, rgba(91, 155, 213, 0.22), transparent 60%);
  filter: blur(40px);
  z-index: -1;
}
.page-hero__crumbs {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  display: flex; gap: 8px;
}
.page-hero__crumbs a { color: var(--muted); }
.page-hero__crumbs a:hover { color: var(--flame); }
.page-hero__title {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 700;
  font-size: clamp(56px, 9vw, 156px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--paper);
  max-width: 1200px;
}
.page-hero__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--flame);
  font-weight: 250;
}
.page-hero__sub {
  margin-top: 32px;
  max-width: 540px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
}

.tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  border-bottom: 1px solid var(--line-ink);
  padding-bottom: 24px;
  margin-bottom: 56px;
}
.tab {
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  color: var(--muted-ink);
  border: 1px solid var(--line-ink-strong);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.tab:hover { color: var(--ink); }
.tab.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.tab-panel { display: none; }
.tab-panel.is-active {
  display: block;
  animation: fade-in 0.5s var(--ease-out);
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split h3 {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.split p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted-ink);
  margin-bottom: 18px;
}

.seer-card {
  border: 1px solid var(--line-ink);
  border-radius: 24px;
  padding: 32px;
  background: var(--cream);
}
.seer-card__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-ink);
  margin-bottom: 16px;
}
.seer-card__title {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.seer-card__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--flame);
}
.seer-card__big {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 600;
  font-size: clamp(72px, 10vw, 124px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 24px 0 8px;
  color: var(--flame);
}
.seer-card__big span {
  font-size: 0.32em;
  vertical-align: top;
  margin-left: 6px;
  color: var(--ink);
  font-variation-settings: "opsz" 14, "SOFT" 100;
}
.seer-card__table {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 24px;
  margin-top: 20px;
  border-top: 1px solid var(--line-ink);
  padding-top: 20px;
}
.seer-card__table dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-ink);
}
.seer-card__table dd {
  font-family: var(--display);
  font-variation-settings: "opsz" 14, "SOFT" 20;
  font-weight: 400;
  font-size: 20px;
  color: var(--ink);
  text-align: right;
}

/* Pricing cards */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
@media (max-width: 860px) { .pricing { grid-template-columns: 1fr; } }
.price {
  border: 1px solid var(--line-ink);
  border-radius: 22px;
  padding: 36px 28px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.price.is-feature {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.price.is-feature .price__sub { color: var(--muted); }
.price.is-feature .price__list li { border-color: var(--line); }
.price.is-feature .price__list .check { color: var(--flame); }
.price__name {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.price__amount {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 600;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price__amount span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-ink);
}
.price.is-feature .price__amount span { color: var(--muted); }
.price__sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-ink);
}
.price__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line-ink);
  margin-top: 4px;
}
.price__list li {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-ink);
  font-size: 14.5px;
}
.price__list .check {
  width: 16px; height: 16px;
  color: var(--flame-deep);
  flex-shrink: 0;
}
.price button, .price a.btn-price {
  margin-top: auto;
  align-self: flex-start;
}

/* Service list grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-ink);
}
@media (max-width: 1100px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .svc-grid { grid-template-columns: 1fr; } }
.svc {
  padding: 24px 20px 24px 0;
  border-right: 1px solid var(--line-ink);
  border-bottom: 1px solid var(--line-ink);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 130px;
}
.svc:nth-child(4n) { border-right: none; }
@media (max-width: 1100px) {
  .svc:nth-child(2n) { border-right: none; }
  .svc:nth-child(4n) { border-right: 1px solid var(--line-ink); }
  .svc:nth-child(2n) { border-right: none; }
}
@media (max-width: 540px) {
  .svc { border-right: none; }
}
.svc__ix {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted-ink);
}
.svc__name {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}

/* HERO finance program list */
.hero-program {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  margin-top: 32px;
}
@media (max-width: 860px) { .hero-program { grid-template-columns: 1fr; gap: 32px; } }
.hero-program ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-ink);
}
.hero-program li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-ink);
  font-size: 15px;
  line-height: 1.45;
}
.hero-program li .ix {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--flame-deep);
}

/* Finance partner row */
.finance-partners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 720px) { .finance-partners { grid-template-columns: repeat(2, 1fr); } }
.finance-partner {
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line-ink);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 2;
  transition: background 0.3s;
}
.finance-partner:hover { background: var(--paper-3); }
.finance-partner img { max-height: 50px; opacity: 0.9; }

/* ----------------------------------------------------------
   CONTACT PAGE
   ---------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-info__row {
  padding: 24px 0;
  border-top: 1px solid var(--line-ink);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: start;
}
.contact-info__row:last-child { border-bottom: 1px solid var(--line-ink); }
.contact-info__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-ink);
  padding-top: 4px;
}
.contact-info__value {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}
.contact-info__value.phone { font-size: clamp(28px, 3vw, 42px); font-weight: 350; }
.contact-info__value em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--flame);
}

.contact-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: 28px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 80% at 100% 0%, rgba(203, 32, 40, 0.3), transparent 60%),
    radial-gradient(50% 80% at 0% 100%, rgba(91, 155, 213, 0.18), transparent 60%);
  z-index: 0;
}
.contact-card > * { position: relative; z-index: 1; }

.map-frame {
  margin-top: 64px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line-ink);
  aspect-ratio: 16 / 7;
  position: relative;
  background: var(--ink-2);
}
.map-frame iframe {
  width: 100%; height: 100%; border: none;
  filter: grayscale(0.4) contrast(1.05);
}

/* ----------------------------------------------------------
   ABOUT PAGE
   ---------------------------------------------------------- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 980px) { .about-intro { grid-template-columns: 1fr; gap: 32px; } }
.about-intro__years {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 600;
  font-size: clamp(140px, 22vw, 320px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--flame);
  position: relative;
}
.about-intro__years sup {
  font-size: 0.18em;
  font-variation-settings: "opsz" 14, "SOFT" 100;
  color: var(--ink);
  margin-left: 4px;
}
.about-intro__years em {
  display: block;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-size: 0.18em;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.about-intro__copy p {
  font-family: var(--display);
  font-variation-settings: "opsz" 14, "SOFT" 30;
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 24px;
}
.about-intro__copy p em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--flame);
}

.area-map {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--line);
}
@media (max-width: 980px) { .area-map { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .area-map { grid-template-columns: repeat(2, 1fr); } }
.area {
  padding: 28px 16px 28px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.area:nth-child(6n) { border-right: none; }
.area__name {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.025em;
  color: var(--paper);
}
.area__county {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ----------------------------------------------------------
   Animation utilities
   ---------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.is-visible:nth-child(2) { transition-delay: 0.06s; }
.reveal.is-visible:nth-child(3) { transition-delay: 0.12s; }
.reveal.is-visible:nth-child(4) { transition-delay: 0.18s; }
.reveal.is-visible:nth-child(5) { transition-delay: 0.24s; }

/* Print-ish hidden helpers */
.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;
}

/* ----------------------------------------------------------
   BRAND MARK (real logo image)
   ---------------------------------------------------------- */
.nav__logo-img {
  height: 42px; width: auto; display: block;
  filter: brightness(0) invert(1);
  transition: opacity 0.25s var(--ease-out);
}
.nav__brand:hover .nav__logo-img { opacity: 0.85; }

.footer__logo-img {
  height: 64px; width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 8px;
}

/* ----------------------------------------------------------
   PROFILE CARD (about page hero)
   ---------------------------------------------------------- */
.profile-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 4 / 5;
  max-width: 460px;
  box-shadow:
    0 50px 100px -30px rgba(0, 59, 121, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  isolation: isolate;
}
.profile-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  filter: saturate(0.95) contrast(1.05);
}
.profile-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(203, 32, 40, 0.30), transparent 60%),
    linear-gradient(180deg, transparent 50%, rgba(0, 59, 121, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
}
.profile-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  padding: 2px;
  background: linear-gradient(135deg, var(--flame), transparent 40%, transparent 60%, var(--frost));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.55;
  pointer-events: none;
  z-index: 2;
}
.profile-card__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.profile-card__name {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -0.025em;
  color: var(--paper);
  line-height: 1;
}
.profile-card__name em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--flame);
}
.profile-card__role {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.7;
}
.profile-card__chip {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 10px;
  border-radius: 999px;
  background: rgba(0, 59, 121, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
}
.profile-card__chip .pip {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--frost);
  box-shadow: 0 0 0 3px rgba(91, 155, 213, 0.25);
}

/* Tweak about-intro to host the profile card */
.about-intro {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  align-items: center;
}
.about-intro__media { position: relative; }
.about-intro__years--with-photo {
  font-size: clamp(110px, 16vw, 220px);
  margin-bottom: 24px;
}
@media (max-width: 980px) {
  .about-intro { grid-template-columns: 1fr; }
  .profile-card { max-width: 100%; aspect-ratio: 3/4; }
}

/* ----------------------------------------------------------
   BRAND GRID — fitted to 15 items
   ---------------------------------------------------------- */
.brands__grid {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 980px) { .brands__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .brands__grid { grid-template-columns: repeat(2, 1fr); } }
.brand img { max-height: 80px; }

/* ----------------------------------------------------------
   TRUST BADGE STRIP (extra)
   ---------------------------------------------------------- */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px 48px;
  padding: 40px 0 12px;
  margin-top: 24px;
}
.trust-badges img {
  height: 64px;
  opacity: 1;
  filter: none;
  transition: transform 0.25s var(--ease-out);
}
.trust-badges img:hover { transform: scale(1.05); }
.trust-badges .badge-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-ink);
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-badges .badge-label::before,
.trust-badges .badge-label::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--line-ink-strong);
}

/* ----------------------------------------------------------
   LEGAL PAGES (privacy, terms)
   ---------------------------------------------------------- */
.legal {
  padding: 140px 0 80px;
  position: relative;
}
.legal__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .legal__inner { padding: 0 20px; } }
.legal__crumbs {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  display: flex; gap: 8px;
}
.legal__crumbs a { color: var(--muted); }
.legal__crumbs a:hover { color: var(--flame); }
.legal__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 5.5vw, 64px);
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--paper);
  margin-bottom: 18px;
}
.legal__title em {
  font-style: italic;
  color: var(--flame);
}
.legal__updated {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 56px;
}
.legal__body {
  background: var(--paper);
  color: var(--ink);
  padding: 56px;
  border-radius: 24px;
  border: 1px solid var(--line-ink);
  font-family: var(--sans);
}
@media (max-width: 720px) {
  .legal__body { padding: 36px 24px; border-radius: 16px; }
  .legal { padding: 120px 0 60px; }
}
.legal__body h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 40px 0 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line-ink);
}
.legal__body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal__body h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 24px 0 8px;
}
.legal__body p {
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 14px;
  color: var(--ink);
}
.legal__body p strong { font-weight: 600; }
.legal__body ul {
  list-style: none;
  margin: 8px 0 18px;
  padding: 0;
}
.legal__body ul li {
  padding: 6px 0 6px 24px;
  font-size: 15.5px;
  line-height: 1.55;
  position: relative;
}
.legal__body ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 14px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--flame);
}
.legal__body ol {
  margin: 8px 0 18px;
  padding-left: 22px;
}
.legal__body ol li {
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 14px;
}
.legal__body a {
  color: var(--flame-deep);
  border-bottom: 1px solid var(--flame-deep);
  transition: color 0.2s, border-color 0.2s;
}
.legal__body a:hover { color: var(--flame); border-color: var(--flame); }
.legal__contact {
  margin-top: 32px;
  padding: 24px 28px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--paper);
}
.legal__contact h3 {
  color: var(--paper);
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 12px;
  border: none;
  padding: 0;
}
.legal__contact p {
  margin: 0 0 4px;
  color: var(--paper);
  font-size: 14.5px;
  line-height: 1.5;
}
.legal__contact a { color: var(--flame); border: none; }
.legal__contact a:hover { color: var(--paper); }

/* ----------------------------------------------------------
   SERVICES MOSAIC (home page block under hero)
   Compact icon-tile grid in the R.T. Olson style
   ---------------------------------------------------------- */
.services-mosaic {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 48px;
}
@media (max-width: 1100px) { .services-mosaic { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 860px) { .services-mosaic { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .services-mosaic { grid-template-columns: repeat(2, 1fr); } }

.svc-tile {
  background: var(--cream);
  border: 1px solid var(--line-ink);
  border-radius: 16px;
  padding: 26px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 14px;
  min-height: 150px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.28s var(--ease-out), color 0.28s var(--ease-out), border-color 0.28s, transform 0.28s var(--ease-out), box-shadow 0.28s;
  position: relative;
  overflow: hidden;
}
.svc-tile:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -22px rgba(0, 59, 121, 0.45);
}

.svc-tile__icon {
  width: 44px;
  height: 44px;
  color: var(--flame);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out), color 0.3s;
}
.svc-tile:hover .svc-tile__icon {
  transform: scale(1.08);
}
.svc-tile__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.svc-tile__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.services-mosaic__footer {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.services-mosaic__footer p {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-ink);
}

/* ----------------------------------------------------------
   BLOG INDEX + ARTICLE PAGES
   ---------------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
}
@media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--cream);
  border: 1px solid var(--line-ink);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-ink-strong);
  box-shadow: 0 30px 60px -30px rgba(0, 59, 121, 0.35);
}
.blog-card__img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.blog-card__img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(203, 32, 40, 0.10), transparent 60%);
  mix-blend-mode: multiply;
}
.blog-card__body {
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-ink);
}
.blog-card__pill {
  padding: 5px 10px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-weight: 500;
}
.blog-card__title {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.blog-card__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--flame);
}
.blog-card__excerpt {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted-ink);
}
.blog-card__more {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-ink-strong);
  align-self: flex-start;
  transition: gap 0.25s var(--ease-out), color 0.25s, border-color 0.25s;
}
.blog-card:hover .blog-card__more { gap: 16px; color: var(--flame); border-color: var(--flame); }

.blog-card--placeholder {
  background: transparent;
  border-style: dashed;
  border-color: var(--line-ink);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 56px 32px;
  min-height: 380px;
}
.blog-card--placeholder .blog-card__title {
  color: var(--muted-ink);
  font-weight: 700;
}
.blog-card--placeholder .blog-card__excerpt { max-width: 280px; margin: 0 auto; }

/* ---- ARTICLE PAGE ---- */
.article {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.article__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .article__inner { padding: 0 20px; } }

.article__crumbs {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.article__crumbs a { color: var(--muted); }
.article__crumbs a:hover { color: var(--flame); }
.article__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.article__meta .pill {
  padding: 6px 11px;
  background: var(--flame);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 600;
}
.article__title {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 76px);
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: var(--paper);
  margin-bottom: 28px;
}
.article__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--flame);
}
.article__lede {
  font-family: var(--display);
  font-variation-settings: "opsz" 14, "SOFT" 25;
  font-weight: 400;
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 680px;
}
.article__hero-img {
  width: 100%;
  border-radius: 24px;
  margin-bottom: 56px;
  display: block;
  border: 1px solid var(--line);
}

.article__body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  padding: 64px;
  border-radius: 28px;
  border: 1px solid var(--line-ink);
}
@media (max-width: 720px) { .article__body { padding: 36px 24px; border-radius: 18px; } }

.article__body h2 {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 48px 0 18px;
}
.article__body h2 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--flame);
}
.article__body h2:first-child { margin-top: 0; }
.article__body h2 .num {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.45em;
  font-weight: 500;
  vertical-align: 0.5em;
  color: var(--flame);
  margin-right: 16px;
  letter-spacing: 0;
}
.article__body p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 18px;
}
.article__body p:last-child { margin-bottom: 0; }
.article__body p strong { font-weight: 600; }
.article__body a {
  color: var(--flame-deep);
  border-bottom: 1px solid var(--flame-deep);
  transition: color 0.2s, border-color 0.2s;
}
.article__body a:hover { color: var(--flame); border-color: var(--flame); }

.article__cta {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--ink-2), var(--ink));
  border: 1px solid var(--line);
}
.article__cta-text {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--paper);
  max-width: 460px;
}
.article__cta-text em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--flame);
}

.article__nav {
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.article__nav a {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 6px;
  transition: gap 0.25s var(--ease-out), color 0.25s, border-color 0.25s;
}
.article__nav a:hover { gap: 16px; color: var(--flame); border-color: var(--flame); }

/* GHL form embed — solid white panel inside the navy contact card */
.ghl-form {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  min-height: 600px;
}
.ghl-form iframe {
  display: block;
  width: 100%;
  border: 0;
  background: #FFFFFF;
  border-radius: 8px;
}

/* Services SEER image */
.seer-product {
  display: block;
  margin: 24px auto 8px;
  max-width: 320px;
  width: 100%;
  height: auto;
}

/* ----------------------------------------------------------
   Google reviews proof banner
   ---------------------------------------------------------- */
.google-proof {
  display: block;
  margin: 0 0 56px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--ink-2);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, transform 0.3s;
}
.google-proof:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.google-proof__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
  isolation: isolate;
}
.google-proof__head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 100% at 100% 50%, rgba(203, 32, 40, 0.18), transparent 60%);
  z-index: -1;
}
@media (max-width: 720px) {
  .google-proof__head { grid-template-columns: 1fr; gap: 12px; padding: 18px 20px; }
}
.google-proof__badge {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 10px;
}
.google-proof__badge .g-mark {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  background:
    radial-gradient(circle at 50% 50%, #fff 0%, #fff 28%, transparent 30%),
    conic-gradient(from -45deg, #4285F4 0deg, #34A853 90deg, #FBBC05 180deg, #EA4335 270deg, #4285F4 360deg);
  color: #4285F4;
  letter-spacing: 0;
  line-height: 1;
}
.google-proof__stat {
  font-family: var(--display);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.google-proof__stat strong { font-weight: 400; }
.google-proof__stars {
  display: inline-flex;
  gap: 1px;
  font-size: 16px;
  color: #FBBC05;
  letter-spacing: 0;
}
.google-proof__stat .reviews {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.google-proof__cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  transition: gap 0.25s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.google-proof:hover .google-proof__cta {
  gap: 14px;
  background: var(--flame);
  border-color: var(--flame);
  color: var(--ink);
}

.google-proof__media {
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.google-proof__media img {
  width: 100%;
  height: auto;
  display: block;
}
