:root {
  --orange: #d96512;
  --orange-bright: #ff8b38;
  --orange-soft: rgba(255, 161, 84, 0.22);
  --black: #070708;
  --deep: #0b0c10;
  --card: #14151a;
  --card-soft: #101116;
  --graphite: #17191f;
  --graphite-light: #242731;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --border-soft: rgba(255, 255, 255, 0.05);
  --white: #f5f1eb;
  --gray: #b3aea7;
  --dim: #7a756e;
  --font-display: "Manrope", Arial, sans-serif;
  --font-headline: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --radius: 8px;
  --radius-sm: 4px;
  --header-height: 74px;
  --section-y: 104px;
  --shadow-card: 0 32px 90px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 52px rgba(0, 0, 0, 0.24);
  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.045), transparent 28rem),
    radial-gradient(circle at 86% 6%, rgba(217, 101, 18, 0.12), transparent 26rem),
    linear-gradient(180deg, #060607 0%, #0a0a0d 46%, #070708 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  color-scheme: dark;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(255, 139, 56, 0.28);
  color: var(--white);
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

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

figure {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--orange-bright);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 4000;
  transform: translateY(-140%);
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-weight: 800;
}

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

body.nav-open .skip-link,
body.modal-open .skip-link {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-140%);
}

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  place-items: center;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 139, 56, 0.18), transparent 20rem),
    radial-gradient(circle at 22% 72%, rgba(255, 255, 255, 0.05), transparent 20rem),
    linear-gradient(145deg, #050506, #101116 50%, #080809);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 420ms ease, visibility 420ms ease;
}

html.js .site-loader.is-active {
  display: grid;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(-55deg, transparent 0, transparent 28px, rgba(255, 139, 56, 0.04) 28px, rgba(255, 139, 56, 0.04) 29px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 40%, rgba(255, 255, 255, 0.025));
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-shell {
  position: relative;
  isolation: isolate;
  width: min(86vw, 440px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015) 16%),
    linear-gradient(150deg, rgba(20, 21, 26, 0.96), rgba(10, 10, 12, 0.98));
  padding: 34px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.loader-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
}

.loader-road {
  position: absolute;
  right: -14%;
  bottom: -18%;
  width: 70%;
  height: 68%;
  transform: skewX(-18deg);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.045));
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
}

.loader-road span {
  position: absolute;
  left: 50%;
  width: 3px;
  height: 34px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.34);
  animation: roadDash 950ms linear infinite;
}

.loader-road span:nth-child(1) {
  top: 8%;
}

.loader-road span:nth-child(2) {
  top: 38%;
  animation-delay: 180ms;
}

.loader-road span:nth-child(3) {
  top: 68%;
  animation-delay: 360ms;
}

.loader-logo {
  position: relative;
  z-index: 1;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 139, 56, 0.26);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 139, 56, 0.14), transparent 64%),
    rgba(255, 255, 255, 0.035);
  padding: 9px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38), 0 0 0 6px rgba(255, 139, 56, 0.045);
  animation: loaderCar 1250ms cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.36));
}

.loader-brand {
  position: relative;
  z-index: 1;
  margin: 20px 0 2px;
  font-family: var(--font-headline);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
}

.loader-brand span,
.loader-percent {
  color: var(--orange);
}

.loader-text {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: rgba(245, 241, 235, 0.66);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.loader-progress {
  position: relative;
  z-index: 1;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.loader-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--orange-bright), #fff1e8);
}

.loader-percent {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  text-align: right;
}

.motion-lottie {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  opacity: 0.72;
  contain: layout paint;
}

.motion-lottie svg {
  width: 100%;
  height: 100%;
}

.motion-fallback {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 139, 56, 0.2), transparent 48%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 62%);
  opacity: 0.6;
  filter: blur(0.2px);
  animation: motionPulse 7.8s ease-in-out infinite;
}

.motion-lottie.is-lottie-ready .motion-fallback {
  opacity: 0.14;
}

.motion-lottie.is-lottie-missing .motion-fallback,
.lottie-missing .motion-fallback {
  opacity: 0.78;
}

.loader-lottie {
  top: 10px;
  right: 10px;
  width: 104px;
  height: 104px;
  opacity: 0.72;
}

.loader-lottie .motion-fallback {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 139, 56, 0.28), transparent 44%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent 65%);
}

@keyframes loaderCar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes roadDash {
  from { transform: translate(-50%, -44px); opacity: 0; }
  30% { opacity: 0.7; }
  to { transform: translate(-50%, 84px); opacity: 0; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(12, 12, 14, 0.95), rgba(9, 9, 10, 0.84));
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.26);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 18px;
}

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

.brand-logo-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.brand-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.34));
}

.site-header .brand-logo-mark {
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(255, 139, 56, 0.18);
}

.site-header .brand-logo-mark img {
  border-radius: 12px;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.28));
}

.brand strong {
  display: block;
  font-family: var(--font-headline);
  font-size: 1.55rem;
  line-height: 1;
}

.brand strong span {
  color: var(--orange);
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.015em;
  white-space: nowrap;
  letter-spacing: 0;
}

.brand-wordmark .wordmark-u {
  display: inline-grid;
  place-items: center;
  width: 1.03em;
  height: 1.18em;
  margin-inline: 0.025em;
  border: 1px solid rgba(137, 198, 255, 0.7);
  border-radius: 0.18em;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 36%),
    linear-gradient(180deg, #086cd4 0%, #004493 58%, #00306d 100%);
  color: #fffaf2;
  font-family: var(--font-body);
  font-size: 0.78em;
  font-weight: 800;
  line-height: 1;
  text-shadow: none;
  transform: translateY(0.08em) rotate(-2deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 0 1px rgba(0, 11, 28, 0.42),
    0 10px 20px rgba(0, 77, 160, 0.22);
}

.brand-wordmark .wordmark-hard {
  color: var(--orange-bright);
  font-size: 1.22em;
  margin-left: 0.015em;
  transform: translateY(0.035em);
  text-shadow: 0 8px 20px rgba(217, 101, 18, 0.32);
}

.brand strong.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
}

.loader-brand.brand-wordmark {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-wordmark {
  margin-right: 0.08em;
}

.brand small {
  display: block;
  color: rgba(245, 241, 235, 0.55);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 1px;
  margin-left: auto;
  min-width: 0;
}

.site-nav a {
  position: relative;
  border-radius: var(--radius-sm);
  color: rgba(245, 241, 235, 0.72);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 11px 10px;
  text-transform: none;
  white-space: nowrap;
  transition: color var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.site-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(118deg, transparent 0%, rgba(255, 255, 255, 0.14) 48%, transparent 78%);
  opacity: 0;
  transform: translateX(-145%);
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease;
  pointer-events: none;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-nav a:hover::before,
.site-nav a.is-active::before {
  opacity: 1;
  transform: translateX(135%);
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 6px;
  left: 12px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 139, 56, 0.18), var(--orange-bright), rgba(255, 139, 56, 0.18));
}

.header-phone {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #cb560b, #ff8b38);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 9px 16px;
  text-transform: none;
  white-space: nowrap;
  box-shadow: 0 16px 36px rgba(217, 101, 18, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.header-phone:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #d96512, #ff9a4f);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  place-items: center;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
  color: var(--white);
  cursor: pointer;
}

.menu-button span {
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.site-header.is-open .menu-button span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-button span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-button span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 139, 56, 0.18), transparent 22rem),
    radial-gradient(circle at 14% 22%, rgba(255, 255, 255, 0.07), transparent 18rem),
    radial-gradient(circle at 58% 100%, rgba(217, 101, 18, 0.08), transparent 28rem),
    linear-gradient(145deg, #0b0c10 0%, #08080a 44%, #111217 100%);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.018) 48%, transparent);
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-grid,
.hero-road {
  position: absolute;
  pointer-events: none;
}

.hero-grid {
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 92%);
  transform: translate3d(0, var(--parallax-shift, 0px), 0);
  animation: gridDrift 32s linear infinite;
}

.hero-road {
  right: -8%;
  bottom: 0;
  width: 80%;
  height: 58%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(56, 58, 66, 0.72));
  clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
  opacity: 0.42;
  transform: translate3d(0, var(--parallax-shift, 0px), 0);
  animation: roadGlow 16s ease-in-out infinite alternate;
}

.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orbit {
  position: absolute;
  top: 7%;
  right: 6%;
  width: clamp(240px, 32vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 139, 56, 0.18), transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06), transparent 62%);
  opacity: 0.62;
  transform: translate3d(0, var(--parallax-shift, 0px), 0);
  animation: orbitFloat 16s ease-in-out infinite;
  filter: blur(0.4px);
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.hero-orbit::before {
  animation: haloPulse 13s ease-in-out infinite;
}

.hero-orbit::after {
  inset: 34%;
  border-color: rgba(255, 139, 56, 0.18);
  animation: haloSpin 18s linear infinite;
}

.hero-sweep {
  position: absolute;
  right: -18%;
  bottom: 14%;
  left: 34%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 139, 56, 0.72), rgba(255, 255, 255, 0.22), transparent);
  opacity: 0.52;
  transform: translate3d(0, var(--parallax-shift, 0px), 0) rotate(-14deg);
  transform-origin: center;
  animation: heroSweep 8.6s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.hero-lottie {
  right: clamp(26px, 9vw, 92px);
  bottom: 8%;
  width: clamp(220px, 32vw, 430px);
  height: clamp(130px, 20vw, 240px);
  opacity: 0.76;
}

.hero-lottie .motion-fallback {
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 139, 56, 0.32) 38%, rgba(255, 255, 255, 0.12) 52%, transparent 76%),
    radial-gradient(circle at 78% 50%, rgba(255, 139, 56, 0.18), transparent 30%);
  animation: routeGlow 7.8s ease-in-out infinite;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  gap: 64px;
  align-items: center;
  padding: 84px 0;
}

