:root {
  --ink: #0b0b0d;
  --ink-2: #131317;
  --ink-3: #1d1d22;
  --paper: #f2f0ea;
  --paper-2: #dedbd2;
  --white: #fff;
  --accent: #ff4d24;
  --accent-hot: #ff6b32;
  --muted: #9a9a9e;
  --line-dark: rgba(255,255,255,.12);
  --line-light: rgba(11,11,13,.14);
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --container: 1240px;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0,0,0,.28);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  position: fixed;
  inset-inline: 0;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--accent); color: #fff; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--accent);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: #fff;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(11,11,13,.88);
  border-color: var(--line-dark);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand img { flex: 0 0 auto; }

.brand-copy {
  display: grid;
  line-height: .84;
  letter-spacing: .07em;
  font-family: var(--display);
}

.brand-copy strong {
  font-size: 24px;
  font-weight: 800;
}

.brand-copy span {
  margin-top: 5px;
  font-size: 12px;
  letter-spacing: .28em;
  color: #aaa;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
  font-size: 14px;
  font-weight: 600;
}

.primary-nav > a:not(.button) {
  position: relative;
  color: #d8d8db;
}

.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--accent);
  transition: right .25s ease;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after { right: 0; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 19px;
  height: 2px;
  background: #fff;
  transition: transform .2s ease;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--accent); }
.button-primary:hover { background: var(--accent-hot); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.03); }
.button-ghost:hover { border-color: #fff; }
.button-small { min-height: 43px; padding-inline: 18px; font-size: 13px; }
.button-full { width: 100%; }

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 76% 30%, rgba(255,77,36,.15), transparent 30%),
    linear-gradient(135deg, #08080a 0%, #111115 55%, #0b0b0d 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 86%);
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 120px;
  right: -180px;
  border: 1px solid rgba(255,77,36,.23);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255,77,36,.025),
    0 0 0 140px rgba(255,77,36,.018);
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 760px;
  padding-top: 150px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 23px;
  color: #aaaab0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.eyebrow-dark { color: #66666b; }

.hero h1,
.section-heading h2,
.work-heading h2,
.process-intro h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 7.6vw, 116px);
  line-height: .83;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.hero h1 em,
.section-heading h2 em,
.work-heading h2 em,
.process-intro h2 em,
.contact-copy h2 em {
  color: var(--accent);
  font-style: normal;
}

.hero-lead {
  max-width: 610px;
  margin: 32px 0 0;
  color: #bbbcc2;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

.hero-facts {
  display: flex;
  gap: clamp(20px, 3vw, 44px);
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid var(--line-dark);
}

.hero-facts div { display: grid; gap: 2px; }
.hero-facts strong {
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: .06em;
}
.hero-facts span { color: #77777e; font-size: 12px; }

.hero-visual {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
}

.hero-frame {
  position: relative;
  width: 100%;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background:
    linear-gradient(165deg, rgba(255,255,255,.07), rgba(255,255,255,.01)),
    #101014;
  box-shadow: var(--shadow);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% 12%;
  height: 80%;
  background: radial-gradient(circle, rgba(255,77,36,.25), transparent 63%);
  filter: blur(20px);
}

.hero-frame-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 25px 27px;
  color: #6e6e75;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
}

.car-line-art {
  position: absolute;
  inset: 90px 20px 90px;
  display: grid;
  place-items: center;
}

.car-line-art svg {
  width: 100%;
  fill: rgba(255,255,255,.018);
  stroke: rgba(255,255,255,.38);
  stroke-width: 2;
  filter: drop-shadow(0 0 18px rgba(255,255,255,.03));
}

.hero-badge {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.hero-badge-kicker {
  color: #727279;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
}

.hero-badge strong {
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  color: #fff;
  background: rgba(15,15,18,.8);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
}

.floating-card-one { left: -32px; bottom: 94px; }
.floating-card-two {
  top: 54px;
  right: -24px;
  display: grid;
  gap: 0;
}

.floating-card small {
  color: #77777e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}

.floating-card strong,
.floating-card a { font-size: 13px; font-weight: 700; }

.status-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255,77,36,.12);
}

.hero-marquee {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 17px 0;
  border-block: 1px solid rgba(255,255,255,.12);
  background: #0e0e11;
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  animation: marquee 28s linear infinite;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .08em;
}

.marquee-track i { color: var(--accent); font-style: normal; }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section { padding: 130px 0; }

.section-heading,
.work-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading h2,
.work-heading h2,
.process-intro h2,
.contact-copy h2 { font-size: clamp(58px, 6.6vw, 96px); }

.section-heading > p,
.work-heading > p {
  max-width: 520px;
  margin: 0 0 5px;
  color: #66666b;
  font-size: 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.service-card {
  position: relative;
  min-height: 370px;
  padding: 28px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: background .25s ease, transform .25s ease;
}

.service-card:hover {
  background: #fff;
  transform: translateY(-5px);
}

.service-number {
  color: #969696;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.service-icon {
  margin: 75px 0 25px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 34px;
}

.service-card h3 {
  margin: 0 0 13px;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.service-card p { margin: 0; color: #68686d; font-size: 14px; }
.service-line {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 25px;
  height: 2px;
  background: linear-gradient(to right, var(--accent) 0 22%, #d4d1ca 22%);
}

.work-section {
  padding: 130px 0 100px;
  color: #fff;
  background: var(--ink);
}

.work-heading > p { color: #8a8a91; }

.work-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: repeat(2, minmax(270px, 1fr));
  gap: 18px;
}

.work-card {
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--ink-2);
}

.work-card-large { grid-row: 1 / 3; }

.work-placeholder {
  position: relative;
  min-height: 290px;
  height: calc(100% - 82px);
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 35%, rgba(255,77,36,.24), transparent 30%),
    linear-gradient(145deg, #17171c, #0d0d10);
}

.work-card-large .work-placeholder { min-height: 585px; }

.work-placeholder-alt {
  background:
    linear-gradient(115deg, transparent 15%, rgba(255,255,255,.04) 15% 16%, transparent 16%),
    radial-gradient(circle at 20% 70%, rgba(255,77,36,.2), transparent 30%),
    #17171b;
}

.work-placeholder-third {
  background:
    radial-gradient(circle at 80% 80%, rgba(255,77,36,.18), transparent 25%),
    linear-gradient(55deg, #121216, #1c1c21);
}

.work-placeholder > span {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 24px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
}

.panel-lines {
  position: absolute;
  inset: 15%;
  opacity: .36;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 46% 54% 40% 60% / 55% 43% 57% 45%;
  transform: rotate(-8deg);
}

.panel-lines::before,
.panel-lines::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: inherit;
}

.panel-lines::after { inset: 26%; }

.work-caption {
  min-height: 82px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line-dark);
}

.work-caption div { display: grid; }
.work-caption small,
.work-caption > span {
  color: #66666d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.work-caption strong {
  font-family: var(--display);
  font-size: 20px;
  text-transform: uppercase;
}

.work-note {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #77777f;
  font-size: 13px;
}

.work-note span {
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
}

.reviews-section {
  background: #e8e5dd;
}

.reviews-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 46px;
}

.reviews-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 6.6vw, 96px);
  line-height: .83;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.reviews-heading h2 em {
  color: var(--accent);
  font-style: normal;
}

.reviews-heading > p {
  max-width: 520px;
  margin: 0 0 5px;
  color: #66666b;
}

.rating-panel {
  display: grid;
  grid-template-columns: .75fr 1.2fr auto;
  align-items: center;
  gap: 34px;
  padding: 32px;
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,77,36,.16), transparent 30%),
    var(--ink);
  box-shadow: var(--shadow);
}

