:root {
  --ink: #f6f8f2;
  --muted: #c5cec4;
  --line: #273226;
  --paper: #050806;
  --white: #ffffff;
  --navy: #050806;
  --teal: #9acd2f;
  --amber: #9acd2f;
  --steel: #101711;
  --panel: #09100b;
  --panel-soft: #101711;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

.cursor-glow {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(154, 205, 47, 0.2), transparent 62%);
  mix-blend-mode: multiply;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 180ms ease;
}

body.panel-open {
  overflow: hidden;
}

.logo-splash {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(154, 205, 47, 0.22), transparent 34%),
    rgba(8, 10, 9, 0.94);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(28px) scale(0.98);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1), visibility 520ms ease;
}

.logo-splash.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.logo-splash.is-hidden {
  opacity: 0;
  transform: translateY(-36px) scale(0.96);
  visibility: hidden;
}

.logo-splash-content {
  display: grid;
  justify-items: center;
  gap: 22px;
}

.logo-splash-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 22px;
  transform: scale(0.86);
}

.logo-splash.is-active .logo-splash-mark {
  animation: splashPop 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.logo-splash-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
}

.logo-splash.is-active .logo-splash-content p {
  animation: splashTagline 720ms ease 420ms both;
}

.logo-splash .brand-logo {
  font-size: clamp(64px, 13vw, 170px);
  filter: drop-shadow(0 0 34px rgba(154, 205, 47, 0.55));
}

.logo-splash .brand-domain {
  font-size: clamp(28px, 5vw, 62px);
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease;
}

.header-phone {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(8, 10, 9, 0.42);
  backdrop-filter: blur(14px);
  border-color: rgba(154, 205, 47, 0.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  line-height: 1;
}

.brand-logo {
  color: var(--white);
  font-size: 30px;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transform: skew(-10deg);
}

.brand-logo span {
  color: var(--teal);
}

.brand-domain {
  color: var(--white);
  font-size: 18px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: lowercase;
  transform: skew(-8deg);
}

.brand-domain span {
  color: var(--teal);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  color: inherit;
}

.info-social-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #c6c9c4;
  border-radius: 14px;
  color: #222826;
  background: #ffffff;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.info-social-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.info-social-link:hover {
  transform: translateY(-1px) rotate(-8deg);
  border-color: rgba(154, 205, 47, 0.62);
  background: rgba(154, 205, 47, 0.14);
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(154, 205, 47, 0.48);
}

.quote-pill {
  border-color: var(--teal);
  color: #071006;
  background: var(--teal);
}

.pill-icon {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.quote-pill .pill-icon {
  border-radius: 5px;
}

.info-panel {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  width: min(560px, 100vw);
  height: 100vh;
  padding: 28px clamp(22px, 4vw, 46px);
  color: var(--ink);
  background: #f3f4f1;
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.42);
  transform: translateX(104%);
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow-y: auto;
}

.info-panel.is-open {
  transform: translateX(0);
}

.info-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 46px;
}

.info-panel h2 {
  position: relative;
  margin: 0;
  color: #343b39;
  font-size: 28px;
}

.info-panel h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: var(--teal);
}

.info-close {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid #c6c9c4;
  border-radius: 14px;
  color: #424846;
  background: #e5e7e3;
  font: inherit;
  cursor: pointer;
}

.info-panel-logo {
  display: inline-grid;
  margin-bottom: 28px;
}

.info-panel-logo .axel-word {
  color: #111714;
  font-size: 58px;
}

.info-panel-logo .garage-word {
  color: var(--teal);
  font-size: 18px;
  letter-spacing: 12px;
}

.info-block {
  padding: 24px 0;
  border-top: 1px solid #d7dbd4;
}

.info-block h3 {
  color: #171b1a;
}

.info-block p {
  color: #444c49;
  line-height: 1.7;
}

.info-block a:not(.button) {
  color: #222826;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(154, 205, 47, 0.75);
  text-underline-offset: 4px;
}

.panel-backdrop {
  position: fixed;
  z-index: 25;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(3px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  transition: transform 180ms linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 6, 5, 0.9) 0%, rgba(7, 12, 9, 0.68) 38%, rgba(7, 12, 9, 0.18) 100%),
    linear-gradient(0deg, rgba(3, 4, 4, 0.46), rgba(3, 4, 4, 0.08) 46%, rgba(3, 4, 4, 0.2));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 92% 78%, rgba(154, 205, 47, 0.36), transparent 4%),
    linear-gradient(115deg, transparent 0 46%, rgba(255, 143, 54, 0.18) 49%, transparent 55%);
  opacity: 0.42;
  animation: heroSweep 7s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 128px clamp(18px, 6vw, 86px) 82px;
  transform: translateY(calc(var(--hero-drift, 0) * 1px));
  transition: transform 80ms linear;
}

