/* ==========================================================================
   R.B. AUTO — Autoservis Zlaté Moravce
   Design system + layout. Blue/white premium, technical, airy.
   ========================================================================== */

/* ---------- Design tokens ------------------------------------------------ */
:root {
  /* Brand palette */
  --navy-900: #060F22;   /* deepest ink */
  --navy-800: #0B1E3F;   /* base navy */
  --navy-700: #10294f;
  --royal:    #1E5CE6;   /* primary action */
  --royal-600:#1a51cc;
  --accent:   #4C9AFF;   /* bright accent */
  --accent-glow: rgba(76, 154, 255, .55);

  /* Logo red — secondary accent only (blue stays primary) */
  --red:      #A81E23;   /* on light backgrounds */
  --red-deep: #8B1518;   /* hover / pressed */
  --red-soft: #E5484D;   /* on dark backgrounds (AA on navy) */
  --red-tint: rgba(168, 30, 35, .09);
  --red-glow: rgba(168, 30, 35, .30);

  --white:    #FFFFFF;
  --mist:     #F4F7FB;   /* light section bg */
  --mist-2:   #eaf0f9;
  --line:     #e2e9f4;   /* hairline on light */
  --line-dark: rgba(255,255,255,.10);

  --ink:      #0c1830;   /* body text on light */
  --ink-soft: #45536e;   /* secondary text on light */
  --ink-faint:#8595b0;
  --on-dark:  #eaf1ff;
  --on-dark-soft: #9db3d9;

  /* Type */
  --font-head: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --container: 1220px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(11,30,63,.06);
  --shadow-md: 0 18px 40px -18px rgba(11,30,63,.28);
  --shadow-lg: 0 40px 80px -30px rgba(11,30,63,.40);
  --shadow-blue: 0 24px 50px -20px rgba(30,92,230,.55);
  --shadow-red: 0 20px 44px -20px rgba(168,30,35,.55);

  --ease: cubic-bezier(.22,.61,.36,1);
  --nav-h: 76px;
}

/* ---------- Reset -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- Typography --------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.05; letter-spacing: -.02em; color: var(--ink); }
.h-xl { font-size: clamp(2.6rem, 6.2vw, 5rem); font-weight: 700; }
.h-lg { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
strong { font-weight: 600; }

/* ---------- Layout helpers ---------------------------------------------- */
.container { width: min(100% - var(--gutter) * 2, var(--container)); margin-inline: auto; }
.section { padding: clamp(54px, 7vw, 104px) 0; position: relative; }
.section--tight { padding: clamp(42px, 5vw, 72px) 0; }
.section--mist { background: var(--mist); }
.section--dark { background: var(--navy-900); color: var(--on-dark); }
.section--dark h1,.section--dark h2,.section--dark h3,.section--dark h4 { color: var(--white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: .78rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--red);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--red); border-radius: 2px; }
.section--dark .eyebrow, .moto .eyebrow { color: var(--red-soft); }
.section--dark .eyebrow::before, .moto .eyebrow::before { background: var(--red-soft); }

