/* ============================================
   ABUS Targon · Freeride Mountain Schorndorf
   ============================================ */

:root {
  --bg: #ffffff;
  --bg-paper: #ffffff;
  --bg-soft: #f5f5f5;
  --bg-deep: #ededed;
  --bg-dark: #0f0f0f;
  --bg-dark-2: #1a1a1a;

  --ink: #0f0f0f;
  --ink-2: #2a2a2a;
  --ink-3: #525252;
  --ink-4: #737373;
  --line: #e5e5e5;
  --line-2: #d4d4d4;

  --primary: #dc1e24;
  --primary-2: #b21219;
  --primary-soft: #fce0e2;
  --primary-tint: #fef2f3;

  --shadow-sm: 0 1px 2px rgba(15, 15, 15, 0.04), 0 2px 8px rgba(15, 15, 15, 0.04);
  --shadow-md: 0 6px 20px rgba(15, 15, 15, 0.08), 0 2px 6px rgba(15, 15, 15, 0.04);
  --shadow-lg: 0 16px 48px rgba(15, 15, 15, 0.14), 0 6px 16px rgba(15, 15, 15, 0.06);

  --radius-sm: 2px;
  --radius: 4px;
  --radius-lg: 8px;

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea { font-family: inherit; font-size: inherit; }
picture { display: block; }
address { font-style: normal; }

/* A11y */
*:focus-visible {
  outline: 2.5px solid var(--primary);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Skip-Link · WCAG 2.4.1 Bypass Blocks (Level A).
   Erscheint nur bei Tastaturfokus (Tab), nicht bei Hover. */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  z-index: 1000;
  border-radius: 4px;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 12px; outline: 2.5px solid var(--primary); outline-offset: 2px; }
/* Typography */
h1, h2, h3 {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
}
h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
h3 {
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  margin-right: 4px;
}
.eyebrow-light { color: #fff; }
.eyebrow-light::before { background: var(--primary); }
.eyebrow-sep { opacity: 0.5; }

.accent { color: var(--primary); font-weight: inherit; }
.accent-light { color: var(--primary); font-weight: inherit; }

/* Layout */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

section { padding: clamp(72px, 9vw, 120px) 0; }

.sec-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}
.sec-head .eyebrow { margin-bottom: 20px; }
.sec-head h2 { margin-bottom: 16px; }
.sec-head p {
  color: var(--ink-3);
  font-size: 1.06rem;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================
   NAV (Freeride Mountain Branding)
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 12px clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}
.logo-img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: block;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 2px;
}
.logo-brand {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--ink-4);
  font-weight: 500;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 0.92rem;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.25s;
}
.nav-links a:hover::after { width: 100%; }