.hero-logo {
  display: inline-grid;
  gap: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
  position: relative;
}

.axel-word {
  color: var(--white);
  font-size: clamp(58px, 10vw, 118px);
  font-style: italic;
  font-weight: 800;
  line-height: 0.78;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.58);
  transform: translateX(var(--logo-drive, 0px)) skew(-10deg);
  transition: transform 80ms linear, filter 120ms linear;
  filter: drop-shadow(calc(var(--logo-speed, 0) * -1px) 0 calc(var(--logo-speed, 0) * 0.6px) rgba(154, 205, 47, 0.55));
  animation: logoDriveIn 1.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-logo::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 16px;
  width: clamp(150px, 24vw, 330px);
  height: 18px;
  background: linear-gradient(90deg, rgba(154, 205, 47, 0), rgba(154, 205, 47, 0.72), rgba(154, 205, 47, 0));
  filter: blur(12px);
  transform: translateX(-130%) skew(-18deg);
  animation: speedTrail 1.15s cubic-bezier(0.16, 1, 0.3, 1) both;
  pointer-events: none;
}

.axel-word span {
  color: var(--teal);
}

.garage-word {
  color: var(--teal);
  font-size: clamp(18px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: 18px;
  line-height: 1.1;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.hero-text {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

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

.scroll-cinema {
  transform: translateY(calc((1 - var(--scroll-progress, 0)) * 38px)) scale(calc(0.975 + var(--scroll-progress, 0) * 0.025));
  opacity: calc(0.38 + var(--scroll-progress, 0) * 0.62);
  transition: transform 120ms linear, opacity 120ms linear;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -42%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-20deg);
  transition: left 520ms ease;
}

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

.button:hover::after {
  left: 115%;
}

.button.primary {
  background: var(--amber);
  color: #071006;
  box-shadow: 0 0 28px rgba(154, 205, 47, 0.26);
}

.button.secondary {
  border-color: rgba(154, 205, 47, 0.5);
  color: var(--white);
  background: rgba(154, 205, 47, 0.08);
}

.ticker {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(154, 205, 47, 0.28);
  border-bottom: 1px solid rgba(154, 205, 47, 0.28);
  background: #050806;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 16px 0;
  color: var(--teal);
  font-size: clamp(18px, 2vw, 28px);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  animation: tickerMove 16s linear infinite;
}

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

.ticker-track span::after {
  content: "/";
  margin-left: 34px;
  color: rgba(255, 255, 255, 0.22);
}

.system-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: stretch;
  padding: 104px clamp(18px, 5vw, 72px);
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 20%, rgba(154, 205, 47, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(154, 205, 47, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #050806 0%, #0a120c 48%, #050806 100%);
  background-size: auto, 88px 88px, auto;
}

.system-copy {
  display: grid;
  align-content: center;
}

.system-copy h2 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.95;
}

.system-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 600;
}

.system-board {
  padding: 18px;
  border: 1px solid rgba(154, 205, 47, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(154, 205, 47, 0.12), rgba(154, 205, 47, 0.02)),
    #09100b;
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.38);
  transform: perspective(1200px) rotateX(calc((1 - var(--scroll-progress, 0)) * 2deg));
}

.board-topline,
.board-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(154, 205, 47, 0.28);
  border-radius: 8px;
  background: #0d160f;
}

.board-topline span,
.board-topline strong {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.board-topline span {
  color: var(--teal);
}

.board-topline strong {
  color: var(--muted);
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 12px 0;
}

.board-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(154, 205, 47, 0.24);
  border-radius: 8px;
  background: #0b120d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.board-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(154, 205, 47, 0.62);
  background: #101b12;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.board-grid article span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--teal);
  font-weight: 800;
}

.board-grid h3 {
  color: var(--ink);
  font-size: 22px;
}

.board-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 600;
}

.board-footer {
  flex-wrap: wrap;
  justify-content: flex-start;
}

