/* ============================================================
   Race-Event · Global Stylesheet
   Primary: #ff0044 · B/W Zielflagge · Racing-Editorial Design
   ============================================================ */

:root {
  --red:        #ff0044;
  --red-dark:   #cc0036;
  --black:      #080808;
  --dark:       #111111;
  --gray-900:   #1a1a1a;
  --gray-800:   #2e2e2e;
  --gray-600:   #555;
  --gray-400:   #999;
  --gray-200:   #e0e0e0;
  --gray-100:   #f2f2f2;
  --gray-50:    #f9f9f9;
  --white:      #ffffff;

  --font-headline: 'Exo 2', 'Barlow Condensed', sans-serif;
  --font-body:     'Inter', system-ui, -apple-system, sans-serif;

  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 1px 8px rgba(0,0,0,.08);
  --shadow-lg: 0 6px 28px rgba(0,0,0,.14);
  --t:         .2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); font-weight: 300; color: var(--gray-800); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a   { color: var(--red); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--red-dark); }
ul  { list-style: none; }
address { font-style: normal; }

/* ── Skip Link ── */
.skip-link { position: absolute; top: -100%; left: 1rem; z-index: 9999; padding: .5rem 1rem; background: var(--red); color: var(--white); font-weight: 700; border-radius: 0 0 var(--radius) var(--radius); transition: top var(--t); }
.skip-link:focus { top: 0; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-headline);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.05;
  color: var(--black);
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { font-size: .95rem; max-width: 68ch; line-height: 1.75; }
.lead { font-size: 1.1rem; font-weight: 300; color: var(--gray-600); }

/* ── Container ── */
.container { width: min(1200px, 100% - 2.5rem); margin-inline: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600; font-size: .9rem;
  letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer; border: none; text-decoration: none;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(255,0,68,.32); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.5); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); color: var(--white); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--gray-900); color: var(--white); }

/* ── Sections ── */
.section     { padding-block: 6rem; }
.section-sm  { padding-block: 3.5rem; }
.section-dark { background: var(--dark); color: #ccc; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-off  { background: var(--gray-50); }

/* ── Eyebrow Label ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red); margin-bottom: .75rem;
}
.eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--red); flex-shrink: 0; }

/* ── Checkered Stripe ── */
.flag-stripe {
  height: 6px;
  background: repeating-conic-gradient(var(--black) 0% 25%, var(--white) 0% 50%) 0 0 / 12px 6px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--black); }
.site-header::after { content: ''; display: block; height: 3px; background: repeating-conic-gradient(var(--red) 0% 25%, var(--black) 0% 50%) 0 0 / 8px 3px; }

.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: .65rem; gap: 1.5rem; }
.site-logo img { height: 40px; width: auto; }

/* Nav */
.primary-nav { display: flex; align-items: center; gap: .1rem; }
.primary-nav a { display: block; padding: .45rem .8rem; color: rgba(255,255,255,.78); font-size: .84rem; font-weight: 500; letter-spacing: .02em; border-radius: var(--radius); transition: color var(--t), background var(--t); }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--white); }
.primary-nav a[aria-current="page"] { background: rgba(255,255,255,.08); }
.nav-cta { background: var(--red) !important; color: var(--white) !important; margin-left: .5rem; padding: .45rem 1rem !important; font-weight: 600 !important; letter-spacing: .04em; }
.nav-cta:hover { background: var(--red-dark) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: .65em; opacity: .5; }
.dropdown-menu { position: absolute; top: calc(100% + .6rem); left: 0; min-width: 210px; background: var(--gray-900); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); padding: .4rem; opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity var(--t), transform var(--t); z-index: 100; }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown-menu a { display: block; padding: .55rem .9rem; color: rgba(255,255,255,.75); border-radius: var(--radius); font-size: .83rem; font-weight: 400; }
.dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,.06); }