@media (max-width: 880px) { .nav-links { display: none; } }
@media (max-width: 540px) { .logo-sub { display: none; } }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 0;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-cta {
  background: var(--primary);
  color: #fff;
}
.btn-cta:hover {
  background: var(--primary-2);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-ghost-light:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn-cta-light {
  background: #fff;
  color: var(--ink);
}
.btn-cta-light:hover {
  background: var(--primary);
  color: #fff;
}
.btn-lg { padding: 18px 32px; font-size: 0.96rem; }
.nav-cta { padding: 10px 20px; font-size: 0.78rem; }
@media (max-width: 540px) { .nav-cta { display: none; } }

/* ============================================
   HERO with SLIDER
   ============================================ */
.hero {
  position: relative;
  min-height: clamp(560px, 85vh, 880px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  padding: 0;
  background: var(--bg-dark);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  pointer-events: none;
}
.slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.slide picture {
  width: 100%;
  height: 100%;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Subtle Ken-Burns on active slide for atmosphere */
  transform: scale(1.0);
  transition: transform 6s ease-out;
}
.slide.is-active img {
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.2) 0%, rgba(15, 15, 15, 0.55) 60%, rgba(15, 15, 15, 0.85) 100%),
    linear-gradient(90deg, rgba(15, 15, 15, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 4vw, 56px) clamp(56px, 7vw, 80px);
}
.hero .eyebrow { color: #fff; margin-bottom: 24px; }
.hero h1 {
  color: #fff;
  margin-bottom: 18px;
  max-width: 880px;
}
.hero-sub {
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.5;
}
.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 720px;
}
.hb { display: flex; flex-direction: column; gap: 4px; }
.hb-key {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.hb-val {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.005em;
}

/* Slider controls (pause + dots) · WCAG 2.2.2 Pause, Stop, Hide */
.hero-controls {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 6px 4px 4px;
  background: rgba(15, 15, 15, 0.4);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-pause {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
  padding: 0;
}
.hero-pause:hover { background: rgba(255, 255, 255, 0.32); }
.hero-pause:active { transform: scale(0.92); }
.hp-icon {
  width: 14px;
  height: 14px;
  display: block;
}
.hero-pause .hp-play { display: none; }
.hero-pause[aria-pressed="true"] .hp-pause { display: none; }
.hero-pause[aria-pressed="true"] .hp-play { display: block; margin-left: 1px; }

.hero-dots {
  display: flex;
  gap: 10px;
  padding: 0 6px;
}
.dot {
  width: 28px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 2px;
  transition: background 0.3s, width 0.3s;
  position: relative;
  overflow: hidden;
}
.dot:hover { background: rgba(255, 255, 255, 0.6); }
.dot.is-active {
  background: rgba(255, 255, 255, 0.25);
}
.dot.is-active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform-origin: left;
  animation: dot-progress 5s linear forwards;
}
@keyframes dot-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.hero.is-paused .dot.is-active::after {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .slide img { transform: none !important; transition: none !important; }
  .slide { transition: opacity 0s !important; }
  .dot.is-active::after { animation: none !important; }
}

/* ============================================
   INTRO
   ============================================ */
.intro {
  background: var(--bg);
  padding: clamp(64px, 8vw, 96px) 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 760px) { .intro-grid { grid-template-columns: 1fr; gap: 24px; } }
.intro-text h2 { margin-bottom: 28px; max-width: 720px; }
.intro-text p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 18px;
  max-width: 720px;
}
.intro-text p:last-child { margin-bottom: 0; }

/* ============================================
   MODULAR
   ============================================ */
.modular { background: var(--bg-soft); }
.modular-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 880px) { .modular-grid { grid-template-columns: 1fr; } }

.mode-card {
  background: var(--bg-paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.mode-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.mode-img {
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-deep) 100%);
  aspect-ratio: 5 / 4;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.mode-img img { width: 90%; height: 90%; object-fit: contain; }
.mode-text {
  padding: 32px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mode-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.mode-text h3 {
  font-size: 1.7rem;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
.mode-text > p { color: var(--ink-3); font-size: 1rem; line-height: 1.55; }
.mode-list {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mode-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-2);
  font-size: 0.94rem;
  line-height: 1.5;
}
.mode-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 12px; height: 2px;
  background: var(--primary);
}

/* ============================================
   FEATURES
   ============================================ */
.features { background: var(--bg); }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1000px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feat-grid { grid-template-columns: 1fr; } }

.feat {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.feat:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.feat-img {
  background: linear-gradient(135deg, var(--bg-paper) 0%, var(--bg-soft) 100%);
  aspect-ratio: 1;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
}
.feat-img img { width: 100%; height: 100%; object-fit: contain; }
.feat-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feat-num {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--primary);
}
.feat-body h3 {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.feat-body p {
  color: var(--ink-3);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* ============================================
   VIDEO
   ============================================ */
.video-section {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.video-section .sec-head h2 { color: #fff; }
.video-section .sec-head p { color: rgba(255, 255, 255, 0.7); }
.video-frame {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg-dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.video-el { width: 100%; height: 100%; display: block; object-fit: cover; }

/* ============================================
   COLORS (with image slider per color)
   ============================================ */
.colors { background: var(--bg-soft); }

.color-stage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 48px);
  align-items: start;
}
@media (max-width: 980px) { .color-stage { grid-template-columns: 1fr; gap: 28px; } }

.color-display {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cd-stage {
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-deep) 100%);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 4%;
}
.cd-stage picture {
  width: 100%;
  height: 100%;
  display: block;
}
.cd-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.cd-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  font-family: var(--sans);
  color: var(--ink);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cd-arrow:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}
.cd-arrow:active { transform: translateY(-50%) scale(0.95); }
.cd-arrow span {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
  display: block;
  margin-top: -4px;
}
.cd-prev { left: 14px; }
.cd-next { right: 14px; }

.cd-counter {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  background: rgba(255, 255, 255, 0.85);
  padding: 5px 11px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
}

.cd-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.cd-thumb {
  aspect-ratio: 1;
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  cursor: pointer;
  padding: 6px;
  display: grid;
  place-items: center;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  position: relative;
}
.cd-thumb:hover {
  border-color: var(--ink-3);
  transform: translateY(-1px);
}
.cd-thumb.is-active {
  border-color: var(--primary);
  background: var(--bg-paper);
}
.cd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cd-thumb-label {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: var(--ink-4);
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.cd-thumb:hover .cd-thumb-label,
.cd-thumb.is-active .cd-thumb-label { opacity: 1; }

/* Right column: picker + meta */
.color-controls {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.color-picker {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.color-swatch {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-paper);
  border: 1.5px solid var(--line);
  padding: 14px 18px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  font-family: inherit;
}
.color-swatch:hover {
  border-color: var(--ink-3);
  transform: translateX(2px);
}
.color-swatch.is-active {
  border-color: var(--primary);
  background: var(--primary-tint);
}
.cs-dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--swatch, #999);
  border: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  position: relative;
}
.cs-dot::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  pointer-events: none;
}
.cs-label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--ink);
  letter-spacing: 0.005em;
}

