/* Dial-A-Sparky Ltd. &mdash; site styles */
:root {
  --nav-height: 4.5rem;
  --void: #0a1424;
  --ink: #101c2e;
  --panel: #152338;
  --line: #2a4060;
  --mint: #c8102e;
  --mint-deep: #9e0c24;
  --fog: #e8eef6;
  --mist: #c5d0e0;
  --paper: #f3f6fa;
  --muted: #4a5a72;
  --danger: #b45309;
  --display: "Sora", "Segoe UI", sans-serif;
  --body: "Sora", "Segoe UI", sans-serif;
  --radius: 2px;
  --max: 1120px;
  --media-grade: saturate(0.78) contrast(1.05) brightness(0.88);
  --media-overlay-hero:
    linear-gradient(180deg, rgba(10, 20, 36, 0.35) 0%, rgba(10, 20, 36, 0.55) 42%, rgba(10, 20, 36, 0.92) 100%),
    radial-gradient(ellipse 70% 60% at 0% 100%, rgba(200, 16, 46, 0.12), transparent 55%);
  --media-overlay-page:
    linear-gradient(105deg, rgba(10, 20, 36, 0.94) 0%, rgba(10, 20, 36, 0.8) 40%, rgba(10, 20, 36, 0.5) 72%, rgba(10, 20, 36, 0.62) 100%),
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(200, 16, 46, 0.12), transparent 55%);
  --media-overlay-panel:
    linear-gradient(160deg, rgba(10, 20, 36, 0.2) 0%, rgba(10, 20, 36, 0.55) 100%),
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(200, 16, 46, 0.1), transparent 50%);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.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;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
}

/* &mdash;&mdash;&mdash; Nav &mdash;&mdash;&mdash; */
.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  color: var(--fog);
  background: var(--void);
  border-bottom: 1px solid rgba(231, 242, 236, 0.1);
}

.nav-solid {
  z-index: 50;
}

.nav-mark {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(0.78rem, 2.4vw, 0.95rem);
  letter-spacing: 0.02em;
  opacity: 0.9;
  max-width: min(52vw, 16rem);
  line-height: 1.2;
  text-decoration: none;
  position: relative;
  z-index: 40;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
  font-weight: 500;
}

.nav-links a {
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  opacity: 1;
  color: var(--mint);
}

.nav-cta {
  border-bottom: 1px solid rgba(231, 242, 236, 0.55);
  padding-bottom: 1px;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  padding: 0.35rem 0;
  border: none;
  background: transparent;
  color: var(--fog);
  cursor: pointer;
  z-index: 40;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-toggle:focus-visible {
  outline: 1px solid var(--mint);
  outline-offset: 4px;
}

.nav-toggle-label::before { content: "Menu"; }
.nav.is-open .nav-toggle-label::before {
  content: "Close";
  color: var(--mint);
}

.nav-toggle-bars {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: background 0.25s ease, width 0.25s ease;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  height: 1px;
  background: currentColor;
  transition: transform 0.28s ease, top 0.28s ease, width 0.28s ease;
}

.nav-toggle-bars::before { top: -6px; width: 22px; }
.nav-toggle-bars::after { top: 6px; width: 14px; }

.nav.is-open .nav-toggle-bars {
  background: transparent;
  width: 18px;
}

.nav.is-open .nav-toggle-bars::before {
  top: 0;
  width: 18px;
  background: var(--mint);
  transform: rotate(45deg);
}

.nav.is-open .nav-toggle-bars::after {
  top: 0;
  width: 18px;
  background: var(--mint);
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 35;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: clamp(5.5rem, 14vh, 7rem) clamp(1.25rem, 5vw, 2.5rem) clamp(2rem, 6vh, 3rem);
    list-style: none;
    background:
      radial-gradient(ellipse 80% 55% at 100% 0%, rgba(200, 16, 46, 0.14), transparent 50%),
      linear-gradient(165deg, #0a1c15 0%, var(--void) 45%, #06120e 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition: opacity 0.35s ease, transform 0.4s ease, visibility 0.35s;
  }

  .nav.is-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links li {
    border-top: 1px solid rgba(231, 242, 236, 0.12);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.4s ease;
  }

  .nav.is-open .nav-links li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav.is-open .nav-links li:nth-child(1) { transition-delay: 0.05s; }
  .nav.is-open .nav-links li:nth-child(2) { transition-delay: 0.1s; }
  .nav.is-open .nav-links li:nth-child(3) { transition-delay: 0.15s; }
  .nav.is-open .nav-links li:nth-child(4) { transition-delay: 0.2s; }
  .nav.is-open .nav-links li:nth-child(5) { transition-delay: 0.25s; }
  .nav.is-open .nav-links li:nth-child(6) { transition-delay: 0.3s; }
  .nav.is-open .nav-links li:nth-child(7) { transition-delay: 0.35s; }
  .nav.is-open .nav-links li:nth-child(8) { transition-delay: 0.4s; }

  .nav-links a {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 0;
    opacity: 1;
    font-family: var(--display);
    font-size: clamp(1.45rem, 6.5vw, 2.15rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--fog);
  }

  .nav-links a::after {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    margin-top: 0.35rem;
    border-right: 1px solid rgba(231, 242, 236, 0.35);
    border-bottom: 1px solid rgba(231, 242, 236, 0.35);
    transform: rotate(-45deg);
    flex-shrink: 0;
    transition: border-color 0.2s, transform 0.2s;
  }

  .nav-links a:hover,
  .nav-links a[aria-current="page"] { color: var(--mint); }

  .nav-links a:hover::after,
  .nav-links a[aria-current="page"]::after {
    border-color: var(--mint);
    transform: rotate(-45deg) translate(2px, 2px);
  }

  .nav-links a.nav-cta {
    border-bottom: none;
    color: var(--mint);
  }

  .nav-links a.nav-cta::after { border-color: rgba(200, 16, 46, 0.7); }

  body.nav-lock { overflow: hidden; }
}

/* &mdash;&mdash;&mdash; Breadcrumb &mdash;&mdash;&mdash; */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin: 0 0 0.85rem;
  padding: 0;
  list-style: none;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.45rem;
  color: rgba(16, 32, 24, 0.35);
}