/* Social in header */
.header-social { display: flex; align-items: center; gap: .35rem; margin-left: .5rem; }
.header-social a { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; color: rgba(255,255,255,.55); transition: color var(--t), background var(--t); }
.header-social a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.header-social svg { width: 14px; height: 14px; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 38px; height: 38px; cursor: pointer; background: none; border: none; padding: 7px; flex-shrink: 0; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO – Startseite
   ============================================================ */
.hero {
  position: relative; min-height: 92vh;
  display: grid; place-items: center;
  background: var(--black); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background-image: url('../images/hero-track.jpg'); background-size: cover; background-position: center 30%; opacity: .28; }
/* Diagonal red bar left */
.hero::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--red); z-index: 1; }

.hero-content { position: relative; z-index: 2; padding-block: 7rem 5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%; }

.hero-left { }
.hero-tag { display: inline-block; background: var(--red); color: var(--white); font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; padding: .3rem .8rem; margin-bottom: 1.5rem; }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; line-height: 1; }
.hero h1 .accent { display: block; color: var(--red); }
.hero-lead { color: rgba(255,255,255,.6); font-size: 1rem; font-weight: 300; margin-bottom: 2rem; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.hero-right { display: flex; flex-direction: column; gap: 1px; }
.hero-stat-row { display: flex; align-items: baseline; gap: .75rem; padding: 1.25rem 1.5rem; background: rgba(255,255,255,.04); border-left: 3px solid transparent; transition: border-color var(--t), background var(--t); }
.hero-stat-row:hover { border-color: var(--red); background: rgba(255,255,255,.07); }
.hero-stat-num { font-family: var(--font-headline); font-size: 2.4rem; color: var(--white); line-height: 1; min-width: 7rem; }
.hero-stat-label { color: rgba(255,255,255,.45); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; }

/* ── Page Hero (Unterseiten) ── */
.page-hero { background: var(--black); padding-block: 5.5rem 4rem; position: relative; overflow: hidden; border-left: 5px solid var(--red); }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: url('../images/hero-track.jpg'); background-size: cover; background-position: center; opacity: .15; }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero .lead { color: rgba(255,255,255,.55); }

/* ============================================================
   EVENTS (Startseite – "Unser Angebot")
   ============================================================ */
.events-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--gray-200); margin-top: 3rem; }
.event-block { background: var(--white); display: flex; flex-direction: column; transition: background var(--t); }
.event-block:hover { background: var(--gray-50); }
.event-block-img { height: 240px; overflow: hidden; }
.event-block-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.event-block:hover .event-block-img img { transform: scale(1.04); }
.event-block-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.event-label { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--red); margin-bottom: .6rem; }
.event-block h3 { margin-bottom: .75rem; }
.event-block p { font-size: .88rem; color: var(--gray-600); flex: 1; margin-bottom: 1.5rem; }
.event-block .arrow-link { font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--black); display: flex; align-items: center; gap: .4rem; transition: color var(--t), gap var(--t); }
.event-block:hover .arrow-link { color: var(--red); gap: .7rem; }

/* ── USP Zeilen (Intro-Sektion Startseite) ── */
.intro-split { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.intro-split-img { aspect-ratio: 4/3; overflow: hidden; }
.intro-split-img img { width: 100%; height: 100%; object-fit: cover; }
.intro-split-text h2 { margin-bottom: 1.25rem; }
.intro-split-text p { color: var(--gray-600); margin-bottom: 1rem; }
.use-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0; }
.use-item { display: flex; gap: 1.25rem; padding: 1rem 0; border-bottom: 1px solid var(--gray-100); align-items: flex-start; }
.use-item:last-child { border-bottom: none; }
.use-num { font-family: var(--font-headline); font-size: 1.8rem; color: var(--red); line-height: 1; min-width: 2.5rem; }
.use-text h4 { font-size: 1rem; margin-bottom: .2rem; font-family: var(--font-body); font-weight: 700; }
.use-text p { font-size: .85rem; color: var(--gray-600); max-width: none; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.08); }
.review-card { background: rgba(255,255,255,.04); padding: 2rem; border-top: 2px solid transparent; transition: border-color var(--t), background var(--t); }
.review-card:hover { background: rgba(255,255,255,.07); border-color: var(--red); }
.review-stars { color: #f5a623; font-size: 1rem; margin-bottom: 1rem; letter-spacing: .1em; }
.review-quote { font-size: .88rem; color: rgba(255,255,255,.65); font-weight: 300; line-height: 1.75; margin-bottom: 1rem; font-style: italic; }
.review-author { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.9); }
.review-source { font-size: .72rem; color: rgba(255,255,255,.3); margin-top: .15rem; }

