:root {
  --ink: #071a30;
  --navy: #0f2947;
  --navy-bright: #18466f;
  --blue: #2e6f9e;
  --mist: #e9f3fa;
  --white: #ffffff;
  --graphite: #303b47;
  --muted: #5d6873;
  --brass: #d4aa36;
  --brass-deep: #89630d;
  --brass-rgb: 212, 170, 54;
  --error: #8c3d3d;
  --line: rgba(7, 26, 48, 0.17);
  --line-light: rgba(255, 255, 255, 0.2);
  --sans: "neue-haas-grotesk-text", "Helvetica Neue", Arial, sans-serif;
  --display: "neue-haas-grotesk-display", "Helvetica Neue", Arial, sans-serif;
  --voice: "freight-text-pro", Georgia, serif;
  --container: 1220px;
  --gutter: clamp(20px, 4.2vw, 52px);
  --section: clamp(76px, 9vw, 132px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; overflow-x: clip; }
[id] { scroll-margin-top: 84px; }
body {
  margin: 0;
  background: var(--white);
  color: var(--graphite);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; width: 100%; height: auto; }
h1, h2, h3, p, ul, figure, address { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; text-underline-offset: 0.2em; }
button { font: inherit; }
.container { width: min(100%, var(--container)); margin-inline: auto; padding-inline: var(--gutter); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; transform: translateY(-160%); padding: 12px 18px; border-radius: 8px; background: var(--ink); color: var(--white); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--white); outline-offset: 3px; box-shadow: 0 0 0 6px #2576aa; }

h1, h2, h3 {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h1 { font-size: clamp(3.25rem, 7.2vw, 5.9rem); }
h2 { font-size: clamp(2.4rem, 5.1vw, 4.65rem); }
h3 { font-size: clamp(1.35rem, 2.3vw, 2rem); line-height: 1.08; }
p { text-wrap: pretty; }
.statement { margin-bottom: 16px; color: var(--brass-deep); font-weight: 700; font-size: 1.05rem; }
.statement-light { color: var(--brass); }

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 13px 24px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 220ms var(--ease), background-color 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--navy-bright); }
.btn-brass { background: var(--brass); color: var(--ink); }
.btn-brass:hover { background: var(--brass); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.62); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }
.btn-small { min-height: 44px; padding: 9px 18px; font-size: 0.93rem; }
.cta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-weight: 750; text-decoration-thickness: 1px; }
.text-link::after { content: "→"; transition: transform 180ms var(--ease); }
.text-link:hover::after { transform: translateX(4px); }

.site-header { position: sticky; z-index: 50; top: 0; background: rgba(255, 255, 255, 0.96); border-bottom: 1px solid transparent; transition: border-color 200ms ease, box-shadow 200ms ease; }
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 8px rgba(7, 26, 48, 0.06); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { min-height: 44px; display: inline-flex; align-items: center; flex: none; }
.brand img { width: auto; height: 40px; }
.nav-menu { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); }
.nav-menu > li { display: flex; align-items: center; }
.nav-menu > li > a:not(.btn),
.nav-services-menu > summary { min-height: 44px; display: inline-flex; align-items: center; color: var(--ink); font-size: 0.93rem; font-weight: 650; text-decoration: none; white-space: nowrap; }
.nav-menu > li > a:not(.btn):hover,
.nav-services-menu > summary:hover,
.nav-services-menu[open] > summary { color: var(--blue); }
.nav-services { position: relative; }
.nav-services-menu { position: relative; }
.nav-services-menu > summary { gap: 9px; list-style: none; cursor: pointer; user-select: none; }
.nav-services-menu > summary::-webkit-details-marker { display: none; }
.nav-services-menu > summary::after { content: ""; width: 7px; height: 7px; margin-top: -4px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform 180ms var(--ease), margin-top 180ms var(--ease); }
.nav-services-menu[open] > summary::after { margin-top: 4px; transform: rotate(225deg); }
.nav-services-menu > summary[aria-current="page"] { color: var(--blue); }
.nav-services-panel { position: fixed; z-index: 80; top: 76px; right: max(var(--gutter), calc(50vw - 610px + var(--gutter))); width: min(960px, calc(100vw - var(--gutter) - var(--gutter))); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; align-items: stretch; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: 0 24px 60px rgba(7, 26, 48, 0.2); }
.nav-service-group { min-width: 0; padding: 10px 12px; }
.nav-service-group + .nav-service-group { border-left: 1px solid var(--line); }
.nav-service-heading { min-height: 34px; display: flex; align-items: center; padding: 0 14px; color: var(--muted); font-size: 0.75rem; font-weight: 850; letter-spacing: 0.08em; line-height: 1.2; text-transform: uppercase; }
.nav-services-specialty { min-width: 0; display: grid; grid-template-rows: minmax(0, 2fr) minmax(0, 1fr); gap: 12px; padding-left: 12px; border-left: 1px solid var(--line); }
.nav-service-featured { min-height: 0; display: flex; flex-direction: column; justify-content: center; padding: 24px; border-radius: 8px; background: var(--ink); color: var(--white); text-decoration: none; white-space: normal; transition: background-color 180ms var(--ease), transform 180ms var(--ease); }
.nav-service-featured:hover { background: var(--navy-bright); transform: translateY(-1px); }
.nav-service-featured span { margin-bottom: 18px; color: var(--brass); font-size: 0.72rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.nav-service-featured strong { color: var(--white); font-family: var(--display); font-size: 1.45rem; line-height: 1.04; letter-spacing: -0.025em; }
.nav-service-featured small { margin-top: 10px; color: #c7d8e5; font-size: 0.84rem; line-height: 1.4; }
.nav-services-links { display: grid; align-content: start; }
.nav-services-links a { min-height: 48px; display: flex; align-items: center; padding: 10px 14px; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 0.93rem; font-weight: 720; line-height: 1.2; text-decoration: none; }
.nav-services-links a:hover { color: var(--blue); background: var(--mist); }
.nav-services-links a:last-child { border-bottom: 0; }
.nav-services-all-wrap { display: flex; align-items: center; justify-content: center; padding: 12px; border-radius: 8px; background: var(--mist); }
.nav-services-all { width: 100%; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--ink); border-radius: 8px; padding: 9px 14px; color: var(--ink); font-size: 0.9rem; font-weight: 750; line-height: 1.2; text-align: center; text-decoration: none; transition: background-color 180ms var(--ease), color 180ms var(--ease); }
.nav-services-all:hover { background: var(--ink); color: var(--white); }
.nav-services-menu > summary:focus-visible,
.nav-services-panel a:focus-visible { outline: 3px solid #2576aa; outline-offset: 2px; border-radius: 5px; box-shadow: 0 0 0 3px var(--white); }
.nav-toggle { display: none; }

.hero { position: relative; isolation: isolate; overflow: hidden; background: var(--ink); color: var(--white); }
.hero::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(7, 26, 48, 0.98) 0%, rgba(7, 26, 48, 0.9) 34%, rgba(7, 26, 48, 0.46) 62%, rgba(7, 26, 48, 0.08) 100%), linear-gradient(0deg, rgba(7, 26, 48, 0.78) 0%, transparent 34%); pointer-events: none; }
.hero-grid { position: relative; z-index: 2; min-height: min(760px, calc(100vh - 76px)); display: flex; align-items: center; }
.hero-copy { width: min(780px, 67%); padding-block: clamp(68px, 8vw, 112px); }
.hero-label { display: inline-flex; margin-bottom: 24px; padding: 7px 12px; border: 1px solid rgba(255, 255, 255, 0.28); border-radius: 999px; color: var(--brass); font-size: 0.9rem; font-weight: 700; }
.hero h1 { max-width: 14ch; color: var(--white); font-size: clamp(3.1rem, 5.25vw, 4.85rem); }
.hero h1 span { display: block; }
.hero-lede { max-width: 46ch; margin: 28px 0 34px; color: #e4eef6; font-size: clamp(1.12rem, 1.55vw, 1.35rem); line-height: 1.52; }
.hero-note { max-width: 58ch; margin-top: 18px; color: #b9ccdc; font-size: 0.88rem; }
.hero-media { position: absolute; z-index: 0; inset: 0; overflow: hidden; }
.hero-media picture, .hero-media img { height: 100%; }
.hero-media img { object-fit: cover; object-position: center; }
.is-ready .hero-media img { animation: hero-arrive 1000ms var(--ease) both; }
@keyframes hero-arrive { from { transform: scale(1.045); } to { transform: scale(1); } }
.proof-rail { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); background: rgba(7, 26, 48, 0.68); }
.proof-rail span { min-height: 74px; display: flex; align-items: center; padding: 16px 24px 16px 0; color: #dce9f3; font-size: 0.9rem; font-weight: 650; line-height: 1.35; }
.proof-rail span + span { padding-left: 24px; border-left: 1px solid var(--line-light); }

.service-selector { border-bottom: 1px solid var(--line); background: var(--white); }
.service-selector-inner { display: grid; grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1.62fr); gap: clamp(36px, 6vw, 92px); align-items: center; padding-block: clamp(38px, 5vw, 64px); }
.service-selector-head .statement { margin-bottom: 8px; font-size: 0.82rem; }
.service-selector-head h2 { max-width: none; font-size: clamp(2rem, 3.4vw, 3.3rem); }
.service-selector-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.service-selector-card { position: relative; min-height: 166px; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px 20px; border-right: 1px solid var(--line); background: var(--white); color: var(--ink); text-decoration: none; transition: background-color 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease); }
.service-selector-card:last-child { border-right: 0; }
.service-selector-card strong { font-family: var(--display); font-size: 1.15rem; line-height: 1.05; letter-spacing: -0.02em; }
.service-selector-card small { margin-top: 8px; color: var(--muted); font-size: 0.76rem; line-height: 1.3; }
.service-selector-card::after { content: "→"; position: absolute; top: 14px; right: 18px; color: var(--ink); font-size: 1.2rem; transition: transform 180ms var(--ease); }
.service-selector-card:hover { z-index: 1; background: var(--mist); transform: translateY(-4px); }
.service-selector-card:hover::after { transform: translateX(4px); }
.service-selector-primary { background: var(--ink); color: var(--white); }
.service-selector-primary small { color: var(--brass); }
.service-selector-primary::after { color: var(--white); }
.service-selector-primary:hover { background: var(--navy-bright); color: var(--white); }