.hero-copy > *,
.hero-card,
.quick-strip,
.page-hero .breadcrumb,
.page-hero h1,
.page-hero p,
.page-hero-accent {
  transition:
    opacity 860ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 980ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms ease;
}

body:not(.page-ready) .hero-copy > *,
body:not(.page-ready) .hero-card,
body:not(.page-ready) .quick-strip,
body:not(.page-ready) .page-hero .breadcrumb,
body:not(.page-ready) .page-hero h1,
body:not(.page-ready) .page-hero p,
body:not(.page-ready) .page-hero-accent {
  opacity: 0;
  filter: blur(10px);
}

body:not(.page-ready) .hero-copy > *,
body:not(.page-ready) .page-hero .breadcrumb,
body:not(.page-ready) .page-hero h1,
body:not(.page-ready) .page-hero p {
  transform: translate3d(0, 30px, 0);
}

body:not(.page-ready) .hero-card,
body:not(.page-ready) .page-hero-accent {
  transform: translate3d(0, 38px, 0) scale(0.97);
}

body:not(.page-ready) .quick-strip {
  transform: translate3d(0, 26px, 0);
}

body.page-ready .hero-copy > *,
body.page-ready .hero-card,
body.page-ready .quick-strip,
body.page-ready .page-hero .breadcrumb,
body.page-ready .page-hero h1,
body.page-ready .page-hero p,
body.page-ready .page-hero-accent {
  opacity: 1;
  filter: none;
  transform: none;
}

body.page-ready .hero-copy > :nth-child(1),
body.page-ready .page-hero .breadcrumb {
  transition-delay: 110ms;
}

body.page-ready .hero-copy > :nth-child(2),
body.page-ready .page-hero h1 {
  transition-delay: 220ms;
}

body.page-ready .hero-copy > :nth-child(3),
body.page-ready .page-hero p {
  transition-delay: 320ms;
}

body.page-ready .hero-copy > :nth-child(4) {
  transition-delay: 410ms;
}

body.page-ready .hero-copy > :nth-child(5),
body.page-ready .page-hero-accent {
  transition-delay: 500ms;
}

body.page-ready .hero-card,
body.page-ready .quick-strip {
  transition-delay: 560ms;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 6.2rem;
  font-weight: 700;
  line-height: 0.94;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  text-transform: none;
  text-wrap: balance;
}

.hero-copy h1 em,
.page-hero h1 em {
  display: block;
  color: var(--orange-bright);
  font-style: italic;
  font-weight: 600;
}

.page-hero h1 {
  max-width: 11.5ch;
  font-size: 5.05rem;
  line-height: 1.02;
}

.hero-copy p {
  max-width: 640px;
  color: rgba(245, 241, 235, 0.76);
  font-size: 1.12rem;
  line-height: 1.88;
}

.eyebrow,
.section-label,
.panel-kicker,
.breadcrumb {
  color: rgba(255, 195, 144, 0.86);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}

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

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0;
}

.hero-tags span,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: rgba(245, 241, 235, 0.84);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  text-transform: uppercase;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.center-actions {
  justify-content: center;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 24px;
  text-align: center;
  text-transform: none;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), border-color var(--transition), color var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-105%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent);
  transition: transform 420ms cubic-bezier(0.4, 0, 0.2, 1);
}

.button::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 255, 255, 0.18), transparent 42%);
  opacity: 0;
  transition: opacity 320ms ease;
}

.button:hover::before {
  transform: translateX(105%) skewX(-18deg);
}

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

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
}

.button-primary {
  background: linear-gradient(135deg, #c6530a, #ff8b38);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(217, 101, 18, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 24px 52px rgba(217, 101, 18, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button-outline {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.button-outline:hover {
  border-color: rgba(255, 139, 56, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  color: var(--white);
}

.button-outline:hover,
.button-outline:focus-visible {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-card,
.page-card,
.info-card,
.category-card,
.vehicle-card,
.review-card,
.faq-item,
.contact-card,
.map-card,
.gallery-card,
.instructor-card,
.team-preview-card,
.portrait-card,
.training-photo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015) 16%, rgba(255, 255, 255, 0.01) 100%),
    linear-gradient(150deg, rgba(24, 25, 31, 0.96), rgba(12, 12, 15, 0.98));
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.hero-card,
.page-card {
  padding: 34px 34px 32px;
}

.hero-card::before,
.page-card::before,
.info-card::before,
.instructor-card::before,
.team-preview-card::before,
.category-card::before,
.vehicle-card::before,
.review-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 139, 56, 0.92) 22%, rgba(255, 220, 191, 0.78) 50%, transparent 86%);
  background-size: 220% 100%;
  animation: accentFlow 10s linear infinite;
}

.hero-card::after,
.page-card::after,
.info-card::after,
.instructor-card::after,
.team-preview-card::after,
.category-card::after,
.vehicle-card::after,
.review-card::after,
.faq-item::after,
.contact-card::after,
.map-card::after,
.portrait-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: calc(var(--radius) - 1px);
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 0%), rgba(255, 255, 255, 0.1), transparent 34%);
  opacity: 0;
  transition: opacity 280ms ease, border-color 280ms ease;
  pointer-events: none;
}

.hero-card:hover::after,
.page-card:hover::after,
.info-card:hover::after,
.instructor-card:hover::after,
.team-preview-card:hover::after,
.category-card:hover::after,
.vehicle-card:hover::after,
.review-card:hover::after,
.faq-item:hover::after,
.contact-card:hover::after,
.map-card:hover::after,
.portrait-card:hover::after {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.06);
}

.hero-card p,
.page-card p {
  color: rgba(245, 241, 235, 0.73);
  line-height: 1.74;
}

.hero-card {
  background:
    radial-gradient(circle at top right, rgba(255, 139, 56, 0.14), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015) 16%),
    linear-gradient(150deg, rgba(24, 25, 31, 0.96), rgba(12, 12, 15, 0.98));
}

.page-card {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.045), transparent 10rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015) 16%),
    linear-gradient(150deg, rgba(24, 25, 31, 0.96), rgba(12, 12, 15, 0.98));
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 24px;
}

.mini-grid span,
.contact-mini-grid span {
  display: grid;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: 13px;
}

.mini-grid strong,
.contact-mini-grid strong {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 700;
  text-transform: none;
}

.mini-grid small,
.contact-mini-grid small {
  color: rgba(245, 241, 235, 0.62);
}

.quick-strip {
  position: relative;
  background:
    radial-gradient(circle at 16% 50%, rgba(255, 139, 56, 0.11), transparent 14rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.03)),
    linear-gradient(90deg, #101116, #1a1410 48%, #101116);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.quick-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 10%, rgba(255, 255, 255, 0.08) 48%, transparent 82%);
  opacity: 0.18;
  transform: translateX(-70%);
  animation: stripSweep 12s ease-in-out infinite;
}

.quick-strip-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 0;
}

.quick-strip span {
  min-width: 150px;
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 2px solid rgba(255, 139, 56, 0.56);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: 10px 14px;
}

.quick-strip strong {
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
}

.quick-strip small {
  color: rgba(245, 241, 235, 0.58);
}

.section {
  position: relative;
  padding: var(--section-y) 0;
}

.section-deep {
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.045), transparent 18rem),
    radial-gradient(circle at 88% 12%, rgba(255, 139, 56, 0.09), transparent 20rem),
    linear-gradient(180deg, #0d0f13, #08080a 58%, #0c0d11);
}

.section-black {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 139, 56, 0.13), transparent 20rem),
    radial-gradient(circle at 18% 88%, rgba(255, 255, 255, 0.04), transparent 16rem),
    linear-gradient(180deg, #080809, #060607 54%, #09090a);
}

.section-graphite {
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 139, 56, 0.08), transparent 18rem),
    radial-gradient(circle at 78% 78%, rgba(255, 255, 255, 0.05), transparent 16rem),
    linear-gradient(180deg, #181a21, #111217 60%, #161820);
}

.section-black,
.section-deep,
.section-graphite {
  overflow: hidden;
}

.section-black::before,
.section-deep::before,
.section-graphite::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 16%),
    repeating-linear-gradient(-55deg, transparent 0, transparent 44px, rgba(255, 255, 255, 0.012) 44px, rgba(255, 255, 255, 0.012) 45px);
  animation: ambientTrace 26s linear infinite;
}

.section-black::after,
.section-deep::after,
.section-graphite::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 110px),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02) 52%, transparent);
  animation: ambientGlow 18s ease-in-out infinite alternate;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-head {
  position: relative;
  max-width: 720px;
  margin-bottom: 54px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head > * {
  position: relative;
  z-index: 1;
}

.section-head.center .section-copy {
  margin-inline: auto;
}

.section-head-accent {
  top: -38px;
  right: -26px;
  width: 170px;
  height: 170px;
  opacity: 0.4;
}

.section-head.center .section-head-accent {
  top: -54px;
  right: 50%;
  transform: translateX(50%);
  opacity: 0.28;
}

.section-title {
  margin: 0 0 14px;
  font-family: var(--font-headline);
  font-size: 3.38rem;
  font-weight: 700;
  line-height: 1.03;
  text-transform: none;
  text-wrap: balance;
}

.section-title span {
  color: var(--orange);
}

.section-copy {
  max-width: 680px;
  margin: 0;
  color: rgba(245, 241, 235, 0.71);
  font-size: 1.05rem;
  line-height: 1.82;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 68px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
}

.portrait-card {
  aspect-ratio: 3 / 4;
  max-width: 440px;
  width: min(100%, 440px);
  justify-self: center;
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 139, 56, 0.16), transparent 14rem),
    radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.04), transparent 18rem),
    linear-gradient(160deg, rgba(21, 22, 27, 0.98), rgba(10, 10, 12, 0.96));
}

.media-slot {
  width: 100%;
}