.rating-score {
  display: grid;
  align-content: center;
}

.rating-score > strong {
  font-family: var(--display);
  font-size: clamp(70px, 8vw, 110px);
  line-height: .72;
}

.rating-stars,
.review-stars {
  color: var(--accent);
  letter-spacing: .08em;
}

.rating-score p {
  margin: 8px 0 0;
  color: #888890;
  font-size: 12px;
}

.rating-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 12px;
}

.rating-badges > div {
  display: grid;
  gap: 3px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
}

.rating-badges small {
  color: #77777e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.rating-badges strong {
  font-family: var(--display);
  font-size: 25px;
  line-height: 1;
}

.rating-badges span {
  color: #8e8e95;
  font-size: 11px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.review-card {
  margin: 0;
  min-height: 240px;
  padding: 30px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper);
}

.review-card p {
  margin: 24px 0 28px;
  font-family: var(--display);
  font-size: clamp(25px, 2.7vw, 36px);
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
}

.review-card footer {
  color: #747479;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reviews-note {
  margin: 18px 0 0;
  color: #77777c;
  font-size: 11px;
}

.process-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(60px, 10vw, 150px);
}

.process-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.process-intro > p:not(.eyebrow) {
  max-width: 440px;
  margin: 27px 0 28px;
  color: #66666b;
}

.text-link {
  display: inline-flex;
  gap: 40px;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 700;
}

.text-link span { color: var(--accent); }

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 27px;
  padding: 37px 0 42px;
  border-top: 1px solid var(--line-light);
}

.process-list li:last-child { border-bottom: 1px solid var(--line-light); }

.process-list > li > span {
  color: var(--accent);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
}

.process-list h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1;
  text-transform: uppercase;
}

.process-list p {
  max-width: 600px;
  margin: 0;
  color: #6d6d72;
}

.statement-section {
  padding: 42px 0;
  border-block: 1px solid var(--line-light);
  background: #e8e5dd;
}

.statement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(25px, 5vw, 60px);
}

.statement p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 5.8vw, 82px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.02em;
  text-align: center;
}

.statement p span { color: var(--accent); }

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  color: #fff;
  background:
    radial-gradient(circle at 5% 90%, rgba(255,77,36,.16), transparent 26%),
    var(--ink);
}

