/* ============================================================
   SPORTSHOP LINTNER / ALPBACHTAL — Redesign
   Pure HTML/CSS. Drop-in ready.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Dark alpine base */
  --bg:        #0b1217;
  --bg-2:      #0f1a21;
  --surface:   #14222b;
  --surface-2: #1b2c36;

  /* Snow / ice */
  --snow:      #f4f7f8;
  --snow-2:    #e7edee;
  --ice:       #c2ccd1;
  --ice-mute:  #8c99a0;

  /* Ink on light */
  --ink:       #0d1116;
  --ink-mute:  #56636b;
  --ink-soft:  #7b878e;

  /* Accent — sport red (logo) */
  --accent:    #d90124;
  --accent-2:  #f01231;
  --accent-ink:#ffffff;
  --accent-dim:rgba(217,1,36,0.12);
  --header-red:#df294a;

  /* Lines */
  --line-dark:  rgba(255,255,255,0.10);
  --line-dark-2:rgba(255,255,255,0.16);
  --line-light: rgba(13,17,22,0.12);

  /* Type */
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body:    "Barlow", system-ui, sans-serif;
  --mono:    "Space Mono", ui-monospace, monospace;

  --radius: 8px;
  --maxw: 1480px;
  --gutter: clamp(20px, 5vw, 64px);

  --header-h: 76px;
  --shadow-sm: 0 12px 32px -22px rgba(7, 15, 20, 0.42);
  --shadow-md: 0 24px 64px -34px rgba(7, 15, 20, 0.52);
  --shadow-dark: 0 28px 70px -36px rgba(0, 0, 0, 0.78);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; background-color: var(--header-red) !important; }