.breadcrumb a {
  color: var(--mint-deep);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb--on-media { color: rgba(231, 242, 236, 0.65); }
.breadcrumb--on-media a { color: var(--mint); }
.breadcrumb--on-media li + li::before { color: rgba(231, 242, 236, 0.35); }

/* &mdash;&mdash;&mdash; Buttons &mdash;&mdash;&mdash; */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--mint);
  color: var(--void);
}

.btn-primary:hover { background: #45d090; }

.btn-ghost {
  background: transparent;
  color: var(--fog);
  border: 1px solid rgba(231, 242, 236, 0.45);
}

.btn-ghost:hover {
  border-color: var(--fog);
  background: rgba(231, 242, 236, 0.06);
}

.btn-ink {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(16, 32, 24, 0.22);
}

.btn-ink:hover {
  border-color: var(--mint-deep);
  background: rgba(26, 143, 88, 0.06);
  color: var(--mint-deep);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section .btn-ghost {
  color: var(--ink);
  border-color: rgba(16, 32, 24, 0.22);
}

.section .btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(16, 32, 24, 0.04);
}

/* &mdash;&mdash;&mdash; Hero &mdash;&mdash;&mdash; */
.hero {
  position: relative;
  min-height: min(calc(100svh - var(--nav-height)), 920px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(5rem, 10vh, 6.25rem) clamp(1.25rem, 4vw, 3rem) clamp(2.25rem, 5vh, 3.25rem);
  color: var(--fog);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--void);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--img) center / cover no-repeat;
  filter: var(--media-grade);
  transform: scale(1.05);
  animation: media-drift 28s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--media-overlay-hero);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: overlay;
}

@keyframes media-drift {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.2%, -0.8%, 0); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.35rem, 6.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin: 0 0 1.25rem;
  opacity: 0;
  animation: rise 0.9s ease 0.15s forwards;
}

.hero-line {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  max-width: 36ch;
  margin: 0 0 0.65rem;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: rise 0.9s ease 0.35s forwards;
}

.hero-support {
  margin: 0 0 1.75rem;
  max-width: 40ch;
  color: rgba(231, 242, 236, 0.78);
  font-size: 1.02rem;
  opacity: 0;
  animation: rise 0.9s ease 0.5s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: rise 0.9s ease 0.65s forwards;
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--fog);
  padding: clamp(4.25rem, 8vw, 5.75rem) clamp(1.25rem, 4vw, 3rem) clamp(2.25rem, 5vw, 3.25rem);
  background: var(--void);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--page-img, var(--img, none)) center / cover no-repeat;
  filter: var(--media-grade);
  transform: scale(1.05);
  animation: media-drift 28s ease-in-out infinite alternate;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--media-overlay-page);
  box-shadow: inset 0 0 0 1px rgba(231, 242, 236, 0.04);
}

.page-hero .page-hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero .eyebrow { color: var(--mint); }

.page-hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  max-width: 28ch;
}

.page-hero .lede {
  margin: 0;
  max-width: 52ch;
  font-size: 1.05rem;
  color: rgba(231, 242, 236, 0.78);
}

@media (prefers-reduced-motion: reduce) {
  .hero-media::before,
  .page-hero::before,
  .visual::before,
  .shot::before { animation: none !important; }

  .hero-brand,
  .hero-line,
  .hero-support,
  .hero-actions {
    opacity: 1;
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* &mdash;&mdash;&mdash; Sections &mdash;&mdash;&mdash; */
.section {
  padding: clamp(2.75rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3rem);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.018em;
  margin: 0 0 0.75rem;
  max-width: 28ch;
}

.section .lede {
  margin: 0;
  max-width: 54ch;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: center;
}

@media (max-width: 840px) {
  .split { grid-template-columns: 1fr; }
  .split .visual {
    order: -1;
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .hero-media::before { animation: none; }

  .hero,
  .section:first-of-type {
    scroll-margin-top: var(--nav-height);
  }
}

.visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(220px, 30vw, 360px);
  aspect-ratio: 5 / 4;
  background: var(--void);
  border-radius: var(--radius);
}

.visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--img) center / cover no-repeat;
  filter: var(--media-grade);
  transform: scale(1.05);
  animation: media-drift 32s ease-in-out infinite alternate;
}

.visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--media-overlay-panel);
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

@media (max-width: 640px) {
  .reveal.split-rise {
    transform: none;
    transition: opacity 0.6s ease;
  }

  .reveal.split-rise.in { transform: none; }
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.problem {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(200, 16, 46, 0.12), transparent 55%),
    linear-gradient(180deg, #eef5f0 0%, var(--paper) 100%);
}

.section-wash {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--void);
  color: var(--fog);
}

.section-wash::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--wash-img, none) center / cover no-repeat;
  filter: var(--media-grade) brightness(0.55);
  opacity: 0.18;
  transform: scale(1.06);
}

.section-wash::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(7, 21, 16, 0.88) 0%, rgba(7, 21, 16, 0.94) 55%, rgba(7, 21, 16, 0.97) 100%),
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(200, 16, 46, 0.1), transparent 50%);
  pointer-events: none;
}

.section-wash > * { position: relative; z-index: 1; }

.arch {
  background: var(--void);
  color: var(--fog);
}

.arch h2 { color: var(--fog); max-width: 22ch; }
.arch .lede { color: rgba(231, 242, 236, 0.7); }

.arch-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(231, 242, 236, 0.18);
}

.arch-list li {
  display: grid;
  grid-template-columns: minmax(7rem, 11rem) 1fr;
  gap: 1rem 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(231, 242, 236, 0.18);
  align-items: baseline;
}

@media (max-width: 640px) {
  .arch-list li { grid-template-columns: 1fr; gap: 0.35rem; }
}

.arch-list strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--mint);
}

.arch-list span {
  color: rgba(231, 242, 236, 0.78);
  max-width: 48ch;
}

.close {
  background: linear-gradient(180deg, #f3f7f4 0%, #eef3f0 45%, #e9efe9 100%);
  color: var(--ink);
  text-align: left;
  box-shadow:
    inset 0 28px 40px -36px rgba(7, 21, 16, 0.22),
    inset 0 -24px 36px -32px rgba(7, 21, 16, 0.18);
}

.close h2 { color: var(--ink); max-width: 22ch; }
.close .lede { color: var(--muted); margin-bottom: 1.15rem; }

.close .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  align-items: start;
}

@media (max-width: 840px) {
  .close .section-inner { grid-template-columns: 1fr; }
}

.close .btn-ghost {
  color: var(--ink);
  border-color: rgba(16, 32, 24, 0.22);
}

.close .btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(16, 32, 24, 0.04);
}

.page-cta-band .section-inner {
  display: block;
  max-width: 640px;
}

.page-cta-band .lede { margin-bottom: 1.1rem; }
.page-cta-band h2 { max-width: none; }

.vert-also {
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(16, 32, 24, 0.12);
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.vert-also a {
  color: var(--mint-deep);
  font-weight: 600;
  text-decoration: none;
}

.vert-also a:hover { text-decoration: underline; }
.vert-also .dot { color: rgba(16, 32, 24, 0.25); }

.paths { background: var(--paper); }

.path-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(16, 32, 24, 0.12);
}

.path-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(16, 32, 24, 0.12);
  text-decoration: none;
  transition: color 0.2s;
}

.path-list a:hover { color: var(--mint-deep); }

.path-list strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

.path-list span {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 42ch;
  display: block;
}

.path-list em {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--mint-deep);
}

/* &mdash;&mdash;&mdash; Shot / tile media &mdash;&mdash;&mdash; */
.shot {
  position: relative;
  isolation: isolate;
  display: block;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  margin: 0 0 0.85rem;
  border-radius: var(--radius);
  background: var(--void);
}

.shot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--img) center / cover no-repeat;
  filter: var(--media-grade);
  transform: scale(1.04);
  transition: transform 0.7s ease;
}

.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--media-overlay-panel);
  pointer-events: none;
}

a:hover .shot::before { transform: scale(1.09); }

/* &mdash;&mdash;&mdash; Trust &mdash;&mdash;&mdash; */
.trust-grid {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem 1.25rem;
}

@media (max-width: 840px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .trust-grid { grid-template-columns: 1fr; }
}

.trust-grid > * {
  padding: 1.1rem 1.15rem 1.2rem;
  border: 1px solid rgba(16, 32, 24, 0.1);
  background: #fff;
  border-radius: var(--radius);
}

.trust-grid h3,
.trust-grid strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 0.4rem;
  color: var(--ink);
}

.trust-grid p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
}

.trust-grid .trust-num {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint-deep);
}

/* &mdash;&mdash;&mdash; Steps &mdash;&mdash;&mdash; */
.steps {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  counter-reset: step;
  border-top: 1px solid rgba(16, 32, 24, 0.12);
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(16, 32, 24, 0.12);
  counter-increment: step;
  align-items: start;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--mint-deep);
  line-height: 1.3;
  min-width: 2.5rem;
}

.step h3 {
  margin: 0 0 0.3rem;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 48ch;
}

.section-wash .steps,
.arch .steps { border-top-color: rgba(231, 242, 236, 0.18); }

.section-wash .step,
.arch .step { border-bottom-color: rgba(231, 242, 236, 0.18); }