.section-head { max-width: 760px; margin-bottom: clamp(32px, 4vw, 52px); }
/* short red rule under section headings */
.section-head h2 { position: relative; padding-bottom: 20px; }
.section-head h2::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 52px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--red), rgba(168,30,35,.25));
}
.section--dark .section-head h2::after { background: linear-gradient(90deg, var(--red-soft), rgba(229,72,77,.2)); }
.section-head--center h2::after { left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, rgba(168,30,35,.25), var(--red), rgba(168,30,35,.25)); }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; margin-top: 18px; }
.section--dark .section-head p { color: var(--on-dark-soft); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.lead { font-size: 1.15rem; color: var(--ink-soft); }

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  --bg: var(--royal); --fg: #fff;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 100px;
  background: var(--bg); color: var(--fg);
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  position: relative; isolation: isolate; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: var(--shadow-blue);
}
.btn svg { width: 19px; height: 19px; }
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, var(--accent), var(--royal));
  opacity: 0; transition: opacity .35s var(--ease);
}
.btn:hover { transform: translateY(-3px); }
.btn:hover::after { opacity: 1; }
/* Secondary button — logo red on hover (primary CTA stays blue) */
.btn--ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost::after { background: linear-gradient(120deg, var(--red), var(--red-deep)); }
.btn--ghost:hover { color: #fff; box-shadow: inset 0 0 0 1.5px transparent, var(--shadow-red); }
.section--dark .btn--ghost, .hero .btn--ghost, .moto .btn--ghost { color: var(--white); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.28); }
.section--dark .btn--ghost:hover, .hero .btn--ghost:hover, .moto .btn--ghost:hover { box-shadow: inset 0 0 0 1.5px rgba(229,72,77,.55), var(--shadow-red); }
.btn--lg { padding: 18px 32px; font-size: 1.02rem; }
.btn--block { width: 100%; justify-content: center; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--royal); }
.link-arrow svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }
.section--dark .link-arrow { color: var(--accent); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav.is-scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
  height: 66px;
}
/* Brand lockup — logo carries the name, tagline sits beside it */
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand__logo {
  height: 52px; width: auto; flex: none;
  transition: height .4s var(--ease), transform .4s var(--ease), filter .4s var(--ease);
}
.nav.is-scrolled .brand__logo { height: 44px; }
.brand:hover .brand__logo { transform: translateY(-1px) scale(1.03); }
.brand__tagline {
  font-family: var(--font-body); font-weight: 600; font-size: .6rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint);
  line-height: 1.5; max-width: 16ch;
  padding-left: 14px; border-left: 1px solid var(--line);
  transition: color .3s, border-color .3s;
}
.nav:not(.is-scrolled) .brand__tagline { color: rgba(255,255,255,.72); border-left-color: rgba(255,255,255,.22); }
@media (max-width: 900px) { .brand__tagline { display: none; } }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__menu a {
  position: relative; padding: 9px 15px; border-radius: 100px; font-size: .93rem; font-weight: 500;
  color: var(--ink-soft); transition: color .25s, background .25s;
}
/* red underline — grows on hover, stays on the section you're in */
.nav__menu a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 3px; height: 2px;
  border-radius: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: center; transition: transform .3s var(--ease);
}
.nav:not(.is-scrolled) .nav__menu a::after { background: var(--red-soft); }
.nav__menu a:hover::after, .nav__menu a.is-active::after { transform: scaleX(1); }
.nav:not(.is-scrolled) .nav__menu a { color: rgba(255,255,255,.82); }
.nav__menu a:hover, .nav__menu a.is-active { color: var(--royal); background: rgba(30,92,230,.08); }
.nav:not(.is-scrolled) .nav__menu a:hover,
.nav:not(.is-scrolled) .nav__menu a.is-active { color: #fff; background: rgba(255,255,255,.12); }

.nav__cta { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; }
.nav__actions { display: flex; align-items: center; gap: 14px; }

.nav__burger { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; }
.nav__burger span { position: relative; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: .3s var(--ease); color: var(--ink); }
.nav:not(.is-scrolled) .nav__burger span { color: #fff; }
.nav__burger span::before, .nav__burger span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: .3s var(--ease); }
.nav__burger span::before { top: -7px; }
.nav__burger span::after { top: 7px; }
body.menu-open .nav__burger span { background: transparent; }
body.menu-open .nav__burger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav__burger span::after { top: 0; transform: rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position: fixed; inset: 0; z-index: 99; background: var(--navy-900);
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: 100px var(--gutter) 40px;
  transform: translateX(100%); transition: transform .5s var(--ease); visibility: hidden;
}
body.menu-open .nav__drawer { transform: none; visibility: visible; }
.nav__drawer a { font-family: var(--font-head); font-size: 1.7rem; color: #fff; padding: 12px 0; border-bottom: 1px solid var(--line-dark); display: flex; justify-content: space-between; align-items: center; }
.nav__drawer a span { color: var(--red-soft); font-size: .9rem; font-family: var(--font-body); }
.nav__drawer .btn { margin-top: 26px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 40px); padding-bottom: 60px;
  background: var(--navy-900); color: var(--on-dark); overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__glow {
  position: absolute; inset: -10%; z-index: 0;
  background:
    radial-gradient(52% 55% at 18% 28%, rgba(30,92,230,.48), transparent 60%),
    radial-gradient(46% 48% at 86% 18%, rgba(76,154,255,.30), transparent 62%),
    radial-gradient(60% 60% at 82% 92%, rgba(23,70,160,.45), transparent 60%);
  filter: blur(10px); animation: glowDrift 20s ease-in-out infinite alternate; will-change: transform;
}
@keyframes glowDrift {
  0% { transform: translate3d(0,0,0); }
  100% { transform: translate3d(2.5%, -2%, 0) scale(1.06); }
}
/* Plexus network canvas */
.hero__plexus { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; display: block; }
.hero__noise { position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(130% 100% at 72% 6%, transparent 52%, rgba(6,15,34,.92) 100%);
}
/* Static plexus texture for other dark sections */
.plexus-bg::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%234C9AFF' stroke-width='1' opacity='0.5'%3E%3Cpath d='M60 120 L220 60 L360 160 L520 90 L680 170 M60 120 L180 260 L360 160 M180 260 L340 340 L520 90 M340 340 L500 420 L680 170 M500 420 L640 560 L740 380 M120 520 L340 340 M120 520 L280 640 L500 420 M280 640 L460 720 L640 560 M700 620 L740 380 M460 720 L700 620'/%3E%3C/g%3E%3Cg fill='%234C9AFF'%3E%3Ccircle cx='60' cy='120' r='2.5'/%3E%3Ccircle cx='220' cy='60' r='2'/%3E%3Ccircle cx='360' cy='160' r='2.5'/%3E%3Ccircle cx='520' cy='90' r='2'/%3E%3Ccircle cx='680' cy='170' r='2.5'/%3E%3Ccircle cx='180' cy='260' r='2'/%3E%3Ccircle cx='340' cy='340' r='2.5'/%3E%3Ccircle cx='500' cy='420' r='2'/%3E%3Ccircle cx='640' cy='560' r='2.5'/%3E%3Ccircle cx='740' cy='380' r='2'/%3E%3Ccircle cx='120' cy='520' r='2.5'/%3E%3Ccircle cx='280' cy='640' r='2'/%3E%3Ccircle cx='460' cy='720' r='2.5'/%3E%3Ccircle cx='700' cy='620' r='2'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 780px 780px; background-position: top right;
  -webkit-mask-image: linear-gradient(120deg, transparent 30%, #000 100%);
          mask-image: linear-gradient(120deg, transparent 30%, #000 100%);
}
.hero .container { position: relative; z-index: 3; }
.hero__layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 72px); align-items: center; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 10px;
  border-radius: 100px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  font-size: .82rem; font-weight: 500; color: var(--on-dark); margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.hero__badge b { color: #fff; }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #38d16a; box-shadow: 0 0 0 4px rgba(56,209,106,.22); }
.hero__pill-ic { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--royal); }
.hero__pill-ic svg { width: 15px; height: 15px; color: #fff; }

.hero h1 { color: #fff; margin-bottom: 24px; }
.hero h1 .accent { background: linear-gradient(100deg, var(--accent), #9cc4ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--on-dark-soft); max-width: 46ch; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__phone-note { font-size: .85rem; color: var(--on-dark-soft); margin-top: 18px; display: flex; align-items: center; gap: 8px; }
.hero__phone-note svg { width: 16px; height: 16px; color: var(--accent); }

/* Hero image */
.hero__media { position: relative; }
.hero__frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.12);
  -webkit-mask-image: -webkit-radial-gradient(#fff, #000); /* safari radius clip */
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.hero__frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6,15,34,.5)); }
.hero__tag {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px;
  background: rgba(6,15,34,.6); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.16); border-radius: 100px; font-size: .82rem; color: #fff;
}
.hero__tag svg { width: 16px; height: 16px; color: var(--accent); }
.hero__float {
  position: absolute; top: -22px; right: -14px; z-index: 4;
  background: #fff; color: var(--ink); border-radius: 18px; padding: 16px 20px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 14px;
}
.hero__float .num { font-family: var(--font-head); font-weight: 700; font-size: 1.9rem; color: var(--royal); line-height: 1; }
.hero__float small { display: block; font-size: .72rem; color: var(--ink-soft); letter-spacing: .04em; text-transform: uppercase; }

/* Stat bar */
.statbar {
  position: relative; z-index: 3; margin-top: clamp(44px, 6vw, 76px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(229,72,77,.42); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); overflow: hidden;
}
.stat { padding: 26px 22px; background: rgba(255,255,255,.02); backdrop-filter: blur(4px); }
.stat__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.9rem, 3.4vw, 2.9rem); color: #fff; line-height: 1; display: flex; align-items: baseline; gap: 2px; }
.stat__num .suf { color: var(--accent); font-size: .7em; }
.stat__label { margin-top: 10px; font-size: .84rem; color: var(--on-dark-soft); letter-spacing: .02em; }

/* ==========================================================================
   USP strip
   ========================================================================== */
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.usp {
  position: relative; padding: 34px 30px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.usp::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--red), rgba(168,30,35,.35)); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.usp:hover { transform: translateY(-6px); box-shadow: var(--shadow-md), 0 0 0 1px var(--red-glow); border-color: transparent; }
