:root {
  --font-display: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --font-body: "Manrope", Arial, Helvetica, sans-serif;
  --red: #c5161d;
  --red-bright: #ed242b;
  --red-dark: #861015;
  --black: #090b0c;
  --ink: #111315;
  --surface: #171a1c;
  --paper: #f3efe8;
  --white: #f7f4ee;
  --warm-gray: #aaa39a;
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(17, 19, 21, 0.15);
  --shell: min(1320px, calc(100% - 96px));
}

* {
  box-sizing: border-box;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  background: white;
  color: #090b0c;
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body), Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(4, 6, 7, 0.88), rgba(4, 6, 7, 0.46));
  backdrop-filter: blur(14px);
  transition: transform 300ms ease, background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(9, 11, 12, 0.94);
  border-bottom: 1px solid rgba(237, 36, 43, 0.3);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.65);
}

.site-header.is-scrolled .nav-wrap {
  height: 74px;
}

.nav-wrap {
  height: 98px;
  display: flex;
  align-items: center;
  gap: 52px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark-wrap {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: radial-gradient(circle, rgba(237, 36, 43, 0.15) 0%, rgba(9, 11, 12, 0.6) 100%);
  border: 1px solid rgba(237, 36, 43, 0.35);
  box-shadow: 0 0 15px rgba(237, 36, 43, 0.2);
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.brand:hover .brand-mark-wrap {
  transform: scale(1.06) rotate(2deg);
  border-color: #ffc107;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.brand-mark-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy strong {
  color: var(--white);
  font-family: var(--font-display), sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.brand-copy > span {
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--red-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.19em;
}

.brand-star-badge {
  color: #ffc107;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  filter: drop-shadow(0 0 6px rgba(255, 193, 7, 0.8));
  animation: logo-star-pulse 3s infinite ease-in-out;
}

.brand-star {
  color: #ffc107;
  font-style: normal;
  font-size: 10px;
  line-height: 1;
  display: inline-block;
  filter: drop-shadow(0 0 4px rgba(255, 193, 7, 0.6));
}

@keyframes logo-star-pulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    filter: drop-shadow(0 0 4px rgba(255, 193, 7, 0.6));
  }
  50% {
    transform: scale(1.25) rotate(15deg);
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.95));
  }
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(9, 11, 12, 0.55);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: white;
  transition: transform 180ms ease;
}

.site-header.nav-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.desktop-nav a {
  position: relative;
  padding-block: 14px;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  background: var(--red-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: white;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-phone {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid var(--red-bright);
  border-radius: 999px;
  color: white;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.header-phone > span {
  color: var(--red-bright);
  font-size: 18px;
  transition: color 180ms ease;
}

.header-phone strong {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.header-phone:hover {
  transform: translateY(-2px);
  background: var(--red);
  box-shadow: 0 10px 32px rgba(197, 22, 29, 0.28);
}

.header-phone:hover > span {
  color: white;
}

.hero {
  position: relative;
  min-height: max(780px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.hero-media,
.hero-media img,
.hero-shade,
.hero-grid-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -4;
  overflow: hidden;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(1.16) brightness(0.82);
  animation: heroImageIn 1.2s cubic-bezier(.2,.7,.2,1) both;
}

.hero-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(4, 6, 7, 0.99) 0%, rgba(4, 6, 7, 0.96) 29%, rgba(4, 6, 7, 0.65) 53%, rgba(4, 6, 7, 0.08) 83%),
    linear-gradient(0deg, rgba(4, 6, 7, 0.9) 0%, transparent 36%),
    radial-gradient(circle at 76% 48%, transparent 0%, rgba(0, 0, 0, 0.1) 38%, rgba(0, 0, 0, 0.42) 100%);
}

.hero-grid-lines {
  z-index: -2;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.095) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.095) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 64%);
}

.hero-tire-arc {
  position: absolute;
  z-index: -1;
  top: 105px;
  left: -250px;
  width: 660px;
  height: 660px;
  border: 24px dashed rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(237, 36, 43, 0.35), 0 0 0 3px rgba(255, 255, 255, 0.08);
  animation: tireSpin 30s linear infinite;
  will-change: transform;
}

.hero-tire-arc::before {
  content: "";
  position: absolute;
  inset: 32px;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.12) 0deg 8deg, transparent 8deg 45deg);
  mask-image: radial-gradient(circle at center, transparent 35%, black 36%);
}

.hero-tire-arc::after {
  content: "";
  position: absolute;
  inset: 120px;
  border: 3px dashed rgba(237, 36, 43, 0.45);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 3;
  padding: 155px 0 150px;
}