.section-wash .step::before,
.arch .step::before { color: var(--mint); }

.section-wash .step h3,
.arch .step h3 { color: var(--fog); }

.section-wash .step p,
.arch .step p { color: rgba(231, 242, 236, 0.72); }

/* &mdash;&mdash;&mdash; Service / charger / location grids &mdash;&mdash;&mdash; */
.service-grid,
.charger-grid,
.location-grid,
.market-grid {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1.1rem;
}

@media (max-width: 900px) {
  .service-grid,
  .charger-grid,
  .location-grid,
  .market-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .service-grid,
  .charger-grid,
  .location-grid,
  .market-grid { grid-template-columns: 1fr; }
}

.service-card,
.charger-card,
.location-card,
.market-tile {
  display: block;
  text-decoration: none;
  color: inherit;
  scroll-margin-top: 5.5rem;
}

.service-card h3,
.charger-card h3,
.location-card h3,
.market-tile h3 {
  margin: 0 0 0.3rem;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.service-card p,
.charger-card p,
.location-card p,
.market-tile p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
  max-width: 32ch;
}

.service-card .where,
.charger-card .where,
.location-card .where,
.market-tile .where {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint-deep);
}

.charger-card,
.location-card {
  padding: 1.15rem 1.2rem 1.25rem;
  border: 1px solid rgba(16, 32, 24, 0.1);
  background: #fff;
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.25s ease;
}

a.charger-card:hover,
a.location-card:hover {
  border-color: rgba(26, 143, 88, 0.45);
  transform: translateY(-2px);
}

.charger-card .shot,
.location-card .shot {
  margin: -1.15rem -1.2rem 0.95rem;
  border-radius: var(--radius) var(--radius) 0 0;
}

.markets {
  background: linear-gradient(180deg, #e8f1eb 0%, var(--paper) 100%);
}

/* &mdash;&mdash;&mdash; Cost factors &mdash;&mdash;&mdash; */
.cost-factors {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(16, 32, 24, 0.12);
}

.cost-factors li {
  display: grid;
  grid-template-columns: minmax(8rem, 14rem) 1fr;
  gap: 0.75rem 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(16, 32, 24, 0.12);
  align-items: baseline;
}

@media (max-width: 640px) {
  .cost-factors li { grid-template-columns: 1fr; gap: 0.3rem; }
}

.cost-factors strong {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
}

.cost-factors span {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 48ch;
}

/* &mdash;&mdash;&mdash; FAQ &mdash;&mdash;&mdash; */
.faq {
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(16, 32, 24, 0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(16, 32, 24, 0.12);
}

.faq-item summary,
.faq-item h3 {
  margin: 0;
  padding: 1.05rem 0;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 500;
  color: var(--mint-deep);
}

.faq-item[open] summary::after { content: "\2013"; }

.faq-item p,
.faq-item .faq-answer {
  margin: 0 0 1.1rem;
  max-width: 58ch;
  color: var(--muted);
  font-size: 0.98rem;
}

/* &mdash;&mdash;&mdash; Forms &mdash;&mdash;&mdash; */
.brief-form {
  display: grid;
  gap: 0.85rem;
  position: relative;
}

.brief-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.brief-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (max-width: 560px) {
  .brief-form .row { grid-template-columns: 1fr; }
}

.brief-form input,
.brief-form select,
.brief-form textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(16, 32, 24, 0.16);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.98rem;
  font-weight: 500;
}

.brief-form input::placeholder,
.brief-form textarea::placeholder { color: rgba(16, 32, 24, 0.35); }

.brief-form select {
  appearance: none;
  background-color: #fff;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--mint-deep) 50%),
    linear-gradient(135deg, var(--mint-deep) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.brief-form option { color: #102018; }

.brief-form textarea {
  min-height: 110px;
  resize: vertical;
}

.brief-form input[type="file"] {
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.brief-form input[type="file"]::file-selector-button {
  margin-right: 0.85rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(16, 32, 24, 0.16);
  border-radius: var(--radius);
  background: var(--paper);
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ink);
  cursor: pointer;
}

.brief-form .field-hint {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(16, 32, 24, 0.45);
}

.brief-form input:focus,
.brief-form select:focus,
.brief-form textarea:focus {
  outline: none;
  border-color: var(--mint-deep);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.15);
}

.brief-form .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.brief-form .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-top: 0.25rem;
}

.brief-form button[type="submit"]:disabled {
  opacity: 0.55;
  cursor: wait;
}

.form-status {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  min-height: 1.35em;
}

.form-status.ok { color: var(--mint-deep); }
.form-status.err { color: var(--danger); }

/* &mdash;&mdash;&mdash; Blog / insights &mdash;&mdash;&mdash; */
.insight-meta {
  margin: 1.1rem 0 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(231, 242, 236, 0.55);
}

.insights-index {
  background: linear-gradient(180deg, #eef5f0 0%, var(--paper) 100%);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem 1.1rem;
}

@media (max-width: 720px) {
  .insight-grid { grid-template-columns: 1fr; }
}

.insight-card {
  display: grid;
  grid-template-rows: auto 1fr;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(16, 32, 24, 0.1);
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.25s ease;
}

.insight-card:hover {
  border-color: rgba(26, 143, 88, 0.45);
  transform: translateY(-2px);
}

.insight-card .shot {
  aspect-ratio: 16 / 10;
  margin: 0;
  border-radius: 0;
  min-height: 160px;
}

.insight-card-body {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem 1.15rem;
}

.insight-card-body .eyebrow {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-deep);
}

.insight-card-body strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ink);
}

