/* =========================================================
   KUCKI ENDURO TOURS — Stylesheet
   Marke: dunkel / Enduro / grobe Typo / orange Akzent
   ========================================================= */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0E0E0E;
  color: #F0EDE4;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
html { overflow-x: hidden; max-width: 100vw; }
img { max-width: 100%; display: block; height: auto; }
* { box-sizing: border-box; }
.container, section, .grid > * { max-width: 100%; min-width: 0; }
a { color: #E10E14; text-decoration: none; transition: color .2s; }
a:hover { color: #FF2A30; }

/* ---------- DESIGN TOKENS ---------- */
:root {
  --bg:           #232323;  /* Dunkelgrau statt Beinahe-Schwarz */
  --bg-elev:      #2e2e2e;
  --bg-elev-2:    #383838;
  --border:       #3a3a3a;
  --border-light: #4a4a4a;
  --primary:      #E10E14;  /* Beta/Rieju Racing-Rot — ersetzt das alte KTM-Orange */
  --primary-hov:  #FF2A30;
  --primary-dim:  #8E0A0E;
  --khaki:        #8B8C5A;
  --khaki-dark:   #5C5D3B;
  --text:         #F0EDE4;
  --text-muted:   #A0A0A0;
  --text-soft:    #C8C5BC;
  --success:      #6FCF6F;
  --warn:         #FFB347;
  --maxw:         1280px;
  --pad-x:        clamp(20px, 5vw, 60px);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Bebas Neue', 'Oswald', Impact, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 .6em 0;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; letter-spacing: 0.08em; }
p { margin: 0 0 1em 0; color: var(--text-soft); }
.lead { font-size: 1.25rem; color: var(--text-soft); }
small, .small { font-size: .82rem; color: var(--text-muted); }
.muted { color: var(--text-muted); }
.accent { color: var(--primary); }

/* ---------- LAYOUT ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
section { padding: clamp(60px, 8vw, 110px) 0; position: relative; }
.section-head { max-width: 780px; margin-bottom: 50px; }
.section-head .eyebrow {
  display: inline-block;
  color: var(--primary);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.25em;
  font-size: .9rem;
  margin-bottom: 1rem;
}
.divider { display: none; }

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(14,14,14,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding .25s;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  color: var(--text);
  letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.nav-logo .dot { color: var(--primary); }
.nav-logo:hover { color: var(--text); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
  align-items: center;
}
.nav-links a {
  color: var(--text-soft);
  font-size: .95rem;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--primary);
}
.nav-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: flex;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.lang-switch button {
  background: transparent;
  color: var(--text-muted);
  border: 0;
  padding: 6px 10px;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.05em;
}
.lang-switch button.active { background: var(--primary); color: #000; }
.nav-burger {
  display: none;
  background: transparent; border: 0; color: var(--text);
  font-size: 1.6rem; cursor: pointer; padding: 6px;
}

/* MOBILE NAV */
@media (max-width: 880px) {
  .nav-burger { display: block; }
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--bg-elev);
    flex-direction: column;
    gap: 0;
    padding: 20px var(--pad-x);
    border-bottom: 1px solid var(--border);
    transform: translateY(-130%);
    transition: transform .3s;
    align-items: stretch;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    display: block;
  }
  .nav-links a:last-child { border-bottom: 0; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  background: var(--primary);
  color: #000;
}
.btn:hover { background: var(--primary-hov); color: #000; transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  border-color: var(--border-light);
  color: var(--text);
}
.btn-secondary:hover {
  background: var(--text);
  color: #000;
  border-color: var(--text);
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-ghost:hover { background: var(--primary); color: #000; }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 36px; font-size: 1.2rem; }

/* ---------- HERO ---------- */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(14,14,14,0.65) 0%, rgba(14,14,14,0.95) 100%),
    linear-gradient(135deg, #1f1f1f, #0a0a0a);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding-top: 80px;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 880px; }
.hero-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--primary);
  letter-spacing: 0.3em;
  font-size: .95rem;
  margin-bottom: 1.5rem;
  display: block;
}
.hero h1 { font-size: clamp(2.8rem, 8vw, 6.5rem); }
.hero h1 span { color: var(--primary); }
.hero .lead { max-width: 620px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: .8rem;
  letter-spacing: 0.2em;
  text-align: center;
  z-index: 2;
}
.hero-scroll::after {
  content: ''; display: block; width: 1px; height: 30px;
  background: var(--text-muted); margin: 8px auto 0;
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .3; transform: scaleY(.6); }
}

/* ---------- PAGE HEADER (kleinere Hero auf Subpages) ---------- */
.page-header {
  padding: 130px 0 60px;
  background: linear-gradient(180deg, rgba(14,14,14,0.7), var(--bg)),
              linear-gradient(135deg, #1f1f1f, #0a0a0a);
  border-bottom: 1px solid var(--border);
}
.page-header h1 { margin-bottom: .3em; }
.page-header .lead { max-width: 700px; margin-bottom: 0; }
.breadcrumb {
  font-size: .85rem; color: var(--text-muted);
  margin-bottom: 1rem; letter-spacing: 0.05em;
}
.breadcrumb a { color: var(--text-muted); }

/* ---------- CARDS ---------- */
.card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(225,14,20,0.14);
}
.card-img {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #2a2a2a, #111);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.card-img.placeholder::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  font-size: 1.2rem;
}
.card-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--primary);
  color: #000;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.12em;
  font-size: .8rem;
  padding: 5px 10px;
}
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: .3em; }
.card-meta {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-size: .85rem; color: var(--text-muted);
  margin-bottom: 1rem;
}
.card-meta span::before { content: '— '; color: var(--primary); }
.card-body p { flex: 1; }
.card-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 14px; gap: 12px;
}
.card-price {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--text);
  font-size: 1.4rem;
}
.card-price small { color: var(--text-muted); font-size: .7rem; letter-spacing: 0.1em; }