.usp:hover::before { transform: scaleX(1); }
.usp:hover .usp__n { color: var(--red); }
.usp__ic {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(150deg, rgba(30,92,230,.12), rgba(76,154,255,.08));
  color: var(--royal); transition: transform .4s var(--ease);
}
.usp__ic svg { width: 28px; height: 28px; }
.usp:hover .usp__ic { transform: translateY(-3px) rotate(-4deg); }
.usp h3 { font-size: 1.28rem; margin-bottom: 10px; }
.usp p { color: var(--ink-soft); font-size: .98rem; }
.usp__n { position: absolute; top: 24px; right: 26px; font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--line); transition: color .4s var(--ease); }

/* ==========================================================================
   DPF flagship section
   ========================================================================== */
.dpf { position: relative; overflow: hidden; }
.dpf__glow { position: absolute; z-index: 0; width: 60vw; height: 60vw; border-radius: 50%; filter: blur(90px); opacity: .5; pointer-events: none; }
.dpf__glow--1 { background: radial-gradient(circle, rgba(30,92,230,.5), transparent 65%); top: -20%; right: -10%; }
.dpf__glow--2 { background: radial-gradient(circle, rgba(139,21,24,.45), transparent 65%); bottom: -25%; left: -15%; }
.dpf .container { position: relative; z-index: 2; }
.dpf__top { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(30px, 5vw, 64px); align-items: end; margin-bottom: clamp(44px, 6vw, 72px); }
.dpf__top h2 { position: relative; padding-bottom: 20px; }
.dpf__top h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 52px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--red-soft), rgba(229,72,77,.2)); }
.dpf__lead { color: var(--on-dark-soft); font-size: 1.1rem; }
.dpf__lead strong { color: #fff; }
/* red highlight — flagship service only */
.hl-red { color: var(--red-soft); }

/* Badge with counter — the flagship number wears the logo red */
.dpf__badge {
  justify-self: end; text-align: center; position: relative;
  width: 220px; height: 220px; border-radius: 50%;
  display: grid; place-content: center;
  background: radial-gradient(circle at 50% 35%, rgba(168,30,35,.40), rgba(6,15,34,.25));
  border: 1px solid rgba(229,72,77,.35);
  box-shadow: inset 0 0 40px rgba(229,72,77,.22), var(--shadow-red);
}
.dpf__badge::before { content: ""; position: absolute; inset: 10px; border-radius: 50%; border: 1px dashed rgba(229,72,77,.45); animation: spin 26s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.dpf__badge .val { font-family: var(--font-head); font-weight: 700; font-size: 4rem; line-height: 1; color: #fff; }
.dpf__badge .val .suf { color: var(--red-soft); }
.dpf__badge small { display: block; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--on-dark-soft); margin-top: 6px; }
.dpf__badge .cap {
  display: inline-block; margin-top: 10px; padding: 5px 12px; border-radius: 100px;
  font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  color: #fff; background: var(--red); box-shadow: 0 6px 16px -6px rgba(168,30,35,.9);
}

/* Process steps */
.dpf__process { position: relative; }
.process-track { position: absolute; left: 0; right: 0; top: 46px; height: 2px; z-index: 0; }
.process-track svg { width: 100%; height: 4px; overflow: visible; }
.process-track path { fill: none; stroke: url(#dpfline); stroke-width: 2; stroke-dasharray: var(--len); stroke-dashoffset: var(--len); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; z-index: 1; }
.step {
  padding: 30px 26px; border-radius: var(--radius);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(4px); transition: transform .4s var(--ease), background .4s, border-color .4s;
}
.step:hover { transform: translateY(-5px); background: rgba(255,255,255,.07); border-color: rgba(229,72,77,.45); box-shadow: 0 0 0 1px rgba(229,72,77,.18), 0 20px 40px -26px rgba(229,72,77,.7); }
.step__ic { width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 20px; background: var(--navy-900); border: 1px solid rgba(76,154,255,.35); color: var(--accent); position: relative; }
.step__ic svg { width: 30px; height: 30px; }
.step__n { position: absolute; top: -8px; right: -8px; width: 28px; height: 28px; border-radius: 50%; background: var(--royal); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: .82rem; box-shadow: var(--shadow-blue); }
.step h3 { color: #fff; font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--on-dark-soft); font-size: .95rem; }

/* DPF facts + CTA row */
.dpf__cta {
  margin-top: clamp(30px, 4vw, 46px); display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 22px; padding: 24px 28px; border-radius: var(--radius);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10);
}
.dpf__facts { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.dpf__fact { display: flex; gap: 10px; align-items: center; font-size: .93rem; color: var(--on-dark); }
.dpf__fact svg { width: 18px; height: 18px; color: var(--red-soft); flex: none; }
.dpf__cta .btn { flex: none; }
@media (max-width: 720px) { .dpf__cta { flex-direction: column; align-items: stretch; } .dpf__cta .btn { justify-content: center; } }

/* ==========================================================================
   Services
   ========================================================================== */
.svc-top { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 26px; }
.svc-hero {
  position: relative; padding: 32px 30px; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(155deg, var(--navy-800), var(--navy-900)); color: #fff;
  border: 1px solid var(--navy-700); box-shadow: var(--shadow-md);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease); min-height: 200px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.svc-hero::after { content: ""; position: absolute; width: 200px; height: 200px; right: -60px; top: -60px; border-radius: 50%; background: radial-gradient(circle, rgba(76,154,255,.35), transparent 70%); }
.svc-hero:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg), 0 0 0 1px rgba(229,72,77,.35); }
.svc-hero .tag { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.svc-hero--star .tag { color: var(--red-soft); }
.svc-hero .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,.10); color: var(--accent); margin-bottom: 20px; }
.svc-hero .ic svg { width: 26px; height: 26px; }
.svc-hero h3 { font-size: 1.5rem; margin-bottom: 8px; color: #fff; position: relative; }
.svc-hero p { color: var(--on-dark-soft); font-size: .95rem; position: relative; }
.svc-hero--star { background: linear-gradient(155deg, var(--royal), var(--navy-800)); }

.svc-groups { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.svc-card {
  padding: 28px 26px; border-radius: var(--radius); background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md), 0 0 0 1px var(--red-glow); border-color: rgba(168,30,35,.35); }
.svc-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.svc-card__ic { width: 48px; height: 48px; border-radius: 13px; flex: none; display: grid; place-items: center; background: var(--mist); color: var(--royal); transition: transform .4s var(--ease), background .4s; }
.svc-card__ic svg { width: 24px; height: 24px; }
.svc-card:hover .svc-card__ic { background: var(--red); color: #fff; transform: translateY(-2px); }
.svc-card h4 { font-size: 1.12rem; }
.svc-card ul { display: grid; gap: 11px; }
.svc-card li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.svc-card li svg { width: 17px; height: 17px; color: var(--red); flex: none; margin-top: 3px; }

/* ==========================================================================
   Motorsport
   ========================================================================== */
.moto { position: relative; overflow: hidden; background: var(--navy-900); color: var(--on-dark); }
.moto__marquee { position: relative; padding: 22px 0; border-block: 1px solid var(--line-dark); overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.moto__row { display: flex; gap: 28px; width: max-content; animation: marquee 24s linear infinite; }
.moto__row span { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.6rem, 3.6vw, 2.8rem); letter-spacing: -.01em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.28); display: inline-flex; align-items: center; gap: 28px; }
.moto__row span b { color: var(--accent); -webkit-text-stroke: 0; }
.moto__row .dotmark { width: 12px; height: 12px; border-radius: 50%; background: var(--red); }
@keyframes marquee { to { transform: translateX(-50%); } }
.moto__body { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; padding-top: clamp(50px, 6vw, 80px); }
.moto__body h2 { position: relative; padding-bottom: 20px; }
.moto__body h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 52px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--red-soft), rgba(229,72,77,.2)); }
.moto__body p { color: var(--on-dark-soft); font-size: 1.08rem; margin-bottom: 26px; }
.moto__feats { display: grid; gap: 16px; }
.moto__feat { display: flex; gap: 14px; align-items: center; }
.moto__feat .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.06); border: 1px solid var(--line-dark); color: var(--accent); flex: none; }
.moto__feat .ic svg { width: 22px; height: 22px; }
.moto__feat b { color: #fff; display: block; }
.moto__feat small { color: var(--on-dark-soft); }
.moto__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--line-dark); box-shadow: var(--shadow-lg); }
.moto__media img { width: 100%; height: 100%; object-fit: cover; }
.moto__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(30,92,230,.25), transparent 60%); }
.speedlines { position: absolute; inset: 0; z-index: 1; opacity: .5; background: repeating-linear-gradient(115deg, transparent 0 22px, rgba(76,154,255,.10) 22px 24px); }