.insight-card-deck {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
}

.insight-card .insight-meta {
  margin-top: 0.35rem;
  color: rgba(16, 32, 24, 0.45);
}

.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.read-progress__fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--mint-deep), var(--mint));
  transition: width 0.08s linear;
}

.insight-cover {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: min(48vh, 440px);
  padding: clamp(4.5rem, 10vw, 6rem) clamp(1.25rem, 4vw, 3rem) clamp(1.75rem, 4vw, 2.5rem);
  color: var(--fog);
  background: var(--void);
  overflow: hidden;
}

.insight-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--page-img) center / cover no-repeat;
  filter: var(--media-grade);
  transform: scale(1.04);
}

.insight-cover__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 21, 16, 0.35) 0%, rgba(7, 21, 16, 0.55) 45%, rgba(7, 21, 16, 0.88) 100%),
    radial-gradient(ellipse 70% 55% at 0% 100%, rgba(200, 16, 46, 0.14), transparent 55%);
  pointer-events: none;
}

.insight-cover__inner {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
}

.insight-cover h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0;
  max-width: 22ch;
  color: var(--fog);
}

.insight-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

.insight-crumb a {
  color: var(--mint-deep);
  text-decoration: none;
}

.insight-crumb a:hover { text-decoration: underline; }
.insight-crumb--on-media { color: rgba(231, 242, 236, 0.65); }
.insight-crumb--on-media a { color: var(--mint); }

.insight-frame { max-width: 1040px; width: 100%; }

.insight-intro.section {
  padding-top: 1.35rem;
  padding-bottom: 0.35rem;
  background: var(--paper);
}

.insight-article.section {
  padding-top: 0.75rem;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.insight-shell {
  max-width: 680px;
  margin-inline: auto;
  width: 100%;
}

.insight-deck {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 62ch;
}

.insight-intro__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(16, 32, 24, 0.1);
}

.insight-meta--ink {
  color: rgba(16, 32, 24, 0.5);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  align-items: center;
  margin: 0;
}

.read-tools {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0;
  padding: 0.25rem;
  border: 1px solid rgba(16, 32, 24, 0.12);
  background: #fff;
}

.read-tools__label {
  padding: 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.read-tools__btn {
  min-width: 2.25rem;
  height: 2.15rem;
  border: none;
  background: transparent;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
}

.read-tools__btn[aria-pressed="true"] {
  background: rgba(26, 143, 88, 0.12);
  color: var(--mint-deep);
}

.read-tools__btn:hover { background: rgba(16, 32, 24, 0.05); }

html[data-insight-font="sm"] .insight-body { font-size: 0.94rem; }
html[data-insight-font="md"] .insight-body { font-size: 1rem; }
html[data-insight-font="lg"] .insight-body { font-size: 1.08rem; }

.insight-article { background: var(--paper); }

.insight-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
  max-width: 1040px;
}

@media (max-width: 900px) {
  .insight-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.insight-main { min-width: 0; }

.insight-body h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 1.75rem 0 0.65rem;
  max-width: 28ch;
  color: var(--ink);
}

.insight-body h2:first-child { margin-top: 0; }

.insight-body p {
  margin: 0 0 0.9rem;
  font-size: 1.02em;
  line-height: 1.65;
  color: var(--ink);
  max-width: 62ch;
}

.insight-body ul {
  margin: 0 0 1.1rem;
  padding: 0 0 0 1.15rem;
  max-width: 58ch;
}

.insight-body li {
  margin: 0 0 0.4rem;
  line-height: 1.5;
  color: var(--muted);
}

.insight-callout {
  margin: 1.75rem 0 1.85rem;
  padding: 0;
  max-width: 52ch;
  border: none;
  background: transparent;
  box-shadow: none;
}

.insight-callout::before {
  content: "Key point";
  display: block;
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-deep);
}

.insight-callout p {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  line-height: 1.4;
  letter-spacing: -0.018em;
  color: var(--ink);
  max-width: none;
}

.insight-figure {
  margin: 1.75rem 0 1.85rem;
  max-width: 100%;
}

.insight-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  filter: var(--media-grade);
  background: var(--void);
}

.insight-figure figcaption {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
  max-width: 52ch;
}

.insight-spec {
  margin: 1.75rem 0 2rem;
  padding: 1.15rem 1.25rem 1.25rem;
  border: 1px solid rgba(16, 32, 24, 0.12);
  background: linear-gradient(180deg, rgba(26, 143, 88, 0.06) 0%, #fff 40%), #fff;
  max-width: 58ch;
}

.insight-spec__title {
  margin: 0 0 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-deep);
}

.insight-spec__list { margin: 0; display: grid; gap: 0; }

.insight-spec__row {
  display: grid;
  grid-template-columns: minmax(6.5rem, 9rem) 1fr;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-top: 1px solid rgba(16, 32, 24, 0.08);
}