.portrait-card.has-photo {
  aspect-ratio: 1 / 1;
  padding: 8px;
}

.portrait-photo,
.category-media,
.vehicle-media,
.vehicle-preview-main,
.vehicle-preview-side-card {
  position: relative;
  overflow: hidden;
}

.portrait-photo {
  height: 100%;
  border-radius: calc(var(--radius) - 5px);
}

.portrait-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.category-media img,
.vehicle-media img,
.vehicle-preview-main img,
.vehicle-preview-side-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.portrait-photo::after,
.vehicle-preview-main::after,
.vehicle-preview-side-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 7, 9, 0.02) 0%, rgba(7, 7, 9, 0.08) 36%, rgba(7, 7, 9, 0.74) 100%),
    linear-gradient(135deg, rgba(255, 139, 56, 0.14), transparent 42%);
}

.category-media::after,
.vehicle-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 139, 56, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(7, 7, 9, 0.02), rgba(7, 7, 9, 0.14));
}

.portrait-caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  gap: 4px;
}

.portrait-caption strong,
.vehicle-preview-label strong {
  color: rgba(252, 248, 242, 0.98);
  font-family: var(--font-headline);
  font-size: 1.34rem;
  line-height: 1.08;
}

.portrait-caption small,
.vehicle-preview-label small {
  color: rgba(245, 241, 235, 0.72);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.4;
}

.portrait-placeholder {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
  color: rgba(245, 241, 235, 0.72);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
  text-transform: none;
}

.portrait-placeholder strong {
  color: var(--white);
  font-family: var(--font-headline);
  font-size: 1.36rem;
  line-height: 1.08;
}

.portrait-placeholder small {
  max-width: 18rem;
  color: rgba(245, 241, 235, 0.68);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.65;
}

.portrait-placeholder::before {
  content: "";
  width: 54px;
  height: 1px;
  margin-right: 0;
  background: linear-gradient(90deg, transparent, var(--orange-bright), transparent);
}

.instructor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.instructor-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.45fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.instructor-portrait {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 300px;
  aspect-ratio: 4 / 5;
  justify-self: stretch;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) - 5px);
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 139, 56, 0.16), transparent 12rem),
    radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.04), transparent 16rem),
    linear-gradient(160deg, rgba(21, 22, 27, 0.98), rgba(10, 10, 12, 0.96));
}

.instructor-portrait > img,
.team-mini-portrait > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.instructor-portrait > img {
  min-height: 100%;
}

.team-mini-portrait > img {
  border-radius: inherit;
}

.instructor-portrait .portrait-placeholder,
.team-mini-portrait .portrait-placeholder {
  border-radius: calc(var(--radius) - 5px);
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 139, 56, 0.16), transparent 7rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
    linear-gradient(160deg, rgba(20, 21, 26, 0.98), rgba(9, 9, 11, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.instructor-portrait .portrait-placeholder::before,
.team-mini-portrait .portrait-placeholder::before {
  display: none;
}

.portrait-initials {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 139, 56, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 139, 56, 0.2), rgba(255, 139, 56, 0.06)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: rgba(252, 248, 242, 0.96);
  font-family: var(--font-headline);
  font-size: 1.22rem;
  line-height: 1;
}

.instructor-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.instructor-role {
  width: fit-content;
  border: 1px solid rgba(255, 139, 56, 0.2);
  border-radius: 999px;
  background: rgba(255, 139, 56, 0.08);
  color: #ffb15f;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  padding: 8px 12px;
}

.instructor-card h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-headline);
  font-size: clamp(1.62rem, 2.1vw, 2.12rem);
  line-height: 1.08;
}

.instructor-card p {
  margin: 0;
  color: rgba(245, 241, 235, 0.72);
  line-height: 1.75;
}

.instructor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
}

.instructor-tags span {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(245, 241, 235, 0.64);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 8px 10px;
}

.team-preview-card {
  width: 100%;
  max-width: 520px;
  justify-self: center;
  display: grid;
  gap: 18px;
  padding: 22px;
}

.team-preview-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.team-mini {
  min-width: 0;
  display: grid;
  gap: 12px;
  align-content: start;
}

.team-mini-portrait {
  min-height: 170px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius-sm) + 4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.016));
}

.team-mini-portrait .portrait-placeholder {
  height: 100%;
  gap: 10px;
  padding: 18px;
}

.team-mini-portrait .portrait-initials {
  width: 52px;
  height: 52px;
  font-size: 1rem;
}

.team-mini strong {
  color: var(--white);
  font-family: var(--font-headline);
  font-size: 1.22rem;
  line-height: 1.1;
}

.team-mini small {
  color: rgba(245, 241, 235, 0.66);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.team-preview-note {
  margin: 0;
  color: rgba(245, 241, 235, 0.68);
  line-height: 1.68;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-story-list {
  display: grid;
  gap: 26px;
}

.resource-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 3vw, 40px);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(255, 139, 56, 0.12), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015) 16%, rgba(255, 255, 255, 0.01) 100%),
    linear-gradient(150deg, rgba(24, 25, 31, 0.96), rgba(12, 12, 15, 0.98));
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: clamp(18px, 2.3vw, 28px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.resource-story::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 139, 56, 0.92) 22%, rgba(255, 220, 191, 0.78) 50%, transparent 86%);
  background-size: 220% 100%;
  animation: accentFlow 10s linear infinite;
}

.resource-story:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 139, 56, 0.34);
  box-shadow: 0 36px 92px rgba(0, 0, 0, 0.42);
}

.resource-story-media {
  min-width: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) - 2px);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 139, 56, 0.18), transparent 12rem),
    linear-gradient(155deg, rgba(20, 21, 26, 0.96), rgba(9, 9, 11, 0.98));
  padding: clamp(8px, 1.2vw, 12px);
}

.resource-story-media img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-sm) + 2px);
}

.resource-story-portrait .resource-story-media {
  width: min(100%, 420px);
  justify-self: center;
}

.resource-story-portrait .resource-story-media img {
  width: auto;
  max-width: 100%;
  max-height: 620px;
}

.resource-story-content {
  min-width: 0;
}

.resource-story-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 30px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 139, 56, 0.22);
  border-radius: 999px;
  background: rgba(255, 139, 56, 0.08);
  color: rgba(255, 219, 192, 0.96);
  font-size: 0.78rem;
  font-weight: 700;
}

.resource-story-content h3 {
  margin: 0 0 10px;
  font-family: var(--font-body);
  font-size: 1.46rem;
  font-weight: 700;
  line-height: 1.32;
  text-wrap: balance;
}

.resource-story-content p {
  margin: 0;
  color: rgba(245, 241, 235, 0.68);
  line-height: 1.78;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: 28px;
  align-items: stretch;
}

.legal-intro,
.legal-note {
  min-height: 100%;
}

.legal-note {
  display: grid;
  align-content: start;
  gap: 14px;
}

.legal-note h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.24rem;
  font-weight: 700;
  line-height: 1.34;
}

.legal-note p,
.legal-note a {
  color: rgba(245, 241, 235, 0.68);
}

.legal-note a {
  width: fit-content;
}

.legal-document-wrap {
  width: min(100%, 920px);
}

.legal-document {
  display: grid;
  gap: 26px;
}

.legal-document section {
  display: grid;
  gap: 10px;
}

.legal-document section + section {
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-document h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.24rem;
  font-weight: 700;
  line-height: 1.34;
}

.legal-document p {
  margin: 0;
  color: rgba(245, 241, 235, 0.72);
  line-height: 1.82;
}

.legal-document a {
  color: rgba(255, 222, 195, 0.96);
}

.legal-page .legal-page-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(117, 154, 198, 0.14), transparent 20rem),
    radial-gradient(circle at 74% 18%, rgba(255, 139, 56, 0.14), transparent 22rem),
    radial-gradient(circle at 14% 22%, rgba(255, 255, 255, 0.07), transparent 18rem),
    radial-gradient(circle at 58% 100%, rgba(217, 101, 18, 0.08), transparent 28rem),
    linear-gradient(145deg, #0b0c10 0%, #08080a 44%, #111217 100%);
}

.legal-reveal {
  transform: translate3d(0, 22px, 0);
  filter: blur(8px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 780ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms ease;
}

.legal-reveal.is-visible {
  transform: none;
  filter: none;
}

.category-card,
.info-card,
.instructor-card,
.vehicle-card,
.review-card,
.contact-card,
.training-photo-card {
  min-height: 100%;
  padding: 28px;
}

.category-card.has-media,
.vehicle-card.has-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card-real {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background:
    radial-gradient(circle at top right, rgba(255, 139, 56, 0.12), transparent 14rem),
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.05), transparent 12rem),
    linear-gradient(160deg, rgba(24, 25, 31, 0.98), rgba(11, 11, 13, 0.99));
}

.review-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.review-card-head h3 {
  margin: 6px 0 0;
}

.review-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 139, 56, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 139, 56, 0.13), rgba(255, 139, 56, 0.045)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: #ffb15f;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 9px 12px;
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(245, 241, 235, 0.76);
  font-size: 1rem;
  line-height: 1.82;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
}

.review-meta span {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(245, 241, 235, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 8px 10px;
}

.google-review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.category-card:hover,
.info-card:hover,
.instructor-card:hover,
.team-preview-card:hover,
.vehicle-card:hover,
.review-card:hover,
.contact-card:hover,
.gallery-card:hover,
.training-photo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 139, 56, 0.34);
  box-shadow: 0 36px 92px rgba(0, 0, 0, 0.42);
}

.contact-brand-seal {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 139, 56, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 139, 56, 0.1), transparent 62%),
    rgba(255, 255, 255, 0.035);
  padding: 6px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-brand-seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.34));
}

.category-card.featured {
  background:
    radial-gradient(circle at top right, rgba(255, 139, 56, 0.18), transparent 13rem),
    linear-gradient(160deg, rgba(30, 22, 18, 0.96), rgba(18, 18, 22, 0.98));
  border-color: rgba(255, 139, 56, 0.28);
  box-shadow: 0 30px 84px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 139, 56, 0.06);
}