.board-footer span {
  padding: 8px 11px;
  border: 1px solid rgba(128, 176, 32, 0.5);
  border-radius: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.section,
.google-reviews,
.contact-section {
  padding: 92px clamp(18px, 5vw, 72px);
}

.section {
  background:
    radial-gradient(circle at 88% 18%, rgba(154, 205, 47, 0.16), transparent 22%),
    linear-gradient(90deg, rgba(154, 205, 47, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #050806, #0a120c);
  background-size: auto, 96px 96px, auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.google-reviews h2,
.contact-copy h2 {
  color: var(--ink);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 360px;
  padding: 30px;
  border: 1px solid rgba(154, 205, 47, 0.26);
  border-radius: 8px;
  background: #0b120d;
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.34);
  transform-style: preserve-3d;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(154, 205, 47, 0.18), transparent 32%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  border-color: rgba(128, 176, 32, 0.72);
  box-shadow: 0 28px 82px rgba(17, 24, 20, 0.16), 0 0 34px rgba(154, 205, 47, 0.16);
}

.service-card.highlight {
  background: linear-gradient(180deg, rgba(154, 205, 47, 0.22), rgba(154, 205, 47, 0.08));
  color: var(--ink);
  border-color: rgba(128, 176, 32, 0.78);
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
  font-weight: 600;
}

.service-card.highlight p {
  color: var(--muted);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 32px;
  color: #7fb51f;
  font-weight: 800;
}

.service-card.highlight .service-icon {
  color: var(--amber);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.service-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--amber);
}

.google-reviews {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(154, 205, 47, 0.24);
  border-bottom: 1px solid rgba(154, 205, 47, 0.24);
  background:
    radial-gradient(circle at 16% 18%, rgba(154, 205, 47, 0.16), transparent 25%),
    linear-gradient(135deg, #050806 0%, #0a120c 54%, #050806 100%);
}

.google-reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(154, 205, 47, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154, 205, 47, 0.07) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.22;
  animation: gridDrift 18s linear infinite;
}

.google-reviews > * {
  position: relative;
  z-index: 1;
}

.reviews-copy {
  max-width: 680px;
}

.reviews-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.reviews-panel {
  padding: 28px;
  border: 1px solid rgba(154, 205, 47, 0.3);
  border-radius: 8px;
  background: rgba(9, 16, 11, 0.9);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
}

.google-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--ink);
  font-weight: 900;
}

.google-mark span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: conic-gradient(#4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
  color: #ffffff;
  font-size: 23px;
  box-shadow: 0 14px 32px rgba(66, 133, 244, 0.18);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(154, 205, 47, 0.22);
  border-radius: 8px;
  background: #0b120d;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(128, 176, 32, 0.72);
  box-shadow: 0 20px 56px rgba(17, 24, 20, 0.12);
}

.stars {
  margin-bottom: 18px;
  color: #fbbc05;
  letter-spacing: 2px;
  font-size: 16px;
}

.review-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
}

.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 600;
}

.reviews-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(128, 176, 32, 0.55);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 900;
  background: #101711;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 54px;
  border-top: 1px solid rgba(154, 205, 47, 0.24);
  background:
    radial-gradient(circle at 10% 12%, rgba(154, 205, 47, 0.16), transparent 26%),
    linear-gradient(135deg, #050806 0%, #0a120c 58%, #050806 100%);
  color: var(--ink);
}

.contact-copy p,
.contact-copy address {
  color: var(--muted);
  line-height: 1.8;
}

.contact-copy h2 {
  color: var(--ink);
}

.contact-copy address {
  font-style: normal;
}

.contact-copy a {
  color: var(--ink);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid rgba(154, 205, 47, 0.3);
  background: var(--panel);
  color: var(--ink);
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.38);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.contact-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 90px rgba(17, 24, 20, 0.16);
}