.score-bar { display: flex; align-items: center; gap: 2rem; margin-top: 3rem; padding: 2rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.score-num { font-family: var(--font-headline); font-size: 4rem; color: var(--white); line-height: 1; }
.score-label { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: .25rem; }
.score-stars { color: #f5a623; font-size: 1.4rem; letter-spacing: .1em; }
.score-badge { font-family: var(--font-headline); font-size: 1.4rem; color: var(--white); }

/* ============================================================
   CTA
   ============================================================ */
.cta-band { background: var(--red); padding-block: 4.5rem; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; right: -5%; top: -40%; width: 45%; aspect-ratio: 1; background: rgba(0,0,0,.1); border-radius: 50%; }
.cta-band .container { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); max-width: 18ch; }
.cta-band p { color: rgba(255,255,255,.8); font-size: .95rem; max-width: 40ch; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-tabs { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 2.5rem; border-bottom: 1px solid var(--gray-200); padding-bottom: 0; }
.faq-tab { padding: .65rem 1.25rem; background: none; border: none; border-bottom: 3px solid transparent; color: var(--gray-600); font-size: .84rem; font-weight: 600; cursor: pointer; transition: color var(--t), border-color var(--t); margin-bottom: -1px; letter-spacing: .02em; }
.faq-tab:hover { color: var(--black); }
.faq-tab.active { color: var(--black); border-color: var(--red); }

.faq-panel { display: none; }
.faq-panel.active { display: block; }

.faq-category { font-size: .68rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--red); padding: 2rem 0 .6rem; display: flex; align-items: center; gap: .75rem; }
.faq-category::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
.faq-category:first-child { padding-top: 0; }

.accordion-item { border-bottom: 1px solid var(--gray-100); }
.accordion-btn { width: 100%; text-align: left; background: none; border: none; padding: 1.1rem 0; font-size: .92rem; font-weight: 500; color: var(--gray-800); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; transition: color var(--t); }
.accordion-btn:hover { color: var(--red); }
.accordion-btn[aria-expanded="true"] { color: var(--red); font-weight: 600; }
.accordion-icon { flex-shrink: 0; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: .75rem; color: var(--gray-400); transition: transform var(--t), color var(--t); }
.accordion-btn[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); color: var(--red); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.accordion-content.open { max-height: 800px; padding-bottom: 1.25rem; }
.accordion-content p { font-size: .88rem; color: var(--gray-600); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-tabs { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 2rem; border-bottom: 1px solid var(--gray-200); }
.gallery-tab { padding: .65rem 1.25rem; background: none; border: none; border-bottom: 3px solid transparent; color: var(--gray-600); font-size: .84rem; font-weight: 600; cursor: pointer; transition: color var(--t), border-color var(--t); margin-bottom: -1px; }
.gallery-tab:hover { color: var(--black); }
.gallery-tab.active { color: var(--black); border-color: var(--red); }

.gallery-grid { columns: 4 200px; gap: .5rem; }
.gallery-item { break-inside: avoid; margin-bottom: .5rem; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; display: block; transition: transform .35s ease, opacity .2s; }
.gallery-item:hover img { transform: scale(1.04); opacity: .9; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.95); z-index: 2000; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lightbox-close { position: fixed; top: 1.25rem; right: 1.25rem; background: none; border: 1px solid rgba(255,255,255,.25); color: var(--white); width: 42px; height: 42px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color var(--t); }
.lightbox-close:hover { border-color: var(--white); }
.lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); background: none; border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.7); width: 44px; height: 44px; border-radius: 50%; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color var(--t), color var(--t); }
.lightbox-prev:hover, .lightbox-next:hover { border-color: var(--red); color: var(--white); }
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

/* ============================================================
   PARTNER / FILTER
   ============================================================ */