/* ---------- GRID ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ---------- FEATURE STRIP ---------- */
.feature-strip {
  background: var(--bg-elev);
  border-block: 1px solid var(--border);
  padding: 40px 0;
}
.feature-strip .grid { gap: 30px; }
.feature {
  display: flex; gap: 18px; align-items: flex-start;
  min-width: 0;
}
.feature > * { min-width: 0; }
.feature > div:not(.feature-icon) { flex: 1 1 auto; min-width: 0; overflow-wrap: anywhere; }
.feature-icon {
  color: var(--primary);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { display: block; width: 100%; height: 100%; }
.feature h4 { margin-bottom: .3em; color: var(--text); word-break: break-word; }
.feature p { margin: 0; font-size: .92rem; word-break: break-word; overflow-wrap: anywhere; }

/* Mobile: Feature-Cards kompakter */
@media (max-width: 600px) {
  .feature { gap: 14px; }
  .feature-icon { width: 36px; height: 36px; }
  .feature h4 { font-size: 1rem; }
  .feature p { font-size: 0.88rem; }
}

/* ---------- TOUR DETAIL ---------- */
.tour-detail {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
}
@media (max-width: 900px) {
  .tour-detail { grid-template-columns: 1fr; }
}
.info-box {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  padding: 28px;
  border-left: 4px solid var(--primary);
}
.info-box h4 { color: var(--primary); margin-bottom: 1rem; }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; gap: 12px;
  color: var(--text-soft);
  font-size: .92rem;
}
.info-list li:last-child { border-bottom: 0; }
.info-list li strong { color: var(--text); font-weight: 600; }

/* ---------- KONFIGURATOR (Booking) ---------- */
.konfig {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 980px) {
  .konfig { grid-template-columns: 1fr; }
}
.konfig-form {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  padding: 30px;
}
.konfig-step {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.konfig-step:last-child { border-bottom: 0; }
.konfig-step h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 12px;
}
.step-num {
  width: 32px; height: 32px;
  background: var(--primary);
  color: #000;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
}
.field {
  display: flex; flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.field label {
  font-size: .85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--border-light);
  color: var(--text);
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
  border-radius: 0;
  transition: border-color .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--primary);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.radio-group, .checkbox-group {
  display: grid; gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.option-card {
  border: 1px solid var(--border-light);
  background: var(--bg);
  padding: 14px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: border-color .2s, background .2s;
  position: relative;
}
.option-card:hover { border-color: var(--text-muted); }
.option-card input { margin: 4px 0 0 0; accent-color: var(--primary); width: auto; }
.option-card.selected { border-color: var(--primary); background: rgba(225,14,20,0.07); }
.option-card .opt-title {
  font-weight: 600; color: var(--text);
  font-size: .95rem; display: block;
}
.option-card .opt-sub {
  font-size: .82rem; color: var(--text-muted); margin-top: 2px;
}
.option-card .opt-price {
  position: absolute;
  right: 14px; top: 14px;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--primary);
  letter-spacing: 0.05em;
}