.insight-spec__row dt {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.insight-spec__row dd {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.35;
}

@media (max-width: 520px) {
  .insight-spec__row { grid-template-columns: 1fr; gap: 0.2rem; }
}

.insight-rail { min-width: 0; }

.insight-rail__sticky {
  display: grid;
  gap: 1.15rem;
  padding: 1.15rem;
  border: 1px solid rgba(16, 32, 24, 0.1);
  background: #fff;
}

@media (min-width: 901px) {
  .insight-rail__sticky {
    position: sticky;
    top: 5.25rem;
  }
}

@media (max-width: 900px) {
  .insight-rail { order: 2; }
  .insight-rail__sticky {
    gap: 1.25rem;
    padding: 1.15rem 0 0;
    border: none;
    border-top: 1px solid rgba(16, 32, 24, 0.1);
    background: transparent;
  }
}

.insight-share,
.insight-follow,
.insight-notes {
  margin: 0;
  padding: 0;
  border: none;
}

.insight-follow,
.insight-notes {
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 32, 24, 0.08);
}

.insight-share__label,
.insight-follow__label,
.insight-notes__label {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-deep);
}

.insight-share__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.insight-share__btn,
.insight-share__copy {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(16, 32, 24, 0.14);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.insight-share__btn:hover,
.insight-share__copy:hover {
  border-color: rgba(26, 143, 88, 0.45);
  background: rgba(26, 143, 88, 0.06);
}

.insight-share__link {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.insight-share__url {
  flex: 1 1 200px;
  min-width: 0;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(16, 32, 24, 0.14);
  font-family: var(--body);
  font-size: 0.78rem;
  color: var(--muted);
  background: #f7faf8;
}

.insight-share__status {
  min-height: 0;
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--mint-deep);
}

.insight-follow__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}

.insight-follow__links a {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  text-decoration: none;
}

.insight-follow__links a:hover { color: var(--mint-deep); }

.insight-notes__lead {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.insight-notes__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  max-width: 420px;
}

.insight-notes__form input {
  flex: 1 1 180px;
  min-width: 0;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(16, 32, 24, 0.16);
  font-family: var(--body);
  font-size: 0.92rem;
  background: #fff;
}

.insight-notes__form .btn { padding: 0.65rem 1rem; }

.insight-notes__status {
  min-height: 0;
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.insight-adjacent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.25rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(16, 32, 24, 0.1);
}

.insight-adjacent:has(> :only-child) { grid-template-columns: 1fr; }

@media (max-width: 640px) {
  .insight-adjacent { grid-template-columns: 1fr; }
}

.insight-adjacent__item {
  display: grid;
  gap: 0.25rem;
  padding: 0.65rem 0;
  text-decoration: none;
  color: inherit;
}

.insight-adjacent__item--next { text-align: right; }
.insight-adjacent:has(> :only-child) .insight-adjacent__item--next { text-align: left; }

.insight-adjacent__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.insight-adjacent__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.3;
  color: var(--ink);
}

.insight-adjacent__item:hover .insight-adjacent__title { color: var(--mint-deep); }

.insight-article-cta {
  margin-top: 1.5rem;
  gap: 0.65rem;
}

.insight-article-cta .btn-ghost {
  color: var(--ink);
  border-color: rgba(16, 32, 24, 0.22);
}

.insight-article-cta .btn-ghost:hover {
  border-color: var(--mint-deep);
  background: rgba(26, 143, 88, 0.06);
  color: var(--mint-deep);
}

.insight-related-band.section {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  background: linear-gradient(180deg, #eef5f0 0%, var(--paper) 100%);
}

.insight-related-band h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.6vw, 1.65rem);
  margin: 0.2rem 0 1.15rem;
  letter-spacing: -0.02em;
  max-width: none;
}

.insight-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.15rem;
}

@media (max-width: 900px) {
  .insight-related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .insight-related-grid { grid-template-columns: 1fr; }
}

.insight-related-card {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.insight-related-card__media {
  display: block;
  text-decoration: none;
  overflow: hidden;
  border-radius: var(--radius);
}

.insight-related-card__media .shot {
  aspect-ratio: 16 / 10;
  margin: 0;
  min-height: 140px;
}

.insight-related-card .insight-meta {
  margin: 0.35rem 0 0;
  color: rgba(16, 32, 24, 0.45);
}

.insight-related-card h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.3;
}

.insight-related-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.insight-related-card h3 a:hover { color: var(--mint-deep); }

.insight-related {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(16, 32, 24, 0.12);
  display: grid;
  gap: 0.85rem;
}

.insight-related .eyebrow {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-deep);
}

.insight-related-link {
  display: grid;
  gap: 0.2rem;
  text-decoration: none;
  color: inherit;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(16, 32, 24, 0.08);
}

.insight-related-link .eyebrow { color: var(--muted); }

.insight-related-link strong {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}

.insight-related-link:hover strong { color: var(--mint-deep); }

.insight-article .insight-layout.reveal {
  opacity: 1;
  transform: none;
}

