﻿/* Steele-Dad Autos â€” site styles */
:root {
  --void: #12141a;
  --ink: #1c1f28;
  --panel: #1e2430;
  --line: #3a4254;
  --mint: #e5a00d;
  --mint-deep: #c48408;
  --signal: #e5a00d;
  --signal-deep: #c48408;
  --fog: #d8dee8;
  --mist: #a8b0c0;
  --paper: #f3f5f8;
  --muted: #5c6578;
  --danger: #b45309;
  --display: "Barlow Condensed", "Segoe UI", sans-serif;
  --body: "Source Sans 3", "Segoe UI", sans-serif;
  --radius: 4px;
  --max: 1120px;
  --media-grade: saturate(0.65) contrast(1.08) brightness(0.72);
  --media-overlay-hero:
    linear-gradient(180deg, rgba(18, 20, 26, 0.35) 0%, rgba(18, 20, 26, 0.55) 38%, rgba(18, 20, 26, 0.92) 100%),
    radial-gradient(ellipse 70% 60% at 0% 100%, rgba(229, 160, 13, 0.18), transparent 55%);
  --media-overlay-page:
    linear-gradient(105deg, rgba(18, 20, 26, 0.94) 0%, rgba(18, 20, 26, 0.82) 40%, rgba(18, 20, 26, 0.55) 72%, rgba(18, 20, 26, 0.7) 100%),
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(229, 160, 13, 0.14), transparent 55%);
  --media-overlay-panel:
    linear-gradient(160deg, rgba(18, 20, 26, 0.25) 0%, rgba(18, 20, 26, 0.6) 100%),
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(229, 160, 13, 0.12), 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);
}

/* â€”â€”â€” Nav â€”â€”â€” */
.nav {
  position: absolute;
  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);
}

.nav-solid {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--void);
  border-bottom: 1px solid rgba(216, 222, 232, 0.1);
}

.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(216, 222, 232, 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-mark {
    max-width: calc(100vw - 7.5rem);
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.95rem;
  }

  /* Keep logo + Close above the scrolling menu */
  .nav.is-open {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    background: var(--void);
    border-bottom: 1px solid rgba(216, 222, 232, 0.12);
  }

  .nav.is-open .nav-mark,
  .nav.is-open .nav-toggle {
    z-index: 70;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 35;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 4.75rem clamp(1.25rem, 5vw, 2.5rem) max(2rem, env(safe-area-inset-bottom));
    list-style: none;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    background:
      radial-gradient(ellipse 80% 55% at 100% 0%, rgba(229, 160, 13, 0.14), transparent 50%),
      linear-gradient(165deg, #161922 0%, var(--void) 45%, #0a0b0f 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(216, 222, 232, 0.12);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.4s ease;
    flex-shrink: 0;
  }

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

  .nav.is-open .nav-links li:nth-child(1) { transition-delay: 0.04s; }
  .nav.is-open .nav-links li:nth-child(2) { transition-delay: 0.07s; }
  .nav.is-open .nav-links li:nth-child(3) { transition-delay: 0.1s; }
  .nav.is-open .nav-links li:nth-child(4) { transition-delay: 0.13s; }
  .nav.is-open .nav-links li:nth-child(5) { transition-delay: 0.16s; }
  .nav.is-open .nav-links li:nth-child(6) { transition-delay: 0.19s; }
  .nav.is-open .nav-links li:nth-child(7) { transition-delay: 0.22s; }
  .nav.is-open .nav-links li:nth-child(8) { transition-delay: 0.25s; }
  .nav.is-open .nav-links li:nth-child(9) { transition-delay: 0.28s; }
  .nav.is-open .nav-links li:nth-child(10) { transition-delay: 0.31s; }
  .nav.is-open .nav-links li:nth-child(11) { transition-delay: 0.34s; }
  .nav.is-open .nav-links li:nth-child(12) { transition-delay: 0.37s; }

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

  .nav-links a::after {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    margin-top: 0.35rem;
    border-right: 1px solid rgba(216, 222, 232, 0.35);
    border-bottom: 1px solid rgba(216, 222, 232, 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(229, 160, 13, 0.7); }

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

/* â€”â€”â€” Breadcrumb â€”â€”â€” */
.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(216, 222, 232, 0.65); }
.breadcrumb--on-media a { color: var(--mint); }
.breadcrumb--on-media li + li::before { color: rgba(216, 222, 232, 0.35); }

/* â€”â€”â€” Buttons â€”â€”â€” */
.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: var(--signal-deep); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--fog);
  border: 1px solid rgba(216, 222, 232, 0.65);
}

.btn-ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(216, 222, 232, 0.12);
}

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

.btn-ink:hover {
  border-color: var(--signal-deep);
  background: rgba(229, 160, 13, 0.08);
  color: var(--signal-deep);
}

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

/* â€”â€”â€” Hero â€”â€”â€” */
.hero {
  position: relative;
  min-height: min(100svh, 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(216, 222, 232, 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(216, 222, 232, 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(216, 222, 232, 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;
  }
}

/* â€”â€”â€” Sections â€”â€”â€” */
.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;
  }
}

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

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

.problem {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(229, 160, 13, 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(18, 20, 26, 0.88) 0%, rgba(18, 20, 26, 0.94) 55%, rgba(18, 20, 26, 0.97) 100%),
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(229, 160, 13, 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(216, 222, 232, 0.7); }

.arch-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(216, 222, 232, 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(216, 222, 232, 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(216, 222, 232, 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);
}

/* â€”â€”â€” Shot / tile media â€”â€”â€” */
.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); }

/* â€”â€”â€” Trust â€”â€”â€” */
.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);
}