/* SUMMARY */
.konfig-summary {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  padding: 30px;
  position: sticky;
  top: 100px;
}
.konfig-summary h3 {
  font-size: 1.2rem; margin-bottom: 1.2rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.summary-line {
  display: flex; justify-content: space-between; gap: 10px;
  padding: 8px 0; font-size: .9rem;
  color: var(--text-soft);
  border-bottom: 1px dashed var(--border);
}
.summary-line .label { color: var(--text-muted); }
.summary-line .val { color: var(--text); text-align: right; }
.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--primary);
  font-family: 'Bebas Neue', sans-serif;
}
.summary-total .lbl { font-size: 1.1rem; color: var(--text-muted); letter-spacing: 0.1em; }
.summary-total .amt { font-size: 2.4rem; color: var(--primary); letter-spacing: 0.02em; }
.summary-note { font-size: .78rem; color: var(--text-muted); margin-top: 12px; }

/* ---------- TOUR IMPRESSIONS (Photo Strip + Video) ---------- */
.impressions {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid var(--border);
}
.impressions h3 {
  font-size: 1.3rem;
  margin-bottom: .3em;
}
.impressions .lbl {
  display: inline-block;
  color: var(--primary);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.25em;
  font-size: .85rem;
  margin-bottom: .8rem;
}
.imp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
  margin-bottom: 40px;
}
.imp-item {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2a2a2a, #111);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .25s;
}
.imp-item:hover { transform: scale(1.03); }
.imp-item::after {
  content: '🔍';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  opacity: 0;
  transition: opacity .25s;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  padding: 12px;
  line-height: 1;
}
.imp-item:hover::after { opacity: 1; }

/* VIDEO EMBED */
.video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  margin-bottom: 24px;
  overflow: hidden;
}
.video-wrap iframe,
.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--text-muted);
  text-align: center;
  padding: 30px;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  background-color: rgba(0,0,0,0.6);
  cursor: pointer;
  transition: background-color .25s;
}
.video-placeholder:hover { background-color: rgba(0,0,0,0.4); }
.video-placeholder .play-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--primary);
  color: #000;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  padding-left: 6px;
  box-shadow: 0 0 0 6px rgba(225,14,20,0.22);
}
.video-placeholder .caption {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.15em;
  color: var(--text);
  font-size: 1rem;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  background: transparent;
  border: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* ---------- TESTIMONIAL ---------- */
.testimonial {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  padding: 30px;
  display: flex; flex-direction: column;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px; left: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  color: var(--primary);
  line-height: 1;
  opacity: .4;
}
.testimonial p {
  flex: 1; font-style: italic;
  color: var(--text-soft);
  font-size: 1.05rem;
}
.testimonial-author {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--khaki));
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  color: #000; font-size: 1.2rem;
}
.author-name { font-weight: 600; color: var(--text); }
.author-tour { font-size: .82rem; color: var(--text-muted); }
.stars { color: var(--primary); font-size: 1rem; letter-spacing: 2px; }

/* ---------- BLOG ---------- */
.blog-card .card-img { aspect-ratio: 4 / 3; }
.blog-card h3 { font-size: 1.4rem; }
.blog-date {
  color: var(--primary);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.15em;
  font-size: .82rem;
  margin-bottom: .5rem;
  display: block;
}
.blog-cat {
  display: inline-block;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 2px 8px;
  font-size: .75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ---------- GALLERY ---------- */
.gallery-tabs {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 30px;
}
.gallery-tabs button {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--text-soft);
  padding: 10px 20px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s;
}
.gallery-tabs button:hover { color: var(--text); border-color: var(--text-muted); }
.gallery-tabs button.active { background: var(--primary); color: #000; border-color: var(--primary); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 6px;
}
.gallery-item {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #2a2a2a, #111);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .25s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 8px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--text);
  font-family: 'Bebas Neue', sans-serif;
  font-size: .9rem;
  letter-spacing: 0.1em;
  opacity: 0; transform: translateY(10px);
  transition: all .25s;
}
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }
.gallery-item .gi-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  color: rgba(225,14,20,0.32);
  font-size: 2rem;
  letter-spacing: 0.2em;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer h5 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: 4px 0; }
.footer a { color: var(--text-muted); font-size: .92rem; }
.footer a:hover { color: var(--primary); }
.footer-brand p { color: var(--text-muted); font-size: .9rem; max-width: 340px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  color: var(--text-muted); font-size: .82rem;
}
.social { display: flex; gap: 14px; }
.social a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all .2s;
}
.social a:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #000;
}