.hero-copy {
  width: min(790px, 64vw);
  animation: heroCopyIn 700ms 120ms cubic-bezier(.2,.7,.2,1) both;
}

.hero-overline {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-overline > span {
  width: 34px;
  height: 2px;
  background: var(--red-bright);
}

.hero-overline b {
  color: var(--red-bright);
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display), sans-serif;
  font-size: clamp(78px, 8vw, 126px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.8;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 12px 45px rgba(0, 0, 0, 0.48);
}

.hero h1 span {
  display: block;
}

.hero h1 span + span {
  margin-top: 16px;
}

.hero-red-line {
  width: 76px;
  height: 4px;
  margin-top: 32px;
  background: var(--red-bright);
  box-shadow: 0 0 24px rgba(237, 36, 43, 0.45);
  transform-origin: left;
  animation: lineDraw 700ms 520ms ease both, pulseGlow 3s 1.2s infinite ease-in-out;
}

.hero-lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.6;
}

.hero-lead strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-weight: 700;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 190ms ease, background 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  min-width: 220px;
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  color: white;
  box-shadow: 0 15px 40px rgba(197, 22, 29, 0.25);
}

.button-primary:hover {
  box-shadow: 0 18px 50px rgba(237, 36, 43, 0.42);
}

.button-ghost {
  min-width: 196px;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(8, 10, 11, 0.25);
  color: white;
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  border-color: var(--red-bright);
  background: rgba(197, 22, 29, 0.17);
}

.button-icon {
  font-size: 15px;
}

.button-arrow {
  margin-left: 10px;
  font-size: 16px;
}

.hero-trust {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(237, 36, 43, 0.82);
  background: rgba(5, 7, 8, 0.82);
  backdrop-filter: blur(18px);
}

.hero-trust-inner {
  min-height: 98px;
  display: flex;
  align-items: center;
}

.trust-seal {
  width: 48px;
  height: 55px;
  display: grid;
  place-items: center;
  border: 2px solid var(--red-bright);
  clip-path: polygon(50% 0, 92% 18%, 92% 72%, 50% 100%, 8% 72%, 8% 18%);
}

.trust-seal span {
  color: var(--red-bright);
  font-family: var(--font-display), sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.hero-trust p {
  margin: 0 0 0 24px;
  display: flex;
  align-items: center;
  gap: 17px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.hero-trust p strong {
  color: white;
  font-size: 17px;
}

.hero-trust p i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red-bright);
}

.trust-hours {
  margin-left: auto;
  padding-left: 36px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line-dark);
}

.trust-hours span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.trust-hours strong {
  margin-top: 5px;
  font-family: var(--font-display), sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
}

.signal-band {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--red);
  position: relative;
}

.signal-track {
  width: max-content;
  display: flex;
  overflow: hidden;
  user-select: none;
}

.signal-content {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 70px);
  padding-inline: 36px;
  min-width: max-content;
  height: 82px;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: 0.08em;
  animation: marquee 22s linear infinite;
  will-change: transform;
}

.signal-track:hover .signal-content {
  animation-play-state: paused;
}

.signal-content i {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transform: rotate(45deg);
}