/* Meta box right under picker */
.color-meta {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cm-key {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 4px;
}
.cm-val {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cm-sub {
  font-size: 0.84rem;
  color: var(--ink-3);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.cm-shop-link {
  margin-top: 4px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 18px;
  transition: background 0.2s, transform 0.15s;
}
.cm-shop-link:hover {
  background: var(--primary);
  transform: translateX(2px);
}

/* ============================================
   GALLERY (masonry, preserves native aspect ratios)
   ============================================ */
.gallery { background: var(--bg); }
.gallery-grid {
  column-count: 3;
  column-gap: 12px;
}
@media (max-width: 880px) { .gallery-grid { column-count: 2; } }
@media (max-width: 540px) { .gallery-grid { column-count: 1; } }

.g-item {
  break-inside: avoid;
  margin: 0 0 12px 0;
  overflow: hidden;
  background: var(--bg-soft);
  display: block;
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.g-item.in,
.g-item:not(.reveal) { opacity: 1; transform: none; }
.g-item picture { display: block; width: 100%; }
.g-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.g-item:hover img { transform: scale(1.04); }

/* ============================================
   ORIGIN (Made in Italy)
   ============================================ */
.origin {
  background: var(--bg-dark);
  color: #fff;
}
.origin-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(32px, 6vw, 80px);
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 760px) { .origin-card { grid-template-columns: 1fr; gap: 20px; } }
.origin-eyebrow .eyebrow { color: var(--primary); }
.origin-body h2 { color: #fff; margin-bottom: 24px; max-width: 720px; }
.origin-body p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 720px;
}

/* ============================================
   SPECS
   ============================================ */
.specs { background: var(--bg-soft); }
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg-paper);
  border: 1px solid var(--line);
}
@media (max-width: 880px) { .specs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .specs-grid { grid-template-columns: 1fr; } }

.spec-item {
  padding: 28px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.spec-item:nth-child(4n) { border-right: none; }
@media (max-width: 880px) {
  .spec-item:nth-child(2n) { border-right: none; }
  .spec-item:nth-child(2n-1) { border-right: 1px solid var(--line); }
}
@media (max-width: 480px) {
  .spec-item { border-right: none; }
}
.sp-key {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.sp-val {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}

/* ============================================
   BUY (3 Optionen)
   ============================================ */
.buy {
  background: var(--bg);
  position: relative;
}

.buy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
@media (max-width: 980px) { .buy-grid { grid-template-columns: 1fr; } }

.buy-card {
  background: var(--bg-paper);
  border: 1.5px solid var(--line);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.buy-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink-3);
  box-shadow: var(--shadow-md);
}
.bc-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}
.bc-num {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  color: var(--primary);
}
.bc-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.buy-card h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.buy-card > p {
  color: var(--ink-3);
  font-size: 0.96rem;
  line-height: 1.55;
  flex: 1;
}
.bc-btn {
  align-self: flex-start;
  margin-top: 8px;
}

.buy-card-feature {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  position: relative;
  overflow: hidden;
}
.buy-card-feature::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(220, 30, 36, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.buy-card-feature h3 { color: #fff; }
.buy-card-feature > p { color: rgba(255, 255, 255, 0.78); }
.buy-card-feature .bc-num { color: var(--primary); }
.buy-card-feature .bc-tag { color: rgba(255, 255, 255, 0.65); }
.bc-banner {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  z-index: 2;
}

/* Store info card */
.store-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 880px) { .store-card { grid-template-columns: 1fr; } }

.sc-info { display: flex; flex-direction: column; gap: 6px; }
.sc-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}
.store-card h3 {
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.sc-addr {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.5;
  font-weight: 500;
}
.sc-phone {
  margin-top: 6px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  align-self: flex-start;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.sc-phone:hover { color: var(--primary); }

.sc-hours { display: flex; flex-direction: column; gap: 8px; }
.sh-key {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 4px;
}
.sc-hours ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sc-hours ul li {
  display: flex;
  justify-content: space-between;
  font-size: 0.94rem;
  color: var(--ink-2);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  border-bottom: 1px dashed var(--line);
  padding: 4px 0;
}
.sc-hours ul li span:first-child {
  font-weight: 700;
  color: var(--ink);
}
.sh-vip {
  font-size: 0.84rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 6px;
}

.sc-action { display: flex; align-items: center; }
.sc-route {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  color: #fff;
  padding: 18px 28px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.sc-route:hover {
  background: var(--primary);
  transform: translateY(-1px);
}
.sc-arrow { font-size: 1.1rem; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta { background: var(--bg); padding-top: 0; padding-bottom: clamp(60px, 8vw, 100px); }

.fc-card {
  position: relative;
  min-height: clamp(420px, 50vw, 560px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.fc-bg { position: absolute; inset: 0; z-index: 0; }
.fc-bg img, .fc-bg picture { width: 100%; height: 100%; object-fit: cover; }
.fc-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.3) 0%, rgba(15, 15, 15, 0.7) 100%),
    linear-gradient(90deg, rgba(15, 15, 15, 0.5) 0%, transparent 60%);
}
.fc-content {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 6vw, 72px);
  max-width: 880px;
}
.fc-content .eyebrow { color: #fff; margin-bottom: 20px; }
.fc-content .eyebrow::before { background: var(--primary); }
.fc-content h2 { color: #fff; margin-bottom: 18px; }
.fc-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 540px;
}
.fc-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 36px 0;
  font-size: 0.9rem;
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr; gap: 18px; text-align: left; }
}
.foot-brand { display: flex; align-items: center; gap: 12px; }
.foot-logo { width: 32px; height: 32px; flex-shrink: 0; }
.foot-name { display: flex; flex-direction: column; line-height: 1.1; gap: 2px; }
.foot-name strong {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: #fff;
}
.foot-name span {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.foot-contact { display: flex; flex-direction: column; gap: 4px; }
.foot-contact a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  align-self: flex-start;
}
.foot-contact a:hover { color: #fff; border-bottom-color: var(--primary); }
.foot-meta { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 880px) { .foot-meta { justify-content: flex-start; } }
.foot-meta a {
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.foot-meta a:hover { color: #fff; border-bottom-color: var(--primary); }
.foot-meta .sep { opacity: 0.4; }

.footer-copyright {
  max-width: 1320px;
  margin: 24px auto 0;
  padding: 16px clamp(20px, 4vw, 56px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

/* ============================================
   LEGAL PAGES (Impressum, Datenschutz)
   Targon-Layout, kein Hero. Klare Lesetypografie.
   ============================================ */
.legal {
  background: var(--bg);
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(72px, 9vw, 120px);
}
.legal-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.legal-back:hover { color: var(--primary-2); border-color: var(--primary-2); }
.legal-back .lb-arrow {
  font-size: 1.1rem;
  line-height: 1;
}

.legal-eyebrow {
  margin-bottom: 16px;
}
.legal h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
  color: var(--ink);
}
.legal h2 {
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-top: 36px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--line);
}
.legal h2:first-of-type { margin-top: 0; }
.legal h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  margin-top: 22px;
  margin-bottom: 8px;
}
.legal p, .legal address {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 14px;
  font-style: normal;
}
.legal p strong { color: var(--ink); font-weight: 700; }
.legal a {
  color: var(--primary);
  border-bottom: 1px solid var(--primary-soft);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.legal a:hover { color: var(--primary-2); border-color: var(--primary); }
.legal ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
}
.legal ul li {
  position: relative;
  padding-left: 20px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.legal ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 2px;
  background: var(--primary);
}
.legal-block {
  background: var(--bg-soft);
  border-left: 3px solid var(--primary);
  padding: 22px 26px;
  margin: 22px 0;
}
.legal-block p { margin-bottom: 8px; }
.legal-block p:last-child { margin-bottom: 0; }

.legal-meta {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--ink-4);
}

/* ============================================
   REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