/* ---------- CONTACT ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 880px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-info-block {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-block:last-child { border-bottom: 0; }
.contact-info-block h4 {
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-size: .85rem;
  margin-bottom: .4rem;
}
.contact-info-block p, .contact-info-block a {
  color: var(--text);
  font-size: 1.05rem;
  margin: 0;
}
.map-embed {
  aspect-ratio: 16/9;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.2em;
}
.whatsapp-btn {
  background: #25D366;
  color: #000;
  padding: 14px 22px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  text-decoration: none;
  margin-top: 10px;
}
.whatsapp-btn:hover { background: #2ee477; color: #000; }

/* =========================================================
   SLAM-IN HERO INTRO — page-load animation, home only
   ========================================================= */

/* hero-content normalerweise via .reveal versteckt — auf Home sofort sichtbar machen, Kinder kommen einzeln */
body[data-page="home"] .hero-content.reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Direkte Kinder von hero-content (außer h1) fade-up nach den Slams */
body[data-page="home"] .hero-content > .hero-eyebrow,
body[data-page="home"] .hero-content > .lead,
body[data-page="home"] .hero-content > .hero-actions {
  opacity: 0;
  animation: slamFadeUp .8s cubic-bezier(.22,1,.36,1) forwards;
}
body[data-page="home"] .hero-content > .hero-eyebrow { animation-delay: 0.15s; }
body[data-page="home"] .hero-content > .lead         { animation-delay: 1.7s; }
body[data-page="home"] .hero-content > .hero-actions { animation-delay: 1.9s; }

@keyframes slamFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* h1-Wrapper braucht Tiefe für 3D-Slam */
body[data-page="home"] .hero h1 {
  perspective: 1200px;
  position: relative;
  /* hero-h1 minimal nach oben, damit der Slam Platz hat */
}

/* Die beiden Headline-Spans schmettern rein */
body[data-page="home"] .hero h1 span {
  display: inline-block;
  opacity: 0;
  transform: scale(5.5) translateY(-220px) rotateX(-35deg);
  filter: blur(28px);
  transform-origin: 50% 60%;
  text-shadow: 0 0 60px rgba(225,14,20,.6);
  will-change: transform, opacity, filter;
  animation: slamIn .85s cubic-bezier(.5,1.7,.4,1) forwards;
}

/* erste Slam-Welle */
body[data-page="home"] .hero h1 span:first-of-type { animation-delay: 0.45s; }
/* zweite Slam-Welle (Orange-Teil) */
body[data-page="home"] .hero h1 span.accent        { animation-delay: 1.05s; }

@keyframes slamIn {
  0%   { opacity: 0; transform: scale(5.5) translateY(-220px) rotateX(-35deg); filter: blur(28px); text-shadow: 0 0 60px rgba(225,14,20,.6); }
  55%  { opacity: 1; transform: scale(1.08) translateY(10px) rotateX(0); filter: blur(0); text-shadow: 0 0 0 rgba(225,14,20,0); }
  72%  { transform: scale(.97) translateY(-3px); }
  85%  { transform: scale(1.02) translateY(1px); }
  100% { opacity: 1; transform: scale(1) translateY(0) rotateX(0); filter: blur(0); text-shadow: none; }
}

/* Screen-Shake auf .hero — getimt an die zwei Slam-Impacts */
body[data-page="home"] .hero {
  animation: slamShake 2s steps(1,end) 0.25s forwards;
}
@keyframes slamShake {
  0%, 100% { transform: none; }
  /* erster Impact (ca. 0.95s nach Animationsstart, also Frame ~47%) */
  46% { transform: translate3d(-7px,  5px, 0); }
  47% { transform: translate3d( 8px, -4px, 0); }
  48% { transform: translate3d(-5px,  6px, 0); }
  49% { transform: translate3d( 5px, -5px, 0); }
  50% { transform: translate3d(-3px,  2px, 0); }
  51% { transform: none; }
  /* zweiter Impact (Orange-Teil, ca. 1.55s, Frame ~77%) */
  76% { transform: translate3d(-10px, 6px, 0); }
  77% { transform: translate3d( 11px,-5px, 0); }
  78% { transform: translate3d(-7px,  7px, 0); }
  79% { transform: translate3d( 7px, -6px, 0); }
  80% { transform: translate3d(-3px,  2px, 0); }
  81% { transform: none; }
}