/* â€”â€”â€” Steps â€”â€”â€” */
.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(216, 222, 232, 0.18); }

.section-wash .step,
.arch .step { border-bottom-color: rgba(216, 222, 232, 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(216, 222, 232, 0.72); }

/* â€”â€”â€” Service / charger / location grids â€”â€”â€” */
.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%);
}

/* â€”â€”â€” Cost factors â€”â€”â€” */
.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;
}

/* â€”â€”â€” FAQ â€”â€”â€” */
.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: "â€“"; }

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

/* â€”â€”â€” Forms â€”â€”â€” */
.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(229, 160, 13, 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); }

/* â€”â€”â€” Blog / insights â€”â€”â€” */
.insight-meta {
  margin: 1.1rem 0 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(216, 222, 232, 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(229, 160, 13, 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(216, 222, 232, 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;
}

/* â€”â€”â€” Footer â€”â€”â€” */
footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--void);
  color: rgba(216, 222, 232, 0.62);
  font-size: 0.92rem;
  box-shadow: inset 0 1px 0 rgba(216, 222, 232, 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(229, 160, 13, 0.07), transparent 50%),
    linear-gradient(180deg, #0b1d16 0%, var(--void) 40%, #050f0c 100%);
}

footer a {
  color: rgba(216, 222, 232, 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(216, 222, 232, 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(216, 222, 232, 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(216, 222, 232, 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(216, 222, 232, 0.48);
  text-decoration: none;
  transition: color 0.2s;
}

.social-nav a:hover { color: var(--mint); }
.social-nav a.social-primary { color: rgba(216, 222, 232, 0.78); }

.social-nav .dot {
  margin: 0 0.7rem;
  color: rgba(216, 222, 232, 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(216, 222, 232, 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(216, 222, 232, 0.38);
}

.foot-contact-list a,
.foot-contact-list span:not(.label) {
  color: rgba(216, 222, 232, 0.78);
  font-size: 0.95rem;
}

.foot-bar {
  border-top: 1px solid rgba(216, 222, 232, 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(216, 222, 232, 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(216, 222, 232, 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); }


/* Steele-Dad placeholder surfaces (until store/parts/team photos) */
.hero-media.is-placeholder::before,
.page-hero.is-placeholder::before,
.visual.is-placeholder::before,
.shot.is-placeholder::before,
.section-wash.is-placeholder::before {
  background:
    radial-gradient(ellipse 65% 55% at 78% 28%, rgba(229, 160, 13, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 12% 80%, rgba(58, 66, 84, 0.55), transparent 50%),
    linear-gradient(155deg, #2a3142 0%, #12141a 52%, #0a0b0f 100%) !important;
  filter: none;
  animation: media-drift 32s ease-in-out infinite alternate;
}
.nav-mark {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1rem, 2.6vw, 1.35rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  max-width: min(58vw, 18rem);
}
.hero-brand {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 16ch;
}
.phone-link {
  font-weight: 600;
  color: var(--signal);
  text-decoration: none;
}
.phone-link:hover { color: var(--signal-deep); text-decoration: underline; }

/* â€”â€”â€” Visual mosaic (image-led links) â€”â€”â€” */
.section-tight .lede { margin-bottom: 0; }

.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.mosaic-tile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  grid-column: span 4;
  min-height: clamp(160px, 22vw, 240px);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--fog);
  background: var(--void);
}

.mosaic-tile--lg {
  grid-column: span 8;
  min-height: clamp(220px, 32vw, 340px);
}

.mosaic-tile--wide {
  grid-column: span 12;
  min-height: clamp(140px, 18vw, 200px);
}

.mosaic-tile::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, filter 0.4s ease;
}

.mosaic-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(18, 20, 26, 0.1) 0%, rgba(18, 20, 26, 0.75) 100%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(229, 160, 13, 0.2), transparent 55%);
  pointer-events: none;
}

.mosaic-tile:hover::before {
  transform: scale(1.1);
  filter: saturate(0.85) contrast(1.05) brightness(0.85);
}

.mosaic-label {
  position: absolute;
  left: 1.1rem;
  bottom: 1rem;
  z-index: 2;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-wash {
  --wash-opacity: 0.35;
}

.section-wash::before {
  opacity: 0.42 !important;
}

@media (max-width: 720px) {
  .mosaic-tile,
  .mosaic-tile--lg,
  .mosaic-tile--wide {
    grid-column: span 12;
    min-height: 180px;
  }
}

.page-cta-band.section-wash {
  color: var(--fog);
}

.page-cta-band.section-wash .lede {
  color: rgba(216, 222, 232, 0.78);
}

/* Dark CTA / wash + .close: keep headings & ghost buttons light (not ink) */
.close.section-wash,
.page-cta-band.section-wash.close {
  background: var(--void);
  color: var(--fog);
  box-shadow: none;
}

.close.section-wash h2,
.page-cta-band.section-wash h2 {
  color: var(--fog);
}

.close.section-wash .lede,
.page-cta-band.section-wash .lede {
  color: rgba(216, 222, 232, 0.82);
}

.close.section-wash .btn-ghost,
.page-cta-band.section-wash .btn-ghost,
.section-wash .btn-ghost,
.hero .btn-ghost,
.arch.section-wash .btn-ghost {
  color: var(--fog);
  border-color: rgba(216, 222, 232, 0.55);
}

.close.section-wash .btn-ghost:hover,
.page-cta-band.section-wash .btn-ghost:hover,
.section-wash .btn-ghost:hover,
.hero .btn-ghost:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(216, 222, 232, 0.12);
}