/* ==========================================================================
   Equipment
   ========================================================================== */
.equip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.equip {
  display: flex; flex-direction: column; gap: 14px; padding: 24px 22px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.equip:hover { transform: translateY(-4px); box-shadow: var(--shadow-md), 0 0 0 1px var(--red-glow); border-color: rgba(168,30,35,.32); }
.equip__ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(150deg, rgba(30,92,230,.10), rgba(76,154,255,.06)); color: var(--royal); }
.equip__ic svg { width: 24px; height: 24px; }
.equip b { font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.equip small { color: var(--ink-faint); font-size: .82rem; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery { columns: 3; column-gap: 16px; }
.gallery__item { break-inside: avoid; margin-bottom: 16px; position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery__item img { width: 100%; transition: transform .6s var(--ease); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6,15,34,.45)); opacity: 0; transition: opacity .4s; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }
.gallery__cap { position: absolute; left: 14px; bottom: 12px; z-index: 2; color: #fff; font-size: .82rem; font-weight: 500; opacity: 0; transform: translateY(8px); transition: .4s var(--ease); display: flex; align-items: center; gap: 8px; }
.gallery__cap svg { width: 16px; height: 16px; }
.gallery__item:hover .gallery__cap { opacity: 1; transform: none; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(6,15,34,.94); display: grid; place-items: center; padding: 30px; opacity: 0; visibility: hidden; transition: opacity .35s; backdrop-filter: blur(6px); }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); transform: scale(.96); transition: transform .35s var(--ease); }
.lightbox.is-open img { transform: none; }
.lightbox__close, .lightbox__nav { position: absolute; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); color: #fff; display: grid; place-items: center; transition: background .3s; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.22); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__close svg, .lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.8); font-size: .85rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 860px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 4px; text-align: left; font-family: var(--font-head); font-weight: 600; font-size: clamp(1.08rem, 1.8vw, 1.28rem); color: var(--ink); transition: color .3s; }
.faq__q:hover { color: var(--royal); }
.faq__ic { flex: none; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--mist); color: var(--royal); transition: transform .4s var(--ease), background .4s, color .4s; position: relative; }
.faq__ic::before, .faq__ic::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq__ic::before { width: 14px; height: 2px; }
.faq__ic::after { width: 2px; height: 14px; transition: transform .4s var(--ease); }
.faq__item.is-open .faq__ic { background: var(--red); color: #fff; }
.faq__item.is-open .faq__ic::after { transform: scaleY(0); }
.faq__a { overflow: hidden; height: 0; }
.faq__a-inner { padding: 0 4px 26px 16px; color: var(--ink-soft); max-width: 68ch; border-left: 2px solid var(--red-tint); }
.faq__item.is-open .faq__a-inner { border-left-color: rgba(168,30,35,.45); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 54px); }
.contact__aside { display: grid; gap: 18px; align-content: start; }
.info-card { padding: 26px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.info-card h4 { font-size: 1.05rem; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.info-card h4 svg { width: 20px; height: 20px; color: var(--royal); }
.info-row { display: flex; align-items: center; gap: 14px; padding: 10px 0; }
.info-row + .info-row { border-top: 1px solid var(--line); }
.info-row .ic { width: 42px; height: 42px; border-radius: 11px; flex: none; display: grid; place-items: center; background: var(--mist); color: var(--royal); }
.info-row .ic svg { width: 20px; height: 20px; }
.info-row small { display: block; color: var(--ink-faint); font-size: .78rem; }
.info-row a, .info-row b { font-weight: 600; color: var(--ink); font-size: 1.02rem; }
.info-row a:hover { color: var(--royal); }

.hours-card ul { display: grid; gap: 2px; }
.hours-card li { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .96rem; }
.hours-card li:last-child { border-bottom: none; }
.hours-card li span:first-child { color: var(--ink-soft); }
.hours-card li b { color: var(--ink); }
.hours-card li.is-closed b { color: var(--ink-faint); }
.hours-note { margin-top: 16px; display: flex; gap: 12px; padding: 14px 16px; border-radius: var(--radius-sm); background: linear-gradient(120deg, rgba(168,30,35,.10), rgba(168,30,35,.04)); border: 1px solid rgba(168,30,35,.20); }
.hours-note svg { width: 22px; height: 22px; color: var(--red); flex: none; }
.hours-note b { color: var(--ink); }
.hours-note p { font-size: .88rem; color: var(--ink-soft); }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); aspect-ratio: 16/9; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2) contrast(1.05); }