.filter-bar { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 2rem; }
.filter-btn { padding: .45rem 1rem; border-radius: 50px; background: var(--gray-100); border: 1.5px solid transparent; font-size: .8rem; font-weight: 600; letter-spacing: .04em; cursor: pointer; transition: all var(--t); color: var(--gray-800); }
.filter-btn:hover { background: var(--gray-200); }
.filter-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }

.partner-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; }
.partner-card { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--gray-100); cursor: default; }
.partner-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease, opacity .3s; }
.partner-card:hover img { transform: scale(1.06); opacity: .75; }
.partner-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.85) 40%, transparent 80%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem; opacity: 0; transition: opacity var(--t); }
.partner-card:hover .partner-card-overlay { opacity: 1; }
.partner-card-name { font-family: var(--font-headline); font-size: 1.1rem; color: var(--white); line-height: 1.1; }
.partner-card-type { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: .3rem; }
/* Always show name */
.partner-label { position: absolute; bottom: 0; left: 0; right: 0; padding: .75rem 1rem .5rem; background: linear-gradient(to top, rgba(0,0,0,.7), transparent); }
.partner-label-name { font-size: .82rem; font-weight: 600; color: var(--white); }

/* ============================================================
   REFERENZEN
   ============================================================ */
.referenzen-list { display: grid; gap: 0; }
.ref-item { display: grid; grid-template-columns: auto 1fr; gap: 2rem; padding: 2.5rem 0; border-bottom: 1px solid var(--gray-100); align-items: start; }
.ref-item:last-child { border-bottom: none; }
.ref-num { font-family: var(--font-headline); font-size: 3.5rem; color: var(--gray-200); line-height: 1; min-width: 3rem; text-align: right; }
.ref-body blockquote { font-size: .95rem; color: var(--gray-800); font-weight: 300; line-height: 1.8; margin-bottom: .75rem; }
.ref-body blockquote::before { content: '\201E'; color: var(--red); font-size: 1.5rem; line-height: .5; vertical-align: -0.4rem; margin-right: .15rem; }
.ref-body cite { font-style: normal; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gray-400); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }

.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--gray-800); margin-bottom: .4rem; }
.form-label .req { color: var(--red); margin-left: .2rem; }
.form-control { width: 100%; padding: .7rem .9rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-size: .9rem; font-family: var(--font-body); font-weight: 300; color: var(--gray-800); background: var(--white); transition: border-color var(--t), box-shadow var(--t); appearance: none; }
.form-control:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(255,0,68,.1); }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23888' d='M5 6L0 0h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.2rem; }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hp-field { display: none; }
.form-status { padding: .9rem 1.1rem; border-radius: var(--radius); font-size: .88rem; font-weight: 600; display: none; margin-top: .75rem; }
.form-status.success { background: #e8f5e9; color: #1b5e20; display: block; }
.form-status.error   { background: #fce8e6; color: #b71c1c; display: block; }

.contact-aside h3 { margin-bottom: 1.5rem; }
.contact-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-row { display: flex; align-items: flex-start; gap: .9rem; }
.contact-icon { width: 36px; height: 36px; background: var(--black); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--white); }
.contact-icon svg { width: 15px; height: 15px; }
.contact-text { font-size: .88rem; color: var(--gray-600); }
.contact-text strong { display: block; color: var(--black); font-size: .78rem; letter-spacing: .07em; text-transform: uppercase; margin-bottom: .15rem; }

.impressum-box { margin-top: 2.5rem; padding: 1.75rem; background: var(--gray-50); border-left: 3px solid var(--gray-200); }
.impressum-box h3 { font-size: 1rem; margin-bottom: 1rem; }
.impressum-box p { font-size: .84rem; color: var(--gray-600); margin-bottom: .35rem; max-width: none; }

/* ============================================================
   FEATURES / SPECS
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.feature-item { display: flex; gap: 1rem; }
.feature-icon { width: 38px; height: 38px; background: var(--black); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.feature-item h4 { font-family: var(--font-body); font-size: .9rem; font-weight: 700; margin-bottom: .25rem; }
.feature-item p { font-size: .84rem; color: var(--gray-600); max-width: none; }

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th { background: var(--black); color: var(--white); padding: .65rem 1rem; text-align: left; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.spec-table td { padding: .7rem 1rem; border-bottom: 1px solid var(--gray-100); font-size: .88rem; color: var(--gray-600); }
.spec-table td:first-child { font-weight: 600; color: var(--gray-800); white-space: nowrap; }
.spec-table tr:last-child td { border-bottom: none; }

.info-box { border-left: 3px solid var(--red); padding: 1rem 1.25rem; background: var(--gray-50); margin-block: 1.5rem; }
.info-box p { font-size: .86rem; color: var(--gray-600); max-width: none; }

/* ── Two-col layouts ── */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-img { overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Variant cards for track sizes */
.size-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--gray-200); }
.size-card { background: var(--white); padding: 1.75rem; }
.size-card h3 { font-family: var(--font-headline); font-size: 1.5rem; color: var(--black); margin-bottom: .35rem; }
.size-card p { font-size: .88rem; color: var(--gray-600); max-width: none; }