/* &mdash;&mdash;&mdash; Footer &mdash;&mdash;&mdash; */
footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--void);
  color: rgba(231, 242, 236, 0.62);
  font-size: 0.92rem;
  box-shadow: inset 0 1px 0 rgba(231, 242, 236, 0.08);
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(200, 16, 46, 0.07), transparent 50%),
    linear-gradient(180deg, #0b1d16 0%, var(--void) 40%, #050f0c 100%);
}

footer a {
  color: rgba(231, 242, 236, 0.78);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover { color: var(--mint); }

.foot-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1.25rem, 4vw, 3rem) clamp(1.75rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1.45fr 0.9fr 1.25fr;
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  border-top: 1px solid rgba(231, 242, 236, 0.1);
}

@media (max-width: 840px) {
  .foot-main { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .foot-main { grid-template-columns: 1fr; }
}

.foot-brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.6vw, 1.55rem);
  color: var(--fog);
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.foot-brand p {
  margin: 0;
  max-width: 34ch;
  line-height: 1.55;
  color: rgba(231, 242, 236, 0.58);
  font-size: 0.98rem;
}

.social-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(231, 242, 236, 0.12);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-nav a {
  color: rgba(231, 242, 236, 0.48);
  text-decoration: none;
  transition: color 0.2s;
}

.social-nav a:hover { color: var(--mint); }
.social-nav a.social-primary { color: rgba(231, 242, 236, 0.78); }

.social-nav .dot {
  margin: 0 0.7rem;
  color: rgba(231, 242, 236, 0.2);
  letter-spacing: 0;
  user-select: none;
}

.foot-col h3 {
  margin: 0 0 1.1rem;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint);
}

.foot-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.foot-col ul a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
  color: rgba(231, 242, 236, 0.82);
}

.foot-col ul a:hover { color: var(--mint); }

.foot-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.foot-contact-list li {
  display: grid;
  gap: 0.25rem;
  max-width: 34ch;
  line-height: 1.45;
}

.foot-contact-list .label {
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(231, 242, 236, 0.38);
}

.foot-contact-list a,
.foot-contact-list span:not(.label) {
  color: rgba(231, 242, 236, 0.78);
  font-size: 0.95rem;
}

.foot-bar {
  border-top: 1px solid rgba(231, 242, 236, 0.1);
  padding: 1.15rem clamp(1.25rem, 4vw, 3rem) 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(231, 242, 236, 0.4);
  background: rgba(0, 0, 0, 0.18);
}

.foot-bar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.35rem;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.foot-bar a { color: rgba(231, 242, 236, 0.45); }
.foot-bar a:hover { color: var(--mint); }

.foot-preview { opacity: 0.42; letter-spacing: 0.08em; }
.foot-preview:hover { opacity: 0.85; color: var(--mint); }

/* &mdash;&mdash;&mdash; Dial-A-Sparky media cards & motion &mdash;&mdash;&mdash; */
.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
  border: 1px solid rgba(16, 28, 46, 0.1);
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.service-card .shot {
  margin: 0;
  aspect-ratio: 16 / 10;
  min-height: 140px;
  border-radius: 0;
}

.service-card .card-body {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem 1.2rem;
  align-content: start;
}

.service-card .card-body h3 { margin: 0; }
.service-card .card-body p { max-width: none; }

a.service-card:hover {
  border-color: rgba(200, 16, 46, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(10, 20, 36, 0.12);
}

.markets {
  background: linear-gradient(180deg, #e6ecf4 0%, var(--paper) 100%);
}

a.charger-card:hover,
a.location-card:hover,
.insight-card:hover {
  border-color: rgba(200, 16, 46, 0.35);
}

.quote-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem 1.2rem 1.35rem;
  border: 1px solid rgba(16, 28, 46, 0.1);
  background: #fff;
  border-radius: var(--radius);
  color: var(--ink);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.quote-card::before {
  content: none;
}

.quote-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(10, 20, 36, 0.1);
}

.quote-card .stars {
  display: block;
  margin-bottom: 0.55rem;
  letter-spacing: 0.12em;
  color: var(--mint-deep);
  font-size: 0.85rem;
}

.quote-card p {
  color: var(--ink);
}

.quote-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

@media (max-width: 900px) {
  .quote-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .quote-grid { grid-template-columns: 1fr; }
}

/* &mdash;&mdash;&mdash; Yell reviews (no line accents) &mdash;&mdash;&mdash; */
.reviews-section {
  background: linear-gradient(180deg, #eef2f8 0%, var(--paper) 100%);
}

.review-grid {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .review-grid { grid-template-columns: 1fr; }
}

.review-card {
  display: grid;
  gap: 1rem;
  padding: 1.35rem 1.3rem 1.45rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(10, 20, 36, 0.07);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 20, 36, 0.11);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review-avatar {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--void);
  background: #ffd100;
}

.review-card:nth-child(2) .review-avatar {
  background: #ffe566;
}

.review-card:nth-child(3) .review-avatar {
  background: #ffeb80;
}

.review-meta {
  display: grid;
  gap: 0.2rem;
}

.review-name {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.review-stars {
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: #ffd100;
  text-shadow: 0 0 1px rgba(10, 20, 36, 0.35);
}

.review-text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--muted);
}