.category-mark {
  width: 64px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 139, 56, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 139, 56, 0.18), rgba(255, 139, 56, 0.06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: rgba(255, 219, 192, 0.96);
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 700;
}

.category-media,
.vehicle-media {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) - 6px);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 139, 56, 0.18), transparent 12rem),
    linear-gradient(155deg, rgba(20, 21, 26, 0.96), rgba(9, 9, 11, 0.98));
  padding: clamp(8px, 1.2vw, 14px);
}

.category-media {
  aspect-ratio: 4 / 3;
}

.vehicle-media {
  aspect-ratio: 4 / 3;
}

.category-media-truck {
  aspect-ratio: 3 / 4;
}

.vehicle-media-truck {
  width: min(100%, 560px);
  aspect-ratio: 3 / 4;
  align-self: center;
}

.category-media-truck img,
.vehicle-media-truck img,
.vehicle-preview-side-card-truck img {
  object-position: center center;
}

.category-card h3,
.info-card h3,
.vehicle-card h3,
.review-card h3,
.contact-card h3,
.faq-item h3 {
  margin: 20px 0 8px;
  font-family: var(--font-body);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.34;
  text-wrap: balance;
}

.category-card.has-media h3,
.vehicle-card.has-media h3 {
  margin-top: 0;
}

.hero-card h2,
.page-card h2,
.page-card h3,
.contact-card h2 {
  margin: 18px 0 10px;
  font-family: var(--font-headline);
  font-size: 2rem;
  line-height: 1.1;
  text-wrap: balance;
}

.category-card p,
.info-card p,
.vehicle-card p,
.review-card p,
.contact-card p,
.faq-panel p {
  margin: 0;
  color: rgba(245, 241, 235, 0.68);
  line-height: 1.78;
}

.content-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
}

.content-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(245, 241, 235, 0.72);
  line-height: 1.72;
}

.content-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  box-shadow: 0 0 0 4px rgba(255, 139, 56, 0.1);
}

.content-list.tight {
  gap: 7px;
}

.requirements-grid {
  align-items: stretch;
}

.requirement-card {
  display: flex;
  flex-direction: column;
}

.requirement-card .panel-kicker {
  margin: 0;
  color: rgba(255, 195, 144, 0.86);
}

.requirement-card h3 {
  margin-top: 8px;
}

.requirements-list {
  gap: 9px;
}

.requirements-list li {
  padding-left: 30px;
}

.requirements-list li::before {
  content: "✓";
  top: 0.16em;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 139, 56, 0.3);
  border-radius: 50%;
  background: rgba(255, 139, 56, 0.1);
  box-shadow: 0 0 0 4px rgba(255, 139, 56, 0.06);
  color: var(--orange-bright);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.requirement-note {
  margin: auto 0 0;
  border-top: 1px solid rgba(255, 139, 56, 0.14);
  padding-top: 18px;
  color: rgba(255, 226, 199, 0.8);
  font-size: 0.95rem;
}

.category-card strong {
  display: block;
  margin-top: 22px;
  color: rgba(255, 226, 199, 0.96);
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 800;
}

.category-card.has-media strong {
  margin-top: 18px;
}

.vehicle-card.has-media .spec-grid {
  margin-top: auto;
  padding-top: 2px;
}

.empty-state {
  background:
    radial-gradient(circle at top right, rgba(255, 139, 56, 0.14), transparent 14rem),
    linear-gradient(160deg, rgba(28, 22, 18, 0.96), rgba(15, 15, 18, 0.98));
  border-color: rgba(255, 255, 255, 0.09);
}

.empty-state .panel-kicker {
  color: rgba(255, 205, 166, 0.94);
}

.empty-state .mini-grid span,
.empty-state .spec-grid div {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-color: rgba(255, 139, 56, 0.16);
}

.state-motion {
  right: 16px;
  bottom: 14px;
  width: 92px;
  height: 92px;
  opacity: 0.5;
}

.state-motion .motion-fallback {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 139, 56, 0.28), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 64%);
  animation-duration: 6.8s;
}

.section-cta {
  margin-top: 32px;
  text-align: center;
}

.stack-top {
  margin-top: 22px;
}

.training-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-top: 34px;
}

.training-gallery-side {
  display: grid;
  gap: 18px;
}

.training-photo-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(255, 139, 56, 0.1), transparent 14rem),
    linear-gradient(155deg, rgba(20, 21, 26, 0.96), rgba(9, 9, 11, 0.98));
  box-shadow: var(--shadow-card);
  padding: 0;
}

.training-photo-card.large {
  min-height: 518px;
}

.training-photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.02);
}

.training-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.78)),
    linear-gradient(135deg, rgba(255, 139, 56, 0.08), transparent 48%);
  pointer-events: none;
}

.training-photo-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(8, 8, 10, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 14px 16px;
}

.training-photo-card strong {
  color: var(--white);
  font-family: var(--font-headline);
  font-size: 1.28rem;
  line-height: 1.1;
}

.training-photo-card small {
  color: rgba(245, 241, 235, 0.66);
  line-height: 1.45;
}

.vehicle-preview {
  position: relative;
  isolation: isolate;
  min-height: 320px;
  display: grid;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 139, 56, 0.16), transparent 12rem),
    linear-gradient(145deg, rgba(27, 29, 35, 0.96), rgba(12, 12, 15, 0.98));
  box-shadow: var(--shadow-card);
  padding: 22px;
}

.vehicle-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 255, 255, 0.08), transparent 34%);
  opacity: 0;
  transition: opacity 280ms ease;
}

.vehicle-preview:hover::after {
  opacity: 1;
}

.vehicle-preview-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(180px, 0.78fr);
  gap: 16px;
  width: 100%;
  min-height: 100%;
}

.vehicle-preview-main {
  aspect-ratio: 4 / 3;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) - 6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  background: linear-gradient(155deg, rgba(20, 21, 26, 0.96), rgba(9, 9, 11, 0.98));
  padding: clamp(8px, 1.1vw, 14px);
}

.vehicle-preview-side {
  display: grid;
  gap: 16px;
}

.vehicle-preview-side-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) - 6px);
  aspect-ratio: 4 / 3;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  background: linear-gradient(155deg, rgba(20, 21, 26, 0.96), rgba(9, 9, 11, 0.98));
  padding: clamp(8px, 1vw, 12px);
}

.vehicle-preview-side-card-truck {
  aspect-ratio: 4 / 5;
}

.vehicle-preview-label {
  position: absolute;
  right: auto;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  display: grid;
  gap: 3px;
  width: fit-content;
  max-width: calc(100% - 28px);
  min-width: min(220px, calc(100% - 28px));
  padding: 14px 15px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius-sm) + 2px);
  background: linear-gradient(180deg, rgba(11, 11, 13, 0.48), rgba(11, 11, 13, 0.82));
  backdrop-filter: blur(10px);
}

.vehicle-preview-motion {
  right: 16px;
  bottom: 16px;
  width: 160px;
  height: 96px;
  opacity: 0.52;
}

.vehicle-preview span {
  width: min(78%, 360px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 2px solid rgba(255, 139, 56, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  padding: 18px 20px;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
}

.review-preview {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(255, 139, 56, 0.12), transparent 14rem),
    linear-gradient(155deg, rgba(22, 23, 28, 0.96), rgba(10, 10, 12, 0.98));
  box-shadow: var(--shadow-card);
  padding: 28px;
}

.review-preview p {
  margin: 0;
  color: rgba(245, 241, 235, 0.71);
}

.review-preview-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.review-mini {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius-sm) + 4px);
  background:
    radial-gradient(circle at top right, rgba(255, 139, 56, 0.11), transparent 9rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  padding: 18px;
}

.review-mini .review-rating {
  justify-self: start;
  font-size: 0.78rem;
  padding: 7px 10px;
}

.review-mini strong {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
}

.review-preview-actions {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 12px;
  min-width: min(100%, 260px);
}

.review-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--pointer-x, 72%) var(--pointer-y, 50%), rgba(255, 255, 255, 0.08), transparent 36%);
  opacity: 0;
  transition: opacity 280ms ease;
}

.review-preview:hover::after {
  opacity: 1;
}

.review-preview-motion {
  top: 50%;
  right: 18px;
  width: 120px;
  height: 120px;
  opacity: 0.38;
  transform: translateY(-50%);
}

.map-card {
  min-height: 300px;
  display: grid;
  place-items: end start;
  padding: 28px;
  background:
    radial-gradient(circle at 54% 42%, rgba(255, 139, 56, 0.22), transparent 5rem),
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.045), transparent 14rem),
    linear-gradient(145deg, #242730, #101115);
}

.map-motion {
  top: 18px;
  right: 18px;
  width: 128px;
  height: 128px;
  opacity: 0.62;
}

.map-pin {
  position: absolute;
  top: 42%;
  left: 52%;
  width: 66px;
  height: 66px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 12px rgba(232, 102, 10, 0.12), 0 20px 52px rgba(232, 102, 10, 0.32);
}

.map-pin::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 25px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
}

.map-card strong,
.map-card small {
  position: relative;
  z-index: 1;
  display: block;
}

.map-card strong {
  font-family: var(--font-headline);
  font-size: 1.95rem;
  line-height: 1.1;
}