/* ============================================================
   PROSE (Datenschutz etc.)
   ============================================================ */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: .75rem; }
.prose h3 { font-size: 1rem; margin-top: 1.5rem; margin-bottom: .4rem; }
.prose p  { color: var(--gray-600); margin-bottom: 1rem; max-width: none; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul li { color: var(--gray-600); margin-bottom: .3rem; }
.prose a  { color: var(--red); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--black); color: rgba(255,255,255,.45); padding-block: 4rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-logo img { height: 36px; margin-bottom: 1.25rem; }
.footer-desc { font-size: .85rem; font-weight: 300; max-width: 30ch; line-height: 1.7; }
.footer-social { display: flex; gap: .5rem; margin-top: 1.25rem; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); transition: border-color var(--t), color var(--t); }
.footer-social a:hover { border-color: var(--red); color: var(--white); }
.footer-social svg { width: 13px; height: 13px; }

.footer-col-title { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.9); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .84rem; font-weight: 300; color: rgba(255,255,255,.45); transition: color var(--t); }
.footer-links a:hover { color: var(--white); }
.footer-contact-list { display: flex; flex-direction: column; gap: .6rem; }
.footer-contact-list a { font-size: .84rem; font-weight: 300; color: rgba(255,255,255,.45); transition: color var(--t); display: flex; align-items: center; gap: .5rem; }
.footer-contact-list a:hover { color: var(--white); }
.footer-contact-list svg { width: 12px; height: 12px; flex-shrink: 0; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.75rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; font-size: .78rem; }
.footer-bottom a { color: rgba(255,255,255,.35); transition: color var(--t); }
.footer-bottom a:hover { color: var(--red); }

/* ── Back to top ── */
.back-to-top { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 40px; height: 40px; background: var(--red); color: var(--white); border: none; border-radius: var(--radius); font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity var(--t), transform var(--t); z-index: 500; }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: grid; grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .events-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top  { grid-template-columns: 1fr 1fr; }
  .intro-split { grid-template-columns: 1fr; gap: 3rem; }
  .reviews-grid { grid-template-columns: 1fr; gap: 1px; }
  .split-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .primary-nav, .header-social { display: none; }
  .nav-toggle { display: flex; }
  .primary-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--gray-900); padding: 1rem; gap: 0;
    box-shadow: 0 12px 40px rgba(0,0,0,.4);
  }
  .primary-nav.open .nav-dropdown { position: static; }
  .primary-nav.open .dropdown-menu { position: static; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; background: rgba(0,0,0,.3); border: none; margin: .25rem 0; }
  .header-inner { position: relative; flex-wrap: wrap; }
  .hero-content { padding-block: 5rem 4rem; }
  .hero-right { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { columns: 2 150px; }
  .size-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-right { grid-template-columns: 1fr; }
  .hero-stat-row { padding: 1rem; }
  .cta-band .container { flex-direction: column; }
  .score-bar { flex-direction: column; align-items: flex-start; }
}

/* ── Focus ── */
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 3px; }

/* ── Utility ── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-red { color: var(--red); }