.home-tesla-feature { overflow: hidden; background: var(--ink); color: #dce9f3; }
.home-tesla-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr); align-items: stretch; }
.home-tesla-media { min-height: 620px; overflow: hidden; }
.home-tesla-media picture,
.home-tesla-media img { width: 100%; height: 100%; }
.home-tesla-media img { object-fit: cover; object-position: center; }
.home-tesla-copy { align-self: center; padding: clamp(62px, 8vw, 112px) 0 clamp(62px, 8vw, 112px) clamp(42px, 7vw, 104px); }
.home-tesla-copy h2 { max-width: 12ch; color: var(--white); }
.home-tesla-copy > p:not(.statement) { max-width: 54ch; margin-top: 26px; font-size: 1.04rem; }
.home-tesla-points { display: grid; gap: 12px; margin: 30px 0 34px; }
.home-tesla-points li { display: grid; grid-template-columns: 10px 1fr; gap: 11px; align-items: start; color: var(--white); font-weight: 720; }
.home-tesla-points li::before { width: 8px; height: 8px; margin-top: 0.55em; border-radius: 50%; background: var(--brass); content: ""; }

.impact { padding-block: var(--section); }
.impact-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr); gap: clamp(42px, 7vw, 104px); align-items: center; }
.impact-copy h2 { max-width: 12ch; margin-bottom: 28px; }
.impact-copy > p:not(.statement) { max-width: 57ch; font-size: 1.08rem; }
.benefit-line { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 30px 0; color: var(--ink); font-weight: 750; }
.benefit-line li { display: flex; align-items: center; gap: 9px; }
.benefit-line li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--brass); }
.impact-media { position: relative; }
.impact-media::before { content: ""; position: absolute; z-index: -1; top: -28px; right: -28px; width: 44%; height: 42%; background: var(--brass); }
.impact-media img { aspect-ratio: 5 / 4; object-fit: cover; }