.map-card small {
  color: var(--orange-bright);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero {
  padding: 78px 0 88px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-hero .container {
  position: relative;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-transform: none;
}

.breadcrumb a {
  color: rgba(245, 241, 235, 0.58);
}

.breadcrumb span:last-child {
  color: rgba(245, 241, 235, 0.92);
}

.page-hero p {
  max-width: 700px;
  color: rgba(245, 241, 235, 0.74);
  font-size: 1.1rem;
  line-height: 1.82;
}

.page-hero-accent {
  top: 50%;
  right: clamp(0px, 2vw, 24px);
  width: clamp(180px, 24vw, 280px);
  height: clamp(180px, 24vw, 280px);
  opacity: 0.52;
  transform: translate3d(0, calc(-50% + var(--parallax-shift, 0px)), 0);
}

.page-hero-accent .motion-fallback {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 139, 56, 0.18), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 64%);
  animation-duration: 8.4s;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.spec-grid div {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: 14px;
}

.spec-grid dt {
  color: rgba(245, 241, 235, 0.46);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.spec-grid dd {
  margin: 0;
  color: var(--white);
  font-weight: 700;
}

.muted {
  color: var(--gray) !important;
  font-style: normal;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 260px;
  gap: 18px;
}

.gallery-card {
  display: flex;
  align-items: flex-end;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.gallery-card.large {
  grid-row: span 2;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.82)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 28%),
    repeating-linear-gradient(-55deg, transparent 0, transparent 20px, rgba(255, 255, 255, 0.018) 20px, rgba(255, 255, 255, 0.018) 21px);
}

.gallery-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 139, 56, 0.2), transparent 16rem),
    radial-gradient(circle at 80% 82%, rgba(255, 255, 255, 0.05), transparent 16rem),
    linear-gradient(135deg, #252933, #101115);
  transition: transform 360ms cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.gallery-card-truck .gallery-visual,
.gallery-card-logo .gallery-visual {
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 139, 56, 0.14), transparent 12rem),
    linear-gradient(135deg, #252933, #101115);
}

.gallery-card-truck .gallery-visual img,
.gallery-card-logo .gallery-visual img {
  object-fit: contain;
  padding: 14px;
}

.gallery-card-logo .gallery-visual img {
  padding: 22px;
}

.gallery-card:hover .gallery-visual {
  transform: scale(1.038);
}

.gallery-card:hover::before {
  background:
    linear-gradient(180deg, transparent 26%, rgba(0, 0, 0, 0.82)),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 44%, transparent 76%),
    repeating-linear-gradient(-55deg, transparent 0, transparent 20px, rgba(255, 255, 255, 0.018) 20px, rgba(255, 255, 255, 0.018) 21px);
}

.gallery-card.is-empty .gallery-visual::before {
  content: "";
  position: absolute;
  inset: -20% -24%;
  background: linear-gradient(96deg, transparent 10%, rgba(255, 255, 255, 0.12) 48%, transparent 84%);
  opacity: 0.22;
  transform: translateX(-42%) rotate(-14deg);
  animation: cardSweep 8.8s ease-in-out infinite;
}

.gallery-card.is-empty .gallery-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255, 139, 56, 0.22) 48% 52%, transparent 52%),
    linear-gradient(transparent 0 48%, rgba(255, 139, 56, 0.16) 48% 52%, transparent 52%);
  opacity: 0.48;
  animation: tracePulse 7.6s ease-in-out infinite;
}

.gallery-card.is-empty .gallery-caption small {
  color: rgba(247, 247, 247, 0.76);
}

.gallery-caption {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 24px;
}

.gallery-caption strong {
  font-family: var(--font-headline);
  font-size: 1.62rem;
  line-height: 1.08;
}

.gallery-caption small {
  color: rgba(245, 241, 235, 0.66);
  font-size: 0.88rem;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: grid;
  place-items: center;
  align-items: center;
  padding: 22px;
}

.gallery-modal[hidden] {
  display: none !important;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.84);
  cursor: pointer;
}

.gallery-modal-panel {
  position: relative;
  width: min(100%, 760px);
  max-height: calc(100svh - 44px);
  overflow: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(255, 139, 56, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(255, 139, 56, 0.16), transparent 14rem),
    linear-gradient(155deg, rgba(23, 24, 30, 0.98), rgba(11, 11, 14, 0.98));
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}

.gallery-modal.is-open .gallery-modal-panel {
  transform: none;
  opacity: 1;
}

.gallery-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.gallery-modal-visual {
  height: 320px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 139, 56, 0.22), transparent 14rem),
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.045), transparent 12rem),
    repeating-linear-gradient(-55deg, transparent 0, transparent 22px, rgba(255, 255, 255, 0.03) 22px, rgba(255, 255, 255, 0.03) 23px),
    linear-gradient(135deg, #252933, #101115);
}

.gallery-modal-visual.is-photo {
  background-position: center;
  background-size: cover;
}

.gallery-modal-visual.is-contain {
  background-color: #101115;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.gallery-modal-panel h2 {
  margin: 24px 28px 8px;
  font-family: var(--font-headline);
}

.gallery-modal-panel p {
  margin: 0 28px 28px;
  color: var(--gray);
}

.faq-list {
  max-width: 920px;
  display: grid;
  gap: 12px;
  margin-inline: auto;
}

.faq-item {
  background:
    radial-gradient(circle at top right, rgba(255, 139, 56, 0.08), transparent 12rem),
    linear-gradient(155deg, rgba(20, 20, 24, 0.92), rgba(12, 12, 15, 0.96));
}

.faq-item.is-open,
.faq-item:hover {
  border-color: rgba(255, 139, 56, 0.32);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: transparent;
  color: rgba(245, 241, 235, 0.96);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  padding: 21px 24px;
  text-align: left;
  transition: color var(--transition), transform var(--transition);
}

.faq-item button span {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 1px solid rgba(232, 102, 10, 0.36);
  border-radius: 50%;
  background: rgba(232, 102, 10, 0.08);
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover button,
.faq-item.is-open button {
  color: var(--white);
}

.faq-item:hover button span {
  border-color: rgba(255, 139, 56, 0.42);
  background: rgba(255, 139, 56, 0.12);
  box-shadow: 0 0 0 6px rgba(255, 139, 56, 0.08);
  transform: rotate(90deg);
}

.faq-item.is-open button span {
  border-color: rgba(255, 139, 56, 0.42);
  background: rgba(255, 139, 56, 0.12);
  box-shadow: 0 0 0 6px rgba(255, 139, 56, 0.08);
  transform: none;
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
  background: var(--orange);
  transition: transform var(--transition);
}

.faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open button span::after {
  transform: translate(-50%, -50%);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms ease;
}

.faq-panel[hidden] {
  display: none;
}

.faq-panel > p {
  min-height: 0;
  overflow: hidden;
  padding: 0 24px;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-panel > p {
  padding-bottom: 22px;
}

.embed-map {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    linear-gradient(150deg, rgba(24, 25, 31, 0.96), rgba(12, 12, 15, 0.98));
  box-shadow: var(--shadow-card);
}

.embed-map iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.map-direct-action {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
  margin-top: 16px;
}

.map-direct-action .button {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  padding-inline: 18px;
  white-space: normal;
}

.contact-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.social-follow-section {
  isolation: isolate;
}

.social-follow-shell {
  display: grid;
  justify-items: center;
  gap: clamp(30px, 4vw, 42px);
}

.social-follow-head {
  display: grid;
  justify-items: center;
  max-width: 680px;
  text-align: center;
}

.social-follow-head .section-title {
  margin-bottom: 20px;
}

.social-follow-rule {
  position: relative;
  width: min(220px, 46vw);
  height: 1px;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.social-follow-rule::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 139, 56, 0.94), rgba(255, 232, 216, 0.92), transparent);
  transform: translateX(-110%);
  animation: socialRuleSweep 5.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.social-showcase {
  position: relative;
  isolation: isolate;
  width: min(100%, 760px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: clamp(18px, 3vw, 28px);
  padding: 10px 8px 24px;
}

.social-showcase::before {
  content: "";
  position: absolute;
  inset: auto 10% 8px;
  height: 54%;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 139, 56, 0.14), transparent 64%),
    radial-gradient(circle at 18% 50%, rgba(74, 132, 255, 0.12), transparent 46%),
    radial-gradient(circle at 84% 50%, rgba(0, 255, 224, 0.08), transparent 42%);
  filter: blur(16px);
  opacity: 0.9;
}

.social-card {
  --social-accent: rgba(255, 139, 56, 0.74);
  --social-accent-soft: rgba(255, 139, 56, 0.12);
  position: relative;
  isolation: isolate;
  min-height: 212px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background:
    radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 18%), rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02) 24%, rgba(255, 255, 255, 0.012)),
    linear-gradient(150deg, rgba(24, 25, 31, 0.98), rgba(11, 11, 14, 0.98));
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 24px 18px 22px;
  transform: translate3d(0, 0, 0);
  transition:
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 420ms ease,
    box-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms ease,
    background-color 420ms ease;
  will-change: transform;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.14) 48%, transparent 76%),
    radial-gradient(circle at 50% 100%, var(--social-accent-soft), transparent 64%);
  opacity: 0;
  transform: translateX(-120%);
  transition:
    opacity 380ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.social-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 23px;
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 18%), rgba(255, 255, 255, 0.16), transparent 38%);
  opacity: 0;
  transition: opacity 320ms ease;
}

.social-card-icon {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition:
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms ease,
    filter 420ms ease;
}

.social-card-icon svg {
  width: 48px;
  height: 48px;
  display: block;
}

.social-card--instagram {
  --social-accent: rgba(255, 115, 163, 0.76);
  --social-accent-soft: rgba(255, 115, 163, 0.16);
}