/* Form */
.form-card { padding: clamp(26px, 3vw, 40px); border-radius: var(--radius-lg); background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); color: var(--on-dark); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.form-card::before { content: ""; position: absolute; width: 300px; height: 300px; right: -100px; top: -100px; border-radius: 50%; background: radial-gradient(circle, rgba(76,154,255,.25), transparent 70%); }
.form-card h3 { color: #fff; margin-bottom: 6px; position: relative; }
.form-card > p { color: var(--on-dark-soft); margin-bottom: 26px; position: relative; }
.form { position: relative; display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.col-2 { grid-column: span 1; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: .82rem; font-weight: 500; color: var(--on-dark); }
.field label .req { color: var(--red-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 12px; font: inherit; font-size: .96rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); color: #fff;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.4); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234C9AFF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field select option { color: #0c1830; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red-soft); background: rgba(255,255,255,.08); box-shadow: 0 0 0 3px rgba(229,72,77,.22); }
/* error state stays distinct from the red focus ring: thicker border + tinted fill */
.field.invalid input, .field.invalid select, .field.invalid textarea { border: 2px solid #ff8f8a; background: rgba(255,107,107,.10); box-shadow: 0 0 0 3px rgba(255,107,107,.18); }
.field .err { font-size: .76rem; color: #ff9d9d; display: none; }
.field.invalid .err { display: block; }
.form__consent { font-size: .8rem; color: var(--on-dark-soft); }
.form__consent a { color: var(--accent); text-decoration: underline; }
.form button[type=submit] { margin-top: 4px; }

.form-success { position: absolute; inset: 0; z-index: 5; background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); display: grid; place-content: center; text-align: center; padding: 40px; gap: 14px; opacity: 0; visibility: hidden; transition: opacity .4s; }
.form-success.show { opacity: 1; visibility: visible; }
.form-success .check { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 6px; display: grid; place-items: center; background: rgba(56,209,106,.15); border: 1px solid rgba(56,209,106,.4); }
.form-success .check svg { width: 42px; height: 42px; color: #38d16a; }
.form-success .check path { stroke-dasharray: 40; stroke-dashoffset: 40; }
.form-success.show .check path { animation: draw .6s .2s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.form-success h3 { color: #fff; }
.form-success p { color: var(--on-dark-soft); max-width: 40ch; margin-inline: auto; }

/* CTA band */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(120deg, var(--royal), var(--navy-800)); color: #fff; padding: clamp(36px, 5vw, 60px); text-align: center; box-shadow: var(--shadow-blue); margin-top: clamp(40px, 5vw, 64px); }
.cta-band::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,.14), transparent 40%), radial-gradient(circle at 85% 80%, rgba(255,255,255,.10), transparent 40%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 52ch; margin: 0 auto 28px; }
.cta-band .btn--ghost { box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.4); color: #fff; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn:not(.btn--ghost) { background: #fff; color: var(--navy-800); box-shadow: 0 14px 30px -10px rgba(0,0,0,.4); }
.cta-band .btn:not(.btn--ghost)::after { background: var(--mist); }
.cta-band .btn:not(.btn--ghost):hover { color: var(--navy-900); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--navy-900); color: var(--on-dark-soft); padding: clamp(56px, 7vw, 88px) 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line-dark); }
.brand--footer { align-items: center; }
.brand--footer .brand__logo { height: 64px; }
.brand--footer .brand__tagline { color: var(--on-dark-soft); border-left-color: var(--line-dark); }
.footer__about { margin-top: 20px; max-width: 34ch; font-size: .94rem; }
.footer h5 { color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1rem; margin-bottom: 18px; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { font-size: .94rem; transition: color .25s; }
.footer__links a:hover { color: var(--accent); }
.footer__contact { display: grid; gap: 12px; font-size: .94rem; }
.footer__contact a:hover { color: var(--accent); }
.footer__contact .ln { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 3px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 26px; font-size: .84rem; flex-wrap: wrap; }
.footer__bottom a { color: var(--accent); }
.footer__ico { display: inline-flex; gap: 8px; align-items: center; }

/* ==========================================================================
   Sticky mobile call button
   ========================================================================== */
.call-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: none; align-items: center; gap: 10px; padding: 15px 22px; border-radius: 100px;
  background: var(--royal); color: #fff; font-weight: 600; box-shadow: var(--shadow-blue);
  transition: transform .2s var(--ease);
}
.call-fab svg { width: 20px; height: 20px; }
.call-fab::before { content: ""; position: absolute; inset: -6px; border-radius: 100px; border: 2px solid var(--accent); opacity: .6; animation: ping 2s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.35); opacity: 0; } }

/* ==========================================================================
   Reveal animations (base state; JS adds .in)
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); filter: blur(6px); transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; filter: none; }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(26px); filter: blur(5px); transition: opacity .7s var(--ease), transform .7s var(--ease), filter .7s var(--ease); }
[data-reveal-stagger].in > * { opacity: 1; transform: none; filter: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero__layout { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; }
  .hero__float { right: 6px; }
  .dpf__top { grid-template-columns: 1fr; }
  .dpf__badge { justify-self: start; }
  .dpf__ba, .moto__body, .contact__grid { grid-template-columns: 1fr; }
  .svc-top { grid-template-columns: 1fr; }
  .gallery { columns: 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 42px 0; }
  .h-xl { font-size: 2.15rem; }
  .hero h1 { margin-bottom: 18px; }
  .svc-hero { min-height: auto; padding: 22px 22px; }
  .svc-card { padding: 22px 20px; }
  .svc-card ul { gap: 9px; }
  .svc-card__head { margin-bottom: 14px; }
  .usp { padding: 26px 24px; }
  .cta-band { padding: 32px 22px; }
  .nav__menu, .nav__cta.desktop-cta { display: none; }
  .nav__burger { display: flex; }
  .brand__logo { height: 44px; }
  .nav.is-scrolled .brand__logo { height: 38px; }
  .brand--footer .brand__logo { height: 54px; }
  .usp-grid, .svc-groups { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 14px; }
  .statbar { grid-template-columns: 1fr 1fr; margin-top: 34px; }
  .stat { padding: 18px 16px; }
  .call-fab { display: inline-flex; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 26px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  /* Shorten hero on phones: drop the image, tighten spacing */
  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 22px); padding-bottom: 36px; }
  .hero__media { display: none; }
  .hero__sub { margin-bottom: 26px; }
  .gallery { columns: 2; column-gap: 12px; }
  .gallery__item { margin-bottom: 12px; }
  .equip-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .section-head p { font-size: 1rem; }
  .contact__aside { gap: 14px; }
  .info-card { padding: 20px; }
  .map-embed { aspect-ratio: auto; height: 210px; }
  .cta-band { margin-top: 32px; }
  .cta-band__actions { flex-direction: column; }
  .cta-band__actions .btn { width: 100%; justify-content: center; }
  .dpf__lead, .moto__body p, .lead { font-size: 1rem; }
}
@media (max-width: 380px) {
  .statbar { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .hero__mesh, .moto__row, .dpf__badge::before, .call-fab::before { animation: none !important; }
  [data-reveal], [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; filter: none !important; }
}