.films { padding-block: var(--section); background: var(--navy); color: #dce9f3; }
.films-intro { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr); gap: clamp(40px, 8vw, 112px); align-items: end; padding-bottom: clamp(44px, 6vw, 76px); border-bottom: 1px solid var(--line-light); }
.films h2 { max-width: 12ch; color: var(--white); }
.films-intro-copy > p { max-width: 54ch; margin-bottom: 28px; font-size: 1.04rem; }
.film-baseline { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.2vw, 28px); padding-block: clamp(34px, 4.5vw, 58px); border-bottom: 1px solid var(--line-light); }
.film-baseline-item { overflow: hidden; background: #153553; }
.film-baseline-ceramic { background: #183e60; }
.film-baseline-media { overflow: hidden; }
.film-baseline-media picture, .film-baseline-media img { height: 100%; }
.film-baseline-media img { aspect-ratio: 16 / 9; object-fit: cover; }
.film-baseline-copy { padding: clamp(24px, 3vw, 38px); }
.film-baseline-item h3, .film-feature h3, .film-air-feature h3 { color: var(--white); }
.film-use { margin-bottom: 7px; color: #b9d0e1; font-size: 0.82rem; font-weight: 800; }
.film-promise { margin-top: 9px; color: var(--brass); font-family: var(--voice); font-size: 1.16rem; font-style: italic; }
.film-baseline-copy > p:not(.film-protection) { margin-top: 18px; font-size: 0.95rem; }
.film-baseline-proof { grid-column: 1 / -1; display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding-top: 18px; border-top: 1px solid var(--line-light); color: var(--brass); }
.film-baseline-proof span { color: #b9d0e1; font-size: 0.78rem; text-align: right; }
.film-air-feature { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr); margin-top: clamp(46px, 7vw, 86px); background: #f4f0e5; color: var(--graphite); box-shadow: inset 0 0 0 1px rgba(var(--brass-rgb), 0.5); }
.film-air-media { min-height: 470px; overflow: hidden; }
.film-air-media picture, .film-air-media img { height: 100%; }
.film-air-media img { object-fit: cover; }
.film-air-copy { align-self: center; padding: clamp(34px, 5vw, 66px); }
.film-air-feature h3 { color: var(--ink); font-size: clamp(2.25rem, 4.6vw, 4rem); }
.film-air-feature .film-use { color: var(--brass-deep); }
.film-air-feature .film-promise { color: var(--brass-deep); }
.film-air-feature .film-air-copy > p:not(.film-use, .film-promise, .film-protection) { max-width: 52ch; margin-top: 22px; }
.film-air-feature .film-metrics div { border-color: var(--line); }
.film-air-feature .film-metrics dt { color: var(--muted); }
.film-air-feature .film-metrics dd { color: var(--ink); }
.film-air-feature .film-protection { border-color: rgba(137, 99, 13, 0.45); color: var(--brass-deep); }
.premium-showcase { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: clamp(16px, 2.2vw, 28px); align-items: start; padding-top: clamp(58px, 8vw, 104px); }
.film-feature { overflow: hidden; background: #153553; }
.film-feature-i3 { margin-top: clamp(38px, 6vw, 76px); }
.film-feature-i3plus { position: relative; background: var(--ink); box-shadow: 0 0 0 1px rgba(var(--brass-rgb), 0.66); }
.film-leader-badge { position: absolute; z-index: 2; top: 18px; right: 18px; padding: 8px 11px; background: var(--brass); color: var(--ink); font-size: 0.72rem; font-weight: 850; letter-spacing: 0.02em; }
.film-feature-media { overflow: hidden; background: var(--ink); }
.film-feature-media picture, .film-feature-media img { height: 100%; }
.film-feature-media img { aspect-ratio: 3 / 2; object-fit: cover; }
.film-feature-i3 .film-feature-media img { aspect-ratio: 4 / 3; }
.film-feature-copy { padding: clamp(28px, 4vw, 48px); }
.film-feature-copy h3 { margin-bottom: 8px; font-size: clamp(2rem, 4vw, 3.35rem); }
.film-feature-copy > p:not(.film-use, .film-promise, .film-protection) { max-width: 52ch; margin-top: 22px; }
.film-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 30px 0 24px; }
.film-metrics div { padding-top: 13px; border-top: 1px solid var(--line-light); }
.film-metrics dt { color: #a9c2d5; font-size: 0.68rem; font-weight: 750; line-height: 1.25; }
.film-metrics dd { margin: 7px 0 0; color: var(--white); font-size: clamp(1.08rem, 2vw, 1.4rem); font-weight: 800; line-height: 1.15; }
.film-protection { padding-top: 18px; border-top: 1px solid rgba(var(--brass-rgb), 0.55); color: var(--brass); font-weight: 800; }
.film-fine-print { margin-top: 22px; color: #a9c0d1; font-size: 0.875rem; text-align: right; }

.demo { padding-block: var(--section); background: var(--mist); }
.demo-head { display: grid; grid-template-columns: 0.6fr 1.4fr; gap: 40px; align-items: start; }
.demo-head h2 { max-width: 14ch; }
.demo-stage { position: relative; margin-top: clamp(42px, 6vw, 76px); padding-bottom: clamp(120px, 12vw, 164px); }
.demo-media { width: 83%; overflow: hidden; }
.demo-media img { aspect-ratio: 16 / 10; object-fit: cover; }
.demo-copy { position: absolute; right: 0; bottom: 0; width: min(610px, 54%); padding: clamp(30px, 4.5vw, 58px); background: var(--ink); color: #dce9f3; box-shadow: 0 22px 54px rgba(7, 26, 48, 0.18); }
.demo-copy > p { margin-bottom: 22px; }
.demo-copy .demo-lede { color: var(--white); font-size: clamp(1.08rem, 1.55vw, 1.28rem); line-height: 1.48; }
.demo-copy .cta-row { margin-top: 30px; }
.text-link-light { color: var(--white); }

.quote-start { position: relative; overflow: hidden; padding-block: var(--section); background: var(--ink); color: #dce9f3; }
.quote-start::before { content: ""; position: absolute; top: -28%; right: -9%; width: min(520px, 42vw); aspect-ratio: 1; border: 1px solid rgba(212, 170, 54, 0.22); border-radius: 50%; box-shadow: 0 0 0 54px rgba(212, 170, 54, 0.035), 0 0 0 108px rgba(212, 170, 54, 0.025); pointer-events: none; }
.quote-start-grid { position: relative; display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.02fr); gap: clamp(48px, 9vw, 132px); align-items: center; }
.quote-start h2 { max-width: 10ch; color: var(--white); }
.quote-call { margin-top: 28px; color: #b9ccdc; font-size: 0.9rem; }
.quote-call a { color: var(--brass); font-weight: 750; }
.quote-panel { padding: clamp(28px, 4vw, 48px); background: var(--white); color: var(--graphite); box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26); }
.quote-panel h3 { margin: 10px 0 18px; font-size: clamp(1.75rem, 3vw, 2.45rem); }
.lead-environment { margin-bottom: 18px; padding: 12px 14px; border-left: 3px solid var(--brass); background: var(--mist); color: var(--ink); font-size: 0.84rem; }
.form-progress { margin-bottom: 18px; color: var(--brass-deep); font-size: 0.76rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.form-field { min-width: 0; margin-bottom: 18px; }
.form-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field label, .contact-choice legend { display: block; margin-bottom: 7px; color: var(--ink); font-size: 0.86rem; font-weight: 800; }
.form-field input, .form-field select { width: 100%; min-height: 52px; border: 1px solid rgba(7, 26, 48, 0.26); border-radius: 5px; padding: 11px 13px; background: var(--white); color: var(--ink); font: inherit; }
.form-field input:focus, .form-field select:focus { border-color: var(--blue); outline: 3px solid rgba(46, 111, 158, 0.2); outline-offset: 1px; }
.form-field [aria-invalid="true"], .contact-choice [aria-invalid="true"] { border-color: #a43a2c; }
.field-error { min-height: 1.15em; display: block; margin-top: 5px; color: #8a281d; font-size: 0.78rem; font-weight: 700; line-height: 1.3; }
.contact-choice { display: flex; flex-wrap: wrap; gap: 9px; margin: 2px 0 18px; padding: 0; border: 0; }
.contact-choice legend { width: 100%; }
.contact-choice label { cursor: pointer; }
.contact-choice label span { min-width: 98px; min-height: 44px; display: grid; place-items: center; border: 1px solid rgba(7, 26, 48, 0.25); border-radius: 999px; color: var(--ink); font-size: 0.86rem; font-weight: 750; }
.contact-choice input { position: absolute; opacity: 0; }
.contact-choice input:checked + span { border-color: var(--ink); background: var(--ink); color: var(--white); }
.contact-choice input:focus-visible + span { outline: 3px solid #2576aa; outline-offset: 3px; }
.contact-choice .field-error { width: 100%; }
.consent-choice { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; color: var(--graphite); font-size: 0.875rem; line-height: 1.45; cursor: pointer; }
.consent-choice input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--ink); }
.consent-choice + .consent-choice, .consent-error + .consent-choice { margin-top: 12px; }
.consent-choice-marketing { padding: 12px; border-left: 3px solid var(--brass); background: #f8f4e9; }
.consent-error:empty { display: none; }
.consent-error:not(:empty) { margin-bottom: 10px; }
.lead-submit { width: 100%; margin-top: 22px; border: 0; cursor: pointer; }
.lead-submit:disabled { cursor: wait; opacity: 0.66; transform: none; }
.form-disclosure, .form-status { margin-top: 12px; color: var(--muted); font-size: 0.875rem; line-height: 1.45; }
.form-status:not(:empty) { padding-top: 10px; border-top: 1px solid var(--line); }
.form-error-summary { margin-bottom: 18px; padding: 12px 14px; border-left: 4px solid #a43a2c; background: #fff2ef; color: #6f2118; font-size: 0.86rem; font-weight: 700; }
.honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.lead-start-saved p:not(.form-progress) { margin-bottom: 24px; }
.no-script-message { margin-top: 18px; color: var(--muted); font-size: 0.84rem; }
.no-script-message a { color: var(--ink); font-weight: 750; }

.warranty { display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); color: #dce9f3; }
.warranty-media { min-height: 640px; overflow: hidden; }
.warranty-media picture, .warranty-media img { height: 100%; }
.warranty-media img { object-fit: cover; object-position: center; }
.warranty-copy { align-self: center; padding: var(--section) clamp(28px, 7vw, 110px); }
.warranty-identity { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.warranty-name { color: var(--white); font-family: var(--display); font-size: 1.3rem; font-weight: 800; }
.warranty-identity span { padding: 6px 10px; border-radius: 999px; background: var(--brass); color: var(--ink); font-size: 0.74rem; font-weight: 850; }
.warranty h2 { max-width: 12ch; color: var(--white); }
.warranty-copy > p { max-width: 52ch; margin: 26px 0; }
.warranty-copy .warranty-reassurance { color: var(--brass); font-family: var(--voice); font-size: 1.15rem; font-style: italic; }
.warranty-levels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 32px 0; padding-block: 24px; border-block: 1px solid var(--line-light); }
.warranty-levels p { font-size: 0.9rem; line-height: 1.45; }
.warranty-levels strong { display: block; margin-bottom: 7px; color: var(--white); font-size: 1rem; }
.warranty-levels span { color: #bfd0dc; }
.warranty-copy .warranty-terms { margin: -16px 0 28px; color: #a9c0d1; font-size: 0.78rem; }

.review-feature { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; background: var(--navy); color: #dce9f3; }
.review-feature-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: var(--section) clamp(28px, 7vw, 110px); }
.review-value { color: var(--ink); font-family: var(--display); font-size: clamp(1.32rem, 2vw, 1.72rem); font-weight: 750; line-height: 1.05; letter-spacing: -0.025em; }
.review-value-light { max-width: 16ch; color: var(--white); font-size: clamp(2.2rem, 3.6vw, 3.85rem); }
.review-feature blockquote { margin: 28px 0 30px; }
.review-feature blockquote > p { max-width: 42ch; color: #f2f6f9; font-family: var(--voice); font-size: clamp(1.22rem, 1.65vw, 1.55rem); font-style: italic; line-height: 1.48; }
.review-feature blockquote footer { display: flex; flex-wrap: wrap; gap: 7px 18px; margin-top: 24px; color: #b9ccdc; font-size: 0.84rem; }
.review-feature blockquote strong { width: 100%; color: var(--brass); font-size: 1rem; }
.review-feature-media { position: relative; min-height: 720px; overflow: hidden; }
.review-feature-media picture, .review-feature-media img { height: 100%; }
.review-feature-media img { object-fit: cover; object-position: center; }
.review-feature-media figcaption { position: absolute; right: 14px; bottom: 12px; padding: 7px 10px; background: rgba(7, 26, 48, 0.9); color: #f3f7fa; font-size: 0.875rem; }

.reviews { padding-block: var(--section); background: #f7f3e9; }
.reviews-head { display: grid; grid-template-columns: 0.42fr 1.58fr; gap: clamp(30px, 7vw, 90px); align-items: start; margin-bottom: clamp(42px, 6vw, 72px); }
.reviews-head h2 { max-width: 14ch; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { min-height: 510px; display: flex; flex-direction: column; padding: clamp(24px, 3vw, 34px); border-top: 4px solid var(--ink); background: var(--white); box-shadow: 0 16px 40px rgba(7, 26, 48, 0.08); }
.review-card-accent { border-top-color: var(--brass); }
.review-rating { color: var(--brass-deep); font-size: 0.94rem; letter-spacing: 0.1em; }
.review-card .review-value { margin-top: 16px; }
.review-card blockquote { margin: 22px 0 28px; }
.review-card blockquote p { color: var(--graphite); font-family: var(--voice); font-size: clamp(1.06rem, 1.3vw, 1.22rem); font-style: italic; line-height: 1.5; }
.review-card footer { display: grid; gap: 2px; margin-top: auto; color: var(--muted); font-size: 0.76rem; }
.review-card footer strong { color: var(--ink); font-size: 0.92rem; }
.review-card > a { margin-top: 22px; color: var(--ink); font-size: 0.8rem; font-weight: 750; }

.lead-dialog { width: min(680px, calc(100% - 32px)); max-height: 90dvh; margin: auto; padding: 0; border: 0; background: transparent; color: var(--graphite); overflow: visible; }
.lead-dialog::backdrop { background: rgba(7, 26, 48, 0.88); }
.lead-dialog-shell { position: relative; max-height: 90dvh; overflow: auto; padding: clamp(30px, 5vw, 56px); background: var(--white); box-shadow: 0 32px 100px rgba(0, 0, 0, 0.42); }
.lead-dialog h2 { max-width: 12ch; margin-bottom: 18px; font-size: clamp(2.15rem, 5vw, 3.6rem); }
.lead-dialog h2[tabindex="-1"]:focus { outline: none; box-shadow: none; }
.dialog-intro { max-width: 52ch; margin-bottom: 30px; }
.dialog-close { position: absolute; z-index: 2; top: 16px; right: 18px; min-height: 42px; border: 0; background: transparent; color: var(--ink); font-size: 0.82rem; font-weight: 800; text-decoration: underline; text-underline-offset: 0.2em; cursor: pointer; }
.lead-details-form { margin-top: 28px; }
.lead-details-complete p:not(.form-progress) { max-width: 48ch; margin-bottom: 28px; }

.services { padding-block: var(--section); }
.services-head { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr); align-items: end; gap: clamp(34px, 7vw, 94px); margin-bottom: 48px; }
.services-head h2 { max-width: 15ch; }
.services-head > p { max-width: 48ch; }
.service-routes { display: grid; grid-template-columns: 1.15fr 0.85fr; grid-template-rows: 1fr 1fr; gap: 18px; }
.service-route { position: relative; min-height: 290px; overflow: hidden; color: var(--white); text-decoration: none; }
.service-route-ppf { grid-row: 1 / 3; min-height: 598px; }
.service-route picture, .service-route img { height: 100%; }
.service-route img { object-fit: cover; }
.service-route::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7, 26, 48, 0.92), transparent 62%); }
.service-route span { position: absolute; z-index: 1; left: 26px; right: 26px; bottom: 24px; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.service-route strong { font-family: var(--display); font-size: clamp(1.5rem, 2.5vw, 2.35rem); line-height: 1; letter-spacing: -0.03em; }
.service-route small { max-width: 150px; color: var(--brass); font-weight: 750; text-align: right; }

.final-cta { padding-block: var(--section); background: var(--navy); color: #dce9f3; }
.final-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(48px, 8vw, 120px); align-items: center; }
.final-cta h2 { max-width: 11ch; color: var(--white); }
.final-cta p:not(.statement) { max-width: 52ch; margin: 24px 0 30px; }
.location-list { display: grid; gap: 18px; }
.location-list address { padding: 24px; border-top: 2px solid var(--brass); background: rgba(255, 255, 255, 0.07); font-style: normal; }
.location-list strong { color: var(--white); font-size: 1.15rem; }
.location-list a { color: var(--brass); font-weight: 700; }

.site-footer { padding-top: 64px; background: var(--ink); color: #bdcedb; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1.15fr repeat(3, 1fr); gap: clamp(28px, 4vw, 52px); padding-bottom: 52px; }
.footer-logo { color: var(--white); font-family: var(--display); font-size: 1.6rem; font-weight: 800; }
.footer-grid nav { display: grid; gap: 8px; }
.footer-grid nav > strong { margin-bottom: 4px; color: var(--white); font-size: 0.88rem; }
.footer-grid a { color: inherit; }
.site-footer .footer-phone { color: var(--white); font-size: 1.25rem; font-weight: 750; }
.footer-privacy { min-height: 44px; justify-self: start; border: 0; padding: 10px 0; background: transparent; color: inherit; font: inherit; text-align: left; text-decoration: underline; text-underline-offset: 0.2em; cursor: pointer; }
.footer-privacy:hover { color: var(--white); }
.footer-legal { padding-block: 24px; border-top: 1px solid var(--line-light); color: #8fa6b8; font-size: 0.8rem; }
.mobile-bar { display: none; }

.privacy-panel { position: fixed; z-index: 80; right: 16px; bottom: 16px; width: min(540px, calc(100% - 32px)); max-height: min(680px, calc(100dvh - 32px)); overflow-y: auto; border: 1px solid var(--line); border-radius: 12px; padding: clamp(22px, 3vw, 32px); background: var(--white); color: var(--graphite); box-shadow: 0 18px 54px rgba(7, 26, 48, 0.22); }
.privacy-panel[data-expanded="false"] { width: min(430px, calc(100% - 32px)); padding: 20px 22px 16px; }
.privacy-panel[data-expanded="false"] h2 { max-width: none; margin-bottom: 7px; font-size: 1.35rem; }
.privacy-panel[data-expanded="false"] > p { margin-bottom: 14px; font-size: 0.84rem; line-height: 1.4; }
.privacy-panel h2 { max-width: 16ch; margin-bottom: 12px; color: var(--ink); font-size: clamp(1.65rem, 3vw, 2.15rem); line-height: 1.02; }
.privacy-panel > p { max-width: 58ch; margin-bottom: 20px; font-size: 0.92rem; line-height: 1.5; }
.privacy-options { margin: 0 0 20px; padding: 18px 0; border: 0; border-block: 1px solid var(--line); }
.privacy-options legend { margin-bottom: 8px; color: var(--ink); font-weight: 800; }
.privacy-option { min-height: 44px; display: grid; grid-template-columns: 24px 1fr; gap: 11px; align-items: start; margin: 14px 0; font-size: 0.88rem; cursor: pointer; }
.privacy-option input { width: 22px; min-height: 22px; height: 22px; margin: 2px 0 0; accent-color: var(--ink); }
.privacy-option strong,
.privacy-option small { display: block; }
.privacy-option strong { color: var(--ink); }
.privacy-option small { margin-top: 2px; color: var(--muted); line-height: 1.4; }
.privacy-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.privacy-actions .btn { min-height: 46px; flex: 1 1 145px; padding: 10px 14px; font-size: 0.88rem; cursor: pointer; }
.privacy-actions .btn:not(.btn-primary):not(.btn-brass) { border-color: var(--ink); background: var(--white); color: var(--ink); }
.privacy-actions .btn:not(.btn-primary):not(.btn-brass):hover { background: var(--mist); }
.privacy-panel[data-expanded="false"] .privacy-actions { display: grid; grid-template-columns: 1fr 1fr; }
.privacy-panel[data-expanded="false"] [data-privacy-required] { order: 1; }
.privacy-panel[data-expanded="false"] [data-privacy-accept] { order: 2; }
.privacy-panel[data-expanded="false"] [data-privacy-customize] { grid-column: 1 / -1; order: 3; min-height: 40px; border: 0; background: transparent; text-decoration: underline; text-underline-offset: 3px; }
.privacy-status { min-height: 1.3em; margin-top: 12px; color: var(--error); font-size: 0.85rem; font-weight: 750; }

@media (max-width: 1020px) {
  .nav-phone { display: none; }
  .hero-grid { min-height: 680px; }
  .hero-copy { width: min(670px, 72%); }
  .proof-rail { grid-template-columns: 1fr 1fr; }
  .proof-rail span:nth-child(3) { border-left: 0; border-top: 1px solid var(--line-light); }
  .proof-rail span:nth-child(4) { border-top: 1px solid var(--line-light); }
  .films-intro { grid-template-columns: 1fr 0.82fr; gap: 44px; }
  .film-baseline-proof { align-items: flex-start; flex-direction: column; }
  .film-baseline-proof span { text-align: left; }
  .film-air-feature { grid-template-columns: 1fr 0.9fr; }
  .film-metrics { grid-template-columns: 1fr; }
  .service-routes { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 300px; }
  .service-route-ppf { grid-row: 1; grid-column: 1 / 3; min-height: 0; }
  .service-selector-inner { grid-template-columns: 1fr; }
  .service-selector-grid { grid-template-columns: repeat(2, 1fr); }
  .service-selector-card:nth-child(even) { border-right: 0; }
  .service-selector-card:not(:last-child) { border-bottom: 1px solid var(--line); }
  .home-tesla-grid { grid-template-columns: 1fr 0.9fr; }
  .home-tesla-media { min-height: 560px; }
  .home-tesla-copy { padding-left: 44px; }
  .quote-start-grid { grid-template-columns: minmax(0, 0.72fr) minmax(390px, 1fr); gap: 48px; }
  .review-feature { grid-template-columns: 0.92fr 1.08fr; }
  .review-feature-copy { padding-inline: var(--gutter); }
}

@media (max-width: 820px) {
  .nav-toggle { min-height: 44px; display: inline-flex; align-items: center; gap: 9px; border: 1px solid var(--line); border-radius: 8px; padding: 9px 13px; background: var(--white); color: var(--ink); font-weight: 700; }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { width: 18px; height: 2px; display: block; background: var(--ink); content: ""; transition: transform 200ms ease; }
  .nav-toggle span { position: relative; }
  .nav-toggle span::before { position: absolute; top: -6px; }
  .nav-toggle span::after { position: absolute; top: 6px; }
  .site-nav[data-open="true"] .nav-toggle span { background: transparent; }
  .site-nav[data-open="true"] .nav-toggle span::before { top: 0; transform: rotate(45deg); }
  .site-nav[data-open="true"] .nav-toggle span::after { top: 0; transform: rotate(-45deg); }
  .nav-menu { display: none; position: absolute; top: 100%; right: 0; left: 0; max-height: calc(100dvh - 76px); overflow-y: auto; overscroll-behavior: contain; padding: 12px var(--gutter) 24px; border-bottom: 1px solid var(--line); background: var(--white); flex-direction: column; align-items: stretch; gap: 0; box-shadow: 0 8px 8px rgba(7, 26, 48, 0.08); }
  .site-nav[data-open="true"] .nav-menu { display: flex; }
  .nav-menu > li { display: block; }
  .nav-menu > li > a:not(.btn),
  .nav-services-menu > summary { width: 100%; min-height: 48px; display: flex; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 1.02rem; }
  .nav-services { position: static; }
  .nav-services-menu { width: 100%; }
  .nav-services-menu > summary { justify-content: space-between; }
  .nav-services-menu[open] > summary { border-bottom-color: transparent; }
  .nav-services-panel { position: static; width: 100%; display: grid; grid-template-columns: 1fr; gap: 0; padding: 0 0 14px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; box-shadow: none; }
  .nav-service-group { padding: 0; }
  .nav-service-group + .nav-service-group { border-left: 0; }
  .nav-service-heading { min-height: 38px; padding: 8px 0 0; }
  .nav-services-specialty { grid-template-rows: auto auto; gap: 8px; padding: 8px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .nav-service-featured { min-height: 132px; padding: 20px; }
  .nav-service-featured span { margin-bottom: 12px; }
  .nav-services-links a { min-height: 48px; padding: 12px 14px 12px 20px; }
  .nav-services-all-wrap { padding: 8px 0 0; background: transparent; }
  .nav-phone { display: block; }
  .nav-cta { padding-top: 16px; }
  .nav-cta .btn { width: 100%; }
  .hero::before { background: linear-gradient(0deg, rgba(7, 26, 48, 0.99) 0%, rgba(7, 26, 48, 0.91) 50%, rgba(7, 26, 48, 0.34) 100%); }
  .hero-grid { min-height: min(720px, calc(100svh - 68px)); align-items: end; }
  .hero-copy { width: 100%; padding-block: 100px 46px; }
  .hero-media img { object-position: 68% center; }
  .hero h1 { max-width: 12ch; font-size: clamp(3.05rem, 10.8vw, 4.8rem); }
  .hero-lede { max-width: 42ch; font-size: 1.08rem; }
  .proof-rail { padding-inline: var(--gutter); }
  .home-tesla-grid { grid-template-columns: 1fr; }
  .home-tesla-media { min-height: 0; margin-inline: calc(-1 * var(--gutter)); }
  .home-tesla-media img { aspect-ratio: 16 / 11; }
  .home-tesla-copy { padding: 64px 0 74px; }
  .impact-grid, .final-grid, .quote-start-grid { grid-template-columns: 1fr; }
  .impact-media { order: -1; }
  .impact-media::before { top: -14px; right: -14px; }
  .films-intro { grid-template-columns: 1fr; }
  .film-baseline { grid-template-columns: 1fr 1fr; }
  .film-baseline-proof { align-items: baseline; flex-direction: row; }
  .film-air-feature { grid-template-columns: 1fr; }
  .film-air-media { min-height: 0; }
  .film-air-media img { aspect-ratio: 16 / 10; }
  .premium-showcase { grid-template-columns: 1fr; gap: 24px; }
  .film-feature-i3 { margin-top: 0; }
  .film-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .demo-head { grid-template-columns: 1fr; gap: 4px; }
  .demo-head h2 { max-width: 13ch; }
  .demo-stage { margin-top: 38px; padding-bottom: 0; }
  .demo-media { width: calc(100% + 2 * var(--gutter)); margin-inline: calc(-1 * var(--gutter)); }
  .demo-copy { position: relative; width: 100%; margin-top: 0; box-shadow: none; }
  .warranty { grid-template-columns: 1fr; }
  .warranty-media { min-height: 360px; max-height: 520px; }
  .warranty-copy { padding: 70px var(--gutter); }
  .review-feature { grid-template-columns: 1fr; min-height: 0; }
  .review-feature-copy { padding: 76px var(--gutter); }
  .review-feature-media { min-height: 480px; }
  .reviews-head { grid-template-columns: 1fr; gap: 6px; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card, .review-card-accent { min-height: 0; transform: none; }
  .services-head { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  body { padding-bottom: 72px; font-size: 1rem; }
  .brand img { height: 34px; }
  .header-inner { min-height: 68px; }
  .nav-menu { max-height: calc(100dvh - 68px); }
  .hero-label { font-size: 0.78rem; }
  .hero-grid { min-height: 690px; }
  .hero-copy { padding-top: 112px; }
  .hero .cta-row .btn, .final-cta .cta-row .btn { width: 100%; }
  .proof-rail { grid-template-columns: 1fr; }
  .proof-rail span { min-height: 58px; padding: 13px 0; border-top: 1px solid var(--line-light); border-left: 0 !important; }
  .films-intro-copy .btn { width: 100%; }
  .service-selector-grid { grid-template-columns: 1fr; }
  .film-baseline { grid-template-columns: 1fr; }
  .film-baseline-proof { align-items: flex-start; flex-direction: column; }
  .film-feature-copy { padding: 28px 22px 32px; }
  .film-leader-badge { top: 12px; right: 12px; }
  .film-metrics { grid-template-columns: 1fr; }
  .film-fine-print { text-align: left; }
  .demo-media img { aspect-ratio: 4 / 3; }
  .demo-copy { margin-inline: calc(-1 * var(--gutter)); width: calc(100% + 2 * var(--gutter)); padding: 34px var(--gutter); }
  .demo-copy .cta-row { align-items: stretch; flex-direction: column; }
  .demo-copy .btn { width: 100%; }
  .warranty-levels { grid-template-columns: 1fr; gap: 18px; }
  .service-selector-grid { grid-template-columns: 1fr; }
  .service-selector-card { min-height: 126px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-selector-card:last-child { border-bottom: 0; }
  .form-field-row { grid-template-columns: 1fr; gap: 0; }
  .quote-panel { padding: 28px 20px; }
  .quote-start::before { display: none; }
  .review-feature blockquote > p { font-size: 1.2rem; }
  .review-feature-media { min-height: 390px; }
  .lead-dialog { width: 100%; max-width: none; height: 100dvh; max-height: none; margin: 0; }
  .lead-dialog-shell { min-height: 100dvh; max-height: 100dvh; padding: 70px var(--gutter) calc(40px + env(safe-area-inset-bottom)); }
  .services-head { display: block; }
  .services-head > p { margin-top: 24px; }
  .service-routes { display: flex; flex-direction: column; }
  .service-route, .service-route-ppf { min-height: 330px; }
  .service-route span { align-items: start; flex-direction: column; gap: 8px; }
  .service-route small { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid nav a,
  .footer-grid > div a,
  .footer-privacy,
  .text-link { min-height: 44px; display: inline-flex; align-items: center; }
  .privacy-panel { right: 10px; bottom: calc(80px + env(safe-area-inset-bottom)); left: 10px; width: auto; max-height: calc(100dvh - 100px - env(safe-area-inset-bottom)); padding: 22px 20px; }
  .privacy-panel[data-expanded="false"] { width: auto; padding: 17px 18px 12px; }
  .privacy-actions { flex-direction: column; }
  .privacy-actions .btn { width: 100%; flex-basis: auto; }
  .privacy-panel[data-expanded="false"] .privacy-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .privacy-panel[data-expanded="false"] .privacy-actions .btn { width: auto; }
  .mobile-bar { position: fixed; z-index: 60; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 0.65fr 1.35fr; gap: 6px; padding: 9px max(10px, env(safe-area-inset-right)) calc(9px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left)); background: var(--ink); }
  .js .mobile-bar { visibility: hidden; opacity: 0; transform: translateY(100%); pointer-events: none; transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms; }
  .js .mobile-bar[data-visible="true"] { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; }
  .mobile-bar a { min-height: 50px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--white); border-radius: 6px; color: var(--white); font-weight: 750; text-decoration: none; }
  .mobile-bar a:last-child { border-color: var(--brass); background: var(--brass); color: var(--ink); }
}

@media (hover: hover) and (pointer: fine) {
  .hero-media img { transition: transform 900ms var(--ease); }
  .film-feature-media img,
  .warranty-media img { transition: transform 700ms var(--ease); }
  .service-route img { transition: transform 650ms var(--ease); }
  .film-feature:hover .film-feature-media img,
  .warranty:hover .warranty-media img { transform: scale(1.025); }
  .service-route:hover img { transform: scale(1.035); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

:root {
  --cream: #f7f3e9;
  --soft-blue: #dcebf5;
  --shadow: 0 24px 70px rgba(7, 26, 48, 0.14);
}

.site-footer .footer-grid { grid-template-columns: 1.15fr repeat(3, 1fr); }
.reviews .review-grid + .review-grid { grid-template-columns: 1fr; max-width: 780px; margin: 18px auto 0 !important; }
.page-section { padding-block: var(--section); }
.page-section-tight { padding-block: clamp(52px, 6vw, 84px); }
.page-section-mist { background: var(--mist); }
.page-section-cream { background: var(--cream); }
.page-section-navy { background: var(--navy); color: #dce9f3; }
.page-section-ink { background: var(--ink); color: #dce9f3; }
.page-section-navy h2,
.page-section-navy h3,
.page-section-ink h2,
.page-section-ink h3 { color: var(--white); }
.page-section-navy .statement,
.page-section-ink .statement,
.financing-card-dark .statement { color: var(--brass); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr); gap: clamp(36px, 8vw, 112px); align-items: end; margin-bottom: clamp(44px, 6vw, 76px); }
.section-heading h2 { max-width: 13ch; }
.section-heading > div:last-child,
.section-heading > p { max-width: 58ch; }
.section-heading .cta-row { margin-top: 24px; }
.section-heading-centered { display: block; max-width: 850px; margin: 0 auto clamp(44px, 6vw, 72px); text-align: center; }
.section-heading-centered h2 { max-width: 16ch; margin-inline: auto; }
.section-heading-centered p:last-child { max-width: 60ch; margin: 24px auto 0; }

.breadcrumb { min-height: 46px; display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.78rem; }
.breadcrumb a { color: var(--ink); font-weight: 700; }
.breadcrumb span[aria-current="page"] { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.page-hero { position: relative; isolation: isolate; overflow: hidden; background: var(--ink); color: var(--white); }
.page-hero-grid { min-height: clamp(560px, 68vh, 680px); display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr); }
.page-hero-copy { align-self: center; padding: clamp(48px, 5vw, 72px) clamp(28px, 4vw, 58px) clamp(48px, 5vw, 72px) max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
}
.page-hero-kicker { display: inline-flex; margin-bottom: 18px; padding: 7px 12px; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 999px; color: var(--brass); font-size: 0.87rem; font-weight: 750; }
.page-hero h1 { max-width: 12ch; color: var(--white); font-size: clamp(2.9rem, 4.7vw, 4.5rem); }
.page-hero-lede { max-width: 46ch; margin: 22px 0 26px; color: #e2edf5; font-size: clamp(1.08rem, 1.35vw, 1.25rem); line-height: 1.5; }
.page-hero-note { max-width: 60ch; margin-top: 14px; color: #b9ccdc; font-size: 0.88rem; }
.page-hero-media { position: relative; min-height: 560px; overflow: hidden; background: var(--navy); }
.page-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7, 26, 48, 0.42), transparent 36%); pointer-events: none; }
.page-hero-media picture { position: absolute; inset: 0; display: block; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-reverse .page-hero-grid { grid-template-columns: minmax(440px, 0.92fr) minmax(0, 1.08fr); }
.page-hero-reverse .page-hero-copy { order: 2; padding-right: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter))); padding-left: clamp(28px, 4vw, 58px); }
.page-hero-reverse .page-hero-media { order: 1; }
.page-hero-reverse .page-hero-media::after { background: linear-gradient(270deg, rgba(7, 26, 48, 0.42), transparent 36%); }
.page-hero-light { background: var(--mist); color: var(--graphite); }
.page-hero-light h1 { color: var(--ink); }
.page-hero-light .page-hero-kicker { border-color: rgba(7, 26, 48, 0.24); color: var(--brass-deep); }
.page-hero-light .page-hero-lede { color: var(--graphite); }
.page-hero-light .page-hero-note { color: var(--muted); }
.page-hero .cta-row { gap: 10px 18px; }
.page-hero .cta-row .btn-ghost,
.page-hero .page-hero-secondary { min-height: 44px; border: 0; border-radius: 0; padding: 9px 2px; background: transparent; color: var(--white); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 0.24em; }
.page-hero .cta-row .btn-ghost:hover,
.page-hero .page-hero-secondary:hover { transform: none; background: transparent; color: var(--brass); }
.page-hero-light .cta-row .btn-ghost,
.page-hero-light .page-hero-secondary { color: var(--ink); }
.page-hero-light .cta-row .btn-ghost:hover,
.page-hero-light .page-hero-secondary:hover { color: var(--navy-bright); }

.page-proof { background: var(--navy); color: var(--white); }
.page-proof-list { min-height: 84px; display: grid; grid-template-columns: repeat(4, 1fr); }
.page-proof-list li { min-height: 84px; display: flex; align-items: center; padding: 16px 24px 16px 0; color: #dce9f3; font-size: 0.88rem; font-weight: 700; line-height: 1.35; }
.page-proof-list li + li { padding-left: 24px; border-left: 1px solid var(--line-light); }

.editorial-split { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr); gap: clamp(46px, 8vw, 116px); align-items: center; }
.editorial-split-reverse .editorial-media { order: -1; }
.editorial-copy h2 { max-width: 13ch; margin-bottom: 28px; }
.editorial-copy > p:not(.statement) { max-width: 58ch; }
.editorial-copy > p + p { margin-top: 18px; }
.editorial-copy .cta-row { margin-top: 30px; }
.editorial-media { position: relative; }
.editorial-media::before { content: ""; position: absolute; z-index: -1; top: -24px; right: -24px; width: 40%; height: 44%; background: var(--brass); }
.editorial-split-reverse .editorial-media::before { right: auto; left: -24px; }
.editorial-media img { aspect-ratio: 5 / 4; object-fit: cover; }
.editorial-media figcaption { margin-top: 12px; color: var(--muted); font-size: 0.8rem; }

.stakes-list { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.stakes-list article { padding: 34px 28px 34px 0; }
.stakes-list article + article { padding-left: 28px; border-left: 1px solid var(--line); }
.stakes-list h3 { margin-bottom: 14px; font-size: clamp(1.25rem, 2vw, 1.72rem); }
.stakes-list p { font-size: 0.96rem; }
.page-section-navy .stakes-list,
.page-section-ink .stakes-list { border-color: var(--line-light); }
.page-section-navy .stakes-list article + article,
.page-section-ink .stakes-list article + article { border-color: var(--line-light); }

.feature-stage { position: relative; padding-bottom: clamp(110px, 12vw, 170px); }
.feature-stage-media { width: 80%; overflow: hidden; }
.feature-stage-media img { aspect-ratio: 16 / 9; object-fit: cover; }
.feature-stage-copy { position: absolute; right: 0; bottom: 0; width: min(620px, 56%); padding: clamp(34px, 5vw, 62px); background: var(--ink); color: #dce9f3; box-shadow: var(--shadow); }
.feature-stage-copy h2 { max-width: 12ch; margin-bottom: 24px; color: var(--white); }
.feature-stage-copy p + p { margin-top: 16px; }
.feature-stage-copy .cta-row { margin-top: 28px; }

.decision-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-light); }
.decision-card { display: grid; grid-template-columns: minmax(150px, 0.72fr) minmax(0, 1.28fr); gap: 20px 34px; padding: clamp(34px, 5vw, 58px) clamp(24px, 4vw, 50px) clamp(34px, 5vw, 58px) 0; border-bottom: 1px solid var(--line-light); }
.decision-card:nth-child(even) { padding-right: 0; padding-left: clamp(24px, 4vw, 50px); border-left: 1px solid var(--line-light); }
.decision-card h3 { font-size: clamp(1.7rem, 3vw, 2.65rem); }
.decision-label { margin-bottom: 8px; color: #b9ccdc; font-size: 0.78rem; font-weight: 800; }
.decision-proof { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid var(--line-light); color: var(--brass); font-weight: 800; }
.decision-card-featured { position: relative; background: rgba(255, 255, 255, 0.055); }
.decision-card-featured::after { content: "Exclusive Performance"; position: absolute; top: 16px; right: 16px; padding: 6px 9px; background: var(--brass); color: var(--ink); font-size: 0.7rem; font-weight: 850; }

.image-product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.image-product-card { overflow: hidden; background: var(--white); box-shadow: 0 16px 44px rgba(7, 26, 48, 0.1); }
.image-product-card figure { overflow: hidden; }
.image-product-card img { aspect-ratio: 16 / 10; object-fit: cover; }
.image-product-copy { padding: clamp(26px, 4vw, 44px); }
.image-product-copy h3 { margin-bottom: 15px; font-size: clamp(1.75rem, 3vw, 2.7rem); }
.image-product-copy .product-family { margin-bottom: 8px; color: var(--brass-deep); font-size: 0.8rem; font-weight: 800; }
.image-product-copy ul { display: grid; gap: 8px; margin-top: 20px; color: var(--ink); font-size: 0.92rem; font-weight: 700; }
.image-product-copy li { display: flex; gap: 9px; }
.image-product-copy li::before { content: ""; width: 7px; height: 7px; flex: none; margin-top: 0.62em; border-radius: 50%; background: var(--brass); }

.portfolio { border-top: 1px solid var(--line); }
.portfolio-row { display: grid; grid-template-columns: minmax(190px, 0.62fr) minmax(0, 1.38fr); gap: 30px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.portfolio-row h3 { font-size: clamp(1.35rem, 2vw, 1.9rem); }
.portfolio-row p { max-width: 70ch; }
.portfolio-use { display: block; margin-top: 8px; color: var(--brass-deep); font-size: 0.78rem; font-weight: 800; }

.consultation-flow { display: grid; grid-template-columns: 0.76fr 1.24fr; gap: clamp(46px, 8vw, 112px); align-items: start; }
.consultation-intro { position: sticky; top: 112px; }
.consultation-intro h2 { max-width: 12ch; margin-bottom: 24px; }
.consultation-list { border-bottom: 1px solid var(--line-light); }
.consultation-list article { display: grid; grid-template-columns: minmax(160px, 0.65fr) minmax(0, 1.35fr); gap: 24px; padding: 30px 0; border-top: 1px solid var(--line-light); }
.consultation-list h3 { font-size: clamp(1.28rem, 2vw, 1.7rem); }

.lead-zone { background: var(--mist); }
.lead-layout { display: grid; grid-template-columns: minmax(280px, 0.72fr) minmax(500px, 1fr); gap: clamp(44px, 8vw, 104px); align-items: start; }
.lead-copy { position: sticky; top: 112px; }
.lead-copy h2 { max-width: 12ch; margin-bottom: 24px; }
.lead-copy > p:not(.statement) { max-width: 49ch; }
.lead-proof { display: grid; gap: 12px; margin-top: 28px; color: var(--ink); font-weight: 750; }
.lead-proof li { display: flex; align-items: flex-start; gap: 10px; }
.lead-proof li::before { content: "\2713"; color: var(--brass-deep); }
.lead-form { padding: clamp(26px, 4vw, 44px); background: var(--white); box-shadow: var(--shadow); }
.lead-form fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.form-step > h3 { margin-bottom: 8px; }
.form-step-intro { margin-bottom: 24px; color: var(--muted); font-size: 0.92rem; }
.form-progress { display: flex; gap: 7px; margin-bottom: 26px; }
.form-progress span { height: 4px; flex: 1; border-radius: 999px; background: #d6e1e9; }
.form-progress span:first-child,
.form-step[data-form-step="details"] .form-progress span { background: var(--brass); }
.required-note { margin-bottom: 20px; color: var(--muted); font-size: 0.82rem; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label,
.field-label { display: block; margin-bottom: 6px; color: var(--ink); font-weight: 750; }
.lead-form input,
.lead-form select,
.lead-form textarea { width: 100%; min-height: 50px; border: 1px solid #708396; border-radius: 7px; padding: 11px 12px; background: var(--white); color: var(--ink); font: inherit; }
.lead-form textarea { min-height: 112px; resize: vertical; }
.lead-form input:hover,
.lead-form select:hover,
.lead-form textarea:hover { border-color: var(--ink); }
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus { border-color: var(--blue); outline: 3px solid rgba(46, 111, 158, 0.22); outline-offset: 1px; }
.lead-form [aria-invalid="true"] { border: 2px solid #9c1c1c; }
.check { display: grid; grid-template-columns: 24px 1fr; gap: 10px; align-items: start; margin: 16px 0; color: var(--graphite); font-size: 0.88rem; }
.check input { width: 22px; min-height: 22px; height: 22px; margin-top: 2px; accent-color: var(--ink); }
.lead-form .contact-choice input { width: 1px; min-height: 1px; height: 1px; padding: 0; }
.check strong { color: var(--ink); }
.optional-consent { margin: 22px 0; padding-top: 18px; border-top: 1px solid var(--line); }
.optional-consent summary { min-height: 44px; display: flex; align-items: center; color: var(--ink); font-weight: 750; cursor: pointer; }
.optional-consent .check { font-size: 0.82rem; }
.form-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.form-back { min-height: 48px; border: 0; padding: 10px 12px; background: transparent; color: var(--ink); font-weight: 700; text-decoration: underline; cursor: pointer; }
.field-error { min-height: 1.2em; display: block; margin-top: 4px; color: #8a281d; font-size: 0.82rem; font-weight: 750; }
.error-summary { margin-bottom: 18px; border: 2px solid #9c1c1c; padding: 12px; background: #fff0f0; color: #721717; font-weight: 750; }
.form-status { min-height: 1.5em; margin-top: 10px; color: var(--ink); font-weight: 700; }
.hint { display: block; margin-top: 4px; color: var(--muted); font-size: 0.82rem; }
.honeypot { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.faq-layout { display: grid; grid-template-columns: minmax(240px, 0.5fr) minmax(0, 1fr); gap: clamp(46px, 8vw, 108px); align-items: start; }
.faq-intro { position: sticky; top: 112px; }
.faq-intro h2 { max-width: 12ch; margin-bottom: 22px; }
.faq-list { border-bottom: 1px solid var(--line); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list summary { min-height: 68px; display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 17px 0; color: var(--ink); font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--brass-deep); font-size: 1.55rem; transition: transform 180ms var(--ease); }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { max-width: 68ch; margin: -2px 0 24px; }

.location-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.location-card { min-height: 380px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(30px, 5vw, 56px); background: var(--navy); color: #dce9f3; }
.location-card:nth-child(2) { background: var(--ink); }
.location-card h2,
.location-card h3 { color: var(--white); }
.location-card h3 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.6rem); }
.location-card address { font-style: normal; }
.location-card .cta-row { margin-top: 34px; }
.location-card .btn-ghost { min-width: 150px; }

.resource-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.resource-card { min-height: 330px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(28px, 4vw, 44px); border-top: 4px solid var(--ink); border-radius: 10px; background: var(--white); text-decoration: none; transition: transform 220ms var(--ease); }
.resource-card:hover { transform: translateY(-5px); }
.resource-card:nth-child(2n) { border-top-color: var(--brass); }
.resource-card h3 { max-width: 14ch; margin-bottom: 18px; font-size: clamp(1.75rem, 3vw, 2.7rem); }
.resource-card span { margin-top: 28px; color: var(--ink); font-weight: 800; }

.article-hero { padding: clamp(74px, 10vw, 138px) 0 clamp(66px, 8vw, 106px); background: var(--ink); color: #dce9f3; }
.article-hero h1 { max-width: 14ch; color: var(--white); font-size: clamp(3rem, 6vw, 5.4rem); }
.article-hero .page-hero-lede { max-width: 56ch; }
.article-layout { display: grid; grid-template-columns: minmax(190px, 0.32fr) minmax(0, 0.94fr) minmax(190px, 0.32fr); gap: clamp(34px, 6vw, 82px); align-items: start; }
.article-toc { position: sticky; top: 112px; display: grid; gap: 10px; color: var(--muted); font-size: 0.86rem; }
.article-toc strong { color: var(--ink); }
.article-toc a { text-decoration: none; }
.article-toc a:hover { color: var(--blue); }
.article-body { min-width: 0; }
.article-body h2 { max-width: 16ch; margin: 62px 0 22px; font-size: clamp(2.1rem, 4vw, 3.5rem); }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { margin: 36px 0 14px; font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
.article-body p + p { margin-top: 18px; }
.article-body ul { display: grid; gap: 10px; margin: 22px 0; }
.article-body li { position: relative; padding-left: 20px; }
.article-body li::before { content: ""; position: absolute; top: 0.72em; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--brass); }
.article-body .callout { margin: 38px 0; padding: clamp(24px, 4vw, 38px); background: var(--mist); color: var(--ink); }
.article-aside { position: sticky; top: 112px; padding: 24px; background: var(--cream); }
.article-aside strong { display: block; margin-bottom: 10px; color: var(--ink); }
.article-aside .btn { width: 100%; margin-top: 18px; }

.trust-band { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: 560px; background: var(--ink); color: #dce9f3; }
.trust-band-media { min-height: 560px; overflow: hidden; }
.trust-band-media picture,
.trust-band-media img { height: 100%; }
.trust-band-media img { object-fit: cover; }
.trust-band-copy { align-self: center; padding: var(--section) clamp(30px, 7vw, 100px); }
.trust-band-copy h2 { max-width: 12ch; color: var(--white); }
.trust-band-copy > p:not(.statement) { max-width: 54ch; margin-top: 24px; }
.trust-band-copy .cta-row { margin-top: 30px; }

.contact-grid { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(390px, 1.12fr); gap: clamp(44px, 8vw, 112px); align-items: start; }
.contact-copy h1 { max-width: 10ch; margin-bottom: 28px; }
.contact-copy > p { max-width: 52ch; }
.contact-options { display: grid; gap: 16px; margin-top: 34px; }
.contact-option { padding: 24px 0; border-top: 1px solid var(--line); }
.contact-option h2 { margin-bottom: 9px; font-size: 1.5rem; }
.contact-option .footer-phone { min-height: 44px; display: inline-flex; align-items: center; color: var(--ink); font-size: 1.25rem; font-weight: 750; }
.contact-panel { padding: clamp(28px, 5vw, 52px); background: var(--ink); color: #dce9f3; }
.contact-panel h2 { max-width: 12ch; margin-bottom: 20px; color: var(--white); }
.contact-panel .btn { width: 100%; margin-top: 24px; }
.contact-panel a:not(.btn) { color: var(--brass); }

.privacy-layout { max-width: 900px; }
.privacy-copy { padding: clamp(30px, 6vw, 68px); background: var(--white); box-shadow: var(--shadow); }
.privacy-copy h2 { margin: 46px 0 14px; font-size: clamp(1.55rem, 2.6vw, 2.25rem); }
.privacy-copy h2:first-of-type { margin-top: 28px; }
.privacy-copy p + p { margin-top: 15px; }
.privacy-copy .cta-row { margin-top: 36px; }
.privacy-copy .legal-note { margin-top: 22px; }
.final-action { padding-block: var(--section); background: var(--navy); color: #dce9f3; }
.final-action .statement { color: var(--brass); }
.final-action-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr); gap: clamp(46px, 8vw, 116px); align-items: center; }
.final-action h2 { max-width: 12ch; color: var(--white); }
.final-action-copy > p:not(.statement) { max-width: 54ch; margin: 24px 0 30px; }
.final-action-locations { display: grid; gap: 16px; }
.final-action-locations address { padding: 22px 24px; border-top: 2px solid var(--brass); background: rgba(255, 255, 255, 0.07); font-style: normal; }
.final-action-locations strong { display: block; color: var(--white); }
.final-action-locations a { color: var(--brass); }

.legal-note { color: var(--muted); font-size: 0.82rem; }
.page-section-navy .legal-note,
.page-section-ink .legal-note { color: #a9c0d1; }

.catalog-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.catalog-card { min-width: 0; padding: clamp(26px, 4vw, 42px); border-top: 4px solid var(--brass); background: var(--white); box-shadow: 0 14px 42px rgba(7, 26, 48, 0.09); }
.catalog-card h3 { margin-bottom: 14px; font-size: clamp(1.65rem, 2.8vw, 2.45rem); }
.catalog-card > p:not(.catalog-maker) { max-width: 58ch; }
.catalog-maker { margin-bottom: 8px; color: var(--brass-deep); font-size: 0.76rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.product-chip-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.product-chip-list li { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: var(--mist); color: var(--ink); font-size: 0.78rem; font-weight: 750; line-height: 1.25; }
.page-section-navy .catalog-card { background: #153553; color: #dce9f3; box-shadow: none; }
.page-section-navy .catalog-maker { color: var(--brass); }
.page-section-navy .product-chip-list li { border-color: var(--line-light); background: rgba(255, 255, 255, 0.07); color: var(--white); }
.color-catalog { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line-light); }
.color-catalog span { min-width: 0; display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: baseline; padding: 14px 14px 14px 0; border-bottom: 1px solid var(--line-light); color: var(--white); font-size: 0.84rem; line-height: 1.3; }
.color-catalog span:not(:nth-child(4n + 1)) { padding-left: 14px; border-left: 1px solid var(--line-light); }
.color-catalog b { color: var(--brass); font-size: 0.68rem; letter-spacing: 0.04em; }

.merch-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.merch-card { position: relative; min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(28px, 4vw, 46px); border: 1px solid var(--line-light); background: #153553; }
.merch-card h3 { margin-bottom: 10px; font-size: clamp(2rem, 4vw, 3.4rem); }
.merch-card > span { position: absolute; top: 18px; right: 18px; padding: 7px 10px; background: var(--brass); color: var(--ink); font-size: 0.72rem; font-weight: 850; }
.merch-card-featured { transform: translateY(-18px); border-color: rgba(var(--brass-rgb), 0.72); background: #0c223b; box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2); }
.merch-card-flagship { background: var(--ink); }
.merch-term { margin: 6px 0 24px; color: var(--brass); font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 750; line-height: 1; }

.financing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.financing-card { min-height: 560px; display: flex; flex-direction: column; padding: clamp(30px, 5vw, 58px); background: var(--white); box-shadow: var(--shadow); }
.financing-card h2 { max-width: 11ch; margin-bottom: 24px; font-size: clamp(2.2rem, 4.2vw, 3.8rem); }
.financing-card ul { display: grid; gap: 11px; margin: 28px 0; }
.financing-card li { position: relative; padding-left: 20px; }
.financing-card li::before { content: ""; position: absolute; top: 0.65em; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--brass); }
.financing-card .cta-row { margin-top: auto; padding-top: 28px; }
.financing-card-dark { background: var(--ink); color: #dce9f3; }
.financing-card-dark h2 { color: var(--white); }

.gift-card-visual { position: relative; isolation: isolate; min-height: 360px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: clamp(28px, 5vw, 54px); background: linear-gradient(135deg, #071a30, #153f63); color: var(--white); box-shadow: var(--shadow); }
.gift-card-visual::before { content: ""; position: absolute; z-index: -1; top: -42%; right: -14%; width: 76%; aspect-ratio: 1; border: 1px solid rgba(212, 170, 54, 0.48); border-radius: 50%; box-shadow: 0 0 0 48px rgba(212, 170, 54, 0.06), 0 0 0 96px rgba(212, 170, 54, 0.035); }
.gift-card-visual p { color: var(--brass); font-family: var(--display); font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 800; line-height: 0.9; letter-spacing: -0.045em; }
.gift-card-visual strong { margin-top: 12px; font-size: 1.15rem; }
.gift-card-visual span { margin-top: 34px; color: #b9ccdc; font-size: 0.85rem; font-weight: 750; text-transform: uppercase; letter-spacing: 0.08em; }

.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.gallery-card { overflow: hidden; background: var(--white); box-shadow: 0 16px 46px rgba(7, 26, 48, 0.1); }
.gallery-card figure { position: relative; overflow: hidden; }
.gallery-card img { aspect-ratio: 3 / 2; object-fit: cover; }
.gallery-card figcaption { position: absolute; right: 10px; bottom: 10px; left: 10px; padding: 8px 10px; background: rgba(7, 26, 48, 0.88); color: var(--white); font-size: 0.7rem; line-height: 1.25; }
.gallery-card > div { padding: clamp(24px, 4vw, 40px); }
.gallery-card h2 { margin-bottom: 14px; font-size: clamp(1.8rem, 3vw, 2.7rem); }

.case-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.case-card { min-height: 500px; display: flex; flex-direction: column; padding: clamp(26px, 4vw, 42px); border-top: 4px solid var(--brass); background: var(--white); box-shadow: 0 16px 46px rgba(7, 26, 48, 0.09); }
.case-card h3 { margin-bottom: 24px; font-size: clamp(1.65rem, 2.8vw, 2.35rem); }
.case-label { margin-bottom: 9px; color: var(--brass-deep); font-size: 0.76rem; font-weight: 850; letter-spacing: 0.07em; text-transform: uppercase; }
.case-card blockquote { margin: 0 0 24px; color: var(--ink); font-family: var(--voice); font-size: 1.16rem; font-style: italic; line-height: 1.55; }
.case-card .text-link { margin-top: auto; padding-top: 24px; }

@media (max-width: 1060px) {
  .page-hero-grid,
  .page-hero-reverse .page-hero-grid { grid-template-columns: 1fr 1fr; }
  .page-proof-list { grid-template-columns: 1fr 1fr; }
  .page-proof-list li:nth-child(3) { border-left: 0; border-top: 1px solid var(--line-light); }
  .page-proof-list li:nth-child(4) { border-top: 1px solid var(--line-light); }
  .article-layout { grid-template-columns: 190px minmax(0, 1fr); }
  .article-aside { grid-column: 2; position: static; }
}

@media (max-width: 960px) {
  .lead-layout,
  .contact-grid { grid-template-columns: 1fr; }
  .lead-copy { position: static; }
  .color-catalog { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .color-catalog span:not(:nth-child(4n + 1)) { padding-left: 0; border-left: 0; }
  .color-catalog span:not(:nth-child(3n + 1)) { padding-left: 14px; border-left: 1px solid var(--line-light); }
  .case-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-heading,
  .editorial-split,
  .consultation-flow,
  .lead-layout,
  .faq-layout,
  .contact-grid,
  .final-action-grid { grid-template-columns: 1fr; }
  .section-heading { gap: 22px; }
  .page-hero-grid,
  .page-hero-reverse .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-copy,
  .page-hero-reverse .page-hero-copy { order: 2; padding: 40px var(--gutter) 52px; }
  .page-hero-media,
  .page-hero-reverse .page-hero-media { order: 1; width: 100%; height: clamp(220px, 42vw, 340px); min-height: 0; max-height: none; }
  .page-hero-media::after,
  .page-hero-reverse .page-hero-media::after { background: linear-gradient(0deg, rgba(7, 26, 48, 0.42), transparent 45%); }
  .page-hero h1 { max-width: 12ch; }
  .editorial-media { order: -1; }
  .editorial-media::before,
  .editorial-split-reverse .editorial-media::before { top: -14px; right: -14px; left: auto; }
  .feature-stage { padding-bottom: 0; }
  .feature-stage-media { width: calc(100% + 2 * var(--gutter)); margin-inline: calc(-1 * var(--gutter)); }
  .feature-stage-copy { position: relative; width: 100%; box-shadow: none; }
  .decision-card { grid-template-columns: 1fr; }
  .decision-proof { grid-column: 1; }
  .consultation-intro,
  .lead-copy,
  .faq-intro { position: static; }
  .trust-band { grid-template-columns: 1fr; }
  .trust-band-media { min-height: 420px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-toc,
  .article-aside { position: static; grid-column: auto; }
  .article-toc { padding-bottom: 24px; border-bottom: 1px solid var(--line); }
  .merch-grid { grid-template-columns: 1fr; }
  .merch-card { min-height: 340px; }
  .merch-card-featured { transform: none; }
  .financing-grid { grid-template-columns: 1fr; }
  .financing-card { min-height: 0; }
}

@media (min-width: 700px) and (max-width: 820px) {
  .page-hero-grid,
  .page-hero-reverse .page-hero-grid { grid-template-columns: 1fr 1fr; }
  .page-hero-copy { order: 0; padding: clamp(44px, 5vw, 62px) clamp(24px, 3.5vw, 44px) clamp(44px, 5vw, 62px) var(--gutter); }
  .page-hero-media { order: 0; height: auto; min-height: 560px; }
  .page-hero-reverse .page-hero-copy { order: 2; padding-right: var(--gutter); padding-left: clamp(24px, 3.5vw, 44px); }
  .page-hero-reverse .page-hero-media { order: 1; }
  .page-hero h1 { font-size: clamp(2.65rem, 5.6vw, 3.4rem); }
}

@media (max-width: 620px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; }
  .page-hero-media,
  .page-hero-reverse .page-hero-media { height: clamp(180px, 50vw, 250px); min-height: 0; }
  .page-hero-copy,
  .page-hero-reverse .page-hero-copy { padding-block: 32px 44px; }
  .page-hero-kicker { margin-bottom: 14px; }
  .page-hero h1 { font-size: clamp(2.65rem, 11.5vw, 3.25rem); }
  .page-hero-lede { margin: 18px 0 20px; font-size: 1.04rem; line-height: 1.45; }
  .page-hero .cta-row .btn-brass,
  .page-hero .cta-row .btn-primary,
  .final-action .cta-row .btn { width: 100%; }
  .lead-form [data-form-next],
  .lead-form [data-js-submit] { width: 100%; }
  .breadcrumb a,
  .article-toc a,
  .final-action-locations a { min-height: 44px; display: inline-flex; align-items: center; }
  .page-proof-list { grid-template-columns: 1fr; }
  .page-proof-list li,
  .page-proof-list li + li { min-height: 58px; padding: 13px 0; border-top: 1px solid var(--line-light); border-left: 0; }
  .stakes-list,
  .decision-grid,
  .image-product-grid,
  .location-cards,
  .resource-grid,
  .catalog-grid,
  .gallery-grid,
  .case-grid { grid-template-columns: 1fr; }
  .stakes-list article,
  .stakes-list article + article { padding: 24px 0; border-top: 1px solid var(--line); border-left: 0; }
  .decision-card,
  .decision-card:nth-child(even) { padding: 34px 0; border-left: 0; }
  .decision-card-featured::after { position: static; width: fit-content; grid-column: 1; grid-row: 1; }
  .portfolio-row,
  .consultation-list article { grid-template-columns: 1fr; gap: 12px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .lead-form { padding: 28px 20px; }
  .location-card { min-height: 330px; }
  .trust-band-media { min-height: 340px; }
  .color-catalog { grid-template-columns: 1fr; }
  .color-catalog span,
  .color-catalog span:not(:nth-child(3n + 1)),
  .color-catalog span:not(:nth-child(4n + 1)) { padding-inline: 0; border-left: 0; }
}

@media (hover: hover) and (pointer: fine) {
  .page-hero-media img { transition: transform 700ms var(--ease); }
  .page-hero:hover .page-hero-media img { transform: scale(1.018); }
  .image-product-card img { transition: transform 600ms var(--ease); }
  .image-product-card:hover img { transform: scale(1.025); }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero-media img,
  .image-product-card img,
  .resource-card { transition: none; }
}

/* Automotive tint photo comparison */
[data-tint-demo] {
  --tint-reveal: 50%;
  --tint-overlay-opacity: 0.8;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--ink);
  color: var(--white);
}
[data-tint-demo] .tint-demo__view-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 44px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: #0a2139;
}
[data-tint-demo] .tint-demo__view-label {
  color: var(--brass);
  font-size: 0.82rem;
  font-weight: 800;
}
[data-tint-demo] .tint-demo__view-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.28);
}
[data-tint-demo] button[data-tint-view] {
  min-height: 48px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  padding: 10px 18px;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 150ms var(--ease), color 150ms var(--ease);
}
[data-tint-demo] button[data-tint-view]:last-child { border-right: 0; }
[data-tint-demo] button[data-tint-view]:hover { background: rgba(255, 255, 255, 0.1); }
[data-tint-demo] button[data-tint-view][aria-pressed="true"],
[data-tint-demo] button[data-tint-view].is-selected {
  background: var(--brass);
  color: var(--ink);
}
[data-tint-demo] .tint-demo__stage {
  position: relative;
  isolation: isolate;
  min-height: 320px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #050505;
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none;
}
[data-tint-demo] .tint-demo__stage.is-dragging { cursor: grabbing; }
[data-tint-demo] .tint-demo__stage img { pointer-events: none; }
[data-tint-demo] .tint-demo__scene,
[data-tint-demo] .tint-demo__layer,
[data-tint-demo] .tint-demo__photo,
[data-tint-demo] .tint-demo__photo picture,
[data-tint-demo] .tint-demo__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
[data-tint-demo] .tint-demo__scene[hidden] { display: none; }
[data-tint-demo] .tint-demo__photo picture { display: block; }
[data-tint-demo] .tint-demo__photo img { object-fit: cover; }
[data-tint-demo] [data-tint-layer] {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--tint-reveal)) 0 0);
  will-change: clip-path;
}
[data-tint-demo] .tint-demo__glass-mask {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0);
  opacity: var(--tint-overlay-opacity);
  pointer-events: none;
  transition: opacity 180ms ease;
}
[data-tint-demo] .tint-demo__stage-label {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  background: rgba(7, 26, 48, 0.88);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
}
[data-tint-demo] [data-tint-layer] .tint-demo__stage-label {
  background: var(--brass);
  color: var(--ink);
}
[data-tint-demo] [data-tint-before] .tint-demo__stage-label {
  right: 18px;
  left: auto;
}
[data-tint-demo] [data-tint-handle] {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}
[data-tint-demo] [data-tint-handle]::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--tint-reveal);
  width: 3px;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(7, 26, 48, 0.34);
}
[data-tint-demo] [data-tint-handle]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: clamp(15px, var(--tint-reveal), calc(100% - 15px));
  width: 30px;
  height: 30px;
  border: 4px solid var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--brass);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}
[data-tint-demo] .tint-demo__controls {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  padding: clamp(26px, 4vw, 44px);
}
[data-tint-demo] .tint-demo__range-group,
[data-tint-demo] .tint-demo__vlt-group {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}
[data-tint-demo] .tint-demo__vlt-area { min-width: 0; }
[data-tint-demo] .tint-demo__range-heading,
[data-tint-demo] .tint-demo__vlt-group legend {
  display: block;
  margin-bottom: 10px;
  color: var(--brass);
  font-size: 0.82rem;
  font-weight: 800;
}
[data-tint-demo] .tint-demo__readout {
  min-height: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 5px;
  color: #dce9f3;
  font-size: 0.82rem;
  font-weight: 700;
}
[data-tint-demo] input[type="range"][data-tint-reveal] {
  width: 100%;
  height: 44px;
  margin: 0;
  appearance: none;
  background: transparent;
  accent-color: var(--brass);
  cursor: ew-resize;
}
[data-tint-demo] input[type="range"][data-tint-reveal]::-webkit-slider-runnable-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.34);
}
[data-tint-demo] input[type="range"][data-tint-reveal]::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  margin-top: -10px;
  appearance: none;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.28);
}
[data-tint-demo] input[type="range"][data-tint-reveal]::-moz-range-track {
  height: 4px;
  border: 0;
  background: rgba(255, 255, 255, 0.34);
}
[data-tint-demo] input[type="range"][data-tint-reveal]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.28);
}
[data-tint-demo] .tint-demo__vlt-buttons {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
[data-tint-demo] .tint-demo__vlt-buttons--side { grid-template-columns: repeat(5, minmax(0, 1fr)); }
[data-tint-demo] .tint-demo__vlt-buttons--windshield { grid-template-columns: repeat(2, minmax(0, 1fr)); }
[data-tint-demo] button[data-tint-vlt] {
  min-height: 48px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  padding: 10px 8px;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}
[data-tint-demo] button[data-tint-vlt]:last-child { border-right: 0; }
[data-tint-demo] button[data-tint-vlt]:hover { background: rgba(255, 255, 255, 0.1); }
[data-tint-demo] button[data-tint-vlt][aria-pressed="true"],
[data-tint-demo] button[data-tint-vlt].is-selected {
  background: var(--brass);
  color: var(--ink);
}
[data-tint-demo] button[data-tint-view]:focus-visible,
[data-tint-demo] button[data-tint-vlt]:focus-visible,
[data-tint-demo] input[type="range"][data-tint-reveal]:focus-visible {
  position: relative;
  z-index: 5;
}

@media (max-width: 900px) {
  [data-tint-demo] .tint-demo__controls { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  [data-tint-demo] .tint-demo__view-control {
    display: grid;
    gap: 10px;
  }
  [data-tint-demo] .tint-demo__view-buttons { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  [data-tint-demo] .tint-demo__stage { min-height: 230px; aspect-ratio: 3 / 2; }
  [data-tint-demo] .tint-demo__controls { padding: 24px 18px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  [data-tint-demo] [data-tint-layer],
  [data-tint-demo] .tint-demo__glass-mask,
  [data-tint-demo] button[data-tint-view],
  [data-tint-demo] [data-tint-handle] { transition: none; }
}