.eyebrow {
  margin: 0 0 25px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--red-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow span {
  min-width: 34px;
  padding-right: 9px;
  border-right: 1px solid currentColor;
  font-family: var(--font-display), sans-serif;
  font-size: 14px;
  letter-spacing: 0;
}

.eyebrow.light {
  color: #ff4a51;
}

.eyebrow.dark {
  color: var(--red);
}

.services {
  position: relative;
  padding: 136px 0 148px;
  overflow: hidden;
  background:
    radial-gradient(circle at 110% 20%, rgba(197, 22, 29, 0.12), transparent 34%),
    var(--black);
}

.services::before {
  content: "SERVİS";
  position: absolute;
  top: 55px;
  right: -15px;
  color: rgba(255, 255, 255, 0.022);
  font-family: var(--font-display), sans-serif;
  font-size: 220px;
  font-weight: 900;
  line-height: 1;
}

.split-heading {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: end;
  gap: 90px;
}

.section-heading h2,
.story h2,
.brand-heading h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(58px, 6.2vw, 92px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
}

.section-heading h2 em,
.story h2 em,
.brand-heading h2 em,
.contact h2 em {
  color: var(--red-bright);
  font-style: normal;
  font-weight: 700;
}

.heading-aside {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  color: rgba(255, 255, 255, 0.55);
}

.heading-aside-line {
  flex: 0 0 auto;
  width: 46px;
  height: 1px;
  margin-top: 12px;
  background: var(--red-bright);
}

.heading-aside p {
  max-width: 380px;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}

.service-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.service-card {
  position: relative;
  min-height: 390px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  transition: transform 280ms ease, border-color 280ms ease, background 280ms ease, box-shadow 280ms ease;
}

.service-card:nth-child(-n + 3) {
  grid-column: span 2;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.service-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--red-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  border-color: rgba(237, 36, 43, 0.52);
  background: linear-gradient(145deg, rgba(197, 22, 29, 0.16), rgba(255, 255, 255, 0.025));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-number {
  color: var(--red-bright);
  font-family: var(--font-display), sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.service-eyebrow {
  color: rgba(255, 255, 255, 0.34);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-wheel {
  position: absolute;
  top: 38px;
  right: -42px;
  width: 190px;
  height: 190px;
  border: 18px dashed rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transition: transform 800ms cubic-bezier(.2,.7,.2,1), border-color 300ms ease, box-shadow 300ms ease;
  will-change: transform;
}

.service-wheel::before,
.service-wheel::after,
.service-wheel i,
.service-wheel b {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.service-wheel::before {
  inset: 6px;
  border: 2px dashed rgba(237, 36, 43, 0.4);
  transition: border-color 300ms ease;
}

.service-wheel::after {
  inset: 22px;
  background: repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.18) 0deg 12deg, transparent 12deg 60deg);
  mask-image: radial-gradient(circle at center, transparent 38%, black 39%);
  transition: background 300ms ease;
}

.service-wheel i {
  inset: 52px;
  border: 2px solid rgba(237, 36, 43, 0.35);
}

.service-wheel b {
  inset: 66px;
  background: rgba(237, 36, 43, 0.28);
  box-shadow: 0 0 15px rgba(237, 36, 43, 0.35);
}

.service-card:hover .service-wheel {
  transform: rotate(270deg) scale(1.15);
  border-color: rgba(237, 36, 43, 0.65);
  box-shadow: 0 0 40px rgba(237, 36, 43, 0.4);
}

.service-card:hover .service-wheel::before {
  border-color: rgba(237, 36, 43, 0.9);
}

.service-card:hover .service-wheel::after {
  background: repeating-conic-gradient(from 0deg, rgba(237, 36, 43, 0.45) 0deg 12deg, transparent 12deg 60deg);
}

.service-card-copy {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.service-card h3 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.service-card p {
  max-width: 430px;
  min-height: 66px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.7;
}

.service-card a {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--red-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-card a span {
  font-size: 17px;
}

.story {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #0a0c0d;
}

.story-image,
.story-image img,
.story-image-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-image img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.55) contrast(1.18) brightness(0.7);
}

.story-image-shade {
  background:
    linear-gradient(90deg, rgba(4, 6, 7, 0.08) 0%, rgba(4, 6, 7, 0.32) 39%, rgba(4, 6, 7, 0.98) 68%),
    linear-gradient(0deg, rgba(4, 6, 7, 0.6), transparent 45%);
}

.story-grid {
  position: relative;
  z-index: 2;
  padding-block: 120px;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: center;
  gap: 120px;
}

.story-figure {
  align-self: end;
  padding: 0 0 55px 24px;
  display: flex;
  align-items: flex-end;
  gap: 24px;
  border-left: 5px solid var(--red-bright);
}

.story-figure strong {
  color: white;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(125px, 16vw, 230px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.58;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
}

.story-figure span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.story-copy {
  padding: 56px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 8, 9, 0.7);
  backdrop-filter: blur(20px);
}

.story-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.8;
}

.story-values {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.story-values > div {
  padding: 22px 10px 0 0;
}

.story-values span {
  display: block;
  margin-bottom: 8px;
  color: var(--red-bright);
  font-family: var(--font-display), sans-serif;
  font-size: 14px;
}

.story-values strong {
  font-family: var(--font-display), sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.brands {
  padding: 132px 0 125px;
  background: var(--paper);
  color: var(--ink);
}

.brand-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.brand-heading h2 em {
  color: var(--red);
}

.brand-list {
  padding: 0;
  list-style: none;
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.brand-list > li {
  position: relative;
  min-height: 150px;
  padding: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  overflow: hidden;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-family: var(--font-display), sans-serif;
  font-size: clamp(29px, 3.3vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.brand-list > li::after {
  content: "";
  position: absolute;
  right: -65px;
  top: -65px;
  width: 130px;
  height: 130px;
  border: 22px solid rgba(197, 22, 29, 0.08);
  border-radius: 50%;
  transition: transform 350ms ease, border-color 220ms ease;
}

.brand-list > li:hover {
  z-index: 2;
  transform: translateY(-5px);
  background: var(--ink);
  color: white;
}

.brand-list > li:hover::after {
  transform: rotate(40deg) scale(1.16);
  border-color: rgba(237, 36, 43, 0.32);
}

.brand-list small {
  align-self: flex-start;
  color: var(--red);
  font-family: var(--font-body), sans-serif;
  font-size: 9px;
  font-weight: 800;
}

.brands-footer {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #706b64;
  font-size: 13px;
}

.brands-footer a {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brands-footer a span {
  font-size: 18px;
}

.faq {
  position: relative;
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid var(--line-dark);
}

.faq-grid {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 220ms ease, background 220ms ease;
}

.faq-item[open],
.faq-item:hover {
  border-color: rgba(237, 36, 43, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

.faq-item summary {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  list-style: none;
}

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

.faq-item summary i {
  font-style: normal;
  font-size: 24px;
  color: var(--red-bright);
  transition: transform 260ms ease;
}

.faq-item[open] summary i {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 28px 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14.5px;
  line-height: 1.7;
}

.contact {
  position: relative;
  padding: 126px 0;
  overflow: hidden;
  background: var(--red);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 84px 84px;
}

.contact-arc {
  position: absolute;
  top: 50%;
  left: -180px;
  width: 620px;
  height: 620px;
  border: 85px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  transform: translateY(-50%);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  align-items: center;
  gap: 100px;
}

.contact .eyebrow {
  color: white;
}

.contact h2 em {
  color: var(--black);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.75;
}

.contact-action {
  padding: 46px;
  background: var(--black);
  box-shadow: 0 30px 80px rgba(79, 5, 8, 0.28);
}

.contact-action > span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-phone {
  margin-top: 9px;
  display: block;
  color: white;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}

.contact-meta {
  margin-top: 30px;
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid var(--line-dark);
}

.contact-meta > * {
  margin: 0;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-meta small {
  color: rgba(255, 255, 255, 0.36);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-meta strong {
  font-size: 12px;
}

.button-map {
  width: 100%;
  margin-top: 28px;
  background: white;
  color: var(--black);
}

.button-map:hover {
  background: var(--red-bright);
  color: white;
}

footer {
  padding: 62px 0 28px;
  background: #060708;
}

.footer-main {
  padding-bottom: 45px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  margin-left: auto;
  display: flex;
  gap: 32px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 600;
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--red-bright);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.28);
  font-size: 10px;
}

.mobile-call {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition: opacity 750ms cubic-bezier(.2,.75,.25,1), transform 750ms cubic-bezier(.2,.75,.25,1);
  will-change: opacity, transform;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Staggered Entrance Delays */
.service-card.reveal:nth-child(1) { transition-delay: 60ms; }
.service-card.reveal:nth-child(2) { transition-delay: 160ms; }
.service-card.reveal:nth-child(3) { transition-delay: 260ms; }
.service-card.reveal:nth-child(4) { transition-delay: 360ms; }
.service-card.reveal:nth-child(5) { transition-delay: 460ms; }

.brand-list li.reveal:nth-child(1) { transition-delay: 60ms; }
.brand-list li.reveal:nth-child(2) { transition-delay: 130ms; }
.brand-list li.reveal:nth-child(3) { transition-delay: 200ms; }
.brand-list li.reveal:nth-child(4) { transition-delay: 270ms; }
.brand-list li.reveal:nth-child(5) { transition-delay: 340ms; }
.brand-list li.reveal:nth-child(6) { transition-delay: 410ms; }

.faq-item.reveal:nth-child(1) { transition-delay: 60ms; }
.faq-item.reveal:nth-child(2) { transition-delay: 140ms; }
.faq-item.reveal:nth-child(3) { transition-delay: 220ms; }
.faq-item.reveal:nth-child(4) { transition-delay: 300ms; }

.button:focus-visible,
.header-phone:focus-visible,
.desktop-nav a:focus-visible,
.service-card a:focus-visible,
.contact-phone:focus-visible,
.brands-footer a:focus-visible {
  outline: 3px solid rgba(237, 36, 43, 0.5);
  outline-offset: 4px;
}

@keyframes tireSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(237, 36, 43, 0.45); }
  50% { box-shadow: 0 0 35px rgba(237, 36, 43, 0.85); }
}

@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(237, 36, 43, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(237, 36, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(237, 36, 43, 0); }
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

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

@keyframes heroImageIn {
  from { opacity: 0.25; transform: scale(1.07); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes lineDraw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 56px, 940px);
  }

  .nav-wrap {
    gap: 28px;
  }

  .desktop-nav {
    gap: 24px;
  }

  .hero-copy {
    width: 74vw;
  }

  .story-grid {
    gap: 55px;
  }

  .story-copy {
    padding: 42px;
  }

  .contact-grid {
    gap: 50px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 680px);
  }

  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: 66px;
  }

  .site-header {
    position: absolute;
  }

  .nav-wrap {
    height: 78px;
  }

  .brand-mark-wrap {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: 23px;
  }

  .brand-copy > span {
    font-size: 8px;
  }

  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .desktop-nav {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    margin: 0;
    padding: 20px 18px 26px;
    display: grid;
    gap: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(5, 7, 8, 0.97);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .desktop-nav a {
    padding: 13px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
  }

  .site-header.nav-open .desktop-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: 760px;
  }

  .hero-media img {
    object-position: 65% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 6, 7, 0.98) 0%, rgba(4, 6, 7, 0.8) 72%, rgba(4, 6, 7, 0.42) 100%),
      linear-gradient(0deg, rgba(4, 6, 7, 0.96) 0%, transparent 48%);
  }

  .hero-grid-lines {
    background-size: 72px 72px;
  }

  .hero-tire-arc {
    left: -390px;
  }

  .hero-inner {
    padding: 128px 0 145px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(58px, 14vw, 92px);
    line-height: 0.82;
  }

  .hero-lead {
    max-width: 540px;
    font-size: 15px;
  }

  .hero-trust-inner {
    min-height: 88px;
  }

  .hero-trust p {
    font-size: 12px;
  }

  .hero-trust p i,
  .hero-trust p span {
    display: none;
  }

  .trust-hours {
    display: none;
  }

  .signal-track {
    justify-content: flex-start;
  }

  .split-heading,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 32px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card:nth-child(n) {
    grid-column: auto;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .story {
    min-height: auto;
  }

  .story-image-shade {
    background: linear-gradient(0deg, rgba(4, 6, 7, 0.99) 0%, rgba(4, 6, 7, 0.65) 72%, rgba(4, 6, 7, 0.28) 100%);
  }

  .story-grid {
    gap: 55px;
  }

  .story-figure {
    min-height: 260px;
  }

  .brand-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-list > li {
    min-height: 120px;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: min(100% - 28px, 500px);
  }

  .hero-overline {
    margin-bottom: 20px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(52px, 15.8vw, 74px);
  }

  .hero h1 span + span {
    margin-top: 11px;
  }

  .hero-red-line {
    margin-top: 25px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    min-width: 0;
    flex: 1 1 150px;
    padding-inline: 17px;
  }

  .button-arrow {
    margin-left: 0;
  }

  .trust-seal {
    width: 40px;
    height: 48px;
  }

  .hero-trust p {
    margin-left: 15px;
    gap: 10px;
  }

  .signal-band {
    display: none;
  }

  .services,
  .brands,
  .contact {
    padding-block: 88px;
  }

  .section-heading h2,
  .story h2,
  .brand-heading h2,
  .contact h2 {
    font-size: clamp(49px, 15vw, 68px);
  }

  .service-grid {
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:last-child {
    min-height: 315px;
    grid-column: auto;
  }

  .story-grid {
    padding-block: 80px;
  }

  .story-figure {
    min-height: 225px;
    padding-bottom: 25px;
  }

  .story-copy {
    padding: 28px;
  }

  .story-values {
    gap: 12px;
  }

  .story-values strong {
    font-size: 15px;
  }

  .brand-list {
    grid-template-columns: 1fr;
  }

  .brand-list > li {
    min-height: 105px;
    padding: 24px;
  }

  .brands-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .contact-action {
    padding: 28px;
  }

  .contact-meta {
    grid-template-columns: 1fr;
  }

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    margin-left: 0;
    flex-wrap: wrap;
    gap: 18px 24px;
  }

  .footer-bottom {
    gap: 10px;
    flex-direction: column;
  }

  .mobile-call {
    position: fixed;
    z-index: 60;
    right: 12px;
    bottom: 10px;
    left: 12px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 3px;
    background: linear-gradient(135deg, var(--red-bright), var(--red));
    color: white;
    box-shadow: 0 16px 40px rgba(114, 9, 13, 0.42);
    font-size: 14px;
    font-weight: 800;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