.contact-section::after {
  content: "K";
  position: absolute;
  right: -30px;
  bottom: -210px;
  color: rgba(255,255,255,.018);
  font-family: var(--display);
  font-size: 780px;
  font-weight: 800;
  line-height: 1;
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 80px;
  align-items: center;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0;
  color: #8c8c94;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255,255,255,.35);
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
}

.contact-phone span { color: var(--accent); }

.contact-card {
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: rgba(255,255,255,.035);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.contact-card-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
}

.contact-card-row:first-child { padding-top: 0; }

.contact-card-row span {
  color: #6f6f76;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.contact-card-row strong,
.contact-card-row a {
  font-size: 15px;
  font-weight: 600;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.social-links a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.social-links a:hover,
.social-links a:focus-visible,
.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--accent);
}

.contact-card .button { margin-top: 26px; }

.site-footer {
  padding: 28px 0;
  color: #818188;
  background: #070708;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 25px;
  align-items: center;
}

.brand-footer { color: #fff; }
.site-footer p { margin: 0; font-size: 11px; }

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay { transition-delay: .12s; }
.reveal-delay-sm { transition-delay: .08s; }
.reveal-delay-md { transition-delay: .16s; }
.reveal-delay-lg { transition-delay: .24s; }

@media (max-width: 1020px) {
  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 150px;
  }

  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 720px; min-height: 490px; margin: 0 auto; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading, .work-heading, .reviews-heading { gap: 35px; }
  .rating-panel { grid-template-columns: .65fr 1.35fr; }
  .rating-panel .button { grid-column: 1 / -1; justify-self: start; }
  .contact-layout { gap: 45px; }
}

@media (max-width: 820px) {
  .site-header,
  .site-header.is-scrolled {
    background: rgba(11,11,13,.96);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.nav-open .site-header {
    height: 100vh;
    height: 100dvh;
    background: #09090b;
    border-color: transparent;
  }

  .nav-shell {
    position: relative;
    z-index: 103;
  }

  .brand {
    position: relative;
    z-index: 103;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 104;
    flex: 0 0 auto;
  }

  .nav-toggle[aria-expanded="true"] {
    background: #151519;
    border-color: rgba(255,255,255,.22);
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 102;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding:
      calc(96px + env(safe-area-inset-top))
      max(24px, env(safe-area-inset-right))
      calc(28px + env(safe-area-inset-bottom))
      max(24px, env(safe-area-inset-left));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: #09090b;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition:
      transform .28s ease,
      opacity .2s ease,
      visibility 0s linear .28s;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    transition:
      transform .28s ease,
      opacity .2s ease,
      visibility 0s;
  }

  .primary-nav > a:not(.button) {
    flex: 0 0 auto;
    padding: 13px 0;
    border-bottom: 1px solid var(--line-dark);
    font-family: var(--display);
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1;
    text-transform: uppercase;
  }

  .primary-nav > a:not(.button):first-child {
    border-top: 1px solid var(--line-dark);
  }

  .primary-nav .button {
    flex: 0 0 auto;
    width: 100%;
    margin-top: 22px;
  }

  .section-heading,
  .work-heading,
  .reviews-heading,
  .process-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .rating-panel { grid-template-columns: 1fr; }
  .rating-panel .button { grid-column: auto; justify-self: start; }
  .review-grid { grid-template-columns: 1fr; }

  .section-heading > p,
  .work-heading > p { max-width: 650px; }

  .process-intro { position: static; }
  .work-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .work-card-large { grid-row: auto; }
  .work-card-large .work-placeholder { min-height: 390px; }
  .footer-layout { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-shell { min-height: 72px; }

  .hero { min-height: auto; }
  .hero-layout { padding-top: 122px; padding-bottom: 65px; gap: 35px; }
  .hero h1 { font-size: clamp(56px, 18vw, 84px); }
  .hero-lead { margin-top: 24px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 36px;
  }

  .hero-visual { width: 100%; min-height: 350px; }
  .hero-frame { min-height: 340px; border-radius: 18px; }
  .car-line-art { inset: 70px 12px 80px; }
  .hero-badge { left: 18px; right: 18px; bottom: 18px; align-items: start; flex-direction: column; gap: 4px; }
  .hero-badge strong { font-size: 20px; }
  .floating-card-one { left: 10px; bottom: -22px; }
  .floating-card-two { right: 10px; top: 42px; }

  .section, .work-section, .contact-section { padding: 90px 0; }
  .section-heading, .work-heading, .reviews-heading { margin-bottom: 45px; }
  .section-heading h2, .work-heading h2, .reviews-heading h2, .process-intro h2, .contact-copy h2 { font-size: 58px; }

  .rating-panel { padding: 24px; }
  .rating-badges { grid-template-columns: 1fr; }
  .rating-panel .button { width: 100%; }
  .review-card { min-height: 0; padding: 24px; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 305px; }
  .service-icon { margin-top: 48px; }

  .work-card-large .work-placeholder,
  .work-placeholder { min-height: 320px; }

  .process-list li { grid-template-columns: 43px 1fr; gap: 14px; }
  .statement { flex-direction: column; }
  .statement img { width: 56px; height: 56px; }

  .contact-card-row { grid-template-columns: 80px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