/* Shockwave-Balken Welle 1 — bricht horizontal aus dem Headline-Bereich */
body[data-page="home"] .hero-content::before {
  content: "";
  position: absolute;
  left: -10%;
  top: 32%;
  width: 0;
  height: 5px;
  background: var(--primary);
  box-shadow: 0 0 50px var(--primary), 0 0 12px var(--primary), 0 0 4px #fff;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  animation: slamWave 2s cubic-bezier(.2,.8,.2,1) 0.45s forwards;
}
/* Welle 2 — beim Orange-Slam */
body[data-page="home"] .hero-content::after {
  content: "";
  position: absolute;
  left: -10%;
  top: 56%;
  width: 0;
  height: 5px;
  background: var(--primary);
  box-shadow: 0 0 50px var(--primary), 0 0 12px var(--primary), 0 0 4px #fff;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  animation: slamWave 2s cubic-bezier(.2,.8,.2,1) 1.05s forwards;
}
@keyframes slamWave {
  0%   { width: 0;    opacity: 0; }
  5%   { opacity: 1; }
  18%  { width: 140%; opacity: 1; }
  45%  { width: 140%; opacity: 0; }
  46%, 100% { width: 0; opacity: 0; }
}

/* Reduzierte Bewegung — Animationen aus für Nutzer mit prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .hero,
  body[data-page="home"] .hero h1 span,
  body[data-page="home"] .hero-content > * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    text-shadow: none !important;
  }
  body[data-page="home"] .hero-content::before,
  body[data-page="home"] .hero-content::after { display: none; }
}

/* =========================================================
   ORANGE → DUNKELGRAU GRADIENT auf allen orangen Titelschriften
   Bright orange oben, fadet diagonal in dunkelgrau aus.
   Wirkt wie Sonnenlicht das von oben auf die Headline fällt.
   ========================================================= */
.hero h1 span,
.hero-eyebrow,
.section-head .eyebrow,
h1 .accent, h2 .accent, h3 .accent, h4 .accent,
.page-header h1 .accent {
  background: linear-gradient(165deg,
    #FF6068  0%,
    #FF2A30 18%,
    #E10E14 38%,
    #8E0A0E 62%,
    #3a0a0c 82%,
    #2a2a2a 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Hero-Headline: jede Zeile soll ihren eigenen vollen Verlauf zeigen,
   nicht eine zusammenhängende Fläche über beide Zeilen */
.hero h1 span { display: inline-block; }


/* =========================================================
   CTA-STRIP mit Rot→Dunkelgrau-Verlauf
   ========================================================= */
.cta-strip {
  background: linear-gradient(125deg,
    #FF6068   0%,
    #FF2A30  15%,
    #E10E14  35%,
    #8E0A0E  60%,
    #3a0a0c  82%,
    #2a2a2a 100%);
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}
.cta-strip h2 { color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,.25); }
.cta-strip p  { color: rgba(255,255,255,.92); font-size: 1.15rem; margin-bottom: 1.5em; text-shadow: 0 1px 8px rgba(0,0,0,.2); }
.cta-strip .btn { background: #000; color: #fff; }
.cta-strip .btn:hover { background: #1a1a1a; color: var(--primary); }

/* Info-Block für Tour-Inclusion (statt Unterkunft-Auswahl) */
.inclusion-info {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px;
  background: rgba(225,14,20,0.05);
  border-left: 3px solid var(--primary);
  margin-top: 8px;
  font-size: .95rem;
  line-height: 1.5;
  color: var(--text-soft);
}
.inclusion-info i { color: var(--primary); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }

/* =========================================================
   ROUNDED CORNERS — Tiles, Cards, Inputs, Buttons
   ========================================================= */
.card,
.card-img,
.info-box,
.feature-strip .feature,
.imp-item,
.option-card,
.konfig-form,
.konfig-summary,
.konfig-step #discountStep,
.bike-card,
.testimonial,
.summary-card,
.inclusion-info,
.equipSizeFields,
.field input,
.field select,
.field textarea {
  border-radius: 14px;
}
.btn { border-radius: 8px; }
.btn-lg { border-radius: 10px; }
.lang-switch { border-radius: 8px; }
.lang-switch button:first-child { border-radius: 8px 0 0 8px; }
.lang-switch button:last-child  { border-radius: 0 8px 8px 0; }
.card-tag, .v-tag, .t-tag {
  border-radius: 99px;  /* Pills */
}
.feature-icon i {
  /* Icon-Container braucht keine Rundung, aber sicherheitshalber */
  border-radius: 8px;
}
/* Bild-Container in Tour-Karten: Foto soll oben rund sein, unten flach (weil Karte selbst gerundet) */
.card .card-img:first-child {
  border-radius: 14px 14px 0 0;
}
/* Lightbox bleibt eckig — würde sonst seltsam aussehen */
.lightbox { border-radius: 0; }