.social-card--instagram .social-card-icon {
  background:
    radial-gradient(circle at 22% 82%, rgba(255, 201, 74, 0.95), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(159, 73, 255, 0.92), transparent 34%),
    linear-gradient(135deg, #ff7b2f, #ea3d79 48%, #673cff);
}

.social-card--instagram svg {
  fill: none;
  stroke: #fffaf7;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-card--facebook {
  --social-accent: rgba(93, 143, 255, 0.78);
  --social-accent-soft: rgba(93, 143, 255, 0.15);
}

.social-card--facebook .social-card-icon {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(145deg, #3979ff, #1744b7);
}

.social-card--facebook svg {
  fill: #fffaf7;
}

.social-card--tiktok {
  --social-accent: rgba(0, 255, 224, 0.66);
  --social-accent-soft: rgba(0, 255, 224, 0.12);
}

.social-card--tiktok .social-card-icon {
  background:
    radial-gradient(circle at 22% 18%, rgba(0, 255, 224, 0.28), transparent 34%),
    radial-gradient(circle at 78% 78%, rgba(255, 63, 145, 0.28), transparent 36%),
    linear-gradient(145deg, #16181f, #090a0f);
}

.social-card--tiktok svg {
  fill: #fffaf7;
  filter:
    drop-shadow(-2px 0 0 rgba(0, 255, 224, 0.62))
    drop-shadow(2px 0 0 rgba(255, 63, 145, 0.54));
}

.social-card-label {
  color: rgba(245, 241, 235, 0.94);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.social-card:hover,
.social-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  outline: none;
}

.social-card:hover::before,
.social-card:focus-visible::before {
  opacity: 1;
  transform: translateX(120%);
}

.social-card:hover::after,
.social-card:focus-visible::after {
  opacity: 1;
}

.social-card:hover .social-card-icon,
.social-card:focus-visible .social-card-icon {
  transform: translateY(-4px) scale(1.08);
}

.social-card:focus-visible {
  outline: 2px solid rgba(255, 222, 195, 0.94);
  outline-offset: 6px;
}

@media (hover: hover) and (pointer: fine) {
  .social-showcase:hover .social-card--facebook {
    transform: translate3d(-18px, -18px, 0) rotate(-8deg);
    box-shadow:
      0 28px 68px rgba(0, 0, 0, 0.4),
      0 0 0 1px rgba(93, 143, 255, 0.12),
      0 0 34px rgba(93, 143, 255, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .social-showcase:hover .social-card--instagram {
    z-index: 2;
    transform: translate3d(0, -30px, 0) scale(1.09);
    box-shadow:
      0 34px 78px rgba(0, 0, 0, 0.46),
      0 0 0 1px rgba(255, 160, 200, 0.14),
      0 0 42px rgba(255, 109, 150, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .social-showcase:hover .social-card--tiktok {
    transform: translate3d(18px, -18px, 0) rotate(8deg);
    box-shadow:
      0 28px 68px rgba(0, 0, 0, 0.42),
      0 0 0 1px rgba(0, 255, 224, 0.1),
      0 0 34px rgba(0, 255, 224, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .social-showcase .social-card--facebook:hover,
  .social-showcase .social-card--facebook:focus-visible {
    transform: translate3d(-24px, -30px, 0) rotate(-11deg) scale(1.03);
    box-shadow:
      0 34px 82px rgba(0, 0, 0, 0.46),
      0 0 0 1px rgba(93, 143, 255, 0.18),
      0 0 42px rgba(93, 143, 255, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .social-showcase .social-card--instagram:hover,
  .social-showcase .social-card--instagram:focus-visible {
    transform: translate3d(0, -40px, 0) scale(1.14);
    box-shadow:
      0 40px 92px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 178, 207, 0.22),
      0 0 56px rgba(255, 109, 150, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
  }

  .social-showcase .social-card--tiktok:hover,
  .social-showcase .social-card--tiktok:focus-visible {
    transform: translate3d(24px, -30px, 0) rotate(11deg) scale(1.03);
    box-shadow:
      0 34px 82px rgba(0, 0, 0, 0.48),
      0 0 0 1px rgba(0, 255, 224, 0.16),
      0 0 44px rgba(0, 255, 224, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .social-showcase .social-card--tiktok:hover .social-card-icon,
  .social-showcase .social-card--tiktok:focus-visible .social-card-icon {
    animation: socialTikTokPulse 760ms ease;
  }
}

.site-footer {
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 139, 56, 0.08), transparent 16rem),
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.035), transparent 14rem),
    linear-gradient(180deg, #09090a, #070708);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.28fr) minmax(220px, 0.9fr) minmax(220px, 0.9fr);
  gap: 36px;
  padding-bottom: 42px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: rgba(245, 241, 235, 0.45);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: rgba(245, 241, 235, 0.68);
}

.site-footer .footer-grid nav,
.site-footer .footer-grid > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer .brand {
  align-items: center;
  margin-bottom: 4px;
}

.site-footer .brand-logo-mark {
  width: 72px;
  height: 72px;
  padding: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-footer .brand-logo-mark img {
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.34));
}

.site-footer .brand strong {
  font-size: 1.72rem;
}

.site-footer a:hover {
  color: rgba(255, 222, 195, 0.96);
}

.site-footer .footer-grid nav a,
.site-footer .footer-grid > div > a:not(.brand) {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.footer-contact {
  min-width: 0;
}

.footer-social {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer .footer-social h3 {
  margin: 0;
  color: rgba(245, 241, 235, 0.45);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-social-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.footer-social-link {
  --footer-social-accent: rgba(255, 139, 56, 0.52);
  --footer-social-accent-soft: rgba(255, 139, 56, 0.14);
  position: relative;
  isolation: isolate;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  width: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background:
    radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 0%), rgba(255, 255, 255, 0.14), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.012);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: rgba(245, 241, 235, 0.84);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  padding: 9px 14px 9px 10px;
  transform: translate3d(0, 0, 0);
  transition:
    color 320ms ease,
    border-color 320ms ease,
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(112deg, transparent 18%, rgba(255, 255, 255, 0.16) 48%, transparent 76%),
    radial-gradient(circle at 50% 100%, var(--footer-social-accent-soft), transparent 72%);
  opacity: 0;
  transform: translateX(-118%);
  transition:
    opacity 300ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-social-link svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: block;
  transition:
    filter 360ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-social-link span {
  white-space: nowrap;
}

.footer-social-link--instagram {
  --footer-social-accent: rgba(255, 118, 166, 0.72);
  --footer-social-accent-soft: rgba(255, 118, 166, 0.18);
}

.footer-social-link--instagram svg {
  fill: none;
  stroke: rgba(255, 250, 247, 0.96);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-link--facebook {
  --footer-social-accent: rgba(93, 143, 255, 0.76);
  --footer-social-accent-soft: rgba(93, 143, 255, 0.16);
  margin-top: 5px;
}

.footer-social-link--facebook svg {
  fill: rgba(255, 250, 247, 0.96);
}

.footer-social-link--tiktok {
  --footer-social-accent: rgba(0, 255, 224, 0.62);
  --footer-social-accent-soft: rgba(0, 255, 224, 0.14);
  margin-top: -4px;
}

.footer-social-link--tiktok svg {
  fill: rgba(255, 250, 247, 0.96);
  filter:
    drop-shadow(-1px 0 0 rgba(0, 255, 224, 0.54))
    drop-shadow(1px 0 0 rgba(255, 63, 145, 0.46));
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  outline: none;
}

.footer-social-link:hover::before,
.footer-social-link:focus-visible::before {
  opacity: 1;
  transform: translateX(118%);
}

.footer-social-link:hover svg,
.footer-social-link:focus-visible svg {
  transform: translateY(-1px) scale(1.08);
}

.footer-social-link:focus-visible {
  outline: 2px solid rgba(255, 222, 195, 0.94);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .footer-social-cluster:hover .footer-social-link--instagram {
    transform: translate3d(0, -2px, 0) scale(1.01);
  }

  .footer-social-cluster:hover .footer-social-link--facebook {
    transform: translate3d(0, -2px, 0) rotate(-2deg);
  }

  .footer-social-cluster:hover .footer-social-link--tiktok {
    transform: translate3d(0, -2px, 0) rotate(2deg);
  }

  .footer-social-cluster .footer-social-link--instagram:hover,
  .footer-social-cluster .footer-social-link--instagram:focus-visible {
    transform: translate3d(0, -5px, 0) scale(1.06);
    border-color: rgba(255, 178, 207, 0.3);
    box-shadow:
      0 20px 42px rgba(0, 0, 0, 0.32),
      0 0 0 1px rgba(255, 160, 200, 0.12),
      0 0 28px rgba(255, 109, 150, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .footer-social-cluster .footer-social-link--facebook:hover,
  .footer-social-cluster .footer-social-link--facebook:focus-visible {
    transform: translate3d(0, -6px, 0) rotate(-4deg);
    border-color: rgba(147, 182, 255, 0.3);
    box-shadow:
      0 20px 42px rgba(0, 0, 0, 0.32),
      0 0 0 1px rgba(93, 143, 255, 0.12),
      0 0 28px rgba(93, 143, 255, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .footer-social-cluster .footer-social-link--tiktok:hover,
  .footer-social-cluster .footer-social-link--tiktok:focus-visible {
    transform: translate3d(0, -6px, 0) rotate(4deg);
    border-color: rgba(0, 255, 224, 0.24);
    box-shadow:
      0 20px 42px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(0, 255, 224, 0.1),
      0 0 28px rgba(0, 255, 224, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}

.footer-legal-wrap {
  padding-bottom: 18px;
}

.footer-legal-strip {
  position: relative;
  isolation: isolate;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 26px);
  overflow: hidden;
  border: 1px solid rgba(132, 162, 201, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(101, 127, 160, 0.12), rgba(255, 255, 255, 0.028) 46%, rgba(217, 101, 18, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)),
    rgba(11, 12, 15, 0.88);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 0 1px rgba(255, 139, 56, 0.03);
  padding: 14px clamp(18px, 3vw, 28px);
}

.footer-legal-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 50%, rgba(115, 154, 198, 0.18), transparent 18rem),
    radial-gradient(circle at 82% 50%, rgba(255, 139, 56, 0.12), transparent 15rem);
  opacity: 0.9;
}

.footer-legal-strip::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.12) 50%, transparent 80%);
  opacity: 0;
  transform: translateX(-120%);
  pointer-events: none;
}

.footer-legal-strip.is-visible {
  animation: legalStripLift 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.footer-legal-strip.is-visible::after {
  animation: legalStripSweep 1300ms 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.footer-legal-link {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(245, 241, 235, 0.82);
  font-size: 0.94rem;
  font-weight: 650;
  padding: 10px 4px;
  transition: color var(--transition), transform var(--transition), text-shadow var(--transition);
}

.footer-legal-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 139, 56, 0.86), rgba(255, 255, 255, 0.72), transparent);
  opacity: 0;
  transform: translateX(-28%) scaleX(0.28);
  transform-origin: left center;
  transition: opacity var(--transition), transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-legal-link:hover,
.footer-legal-link:focus-visible {
  color: var(--white);
  text-shadow: 0 0 18px rgba(255, 139, 56, 0.18);
  transform: translateY(-2px);
}

.footer-legal-link:hover::after,
.footer-legal-link:focus-visible::after {
  opacity: 1;
  transform: translateX(0) scaleX(1);
}

.legal-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: rgba(213, 223, 235, 0.74);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 0 rgba(255, 139, 56, 0));
  transition: stroke var(--transition), filter var(--transition), transform var(--transition);
}

.footer-legal-link:hover .legal-icon,
.footer-legal-link:focus-visible .legal-icon {
  stroke: rgba(255, 222, 195, 0.98);
  filter: drop-shadow(0 0 8px rgba(255, 139, 56, 0.4));
  transform: translateY(-1px);
}

.footer-legal-separator {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 139, 56, 0.42);
  box-shadow: 0 0 0 0 rgba(255, 139, 56, 0.12);
}

.footer-legal-strip.is-visible .footer-legal-link,
.footer-legal-strip.is-visible .footer-legal-separator {
  animation: legalItemReveal 620ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.footer-legal-strip.is-visible .footer-legal-separator {
  animation-name: legalDotReveal, legalDotPulse;
  animation-duration: 620ms, 3.4s;
  animation-delay: 120ms, 1s;
  animation-fill-mode: backwards, none;
  animation-iteration-count: 1, infinite;
}

.footer-legal-strip.is-visible .footer-legal-link:first-child {
  animation-delay: 60ms;
}

.footer-legal-strip.is-visible .footer-legal-link:last-child {
  animation-delay: 180ms;
}

.footer-bottom {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.045);
}

.footer-bottom p {
  margin: 0;
  color: rgba(245, 241, 235, 0.46);
}

.copyright-mark {
  color: rgba(255, 222, 195, 0.82);
  text-shadow: 0 0 16px rgba(255, 139, 56, 0.16);
}

.mobile-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 999;
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(18, 18, 21, 0.96), rgba(9, 9, 10, 0.98)),
    rgba(9, 9, 10, 0.97);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  padding: 10px 16px max(10px, env(safe-area-inset-bottom));
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

body.nav-open .mobile-cta,
body.modal-open .mobile-cta {
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(100%);
}

.mobile-cta a {
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background-color var(--transition);
}

.mobile-cta a:first-child {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, #cb560b, #ff8b38);
}

.mobile-cta a:hover,
.mobile-cta a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
}

.reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 28px, 0) scale(0.985);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 860ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}

.reveal.is-visible {
  opacity: 1;
  filter: none;
  transform: none;
}

.reveal-delay-1 { --reveal-delay: 110ms; }
.reveal-delay-2 { --reveal-delay: 220ms; }
.reveal-delay-3 { --reveal-delay: 330ms; }

.social-card.reveal.is-visible {
  transition:
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 420ms ease,
    box-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms ease,
    background-color 420ms ease;
}

@keyframes motionPulse {
  0%, 100% { transform: scale(0.92); opacity: 0.44; }
  50% { transform: scale(1.06); opacity: 0.82; }
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 72px, 72px 0; }
}

@keyframes roadGlow {
  0% { opacity: 0.28; }
  100% { opacity: 0.48; }
}

@keyframes orbitFloat {
  0%, 100% { transform: translate3d(0, calc(var(--parallax-shift, 0px) - 12px), 0) scale(0.98); }
  50% { transform: translate3d(0, calc(var(--parallax-shift, 0px) + 10px), 0) scale(1.04); }
}

@keyframes haloPulse {
  0%, 100% { transform: scale(0.96); opacity: 0.34; }
  50% { transform: scale(1.06); opacity: 0.68; }
}

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

@keyframes heroSweep {
  0%, 100% { opacity: 0.18; transform: translate3d(0, var(--parallax-shift, 0px), 0) rotate(-14deg) translateX(-8%); }
  50% { opacity: 0.56; transform: translate3d(0, var(--parallax-shift, 0px), 0) rotate(-14deg) translateX(8%); }
}

@keyframes routeGlow {
  0%, 100% { transform: scaleX(0.94); opacity: 0.28; }
  50% { transform: scaleX(1.04); opacity: 0.72; }
}

@keyframes stripSweep {
  0%, 100% { transform: translateX(-72%); opacity: 0; }
  18% { opacity: 0.14; }
  55% { opacity: 0.26; }
  100% { transform: translateX(72%); opacity: 0; }
}

@keyframes accentFlow {
  from { background-position: 0% 0; }
  to { background-position: 220% 0; }
}

@keyframes ambientTrace {
  from { transform: translate3d(0, 0, 0); opacity: 0.76; }
  to { transform: translate3d(0, -18px, 0); opacity: 1; }
}

@keyframes ambientGlow {
  0% { opacity: 0.32; }
  100% { opacity: 0.72; }
}

@keyframes cardSweep {
  0%, 100% { transform: translateX(-42%) rotate(-14deg); opacity: 0; }
  18% { opacity: 0.14; }
  50% { opacity: 0.32; }
  100% { transform: translateX(42%) rotate(-14deg); opacity: 0; }
}

@keyframes tracePulse {
  0%, 100% { opacity: 0.28; }
  50% { opacity: 0.68; }
}

@keyframes legalStripLift {
  from { box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04); }
  to { box-shadow: 0 24px 64px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 0 0 1px rgba(255, 139, 56, 0.03); }
}

@keyframes legalStripSweep {
  0% { opacity: 0; transform: translateX(-120%); }
  18% { opacity: 0.24; }
  100% { opacity: 0; transform: translateX(120%); }
}

@keyframes legalItemReveal {
  from { opacity: 0; transform: translate3d(0, 10px, 0); }
  to { opacity: 1; transform: none; }
}

@keyframes legalDotReveal {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes legalDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 139, 56, 0.12); opacity: 0.72; }
  50% { box-shadow: 0 0 0 7px rgba(255, 139, 56, 0); opacity: 1; }
}

@keyframes socialRuleSweep {
  0%, 18% { transform: translateX(-110%); opacity: 0; }
  34%, 58% { opacity: 1; }
  72%, 100% { transform: translateX(110%); opacity: 0; }
}

@keyframes socialTikTokPulse {
  0%, 100% { transform: translateY(-4px) scale(1.08); }
  42% { transform: translateY(-7px) scale(1.13); }
}

@media (max-width: 1180px) {
  .header-phone { display: none; }
  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 20px;
    left: auto;
    z-index: 1001;
    width: min(420px, calc(100% - 40px));
    display: none;
    max-height: calc(100svh - var(--header-height) - 24px - env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    background:
      radial-gradient(circle at top right, rgba(255, 139, 56, 0.12), transparent 12rem),
      linear-gradient(160deg, rgba(18, 18, 22, 0.99), rgba(10, 10, 12, 0.99));
    padding: 12px 12px max(12px, env(safe-area-inset-bottom));
    box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    -webkit-overflow-scrolling: touch;
  }
  .site-header.is-open .site-nav { display: grid; }
  .site-nav a { min-height: 46px; display: flex; align-items: center; padding-inline: 14px; white-space: normal; }
  .menu-button { display: grid; }
  .hero-layout,
  .split,
  .split.reverse,
  .legal-layout,
  .contact-grid,
  .training-gallery { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 5rem; }
  .page-hero h1 { font-size: 4.15rem; }
  .section-title { font-size: 3rem; }
  .hero-orbit { width: clamp(220px, 28vw, 340px); right: 2%; }
  .hero-lottie { width: clamp(200px, 28vw, 320px); height: clamp(116px, 16vw, 190px); }
  .page-hero-accent { width: 210px; height: 210px; opacity: 0.42; }
  .section-head-accent { width: 138px; height: 138px; top: -26px; right: -16px; }
  .review-preview-motion { width: 104px; height: 104px; }
  .map-motion { width: 110px; height: 110px; }
  .instructor-grid { grid-template-columns: 1fr; }
  .instructor-card { grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr); }
  .card-grid.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-card.large { grid-row: span 1; }
  .vehicle-preview-grid { grid-template-columns: minmax(0, 1fr); }
  .vehicle-preview-main { aspect-ratio: 16 / 10; }
  .vehicle-preview-side { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vehicle-preview-side-card-truck { aspect-ratio: 4 / 3; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 901px) {
  .resource-story-reverse .resource-story-media {
    order: 2;
  }
}

@media (max-width: 900px) {
  .resource-story {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 701px) and (max-width: 1180px) {
  .requirements-grid .requirement-card-wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  :root { --header-height: 68px; --section-y: 70px; }
  body { padding-bottom: 80px; }
  .container { width: min(100% - 32px, 1200px); }
  .loader-shell { padding: 30px; }
  .loader-logo { width: 94px; height: 94px; }
  .brand { gap: 11px; }
  .site-header .brand-logo-mark { width: 42px; height: 42px; }
  .brand strong { font-size: 1.42rem; }
  .hero { min-height: auto; }
  .hero-layout { padding: 54px 0; }
  .page-hero { padding: 60px 0 68px; }
  .hero-copy h1 { font-size: 3.35rem; }
  .page-hero h1 { font-size: 2.95rem; }
  .section-title { font-size: 2.4rem; }
  .hero-copy p,
  .page-hero p,
  .section-copy {
    font-size: 1rem;
    line-height: 1.72;
  }
  .section-head { margin-bottom: 34px; }
  .hero-road { right: -2%; width: 70%; opacity: 0.3; }
  .hero-motion { inset: 0; }
  .hero-orbit { width: 188px; top: 6%; right: -10px; opacity: 0.3; }
  .hero-lottie { right: -10px; bottom: 3%; width: 184px; height: 106px; opacity: 0.34; }
  .hero-sweep { display: none; }
  .page-hero-accent { width: 164px; height: 164px; right: -12px; opacity: 0.34; }
  .section-head-accent,
  .review-preview-motion,
  .map-motion { display: none; }
  .vehicle-preview-motion { width: 124px; height: 74px; opacity: 0.38; }
  .state-motion { width: 76px; height: 76px; }
  .button,
  .hero-actions,
  .button-row { width: 100%; }
  .hero-actions .button,
  .button-row .button { flex: 1 1 100%; }
  .center-actions { justify-content: stretch; }
  .hero-card,
  .page-card { padding: 28px; }
  .card-grid.three,
  .card-grid.two,
  .gallery-grid,
  .spec-grid,
  .contact-mini-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal-strip {
    min-height: 0;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
    padding: 14px 16px;
  }
  .footer-legal-link {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .footer-legal-link::after {
    right: 18px;
    left: 18px;
  }
  .footer-legal-separator {
    width: 34px;
    height: 1px;
    align-self: center;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(255, 139, 56, 0.44), transparent);
  }
  .footer-social {
    margin-top: 10px;
    padding-top: 16px;
  }
  .footer-social-cluster {
    gap: 9px;
  }
  .footer-social-link {
    min-height: 48px;
  }
  .footer-social-link--facebook,
  .footer-social-link--tiktok {
    margin-top: 0;
  }
  .resource-story {
    gap: 18px;
    padding: 18px;
  }
  .resource-story-content h3 {
    font-size: 1.28rem;
  }
  .resource-story-portrait .resource-story-media img {
    max-height: none;
  }
  .site-nav { right: 16px; left: 16px; width: auto; }
  .review-preview { grid-template-columns: 1fr; gap: 18px; padding: 22px; }
  .review-preview-list { grid-template-columns: 1fr; }
  .review-preview-actions { width: 100%; min-width: 0; }
  .review-card-head { flex-direction: column; }
  .review-rating { justify-content: flex-start; }
  .review-card blockquote { font-size: 0.98rem; line-height: 1.74; }
  .google-review-actions { flex-direction: column; }
  .quick-strip-inner { justify-content: stretch; }
  .quick-strip span { min-width: 0; width: 100%; }
  .instructor-card { grid-template-columns: 1fr; gap: 18px; padding: 24px; }
  .instructor-portrait { min-height: 220px; aspect-ratio: 4 / 3; }
  .instructor-portrait .portrait-placeholder { padding: 24px; }
  .team-preview-card { max-width: none; padding: 20px; }
  .team-preview-list { grid-template-columns: 1fr; }
  .team-mini-portrait { min-height: 150px; aspect-ratio: 16 / 9; }
  .portrait-caption { right: 18px; bottom: 18px; left: 18px; }
  .portrait-card.has-photo { padding: 6px; }
  .category-media,
  .vehicle-media,
  .vehicle-preview-main,
  .vehicle-preview-side-card { border-radius: calc(var(--radius-sm) + 2px); }
  .vehicle-preview { min-height: auto; padding: 18px; }
  .vehicle-preview-side { grid-template-columns: 1fr; }
  .vehicle-preview-main { aspect-ratio: 4 / 3; }
  .vehicle-preview-side-card-truck { aspect-ratio: 3 / 4; }
  .vehicle-preview-label { right: 12px; bottom: 12px; left: 12px; width: auto; max-width: none; min-width: 0; padding: 12px; }
  .vehicle-preview-label strong { font-size: 1.08rem; }
  .vehicle-preview-label small { font-size: 0.8rem; }
  .category-media,
  .vehicle-media { padding: 10px; }
  .gallery-grid { grid-auto-rows: 230px; }
  .training-gallery-side { grid-template-columns: 1fr; }
  .training-photo-card,
  .training-photo-card.large { min-height: 260px; }
  .gallery-caption { padding: 20px; }
  .gallery-modal { padding: 16px; }
  .gallery-modal-visual { height: 190px; }
  .faq-item button { padding: 18px; font-size: 0.98rem; }
  .faq-panel > p { padding-inline: 18px; }
  .contact-card { padding: 24px; }
  .contact-actions { gap: 10px; }
  .contact-actions .button { min-height: 52px; width: 100%; }
  .social-follow-shell { gap: 24px; }
  .social-follow-head .section-title { margin-bottom: 16px; }
  .social-showcase {
    width: min(100%, 340px);
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
  }
  .social-showcase::before {
    inset: 8% 4% 8px;
    height: auto;
  }
  .social-card {
    min-height: 176px;
    border-radius: 20px;
    padding: 20px 18px;
  }
  .social-card::after { border-radius: 19px; }
  .social-card-icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
  }
  .social-card-icon svg {
    width: 42px;
    height: 42px;
  }
  .map-direct-action { grid-template-columns: 1fr; gap: 10px; margin-top: 14px; }
  .map-direct-action .button { width: 100%; }
  .embed-map {
    aspect-ratio: 4 / 3;
    min-height: 330px;
    border-radius: calc(var(--radius-sm) + 4px);
  }
  .embed-map iframe { min-height: 0; }
  .mobile-cta { display: grid; }
  .mobile-cta a { line-height: 1.1; }
  .site-footer .brand-logo-mark { width: 62px; height: 62px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding: 18px 0; }
}

@media (max-width: 420px) {
  .container { width: min(100% - 28px, 1200px); }
  .loader-shell { width: min(92vw, 360px); padding: 24px; }
  .brand small { display: none; }
  .brand strong { font-size: 1.32rem; }
  .brand-wordmark .wordmark-u { height: 1.14em; }
  .brand-wordmark .wordmark-hard { font-size: 1.18em; }
  .site-header .brand-logo-mark { width: 40px; height: 40px; }
  .hero-copy h1 { font-size: 2.84rem; }
  .page-hero h1 { font-size: 2.5rem; }
  .section-title { font-size: 2.08rem; }
  .button { padding-inline: 18px; }
  .hero-orbit { width: 164px; right: -14px; opacity: 0.24; }
  .hero-lottie { right: -14px; width: 160px; height: 96px; opacity: 0.28; }
  .hero-tags span { width: 100%; justify-content: center; }
  .breadcrumb { border-radius: var(--radius-sm); }
  .category-card,
  .info-card,
  .instructor-card,
  .vehicle-card,
  .review-card,
  .contact-card,
  .team-preview-card { padding: 24px; }
  .instructor-portrait { min-height: 200px; }
  .training-photo-card figcaption { right: 14px; bottom: 14px; left: 14px; padding: 12px; }
  .review-mini { padding: 16px; }
  .review-rating { font-size: 0.82rem; }
  .category-media,
  .vehicle-media { aspect-ratio: 1 / 1; }
  .category-media-truck,
  .vehicle-media-truck { aspect-ratio: 3 / 4; }
  .gallery-grid { grid-auto-rows: 210px; }
  .spec-grid { grid-template-columns: 1fr; }
  .embed-map { aspect-ratio: 1 / 1; min-height: 300px; }
  .mobile-cta { padding-inline: 10px; }
  .mobile-cta a { font-size: 0.68rem; }
}

@media (max-width: 360px) {
  .container { width: min(100% - 24px, 1200px); }
  .brand { gap: 9px; }
  .brand strong { font-size: 1.2rem; }
  .site-header .brand-logo-mark { width: 36px; height: 36px; border-radius: 10px; }
  .site-header .brand-logo-mark img { border-radius: 10px; }
  .menu-button { width: 42px; height: 42px; }
  .hero-copy h1 { font-size: 2.65rem; }
  .page-hero h1 { font-size: 2.25rem; }
  .section-title { font-size: 1.92rem; }
  .hero-card,
  .page-card,
  .category-card,
  .info-card,
  .instructor-card,
  .vehicle-card,
  .review-card,
  .contact-card,
  .team-preview-card { padding: 22px; }
  .gallery-caption strong { font-size: 1.34rem; }
  .embed-map { aspect-ratio: 1 / 1; min-height: 280px; }
  .mobile-cta { gap: 6px; padding-inline: 8px; }
  .mobile-cta a { min-height: 44px; font-size: 0.62rem; padding-inline: 4px; }
}

@media (max-width: 1180px) and (max-height: 560px) {
  .site-nav {
    max-height: calc(100svh - var(--header-height) - 12px);
    padding: 8px;
  }
  .site-nav a {
    min-height: 40px;
    padding-block: 8px;
  }
}

@media (max-width: 900px) and (max-height: 520px) {
  body { padding-bottom: 0; }
  .hero-layout { padding: 34px 0 42px; }
  .page-hero { padding: 38px 0 46px; }
  .hero-orbit,
  .hero-lottie,
  .page-hero-accent { display: none; }
  .mobile-cta { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal { opacity: 1; transform: none; }
  .site-loader { display: none; }
  .footer-legal-strip.is-visible,
  .footer-legal-strip.is-visible::after,
  .footer-legal-strip.is-visible .footer-legal-link,
  .footer-legal-strip.is-visible .footer-legal-separator {
    animation: none;
  }
  .social-follow-rule::before,
  .social-card,
  .social-card::before,
  .social-card-icon,
  .footer-social-link,
  .footer-social-link::before,
  .footer-social-link svg {
    animation: none;
    transform: none !important;
  }
}