.faq-card {
  position: relative;
  padding: 1.2rem 1.2rem 1.3rem;
  border: 1px solid rgba(16, 28, 46, 0.1);
  background: #fff;
  border-radius: var(--radius);
  transition: border-color 0.25s ease, transform 0.3s ease;
}

.faq-card:hover {
  border-color: rgba(200, 16, 46, 0.28);
  transform: translateY(-2px);
}

.location-card.has-media {
  padding: 0;
  overflow: hidden;
}

.location-card.has-media .shot {
  margin: 0;
  aspect-ratio: 16 / 10;
  border-radius: 0;
}

.location-card.has-media .card-body {
  padding: 1.1rem 1.15rem 1.25rem;
}

.trust-tile {
  position: relative;
  overflow: hidden;
  padding: 0 !important;
  display: grid;
  grid-template-rows: auto 1fr;
}

.trust-tile .shot {
  margin: 0;
  aspect-ratio: 16 / 9;
  min-height: 100px;
  border-radius: 0;
}

.trust-tile .tile-body {
  padding: 1.05rem 1.1rem 1.15rem;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-stagger.in > *:nth-child(1),
.reveal.in .reveal-stagger > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger.in > *:nth-child(2),
.reveal.in .reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.in > *:nth-child(3),
.reveal.in .reveal-stagger > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in > *:nth-child(4),
.reveal.in .reveal-stagger > *:nth-child(4) { transition-delay: 0.22s; }
.reveal-stagger.in > *:nth-child(5),
.reveal.in .reveal-stagger > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger.in > *:nth-child(6),
.reveal.in .reveal-stagger > *:nth-child(6) { transition-delay: 0.34s; }
.reveal-stagger.in > *:nth-child(7),
.reveal.in .reveal-stagger > *:nth-child(7) { transition-delay: 0.4s; }
.reveal-stagger.in > *:nth-child(8),
.reveal.in .reveal-stagger > *:nth-child(8) { transition-delay: 0.46s; }
.reveal-stagger.in > *:nth-child(9),
.reveal.in .reveal-stagger > *:nth-child(9) { transition-delay: 0.52s; }
.reveal-stagger.in > *:nth-child(n+10),
.reveal.in .reveal-stagger > *:nth-child(n+10) { transition-delay: 0.56s; }

.reveal-stagger.in > *,
.reveal.in .reveal-stagger > * {
  opacity: 1;
  transform: translateY(0);
}

.split-rise .visual {
  opacity: 0;
  transform: translateX(18px) scale(0.98);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.split-rise.in .visual {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.split-rise .split-copy {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.85s ease 0.12s, transform 0.85s ease 0.12s;
}

.split-rise.in .split-copy {
  opacity: 1;
  transform: translateY(0);
}

.feature-list {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.feature-list li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 2.55rem;
  border: 1px solid rgba(16, 28, 46, 0.08);
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 1.15rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.12);
}

.feature-list li:hover {
  border-color: rgba(200, 16, 46, 0.25);
  transform: translateX(3px);
}

.page-cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.page-cta-band.media-cta {
  background: var(--void);
  color: var(--fog);
}

.page-cta-band.media-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--cta-img, url("images/hero-van.jpg")) center / cover no-repeat;
  filter: var(--media-grade) brightness(0.45);
  opacity: 0.35;
  transform: scale(1.08);
  animation: media-drift 30s ease-in-out infinite alternate;
}

.page-cta-band.media-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(105deg, rgba(10, 20, 36, 0.94) 0%, rgba(10, 20, 36, 0.78) 55%, rgba(10, 20, 36, 0.7) 100%),
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(200, 16, 46, 0.18), transparent 55%);
  pointer-events: none;
}

.page-cta-band.media-cta > * {
  position: relative;
  z-index: 1;
}

.page-cta-band.media-cta .lede {
  color: rgba(232, 238, 246, 0.82);
}

.close.page-cta-band.media-cta {
  background: var(--void);
  color: var(--fog);
  box-shadow: none;
}

.close.page-cta-band.media-cta h2 {
  color: var(--fog);
  max-width: none;
}

.close.page-cta-band.media-cta .lede {
  color: rgba(232, 238, 246, 0.82);
}

.close.page-cta-band.media-cta .btn-ghost {
  color: var(--fog);
  border-color: rgba(232, 238, 246, 0.5);
}

.close.page-cta-band.media-cta .btn-ghost:hover {
  color: var(--fog);
  border-color: var(--fog);
  background: rgba(232, 238, 246, 0.1);
}

.shot.focus-left::before { background-position: 20% center; }
.shot.focus-right::before { background-position: 80% center; }
.shot.focus-top::before { background-position: center 20%; }
.shot.focus-bottom::before { background-position: center 80%; }

.visual.tall {
  aspect-ratio: 4 / 5;
  min-height: clamp(280px, 36vw, 440px);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-stagger > *,
  .split-rise .visual,
  .split-rise .split-copy {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .service-card,
  .quote-card,
  .review-card,
  .faq-card,
  .feature-list li {
    transition: none;
  }
  .service-card:hover,
  .quote-card:hover,
  .review-card:hover,
  .faq-card:hover {
    transform: none;
  }
  .page-cta-band.media-cta::before {
    animation: none;
  }
}