.contact-form .button.primary {
  animation: buttonBreathe 2s ease-in-out infinite;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(154, 205, 47, 0.3);
  border-radius: 8px;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  background: #050806;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(154, 205, 47, 0.24);
  border-color: rgba(128, 176, 32, 0.8);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #152018;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 860px) {
  body {
    font-size: 15px;
  }

  .nav-toggle {
    display: block;
  }

  .site-header {
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(5, 8, 6, 0.72);
    backdrop-filter: blur(14px);
    border-bottom-color: rgba(154, 205, 47, 0.22);
  }

  .header-phone {
    position: static;
    transform: none;
    max-width: 58vw;
    font-size: clamp(18px, 5.4vw, 23px);
    white-space: nowrap;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(8, 10, 9, 0.96);
    border: 1px solid rgba(154, 205, 47, 0.26);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.46);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-pill {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .hero {
    min-height: 94svh;
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 8, 6, 0.38) 0%, rgba(5, 8, 6, 0.72) 42%, rgba(5, 8, 6, 0.96) 100%),
      linear-gradient(90deg, rgba(5, 8, 6, 0.74), rgba(5, 8, 6, 0.28));
  }

  .hero::after {
    opacity: 0.24;
  }

  .scroll-cinema {
    opacity: 1;
    transform: none;
  }

  .hero-content {
    max-width: none;
    padding: 112px 18px 46px;
  }

  .hero-logo {
    margin-bottom: 14px;
  }

  .axel-word {
    font-size: clamp(54px, 22vw, 92px);
  }

  .garage-word {
    font-size: clamp(18px, 6vw, 26px);
    letter-spacing: clamp(8px, 3vw, 14px);
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(39px, 11vw, 56px);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(32px, 9vw, 46px);
    line-height: 1.02;
  }

  .hero-text {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.58;
  }

  .service-grid,
  .system-section,
  .google-reviews,
  .reviews-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section,
  .google-reviews,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .service-card {
    min-height: auto;
  }

  .system-section {
    padding-top: 58px;
    padding-bottom: 58px;
    gap: 28px;
  }

  .system-copy h2 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .system-copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.7;
  }

  .system-board {
    padding: 12px;
  }

  .board-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .board-grid article {
    min-height: auto;
    padding: 18px;
    border-color: rgba(154, 205, 47, 0.42);
    background: #101a12;
  }

  .board-grid article span {
    margin-bottom: 18px;
  }

  .board-footer {
    gap: 8px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .service-grid {
    gap: 14px;
  }

  .reviews-panel {
    padding: 22px;
  }

  .review-card {
    min-height: auto;
  }

  .contact-section {
    gap: 30px;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 10px 12px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .brand-lockup {
    gap: 8px;
  }

  .brand-logo {
    font-size: 24px;
  }

  .brand-domain {
    font-size: 15px;
  }

  .info-panel {
    width: 100vw;
    padding: 22px 18px 30px;
  }

  .info-panel-header {
    position: sticky;
    top: -22px;
    z-index: 2;
    align-items: flex-start;
    margin: -22px -18px 28px;
    padding: 22px 18px 16px;
    background: #f3f4f1;
    border-bottom: 1px solid #d7dbd4;
  }

  .info-panel h2 {
    font-size: 25px;
  }

  .info-close {
    min-height: 42px;
    padding: 0 12px;
    white-space: nowrap;
  }

  .info-panel-logo .axel-word {
    font-size: 48px;
  }

  .info-panel-logo .garage-word {
    letter-spacing: 9px;
  }

  .info-block {
    padding: 22px 0;
  }

  .hero-content {
    padding: 108px 16px 42px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 52px;
  }

  .ticker-track {
    gap: 24px;
    padding: 12px 0;
    font-size: 18px;
    animation-duration: 18s;
  }

  .ticker-track span::after {
    margin-left: 24px;
  }

  .section,
  .google-reviews,
  .contact-section,
  .system-section {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .system-board,
  .reviews-panel {
    margin-left: -2px;
    margin-right: -2px;
  }

  .board-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .board-grid h3,
  .review-card h3,
  .service-card h3 {
    font-size: 21px;
  }

  .service-card,
  .review-card,
  .contact-form {
    padding: 20px;
    border-color: rgba(154, 205, 47, 0.42);
    background: #101a12;
  }

  .service-card ul {
    gap: 8px;
  }

  .contact-form input,
  .contact-form textarea {
    min-height: 50px;
    font-size: 16px;
  }

  .contact-form textarea {
    min-height: 140px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

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

@keyframes heroSweep {
  0%,
  100% {
    transform: translateX(-18%);
    opacity: 0.18;
  }

  50% {
    transform: translateX(18%);
    opacity: 0.56;
  }
}

@keyframes splashPop {
  0% {
    opacity: 0;
    transform: translateX(-120px) scale(0.62) skew(-10deg);
    filter: blur(10px);
  }

  58% {
    opacity: 1;
    transform: translateX(8px) scale(1.06) skew(-10deg);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1) skew(-10deg);
    filter: blur(0);
  }
}

@keyframes splashTagline {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoDriveIn {
  0% {
    opacity: 0;
    transform: translateX(-180px) skew(-10deg) scaleX(1.18);
    filter: blur(8px) drop-shadow(-38px 0 20px rgba(154, 205, 47, 0.9));
  }

  62% {
    opacity: 1;
    transform: translateX(18px) skew(-10deg) scaleX(1);
    filter: blur(0) drop-shadow(-18px 0 16px rgba(154, 205, 47, 0.72));
  }

  100% {
    opacity: 1;
    transform: translateX(var(--logo-drive, 0px)) skew(-10deg) scaleX(1);
    filter: drop-shadow(calc(var(--logo-speed, 0) * -1px) 0 calc(var(--logo-speed, 0) * 0.6px) rgba(154, 205, 47, 0.55));
  }
}

@keyframes speedTrail {
  0% {
    opacity: 0;
    transform: translateX(-135%) skew(-18deg);
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(88%) skew(-18deg);
  }
}

@keyframes stepPulse {
  0%,
  100% {
    box-shadow: 0 0 22px rgba(154, 205, 47, 0.22);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 36px rgba(154, 205, 47, 0.48);
    transform: scale(1.06);
  }
}

@keyframes buttonBreathe {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(154, 205, 47, 0.22);
  }

  50% {
    box-shadow: 0 0 42px rgba(154, 205, 47, 0.46);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.75);
    transform-origin: top;
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 64px 64px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .cursor-glow {
    display: none;
  }
}