body {
  font-family: var(--body);
  background-color: var(--header-red);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: env(safe-area-inset-top, 0px);
  background: var(--header-red);
  pointer-events: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ---------- Type helpers ---------- */
.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.kicker::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.kicker--ice { color: var(--ice-mute); }
.kicker--ice::before { background: var(--ice-mute); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.h-xl  { font-size: clamp(44px, 8vw, 104px); }
.h-lg  { font-size: clamp(34px, 5.2vw, 68px); }
.h-md  { font-size: clamp(26px, 3.4vw, 40px); }
.lead  { font-size: clamp(17px, 1.5vw, 21px); color: var(--ink-mute); max-width: 56ch; text-wrap: pretty; }
.lead--ice { color: var(--ice); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 132px); }
.section--dark { background: var(--bg); color: var(--snow); }
.section--bg2  { background: var(--bg-2); color: var(--snow); }
.section--snow { background: var(--snow); color: var(--ink); }
.section--snow2{ background: var(--snow-2); color: var(--ink); }

.section--snow {
  background-image: radial-gradient(circle at 92% 12%, rgba(217,1,36,0.055), transparent 28%);
}
.section--snow2 {
  background-image:
    radial-gradient(circle at 8% 18%, rgba(255,255,255,0.9), transparent 25%),
    linear-gradient(135deg, rgba(255,255,255,0.36), transparent 42%);
}
.section--dark,
.section--bg2 {
  background-image: radial-gradient(circle at 85% 8%, rgba(217,1,36,0.10), transparent 30%);
}

.section-head { max-width: 70ch; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head .kicker { margin-bottom: 18px; }
.section-head p { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 15px; --pad-x: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(4px); }

.btn--accent { background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: var(--accent-ink); box-shadow: 0 14px 30px -18px rgba(217,1,36,0.9); }
.btn--accent:hover { background: linear-gradient(135deg, #ff1739, var(--accent)); transform: translateY(-2px); box-shadow: 0 18px 34px -16px rgba(217,1,36,0.95); }
.btn--light { background: var(--snow); color: var(--ink); }
.btn--light:hover { background: #fff; }
.btn--ghost-dark { background: transparent; color: var(--snow); border-color: var(--line-dark-2); }
.btn--ghost-dark:hover { border-color: var(--snow); }
.btn--ghost-light { background: transparent; color: var(--ink); border-color: var(--line-light); }
.btn--ghost-light:hover { border-color: var(--ink); }
.btn--sm { --pad-y: 11px; --pad-x: 18px; font-size: 15px; }
.btn--block { width: 100%; }

/* ---------- Real imagery ---------- */
.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) { .split__media img.img-cover { aspect-ratio: 16/10; min-height: 0; height: auto; } }

/* ---------- Placeholder imagery ---------- */
.ph {
  position: relative;
  background-color: var(--surface);
  background-image:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,0.04) 0 2px,
      transparent 2px 11px);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--ice-mute);
  isolation: isolate;
}
.ph--light {
  background-color: #dde4e6;
  background-image:
    repeating-linear-gradient(135deg,
      rgba(13,17,22,0.05) 0 2px,
      transparent 2px 11px);
  color: var(--ink-soft);
}
.ph__label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 12px;
  border: 1px solid currentColor;
  border-radius: 2px;
  background: rgba(0,0,0,0.15);
  text-align: center;
}
.ph--light .ph__label { background: rgba(255,255,255,0.4); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  padding-top: env(safe-area-inset-top, 0px);
  background-color: var(--header-red) !important;
  background: linear-gradient(105deg, #c90020, var(--header-red) 60%, #eb0b30);
  border-bottom: 1px solid rgba(0,0,0,0.12);
  color: #fff;
  transition: box-shadow .25s ease;
}
.site-header.is-solid { box-shadow: 0 10px 30px -16px rgba(0,0,0,0.6); }
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__logo { height: 38px; width: auto; display: block; }
.site-header .brand__logo { height: 40px; }
/* Fallback text lockup (footer/dark) */
.brand__mark {
  width: 40px; height: 40px; border-radius: 2px;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 26px;
  line-height: 1;
}
.brand__name { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 21px; letter-spacing: 0.02em; line-height: 0.95; }
.brand__name small { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.24em; color: var(--ice-mute); font-weight: 400; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 26px; }
.main-nav a {
  font-family: var(--display); text-transform: uppercase; font-weight: 500;
  font-size: 17px; letter-spacing: 0.03em; color: rgba(255,255,255,0.82);
  padding-block: 6px; position: relative;
  transition: color .18s ease;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: #fff; transition: width .2s ease;
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  background: transparent; border: 1px solid rgba(255,255,255,0.4); border-radius: 2px;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 20px; height: 2px; background: var(--snow); transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle span::before { transform: translate(-50%,-50%) translateY(-6px); }
.nav-toggle span::after  { transform: translate(-50%,-50%) translateY(6px); }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translate(-50%,-50%) rotate(45deg); }
body.nav-open .nav-toggle span::after  { transform: translate(-50%,-50%) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: calc(var(--header-h) + env(safe-area-inset-top, 0px)) 0 0 0; z-index: 55;
  background: var(--bg); color: var(--snow);
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform .3s ease, opacity .3s ease;
  display: flex; flex-direction: column;
  padding: 32px var(--gutter) 40px;
  overflow-y: auto;
}
body.nav-open .mobile-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav a.m-link {
  font-family: var(--display); text-transform: uppercase; font-size: 30px; font-weight: 600;
  padding: 16px 0; border-bottom: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; align-items: center;
  color: var(--snow);
}
.mobile-nav a.m-link .arr { color: var(--accent); }
.mobile-nav .btn { margin-top: 28px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: calc(100vh - var(--header-h));
  height: calc(100svh - var(--header-h));
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  display: flex; align-items: flex-end;
  color: var(--snow);
  overflow: hidden;
}
.hero__media { position: absolute; inset: -3% 0; z-index: 0; transform: translate3d(0, calc(var(--hero-scroll, 0px) * .12), 0); }
.hero__media .ph { width: 100%; height: 100%; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(circle at 78% 28%, rgba(217,1,36,0.18), transparent 34%),
    linear-gradient(180deg, rgba(11,18,23,0.48) 0%, rgba(11,18,23,0.25) 35%, rgba(11,18,23,0.94) 100%),
    linear-gradient(90deg, rgba(11,18,23,0.82) 0%, rgba(11,18,23,0.08) 68%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(40px, 6vw, 72px) 28px; }
.hero__tag { margin-bottom: 22px; color: #fff; }
.hero__tag::before { background: var(--accent); }
.hero h1 { max-width: 16ch; }
.hero h1 .accent { color: var(--accent); }
.hero__sub { margin-top: 24px; max-width: 60ch; color: var(--snow-2); font-size: clamp(17px, 1.6vw, 22px); }
.hero__cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero__trust {
  margin-top: 44px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.hero__trust li {
  background: rgba(11,18,23,0.55);
  padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display); text-transform: uppercase; font-weight: 500;
  letter-spacing: 0.02em; font-size: 16px;
  backdrop-filter: blur(10px);
}
.hero__trust .dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.hero__scroll {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.68);
}
.hero__scroll i { position: relative; width: 34px; height: 1px; background: rgba(255,255,255,.34); overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; inset: 0; background: var(--accent); transform: translateX(-100%); animation: scrollHint 2s ease-in-out infinite; }
@keyframes scrollHint { 50%, 100% { transform: translateX(100%); } }

/* ============================================================
   QUICK ACTION BAR
   ============================================================ */
.quickbar { background: linear-gradient(110deg, #bf001e, var(--accent) 50%, #ef1134); color: #fff; position: relative; z-index: 3; box-shadow: 0 18px 42px -25px rgba(88,0,14,.8); }
.quickbar ul { display: grid; grid-template-columns: repeat(4, 1fr); }
.quickbar a {
  display: flex; align-items: center; gap: 14px;
  padding: 22px clamp(16px, 2vw, 28px);
  font-family: var(--display); text-transform: uppercase; font-weight: 600;
  font-size: clamp(16px, 1.4vw, 19px); letter-spacing: 0.03em;
  border-right: 1px solid rgba(255,255,255,0.18);
  transition: background .2s ease;
}
.quickbar li:last-child a { border-right: none; }

.quickbar a:hover { background: rgba(0,0,0,0.12); }
.quickbar .qnum { font-family: var(--mono); font-size: 12px; opacity: 0.7; font-weight: 400; }

/* ============================================================
   SPLIT FEATURE (Skiverleih, Service)
   ============================================================ */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: stretch; }
.split--rev .split__media { order: -1; }
.split__media { display: flex; }
.split__media .ph { width: 100%; aspect-ratio: 4/5; border-radius: var(--radius); }
.split__media img.img-cover { aspect-ratio: auto; height: 100%; min-height: 100%; border-radius: var(--radius); }
.split__media { box-shadow: var(--shadow-md); }
.split__body { display: flex; flex-direction: column; justify-content: center; }
.split__body .lead { margin-top: 18px; }

/* Rental cards */
.rent-grid {
  margin-top: 34px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.rent-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: var(--snow);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.section--snow2 .rent-card { background: #fff; }
.rent-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.rent-card .rc-ico {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--accent-dim); color: var(--accent);
  display: grid; place-items: center; border-radius: 2px;
}
.rent-card .rc-ico svg { width: 22px; height: 22px; }
.rent-card b { font-family: var(--display); text-transform: uppercase; font-size: 19px; font-weight: 600; letter-spacing: 0.02em; }
.rent-card small { display: block; color: var(--ink-soft); font-size: 13.5px; line-height: 1.3; }
.split__cta { margin-top: 30px; }

/* ============================================================
   FEATURE LIST (Service & Bootfitting)
   ============================================================ */
.feat-list { display: grid; gap: 0; margin-top: 8px; }
.feat-item {
  display: grid; grid-template-columns: auto 1fr; gap: 20px;
  padding: 24px 0; border-top: 1px solid var(--line-dark);
  align-items: start;
}
.feat-item:last-child { border-bottom: 1px solid var(--line-dark); }
.feat-item .fnum { font-family: var(--mono); color: var(--accent); font-size: 14px; padding-top: 5px; }
.feat-item h3 { font-size: 26px; }
.feat-item p { color: var(--ice); margin-top: 8px; max-width: 52ch; }

/* ============================================================
   RACING
   ============================================================ */
.racing { position: relative; overflow: hidden; }
.racing__media { position: absolute; inset: 0; z-index: 0; opacity: 0.5; }
.racing__media { transform: translate3d(0, calc((var(--racing-scroll, 0) - .5) * 42px), 0) scale(1.06); }
.racing__media .ph { width: 100%; height: 100%; }
.racing__veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, var(--bg) 18%, rgba(11,18,23,0.72) 60%, rgba(217,1,36,0.32) 100%);
}
.racing__inner { position: relative; z-index: 2; }
.racing .speedline { color: var(--accent); }
.racing-cards { margin-top: 44px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.racing-card {
  border: 1px solid var(--line-dark-2);
  background: rgba(20,34,43,0.6);
  backdrop-filter: blur(3px);
  padding: 26px 22px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.racing-card:hover { border-color: var(--accent); background: rgba(20,34,43,0.85); transform: translateY(-4px); }
.racing-card .rc-n { font-family: var(--mono); font-size: 13px; color: var(--accent); }
.racing-card h3 { margin-top: 18px; font-size: 25px; }
.racing-card p { margin-top: 10px; color: var(--ice); font-size: 15px; }

/* ============================================================
   SORTIMENT GRID
   ============================================================ */
.sortiment-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--line-light);
  border: 1px solid var(--line-light);
  border-radius: var(--radius); overflow: hidden;
}
.sort-cell {
  background: var(--snow); position: relative;
  aspect-ratio: 1/1;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 18px;
  transition: background .25s ease, color .2s ease, transform .25s ease, box-shadow .25s ease;
}
.section--snow2 .sort-cell { background: #fff; }
.sort-cell:hover { background: linear-gradient(145deg, var(--accent-2), var(--accent)); color: #fff; transform: translateY(-4px); box-shadow: 0 20px 38px -24px rgba(217,1,36,.8); z-index: 2; }
.sort-cell .sc-n { font-family: var(--mono); font-size: 12px; color: var(--ink-soft); transition: color .2s; }
.sort-cell:hover .sc-n { color: rgba(255,255,255,0.8); }
.sort-cell b { font-family: var(--display); text-transform: uppercase; font-weight: 600; font-size: clamp(18px, 1.7vw, 23px); letter-spacing: 0.01em; }
.sort-cell .sc-arr { opacity: 0; transform: translateX(-6px); transition: opacity .2s, transform .2s; align-self: flex-start; }
.sort-cell:hover .sc-arr { opacity: 1; transform: translateX(0); }

/* ============================================================
   WHY / USP
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); }
.why-item .why-n {
  font-family: var(--display); font-size: clamp(48px, 6vw, 80px); font-weight: 700;
  color: var(--accent); line-height: 0.9;
  border-bottom: 1px solid var(--line-light); padding-bottom: 16px; margin-bottom: 18px;
}
.why-item h3 { font-size: 24px; }
.why-item p { margin-top: 10px; color: var(--ink-mute); font-size: 16px; }
.why-item { padding: 24px; border-radius: var(--radius); background: rgba(255,255,255,.52); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.why-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; }
.contact-map { display: flex; }
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; border-radius: var(--radius); display: block; }
.map-consent {
  width: 100%;
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  color: var(--snow);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 1px, transparent 1px 16px),
    linear-gradient(145deg, #172730, #0b1217);
}
.map-consent b { display: block; font-family: var(--display); font-size: 28px; text-transform: uppercase; }
.map-consent p { margin: 10px auto 20px; color: var(--ice); max-width: 32ch; }
.contact-map, .contact-info { border-radius: var(--radius); }
.contact-map { overflow: hidden; box-shadow: var(--shadow-dark); }
.contact-info {
  padding: clamp(24px, 4vw, 48px);
  background: linear-gradient(145deg, #172730, #0b1217);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-dark);
  color: var(--snow);
}
.contact-info .kicker { color: #ff3652; }
.contact-info .kicker::before { background: #ff3652; }
.contact-info .lead--ice,
.contact-info .c-row dd { color: var(--snow-2); }
.contact-info .c-row dt { color: #aab6bb; }
.contact-pin {
  position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%,-100%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.contact-pin .pin-dot { width: 18px; height: 18px; background: var(--accent); border: 3px solid #fff; border-radius: 50%; box-shadow: 0 4px 14px rgba(0,0,0,0.4); }
.contact-pin .pin-label { font-family: var(--mono); font-size: 11px; background: var(--accent); color: #fff; padding: 4px 8px; border-radius: 2px; text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }

.contact-info { display: flex; flex-direction: column; }
.contact-info h2 { margin-bottom: 8px; }
.contact-rows { margin-top: 26px; display: grid; gap: 0; }
.c-row {
  display: grid; grid-template-columns: 130px 1fr; gap: 18px;
  padding: 16px 0; border-top: 1px solid var(--line-dark);
  align-items: baseline;
}
.c-row:last-of-type { border-bottom: 1px solid var(--line-dark); }
.c-row dt { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ice-mute); }
.c-row dd { font-size: 17px; color: var(--snow); }
.c-row dd a:hover { color: var(--accent); }
.c-row .hours-line { display: flex; justify-content: space-between; gap: 16px; max-width: 320px; }
.c-row .hours-line span:last-child { color: var(--ice); }
.contact-cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 32px); }
.blog-card { display: flex; flex-direction: column; border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px -24px rgba(13,17,22,0.5); }
.blog-card .ph { aspect-ratio: 16/10; }
.blog-card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card .b-meta { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.blog-card h3 { font-size: 25px; }
.blog-card p { margin-top: 12px; color: var(--ink-mute); font-size: 15.5px; flex: 1; }
.blog-card .b-link { margin-top: 20px; font-family: var(--display); text-transform: uppercase; font-weight: 600; letter-spacing: 0.04em; display: inline-flex; gap: 8px; align-items: center; }
.blog-card .b-link .arr { color: var(--accent); transition: transform .2s; }
.blog-card:hover .b-link .arr { transform: translateX(4px); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg); color: var(--ice); padding-block: clamp(56px, 7vw, 88px) 0; border-top: 3px solid var(--accent); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); padding-bottom: 56px; }
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { max-width: 34ch; color: var(--ice-mute); font-size: 15px; }
.footer-col h4 { font-size: 16px; color: var(--snow); margin-bottom: 18px; letter-spacing: 0.06em; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col li { font-size: 15px; color: var(--ice-mute); transition: color .18s; }
.footer-col a:hover { color: var(--accent); }
.footer-col .btn--accent,
.footer-col .btn--accent:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border: 1px solid var(--line-dark-2); border-radius: 2px; display: grid; place-items: center; color: var(--ice); transition: border-color .2s, color .2s; }
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-block: 24px 32px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; align-items: center; }
.footer-bottom small { font-size: 13px; color: var(--ice-mute); font-family: var(--mono); letter-spacing: 0.04em; }
.footer-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; }
.footer-credits { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer-credits a { color: var(--ice); transition: color 0.2s ease; }
.footer-credits a:hover { color: var(--snow); }
.footer-bottom .legal { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; }
.footer-bottom .legal a { font-size: 13px; color: var(--ice-mute); }
.footer-bottom .legal a:hover { color: var(--snow); }
.footer-cookie-link {
  padding: 0;
  border: 0;
  color: var(--ice-mute);
  background: transparent;
  font-size: 13px;
}
.footer-cookie-link:hover { color: var(--accent); }
.cookie-banner {
  position: fixed;
  z-index: 200;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 22px max(var(--gutter), env(safe-area-inset-right)) max(22px, env(safe-area-inset-bottom)) max(var(--gutter), env(safe-area-inset-left));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--snow);
  background: linear-gradient(145deg, #172730, #0b1217);
  border: 0;
  border-top: 1px solid rgba(255,255,255,.16);
  border-radius: 0;
  box-shadow: 0 28px 80px rgba(0,0,0,.5);
}
.cookie-banner__copy { max-width: 62ch; }
.cookie-banner__copy b { font-family: var(--display); font-size: 24px; text-transform: uppercase; }
.cookie-banner__copy p { margin-top: 6px; color: var(--ice); font-size: 14px; }
.cookie-banner__copy a { display: inline-block; margin-top: 8px; color: #fff; text-decoration: underline; font-size: 13px; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner.is-settings { max-width: none; align-items: stretch; flex-direction: column; gap: 18px; }
.cookie-banner.is-settings .cookie-banner__copy,
.cookie-banner.is-settings .cookie-settings { width: 100%; max-width: 1080px; margin-inline: auto; }
.cookie-settings { display: grid; gap: 18px; }
.cookie-settings__list { display: grid; gap: 10px; }
.cookie-option {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line-dark-2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
  cursor: pointer;
}
.cookie-option:hover { border-color: rgba(255,255,255,.34); }
.cookie-option.is-required { cursor: default; }
.cookie-option input {
  width: 21px;
  height: 21px;
  margin-top: 2px;
  accent-color: var(--accent);
}
.cookie-option strong { display: block; color: var(--snow); font-family: var(--display); font-size: 19px; text-transform: uppercase; }
.cookie-option small { display: block; margin-top: 3px; color: var(--ice-mute); font-size: 13px; line-height: 1.45; }
.cookie-settings__actions { justify-content: flex-start; }

/* ============================================================
   SUBPAGES
   ============================================================ */
.page-hero {
  position: relative;
  min-height: clamp(420px, 62svh, 700px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--snow);
  background: var(--bg);
}
.page-hero__media,
.page-hero__overlay { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero--graphic {
  background:
    linear-gradient(120deg, transparent 0 57%, rgba(217,1,36,.12) 57% 58%, transparent 58%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 1px, transparent 1px 18px),
    radial-gradient(circle at 82% 24%, rgba(217,1,36,.38), transparent 30%),
    linear-gradient(135deg, #14242d, #080d11 68%);
}
.page-hero--graphic::before {
  content: "€";
  position: absolute;
  right: clamp(24px, 8vw, 130px);
  bottom: -0.22em;
  color: rgba(217,1,36,.28);
  text-shadow: 0 0 80px rgba(217,1,36,.22);
  font-family: var(--display);
  font-size: clamp(280px, 43vw, 660px);
  font-weight: 700;
  line-height: 1;
}
.page-hero--graphic .page-hero__overlay {
  background: linear-gradient(90deg, rgba(8,13,17,.84), rgba(8,13,17,.18));
}
.page-hero__overlay {
  background:
    radial-gradient(circle at 82% 22%, rgba(217,1,36,.24), transparent 34%),
    linear-gradient(180deg, rgba(11,18,23,.28), rgba(11,18,23,.94)),
    linear-gradient(90deg, rgba(11,18,23,.82), transparent 72%);
}
.page-hero__inner { position: relative; z-index: 1; padding-block: clamp(64px, 9vw, 110px); }
.page-hero h1 { max-width: 12ch; margin-top: 18px; }
.page-hero .lead { margin-top: 20px; color: var(--snow-2); }
.page-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.page-hero__stats {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px;
}
.page-hero__stats span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(11,18,23,.38);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
}
.page-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 7vw, 110px); align-items: start; }
.page-intro__copy { display: grid; gap: 18px; color: var(--ink-mute); font-size: clamp(17px, 1.5vw, 20px); }
.page-intro__copy strong { color: var(--ink); }
.image-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 14px; margin-top: clamp(44px, 7vw, 90px); }
.image-grid img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.image-grid img:first-child { min-height: 520px; }
.image-grid__stack { display: grid; gap: 14px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value-card, .price-card {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-sm);
}
.value-card .fnum, .price-card .fnum { font-family: var(--mono); color: var(--accent); font-size: 12px; }
.value-card h3, .price-card h3 { margin-top: 24px; font-size: 28px; }
.value-card p, .price-card p { margin-top: 12px; color: var(--ink-mute); }
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.price-card { position: relative; overflow: hidden; }
.price-card::after { content: ""; position: absolute; width: 130px; height: 130px; right: -70px; bottom: -70px; border-radius: 50%; background: var(--accent-dim); }
.price-card__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.price-card__meta span { padding: 6px 9px; background: var(--snow-2); border-radius: 4px; font-size: 13px; color: var(--ink-mute); }
.notice {
  display: grid; grid-template-columns: auto 1fr; gap: 18px;
  padding: 24px; margin-top: 28px;
  border: 1px solid rgba(217,1,36,.22); border-radius: var(--radius);
  background: var(--accent-dim);
}
.notice b { font-family: var(--display); font-size: 26px; text-transform: uppercase; }
.notice p { color: var(--ink-mute); }
.notice--dark {
  margin: 0 0 28px;
  border-color: rgba(255,255,255,.12);
  background: rgba(217,1,36,.16);
  color: var(--snow);
}
.notice--dark .fnum { color: #ff3652; }
.notice--dark p { color: var(--ice); }
.price-sheet {
  margin-top: clamp(32px, 5vw, 58px);
  padding: clamp(16px, 3vw, 34px);
  border-radius: 14px;
  background: linear-gradient(145deg, #17252e, #0b1217);
  box-shadow: var(--shadow-dark);
  color: var(--snow);
}
.prices-section .price-sheet { margin-top: 0; }
.price-sheet__head {
  display: flex; justify-content: space-between; align-items: end; gap: 24px;
  margin-bottom: 24px;
}
.price-sheet__head p { margin-top: 10px; color: var(--ice); max-width: 62ch; }
.price-sheet__viewport {
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
  -webkit-overflow-scrolling: touch;
}
.price-sheet__viewport img {
  display: block;
  width: max(100%, 1050px);
  max-width: none;
  height: auto;
}
.price-sheet__hint {
  display: none;
  margin-top: 14px;
  color: var(--ice-mute);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.price-table-block + .price-table-block { margin-top: 28px; }
.price-table-block h3 { margin-bottom: 12px; font-size: 28px; color: var(--snow); }
.price-table-scroll {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
.price-table {
  width: 100%;
  min-width: 1160px;
  border-collapse: collapse;
  color: var(--ink);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.price-table th,
.price-table td {
  padding: 12px 10px;
  border-right: 1px solid #d9dfe1;
  border-bottom: 1px solid #d9dfe1;
  text-align: center;
  white-space: nowrap;
}
.price-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
}
.price-table tbody th,
.price-table thead th:first-child {
  position: sticky;
  left: 0;
  z-index: 3;
  min-width: 205px;
  text-align: left;
}
.price-table tbody th {
  background: #f1f4f5;
  font-family: var(--body);
  font-weight: 600;
}
.price-table tbody tr:nth-child(even) td { background: #f7f9f9; }
.price-table tbody tr:hover td,
.price-table tbody tr:hover th { background: #fff0f2; }
.price-table td:last-child,
.price-table th:last-child { border-right: 0; }
.price-table tbody tr:last-child td,
.price-table tbody tr:last-child th { border-bottom: 0; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.contact-card { display: block; padding: 26px; background: #fff; border: 1px solid var(--line-light); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card span { display: block; font-family: var(--mono); color: var(--accent); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }
.contact-card b { display: block; margin-top: 14px; font-family: var(--display); font-size: 24px; text-transform: uppercase; }
.contact-card p { margin-top: 10px; color: var(--ink-mute); font-size: 14px; }
.location-band {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  margin-top: 28px;
}
.location-band__image { min-height: 360px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.location-band__image img { width: 100%; height: 100%; object-fit: cover; }
.location-band__copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(28px, 5vw, 64px);
  border-radius: var(--radius);
  color: var(--snow);
  background: linear-gradient(145deg, var(--bg-2), var(--bg));
  box-shadow: var(--shadow-dark);
}
.location-band__copy p { margin-top: 16px; color: var(--ice); }
.location-band__copy .btn { align-self: flex-start; margin-top: 26px; }
.subpage-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.subpage-strip article { padding: clamp(24px, 3vw, 38px); background: rgba(20,34,43,.74); }
.subpage-strip span { font-family: var(--mono); color: var(--accent); font-size: 11px; }
.subpage-strip h3 { margin-top: 20px; font-size: 24px; }
.subpage-strip p { margin-top: 10px; color: var(--ice); font-size: 14px; }
.subpage-cta { background: linear-gradient(110deg, #b9001c, var(--accent) 55%, #ef1134); color: #fff; }
.subpage-cta__inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.subpage-cta p { margin-top: 10px; color: rgba(255,255,255,.78); }
.subpage-cta .kicker,
.subpage-cta .kicker--ice { color: #fff; }
.subpage-cta .kicker::before,
.subpage-cta .kicker--ice::before { background: #fff; }
.subpage-cta h1,
.subpage-cta h2,
.subpage-cta h3,
.subpage-cta a { color: #fff; }
.subpage-cta .btn--light,
.subpage-cta .btn--light:hover { color: var(--ink); }
.legal-hero {
  padding-block: clamp(90px, 13vw, 170px);
  color: var(--snow);
  background:
    radial-gradient(circle at 82% 20%, rgba(217,1,36,.32), transparent 30%),
    linear-gradient(135deg, var(--bg-2), var(--bg));
}
.legal-hero h1 { margin-top: 18px; }
.legal-hero p { margin-top: 18px; }
.legal-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(24px, 6vw, 80px); align-items: start; }
.legal-card {
  position: sticky; top: calc(var(--header-h) + 28px);
  padding: clamp(26px, 4vw, 46px);
  border-radius: var(--radius);
  color: var(--snow);
  background: linear-gradient(145deg, #172730, #0b1217);
  box-shadow: var(--shadow-dark);
  font-style: normal;
}
.legal-card h2 { margin-top: 18px; }
.legal-card address { margin-top: 20px; color: var(--ice); font-style: normal; }
.legal-card dl { margin-top: 26px; border-top: 1px solid var(--line-dark); }
.legal-card dl div { padding: 14px 0; border-bottom: 1px solid var(--line-dark); }
.legal-card dt { font-family: var(--mono); color: var(--ice-mute); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.legal-card dd { margin-top: 5px; overflow-wrap: anywhere; }
.legal-content { display: grid; gap: 14px; }
.legal-content article { padding: clamp(24px, 4vw, 42px); background: #fff; border: 1px solid var(--line-light); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.legal-content h2 { font-size: 30px; }
.legal-content p { margin-top: 14px; color: var(--ink-mute); }
.legal-content a { display: inline-block; margin-top: 18px; color: var(--accent); font-weight: 600; }

/* FAQ */
.faq-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(217,1,36,.12), transparent 28%),
    var(--snow-2);
}
.faq-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(280px, 1.2fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 56px);
}
.faq-head p { color: var(--ink-mute); }
.faq-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.faq-item {
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.faq-item:hover { transform: translateY(-2px); border-color: rgba(217,1,36,.28); box-shadow: var(--shadow-md); }
.faq-item[open] { border-color: rgba(217,1,36,.34); }
.faq-item summary {
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--body);
  font-size: 20px;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 24px 24px; color: var(--ink-mute); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .sortiment-grid { grid-template-columns: repeat(4, 1fr); }
  .racing-cards { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 40px; }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-cta { margin-left: auto; }
  .nav-toggle { display: block; }
  .header-cta .btn--label-full { display: none; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--rev .split__media { order: 0; }
  .split__media .ph { aspect-ratio: 16/10; }
  .hero__trust { grid-template-columns: repeat(2, 1fr); }
  .quickbar ul { grid-template-columns: repeat(2, 1fr); }
  .quickbar li:nth-child(2) a { border-right: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map iframe { min-height: 320px; }
  .page-intro { grid-template-columns: 1fr; }
  .value-grid, .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .image-grid { grid-template-columns: 1fr; }
  .image-grid img:first-child { min-height: 360px; }
  .image-grid__stack { grid-template-columns: repeat(2, 1fr); }
  .location-band { grid-template-columns: 1fr; }
  .subpage-strip { grid-template-columns: repeat(2, 1fr); }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-card { position: static; }
  .faq-head { grid-template-columns: 1fr; gap: 18px; }
  .hero {
    height: calc(100vh - var(--header-h));
    height: calc(100svh - var(--header-h));
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
  }
  .hero__media img { object-position: 58% center; }
  .hero__inner { padding-top: clamp(48px, 10vh, 92px); }
}
@media (min-width: 641px) and (max-height: 820px) {
  .hero__inner { padding-top: 32px; padding-bottom: 18px; }
  .hero h1 { font-size: clamp(48px, 7vw, 78px); }
  .hero__sub { margin-top: 16px; font-size: 17px; }
  .hero__cta { margin-top: 22px; }
  .hero__trust { margin-top: 24px; }
  .hero__trust li { padding-block: 12px; font-size: 14px; }
  .hero__scroll { margin-top: 12px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  :root { --header-h: 66px; --gutter: 18px; }
  .section { padding-block: 56px; }
  .header-inner { gap: 12px; }
  .site-header .brand__logo { height: 31px; }
  .header-cta .btn { display: none; }
  .nav-toggle { width: 42px; height: 42px; }
  .hero { align-items: flex-end; }
  .hero__inner { padding-top: 34px; padding-bottom: 18px; }
  .hero__tag { margin-bottom: 14px; font-size: 9px; letter-spacing: .15em; }
  .hero h1 { font-size: clamp(41px, 12vw, 58px); line-height: .92; max-width: 10ch; }
  .hero__sub, .hero__trust, .hero__scroll { display: none; }
  .hero__cta { margin-top: 20px; gap: 9px; }
  .hero__cta .btn { flex: 1 1 100%; padding: 12px 16px; font-size: 16px; }
  .sortiment-grid { grid-template-columns: repeat(2, 1fr); }
  .racing-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .quickbar ul { grid-template-columns: 1fr; }
  .quickbar ul { grid-template-columns: repeat(2, 1fr); }
  .quickbar a { min-height: 64px; padding: 14px; border-right: 1px solid rgba(255,255,255,0.18); border-bottom: 1px solid rgba(255,255,255,0.18); font-size: 14px; }
  .quickbar li:nth-child(even) a { border-right: none; }
  .rent-grid { grid-template-columns: 1fr; }
  .c-row { grid-template-columns: 1fr; gap: 4px; }
  .contact-info { padding: 24px 20px; }
  .page-hero { min-height: auto; }
  .page-hero__inner { padding-block: 58px 38px; }
  .page-hero h1 { font-size: clamp(42px, 13vw, 56px); margin-top: 14px; }
  .page-hero .lead { margin-top: 14px; font-size: 16px; }
  .page-hero__cta { margin-top: 22px; gap: 8px; }
  .page-hero__stats { margin-top: 24px; gap: 6px; }
  .page-hero__stats span { padding: 6px 9px; font-size: 8.5px; }
  .page-hero__cta .btn { width: 100%; }
  .value-grid, .price-grid, .contact-cards, .image-grid__stack { grid-template-columns: 1fr; }
  .image-grid img, .image-grid img:first-child { min-height: 260px; }
  .image-grid { margin-top: 32px; gap: 10px; }
  .image-grid__stack { gap: 10px; }
  .page-intro { gap: 24px; }
  .value-card, .price-card { padding: 22px 20px; }
  .value-card h3, .price-card h3 { margin-top: 14px; }
  .contact-cards { gap: 10px; margin-bottom: 18px; }
  .contact-card { padding: 20px; }
  .contact-card b { font-size: 21px; overflow-wrap: anywhere; }
  .contact-grid { gap: 14px; }
  .contact-map iframe { min-height: 260px; }
  .map-consent { min-height: 260px; }
  .contact-info { padding: 24px 20px; }
  .c-row { padding: 13px 0; }
  .location-band { margin-top: 16px; gap: 10px; }
  .location-band__copy { padding: 24px 20px; }
  .subpage-strip article { padding: 22px 20px; }
  .subpage-strip h3 { margin-top: 12px; }
  .notice { grid-template-columns: 1fr; padding: 20px; }
  .footer-top { gap: 28px; padding-bottom: 38px; }
  .site-footer { padding-top: 46px; }
  .footer-bottom { padding-block: 20px 26px; align-items: flex-start; flex-direction: column; }
  .footer-meta, .footer-credits { align-items: flex-start; flex-direction: column; gap: 6px; }
  .legal-hero { padding-block: 72px; }
  .legal-content article, .legal-card { padding: 22px 20px; }
  .faq-list { grid-template-columns: 1fr; gap: 10px; }
  .faq-item summary { padding: 19px 18px; font-size: 20px; }
  .faq-item p { padding: 0 18px 20px; }
  .cookie-banner,
  .cookie-banner.is-settings {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 18px max(18px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 16px 16px 0 0;
  }
  .cookie-banner__actions { display: grid; grid-template-columns: 1fr; }
  .cookie-banner__actions .btn { width: 100%; white-space: normal; }
  .cookie-option { padding: 14px; }
  .subpage-cta__inner { align-items: stretch; flex-direction: column; }
  .subpage-cta .btn { width: 100%; }
  .price-sheet { padding: 14px; border-radius: 8px; }
  .price-sheet__head { align-items: stretch; flex-direction: column; }
  .price-sheet__head .btn { width: 100%; }
  .price-sheet__hint { display: block; }
  .location-band__image { min-height: 260px; }
  .location-band__copy .btn { width: 100%; }
  .subpage-strip { grid-template-columns: 1fr; }
}

/* ============================================================
   MOTION — scroll reveals, hero zoom, hover dynamics
   ============================================================ */

/* Hero: slow ambient zoom + content rise on load */
@media (prefers-reduced-motion: no-preference) {
  .hero > .hero__media img.img-cover {
    animation: heroZoom 18s ease-out forwards;
    transform-origin: 60% 45%;
  }
  @keyframes heroZoom {
    from { transform: scale(1.0); }
    to   { transform: scale(1.08); }
  }

  .hero__inner > * { opacity: 0; transform: translateY(22px); animation: heroRise .85s cubic-bezier(.22,.61,.36,1) forwards; }
  .hero__inner > .hero__tag    { animation-delay: .10s; }
  .hero__inner > h1            { animation-delay: .20s; }
  .hero__inner > .hero__sub    { animation-delay: .34s; }
  .hero__inner > .hero__cta    { animation-delay: .46s; }
  .hero__inner > .hero__trust  { animation-delay: .58s; }
  @keyframes heroRise {
    to { opacity: 1; transform: none; }
  }
}

/* Scroll reveal (JS adds .reveal then toggles .is-in) */
.reveal { opacity: 0; transform: translateY(34px) scale(.985); transition: opacity .75s cubic-bezier(.22,.61,.36,1), transform .75s cubic-bezier(.22,.61,.36,1); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }
.split__media.reveal { transform: translateX(-28px) scale(.985); }
.split__body.reveal, .contact-info.reveal { transform: translateX(28px); }
.split__media.reveal.is-in, .split__body.reveal.is-in, .contact-info.reveal.is-in { transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Image zoom inside split media on hover */
.split__media { overflow: hidden; border-radius: var(--radius); }
.split__media img.img-cover { transition: transform .9s cubic-bezier(.22,.61,.36,1); }
.split__media:hover img.img-cover { transform: scale(1.045); }

/* Animated accent underline on section kickers when revealed */
.kicker::before { transition: width .6s cubic-bezier(.22,.61,.36,1) .15s; }
.reveal .kicker::before, .section-head.reveal .kicker::before { width: 0; }
.reveal.is-in .kicker::before, .section-head.reveal.is-in .kicker::before { width: 22px; }

/* Quickbar arrows nudge continuously-subtle on hover only (already), add lift */
.quickbar a .arr { transition: transform .25s ease; }
.quickbar a:hover .arr { transform: translateX(6px); }

/* Why numbers count-up feel: scale pop on reveal */
.why-item .why-n { transition: color .3s ease; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .hero > .hero__media img.img-cover { animation: none !important; }
  .hero__inner > * { opacity: 1 !important; transform: none !important; animation: none !important; }
  .hero__scroll i::after { animation: none !important; }
  .hero__media, .racing__media { transform: none !important; }
}
