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