/* ============================================================
   MOTO-ZÜRICH 2027 — full page recreation styles
   Tokens from colors_and_type.css
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* unified CTA typography */
.nav-cta, .aussteller-strip-btn, .footer-cta, .feedback-cta {
  font-family: var(--font-mono) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  font-size: 14px !important;
  min-height: 52px !important;
  padding: 0 28px !important;
  display: inline-flex !important;
  align-items: center !important;
}

/* ============ DATE BAR ============ */
.date-bar {
  background: var(--brand); color: #fff; padding: 11px 0;
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  position: sticky; top: 0; z-index: 100; overflow: hidden;
  border-bottom: 1px solid var(--brand-dark);
}
.date-bar-track { display: flex; gap: 48px; white-space: nowrap; animation: mz-scroll 40s linear infinite; }
.date-bar-track span { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.date-bar-track span::before { content: "●"; color: #fff; font-size: 8px; opacity: 0.7; }
@keyframes mz-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ HEADER ============ */
.header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 39px; z-index: 90;
}
.header-inner { max-width: 1440px; margin: 0 auto; padding: 16px 32px; display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo-svg { display: block; height: 52px; width: auto; transition: opacity 0.2s; }
.logo-link:hover .logo-svg { opacity: 0.85; }
nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
nav a { color: var(--fg); text-decoration: none; font-size: 14px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; transition: color 0.2s; position: relative; padding: 6px 0; }
nav a:hover { color: var(--brand); }
nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--brand); transition: width 0.25s cubic-bezier(0.16,1,0.3,1); }
nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { background: var(--swiss-red); color: #fff; padding: 10px 16px; white-space: nowrap; transition: background 0.2s, transform 0.2s; }
.nav-active { color: var(--brand) !important; }
.nav-active::after { width: 100% !important; }
.nav-cta:hover { background: var(--swiss-red-dark); color: #fff; transform: translateY(-1px); }
.nav-mobile-toggle { display: none; background: var(--brand); color: #fff; border: none; width: 44px; height: 44px; cursor: pointer; font-size: 20px; }

/* ============ DROPDOWN NAV ============ */
nav li.has-sub { position: relative; }
.nav-top { display: inline-flex; align-items: center; gap: 7px; cursor: pointer; background: none; border: none; font-family: inherit; color: var(--fg); font-size: 14px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; white-space: nowrap; padding: 6px 0; transition: color 0.2s; }
.nav-top:hover, nav li.has-sub:hover .nav-top, nav li.has-sub:focus-within .nav-top { color: var(--brand); }
a.nav-top::after { display: none !important; }
.nav-caret { width: 0; height: 0; border-style: solid; border-width: 5px 4px 0 4px; border-color: var(--fg) transparent transparent transparent; transition: transform 0.2s, border-top-color 0.2s; flex-shrink: 0; }
nav li.has-sub:hover .nav-caret, nav li.has-sub:focus-within .nav-caret { transform: rotate(180deg); border-top-color: var(--brand); }
.submenu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); min-width: 240px; background: #fff; border: 1px solid var(--line); box-shadow: 0 16px 38px rgba(10,25,41,0.16); padding: 10px 0; list-style: none; display: flex; flex-direction: column; gap: 0; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.22s cubic-bezier(0.16,1,0.3,1), transform 0.22s cubic-bezier(0.16,1,0.3,1); z-index: 60; }
nav li.has-sub:hover .submenu, nav li.has-sub:focus-within .submenu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.submenu::before { content: ""; position: absolute; bottom: 100%; left: 0; right: 0; height: 14px; }
.submenu li { display: block; }
.submenu a { display: block; padding: 11px 26px; font-size: 12.5px; letter-spacing: 0.06em; white-space: nowrap; color: var(--fg); }
.submenu a::after { display: none !important; }
.submenu a:hover { color: var(--brand); background: var(--bg-alt); }
.submenu a.is-active { color: var(--brand); }

/* ============ HERO IDENTITY ============ */
.hero-identity { position: relative; min-height: calc(100vh - 100px); overflow: hidden; display: flex; align-items: flex-end; background: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand) 60%, var(--brand-dark) 100%); }
.hero-identity-video { position: absolute; left: 0; top: -12%; width: 100%; height: 124%; object-fit: cover; z-index: 0; pointer-events: none; will-change: transform; }
.hero-identity-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(135deg, rgba(7,20,38,0.90) 0%, rgba(14,42,74,0.82) 50%, rgba(7,18,34,0.92) 100%); }
.hero-identity::before { content: "2027"; position: absolute; right: -2vw; bottom: -8vw; z-index: 2; font-family: var(--font-display); font-weight: 700; font-size: clamp(280px, 50vw, 720px); color: rgba(255,255,255,0.05); line-height: 0.8; pointer-events: none; letter-spacing: -0.04em; }
.hero-identity-inner { position: relative; z-index: 3; max-width: 1440px; margin: 0 auto; width: 100%; padding: 80px 32px 64px; }
.hero-identity-eyebrow { font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brand-light); font-weight: 700; margin-bottom: 24px; }
.hero-identity-wordmark { font-family: var(--font-display); font-weight: 700; font-size: clamp(64px, 12vw, 180px); line-height: 0.88; letter-spacing: -0.02em; text-transform: uppercase; color: #fff; margin-bottom: 28px; white-space: nowrap; }
.hero-identity-date-badge { display: inline-flex; align-items: baseline; gap: 12px; margin-bottom: 28px; background: var(--action-yellow); padding: 14px 26px; }
.hero-date-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 3.2vw, 40px); color: #141414; letter-spacing: -0.01em; line-height: 1; }
.hero-date-rest { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 3.2vw, 40px); letter-spacing: 0.02em; text-transform: uppercase; color: #141414; line-height: 1; }
.hero-identity-divider { width: 56px; height: 2px; background: var(--brand-light); margin-bottom: 22px; }
.hero-identity-slogan { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 3.8vw, 56px); line-height: 1.1; color: #fff; }
@keyframes heroFade { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
/* Entrance animations: base state is VISIBLE (print / no-JS safe). When JS is
   present we hide-then-animate; reduced-motion users get the visible base state. */
.js .hero-identity-eyebrow { opacity: 0; animation: heroFade 0.7s 0.20s cubic-bezier(0.16,1,0.3,1) forwards; }
.js .hero-identity-wordmark { opacity: 0; animation: heroFade 0.9s 0.30s cubic-bezier(0.16,1,0.3,1) forwards; }
.js .hero-identity-date-badge { opacity: 0; animation: heroFade 0.9s 0.42s cubic-bezier(0.16,1,0.3,1) forwards; }
.js .hero-identity-divider { opacity: 0; animation: heroFade 0.7s 0.50s cubic-bezier(0.16,1,0.3,1) forwards; }
.js .hero-identity-slogan { opacity: 0; animation: heroFade 0.9s 0.55s cubic-bezier(0.16,1,0.3,1) forwards; }
.js .hero-videos-row { opacity: 0; animation: heroFade 0.9s 0.80s cubic-bezier(0.16,1,0.3,1) forwards; }
@media (prefers-reduced-motion: reduce) {
  .js .hero-identity-eyebrow, .js .hero-identity-wordmark, .js .hero-identity-date-badge,
  .js .hero-identity-divider, .js .hero-identity-slogan, .js .hero-videos-row {
    opacity: 1; animation: none; transform: none;
  }
}

/* hero video triplet */
.hero-videos-row { margin-top: 52px; width: 100%; }
.hero-videos-label { font-family: var(--font-mono); font-size: 14px; text-transform: uppercase; letter-spacing: 0.22em; color: rgba(255,255,255,0.7); font-weight: 700; }
.hero-videos-grid { margin-top: 14px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; width: 100%; }
.hero-videos-grid .video-card { box-shadow: 0 14px 40px rgba(0,0,0,0.25); }

/* video cards */
.video-card { position: relative; aspect-ratio: 16/9; background: var(--night); overflow: hidden; cursor: pointer; transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); text-decoration: none; color: #fff; display: block; border: 1px solid var(--line); }
.video-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(48,102,161,0.18); }
.video-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.78; transition: opacity 0.3s, transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.video-card:hover img { opacity: 1; transform: scale(1.04); }
.video-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; z-index: 5; display: none; }
.video-card.playing iframe { display: block; }
.video-card.playing img, .video-card.playing .video-card-play, .video-card.playing .video-card-overlay { display: none; }
.video-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10,25,41,0.92)); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; pointer-events: none; }
.video-card-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 68px; height: 68px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-size: 22px; border: 2px solid #fff; transition: transform 0.3s, background 0.3s; }
.video-card:hover .video-card-play { transform: translate(-50%,-50%) scale(1.1); background: #fff; color: var(--brand); }
.video-card-tour .video-card-play { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: 0.02em; background: #fff; color: var(--brand-dark); border-color: #fff; width: 84px; height: 84px; }
.video-card-tour:hover .video-card-play { background: var(--brand); border-color: var(--brand); color: #fff; }
.video-card-meta { font-family: var(--font-mono); font-size: 11px; color: var(--brand-light); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; }
.video-card-title { font-family: var(--font-display); font-weight: 700; font-size: 22px; text-transform: uppercase; line-height: 1.05; }

/* ============ INTRO SPLIT ============ */
.intro-split { background: var(--bg); border-bottom: 1px solid var(--line); }
.intro-split-inner { max-width: 1440px; margin: 0 auto; padding: 88px 32px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.intro-split-text h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(44px, 6.5vw, 92px); line-height: 0.95; letter-spacing: -0.01em; text-transform: uppercase; color: var(--fg); margin-bottom: 28px; }
.intro-split-text p { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.65; color: var(--fg); margin-bottom: 18px; }
.intro-split-text p:last-child { margin-bottom: 0; }
.intro-split-text p b { color: var(--brand-dark); font-weight: 700; }
.intro-split-logo { display: flex; align-items: center; justify-content: center; }
.intro-split-logo img { width: 100%; max-width: 560px; }

/* ============ SECTIONS ============ */
section.block { padding: 110px 32px; max-width: 1440px; margin: 0 auto; }
section.block-alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 110px 0; }
section.block-alt > .inner { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.section-label { font-family: var(--font-mono); font-size: 14px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--brand); margin-bottom: 28px; display: flex; align-items: center; gap: 14px; font-weight: 700; }
.section-label::before { content: ""; width: 40px; height: 1px; background: var(--brand); }
.section-label.no-line::before { display: none; }
.section-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(44px, 6.5vw, 92px); line-height: 0.95; margin-bottom: 36px; letter-spacing: -0.01em; text-transform: uppercase; color: var(--fg); }
.section-lead { font-family: var(--font-body); font-size: clamp(17px, 1.6vw, 21px); max-width: 820px; color: var(--fg); line-height: 1.6; margin-bottom: 48px; }
.section-lead b, .body-fade b { color: var(--brand-dark); font-weight: 700; }
/* highlight plates — the colored background slides in first (::before scaleX 0->1),
   then the text types on top. Text colour is final from the start. */
.hl, .hl-soft { display: inline-block; padding: 0.08em 0.28em; line-height: 1; font-weight: 700; position: relative; background: transparent; isolation: isolate; }
.hl { color: #fff; }
.hl-soft { color: var(--brand-dark); }
.hl::before, .hl-soft::before { content: ""; position: absolute; inset: 0; transform: scaleX(0); transform-origin: left center; transition: transform 0.55s cubic-bezier(0.16,1,0.3,1); z-index: -1; }
.hl::before { background: var(--brand); }
.hl-soft::before { background: var(--brand-soft); }
.hl.revealed::before, .hl-soft.revealed::before { transform: scaleX(1); }

/* typewriter: each character of a heading appears in sequence */
.section-title .char, .rueckblick-title .char, .page-hero-title .char { opacity: 0; transition: opacity 0.12s linear; }
.section-title .char.shown, .rueckblick-title .char.shown, .page-hero-title .char.shown { opacity: 1; }

/* no-JS / reduced-motion safety: show everything filled-in */
html.no-js .hl::before, html.no-js .hl-soft::before { transform: scaleX(1); }
html.no-js .char { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hl::before, .hl-soft::before, .char { transition: none; }
}

/* fade-in on scroll */
.body-fade { opacity: 0; transform: translateY(14px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.body-fade.in { opacity: 1; transform: none; }

/* ============ AUSSTELLER STRIP ============ */
.aussteller-strip { background: var(--brand); padding: 32px 0; }
.aussteller-strip-inner { max-width: 1440px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.aussteller-strip-text { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px, 2.4vw, 30px); color: #fff; text-transform: uppercase; }
.aussteller-strip-text b { color: var(--action-yellow); }
.aussteller-strip-btn { background: var(--swiss-red); color: #fff; min-height: 52px; padding: 0 28px; display: inline-flex; align-items: center; gap: 12px; text-decoration: none; transition: background 0.2s; }
.aussteller-strip-btn:hover { background: var(--swiss-red-dark); }
.aussteller-strip-btn span { transition: transform 0.2s; }
.aussteller-strip-btn:hover span { transform: translateX(4px); }

/* ============ WHAT GRID (pillars) ============ */
.what-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); }
.what-card { padding: 44px 40px 40px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; position: relative; transition: all 0.35s cubic-bezier(0.16,1,0.3,1); overflow: hidden; }
.what-card:nth-child(2n) { border-right: none; }
.what-card:nth-last-child(-n+2) { border-bottom: none; }
.what-card-num { position: absolute; top: 26px; right: 32px; font-family: var(--font-display); font-weight: 700; font-size: 80px; line-height: 0.85; color: rgba(48,102,161,0.10); letter-spacing: -0.03em; transition: color 0.3s; pointer-events: none; }
.what-card-tag { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--brand); font-weight: 700; margin-bottom: 14px; transition: color 0.3s; position: relative; z-index: 1; }
.what-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 34px; line-height: 1.05; margin-bottom: 18px; text-transform: uppercase; color: var(--fg); transition: color 0.3s; position: relative; z-index: 1; }
.what-card p { font-size: 16px; line-height: 1.6; color: var(--fg); transition: color 0.3s; position: relative; z-index: 1; }
.what-card p b { color: var(--brand-dark); font-weight: 700; transition: color 0.3s; }
.what-card:hover { background: var(--brand); }
.what-card:hover .what-card-tag { color: var(--action-yellow); }
.what-card:hover .what-card-num { color: rgba(255,255,255,0.18); }
.what-card:hover h3, .what-card:hover p { color: #fff; }
.what-card:hover p b { color: var(--action-yellow); }
.what-card.livearena:hover { background: var(--brand-light); }
.what-card.livearena:hover .what-card-tag { color: #fff; }
.what-card.yellow:hover { background: var(--action-yellow); }
.what-card.yellow:hover .what-card-tag, .what-card.yellow:hover h3, .what-card.yellow:hover p { color: #282424; }
.what-card.yellow:hover .what-card-num { color: rgba(40,36,36,0.18); }
.what-card.yellow:hover p b { color: var(--brand-dark); }
.what-card.adventure:hover { background: var(--adventure-green); }
.what-card.adventure:hover .what-card-tag { color: #fff; }
.what-card.adventure:hover p b { color: #fff; }

/* ============ RÜCKBLICK title + stats ============ */
.rueckblick-title { margin-bottom: 40px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.rueckblick-date { font-family: var(--font-display); font-weight: 700; color: var(--fg); font-size: clamp(44px,6.5vw,92px); letter-spacing: -0.01em; line-height: 0.95; }
.nums-grid { display: grid; grid-template-columns: 0.85fr 1.3fr 0.85fr 0.85fr 1.3fr; border-top: 2px solid var(--brand); border-bottom: 2px solid var(--brand); margin: 8px 0 64px; }
.num { padding: 28px 18px; border-right: 1px solid var(--line); background: #fff; transition: background 0.3s; }
.num:last-child { border-right: none; }
.num:hover { background: var(--brand-soft); }
.num-big { font-family: var(--font-display); font-weight: 700; font-size: clamp(34px, 3.8vw, 54px); line-height: 1; color: var(--brand); margin-bottom: 12px; letter-spacing: -0.01em; white-space: nowrap; }
.num-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); line-height: 1.5; opacity: 0; transform: translateY(6px); transition: opacity 0.35s cubic-bezier(0.16,1,0.3,1), transform 0.35s cubic-bezier(0.16,1,0.3,1); }
.num.done .num-label { opacity: 1; transform: none; }
.num-label b { color: var(--brand-dark); font-weight: 700; }

/* ============ ACCORDION ============ */
.programm-accordion { display: flex; flex-direction: column; gap: 10px; }
.programm-acc { border: 1px solid var(--line); background: #fff; }
.programm-acc summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 18px; padding: 20px 22px; }
.programm-acc summary::-webkit-details-marker { display: none; }
.acc-side { font-family: var(--font-mono); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: #fff; background: var(--brand); padding: 9px 16px; transform-origin: left center; transition: transform 0.22s cubic-bezier(0.16,1,0.3,1); }
.programm-acc summary:hover .acc-side { transform: scale(1.1); }
.acc-side.action { background: var(--action-yellow); color: #282424; }
.acc-side.aussteller { background: var(--brand-dark); }
.acc-side.adventure { background: var(--adventure-green); }
.acc-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(15px,1.7vw,18px); text-transform: uppercase; color: var(--fg); }
.acc-toggle { margin-left: auto; font-family: var(--font-mono); font-size: 22px; color: var(--brand); }
.programm-acc[open] .acc-toggle { transform: rotate(45deg); }
.programm-list { list-style: none; }
.programm-item { display: flex; gap: 14px; padding: 14px 22px; border-top: 1px solid var(--line); }
.programm-num { font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--brand); padding-top: 2px; }
.programm-name { font-family: var(--font-body); font-weight: 700; font-size: 15px; color: var(--fg); }
.programm-desc { font-family: var(--font-body); font-size: 13px; color: var(--muted); }

/* ============ PRESS ============ */
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.press-card { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; padding: 28px 26px; min-height: 180px; border: 1px solid var(--line-strong); background: #fff; color: var(--fg); text-decoration: none; transition: all 0.3s cubic-bezier(0.16,1,0.3,1); }
.press-card::before { content: ""; position: absolute; inset: 0; background: var(--brand); transform: translateY(100%); transition: transform 0.45s cubic-bezier(0.65,0,0.35,1); z-index: 0; }
.press-card:hover::before { transform: translateY(0); }
.press-card:hover { color: #fff; border-color: var(--brand); }
.press-card > * { position: relative; z-index: 1; }
.press-card-source { font-family: var(--font-mono); font-size: 11px; color: var(--brand); text-transform: uppercase; letter-spacing: 0.18em; font-weight: 700; margin-bottom: 14px; transition: color 0.3s; }
.press-card:hover .press-card-source { color: var(--action-yellow); }
.press-card-title { font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1.15; text-transform: uppercase; margin-bottom: 20px; }
.press-card-arrow { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); font-weight: 700; transition: color 0.3s, transform 0.3s; }
.press-card:hover .press-card-arrow { color: var(--action-yellow); transform: translateX(6px); }

/* ============ FEEDBACK ============ */
.feedback-inner { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 80px; align-items: center; }
/* highlighted text in the feedback block: paragraph phrase plain bold black, no plate.
   The heading "2027" keeps its standard blue plate. */
#feedback .hl-soft { color: var(--fg); background: transparent; }
#feedback .hl-soft::before { display: none; }
.feedback p { font-size: 18px; line-height: 1.6; margin-bottom: 20px; }
.feedback p:last-of-type { margin-bottom: 0; }
.feedback-cta { display: inline-flex; align-items: center; gap: 14px; background: var(--brand); color: #fff; padding: 22px 36px; text-decoration: none; font-size: 14px; margin-top: 36px; transition: all 0.2s; border: 2px solid var(--brand); }
.feedback-cta:hover { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateX(8px); box-shadow: 0 8px 22px rgba(48,102,161,0.32); }
.feedback-cta::after { content: "→"; font-size: 18px; }

/* ============ ZWO FEATURE (Sound page) — blurred official bg + badge ============ */
section.zwo-feature { position: relative; overflow: hidden; background: #07080a; border-top: none; border-bottom: none; }
.zwo-feature::before { content: ""; position: absolute; inset: -40px; background: url('assets/zwo-bg.jpg') center/cover no-repeat; filter: blur(15px) brightness(0.5) saturate(1.08); transform: scale(1.1); z-index: 0; }
.zwo-feature::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(7,8,10,0.28) 0%, rgba(7,8,10,0.72) 66%, rgba(7,8,10,0.94) 100%); z-index: 0; }
.zwo-feature > .inner { position: relative; z-index: 1; }
.zwo-logo-badge { display: block; width: 128px; height: 128px; margin: 0 auto 28px; border-radius: 16px; }
.zwo-feature .section-label { color: #fff; }
.zwo-feature .section-title { color: #fff; }
.zwo-feature .section-lead { color: rgba(255,255,255,0.82); }

/* ============ PARTNERS STRIP ============ */
.partners-strip { background: var(--bg-alt); border-top: 1px solid var(--line); padding: 32px 0; }
.partners-strip-inner { max-width: 1440px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.partners-strip-label { font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--brand); font-weight: 700; flex-shrink: 0; padding-right: 32px; border-right: 1px solid var(--line-strong); }
.partners-strip-logos { display: flex; align-items: center; gap: clamp(20px, 3vw, 48px); flex-wrap: wrap; flex: 1; }
.partners-strip-logos img { height: 32px; width: auto; max-width: 110px; object-fit: contain; filter: grayscale(1) opacity(0.5); transition: all 0.25s; }
.partners-strip-logos img:hover { filter: grayscale(0) opacity(1); transform: scale(1.06); }
.partner-logo-text { display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1.05; filter: grayscale(1) opacity(0.5); transition: all 0.25s; }
.partner-logo-text:hover { filter: none; }
.partner-logo-text b { font-family: var(--font-display); font-size: 16px; font-weight: 700; letter-spacing: -0.01em; color: var(--fg); }
.partner-logo-text small { font-family: var(--font-mono); font-size: 10px; color: var(--muted); }

/* ---- Categorised partners (Presenting / Co-Sponsor / Media) ---- */
.partners-cat { padding: clamp(32px, 3.5vw, 48px) 0; }
.partners-cat-inner { max-width: 1440px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 0.95fr 0.8fr 3fr; gap: clamp(24px, 3vw, 48px); align-items: stretch; }
.partner-group + .partner-group { border-left: 1px solid var(--line-strong); padding-left: clamp(24px, 3vw, 56px); }
.partner-group-h { font-family: var(--font-mono); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--brand); margin: 0 0 14px; }
.partner-group-logos { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(22px, 2.6vw, 40px) clamp(24px, 3vw, 44px); }
.partner-group-logos img { width: auto; object-fit: contain; }
.partner-group-lead .partner-group-logos img { width: 100%; height: clamp(52px, 4.4vw, 74px); max-width: 240px; object-fit: contain; object-position: left center; }
/* Co-Sponsor eine Stufe kleiner als der Presenting Partner */
/* MotoScout24 ist ein zweizeiliges Lockup: mehr Höhe, aber schmalere Box – optisch bleibt Allianz führend */
.partners-cat-inner > .partner-group:nth-child(2) .partner-group-logos img { height: clamp(58px, 5vw, 82px); max-width: 172px; }
/* Media logos: fixed-size cells so any uploaded logo lands consistently */
.partner-group-media .partner-group-logos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }
.pk-cell { display: block; height: 50px; padding: 4px 10px; box-sizing: border-box; }
.pk-cell img { display: block; width: 100%; max-width: 82%; height: 100%; margin: 0 auto; object-fit: contain; }
.pk-cell .partner-logo-text { display: flex; align-items: center; justify-content: center; height: 100%; }
.partner-group .partner-logo-text { filter: none; }
.partner-group .partner-logo-text b { font-size: 15px; }
.partner-group-media .partner-logo-text { flex-direction: column; gap: 0; text-align: center; line-height: 1.15; }
.partner-group-media .partner-logo-text b { font-size: 13px; }
html[data-theme="dark"] .partners-cat .pk-cell img { filter: brightness(0) invert(1); opacity: 0.82; }
html[data-theme="dark"] .partners-cat .partner-group-lead .partner-group-logos img { filter: brightness(0) invert(1); opacity: 0.82; }
html[data-theme="dark"] .partner-group-h { color: var(--brand-light); }
@media (max-width: 1180px) { .partner-group-media .partner-group-logos { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px) {
  /* Mobile/Tablet: die zwei Lead-Partner nebeneinander, Medienpartner als Logo-Raster darunter */
  .partners-cat { padding: 30px 0 34px; }
  .partners-cat-inner { grid-template-columns: 1.2fr 1fr; gap: 26px 28px; padding: 0 20px; }
  .partner-group + .partner-group { border-left: none; padding-left: 0; border-top: none; padding-top: 0; }
  .partner-group-h { font-size: 11px; letter-spacing: 0.14em; margin-bottom: 12px; }
  .partner-group-lead .partner-group-logos { align-items: center; min-height: 54px; }
  .partner-group-lead .partner-group-logos img { width: auto; max-width: 100%; height: 52px; }
  .partners-cat-inner > .partner-group:nth-child(2) .partner-group-logos img { height: 58px; }
  .partner-group-media { grid-column: 1 / -1; }
  .partner-group + .partner-group-media { border-top: 1px solid var(--line-strong); padding-top: 24px; margin-top: 2px; }
  .partner-group-media .partner-group-logos { grid-template-columns: repeat(4, 1fr); gap: 10px 6px; }
  .pk-cell { height: 44px; padding: 3px 6px; }
  .pk-cell img { max-width: 78%; }
  .partner-group-media .partner-logo-text { white-space: normal; overflow-wrap: anywhere; line-height: 1.1; }
  .partner-group-media .partner-logo-text b { font-size: 11.5px; }
  .partner-group-media .partner-logo-text small { font-size: 9.5px; }
}
@media (max-width: 560px) {
  .partners-cat-inner { padding: 0 16px; gap: 22px 16px; }
  .partner-group-media .partner-group-logos { grid-template-columns: repeat(3, 1fr); gap: 8px 4px; }
  .pk-cell { height: 40px; padding: 2px 4px; }
  .partner-group-lead .partner-group-logos img { height: 44px; }
  .partners-cat-inner > .partner-group:nth-child(2) .partner-group-logos img { height: 50px; }
}

/* ============ FOOTER ============ */
footer { background: var(--night); color: #fff; padding: 80px 32px 32px; }
.footer-inner { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-logo { height: 80px; margin-bottom: 24px; }
.footer-tagline { font-size: 15px; color: rgba(255,255,255,0.7); max-width: 340px; line-height: 1.6; margin-bottom: 28px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--brand-light); margin-bottom: 22px; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 15px; transition: color 0.2s; }
.footer-col a:hover { color: var(--brand-light); }
.footer-cta { background: var(--swiss-red); color: #fff !important; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-top: 16px; transition: all 0.2s; }
.footer-cta:hover { background: var(--swiss-red-dark); transform: translateX(4px); }
.footer-cta span { transition: transform 0.2s; }
.footer-cta:hover span { transform: translateX(4px); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.2); display: grid; place-items: center; color: #fff; text-decoration: none; transition: all 0.2s; font-family: var(--font-mono); font-size: 12px; font-weight: 700; }
.footer-social a:hover { background: var(--brand); border-color: var(--brand); }
.footer-bottom { max-width: 1440px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.12em; }
.footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; margin-right: 24px; }
.footer-bottom a:hover { color: var(--brand-light); }

/* ============ SUB-PAGE: HL YELLOW PLATE ============ */
/* yellow highlight plate — for headings sitting on the dark/blue hero */
.hl-yellow { display: inline-block; padding: 0.08em 0.28em; line-height: 1; font-weight: 700; position: relative; background: transparent; isolation: isolate; color: #141414; }
.hl-yellow::before { content: ""; position: absolute; inset: 0; transform: scaleX(0); transform-origin: left center; transition: transform 0.55s cubic-bezier(0.16,1,0.3,1); z-index: -1; background: var(--action-yellow); }
.hl-yellow.revealed::before { transform: scaleX(1); }
.hl-green { display: inline-block; padding: 0.08em 0.28em; line-height: 1; font-weight: 700; position: relative; background: transparent; isolation: isolate; color: #fff; }
.hl-green::before { content: ""; position: absolute; inset: 0; transform: scaleX(0); transform-origin: left center; transition: transform 0.55s cubic-bezier(0.16,1,0.3,1); z-index: -1; background: var(--adventure-green); }
.hl-green.revealed::before { transform: scaleX(1); }
html.no-js .hl-green::before { transform: scaleX(1); }
html.no-js .hl-yellow::before { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) { .hl-yellow::before { transition: none; } }

/* ============ SUB-PAGE HERO ============ */
.page-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand) 68%, var(--brand-dark) 100%); color: #fff; padding: clamp(72px, 11vh, 128px) 0 clamp(52px, 8vh, 92px); }
.page-hero::before { content: attr(data-ghost); position: absolute; right: -1vw; bottom: -7vw; z-index: 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(160px, 32vw, 440px); color: rgba(255,255,255,0.05); line-height: 0.8; pointer-events: none; letter-spacing: -0.04em; white-space: nowrap; }
.page-hero-inner { position: relative; z-index: 2; max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.page-hero-eyebrow { font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brand-light); font-weight: 700; margin-bottom: 22px; display: flex; align-items: center; gap: 14px; }
.page-hero-eyebrow::before { content: ""; width: 40px; height: 1px; background: var(--brand-light); }
.page-hero-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(44px, 7.5vw, 108px); line-height: 0.9; letter-spacing: -0.02em; text-transform: uppercase; color: #fff; }
.page-hero-lead { margin-top: 28px; max-width: 720px; font-family: var(--font-body); font-size: clamp(16px, 1.5vw, 20px); line-height: 1.6; color: rgba(255,255,255,0.86); }
.page-hero-lead b { color: #fff; font-weight: 700; }
/* entrance: lead fades in (title types via JS) */
.js .page-hero-lead { opacity: 0; animation: heroFade 0.9s 0.5s cubic-bezier(0.16,1,0.3,1) forwards; }
@media (prefers-reduced-motion: reduce) { .js .page-hero-lead { opacity: 1; animation: none; } }

/* ============ INTRO LEAD + CTA (sub-pages) ============ */
.intro-lead-row { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 56px; align-items: end; }
.intro-lead-row .section-lead { margin-bottom: 0; }
.intro-lead-cta { display: flex; justify-content: flex-end; }

/* ============ FAQ ============ */
.faq-group { margin-bottom: 64px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--line); background: #fff; transition: border-color 0.25s; }
.faq-item[open] { border-color: var(--line-strong); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 20px; padding: 22px 26px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q-num { font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--brand); letter-spacing: 0.05em; flex-shrink: 0; min-width: 26px; }
.faq-q { font-family: var(--font-display); font-weight: 700; font-size: clamp(16px, 1.9vw, 21px); text-transform: uppercase; color: var(--fg); line-height: 1.15; transition: color 0.2s; }
.faq-item summary:hover .faq-q { color: var(--brand); }
.faq-toggle { margin-left: auto; font-family: var(--font-mono); font-size: 26px; color: var(--brand); line-height: 1; flex-shrink: 0; transition: transform 0.25s cubic-bezier(0.16,1,0.3,1); }
.faq-item[open] .faq-toggle { transform: rotate(45deg); }
.faq-a { border-top: 1px solid var(--line); padding: 22px 26px 26px 72px; }
.faq-a p { font-family: var(--font-body); font-size: 16px; line-height: 1.65; color: var(--fg); margin-bottom: 14px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a b { color: var(--brand-dark); font-weight: 700; }
.faq-a a { color: var(--brand); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.faq-a a:hover { color: var(--brand-dark); }
.faq-a ul { margin: 6px 0 16px; padding: 0; list-style: none; }
.faq-a li { font-family: var(--font-body); font-size: 16px; line-height: 1.55; color: var(--fg); padding-left: 22px; position: relative; margin-bottom: 7px; }
.faq-a li:last-child { margin-bottom: 0; }
.faq-a li::before { content: "—"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.faq-a .faq-note { background: var(--brand-soft); border-left: 3px solid var(--brand); padding: 14px 18px; margin: 6px 0 14px; font-size: 15px; }
.faq-a .faq-note b { color: var(--brand-dark); }
.faq-transit { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 4px 0 16px; }
.faq-transit-block { border: 1px solid var(--line); padding: 16px 18px; }
.faq-transit-stop { font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--brand); font-weight: 700; margin-bottom: 8px; }
.faq-transit-block p { font-size: 14px; margin-bottom: 6px; }
.faq-transit-block p:last-child { margin-bottom: 0; }

/* ============ PARKHAUS GRID ============ */
.park-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.park-card { border: 1px solid var(--line-strong); background: #fff; padding: 26px 24px; transition: all 0.3s cubic-bezier(0.16,1,0.3,1); }
.park-card:hover { background: var(--brand); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(48,102,161,0.18); }
.park-card-name { font-family: var(--font-display); font-weight: 700; font-size: 22px; text-transform: uppercase; line-height: 1.1; color: var(--fg); margin-bottom: 10px; transition: color 0.3s; }
.park-card-addr { font-family: var(--font-body); font-size: 15px; color: var(--muted); line-height: 1.5; margin-bottom: 18px; transition: color 0.3s; }
.park-card-links { display: flex; gap: 16px; }
.park-card-links a { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; color: var(--brand); text-decoration: none; transition: color 0.3s; }
.park-card-links a:hover { text-decoration: underline; text-underline-offset: 3px; }
.park-card:hover .park-card-name { color: #fff !important; }
.park-card:hover .park-card-addr { color: rgba(255,255,255,0.82) !important; }
.park-card:hover .park-card-addr b { color: #fff !important; }
.park-card:hover .park-card-links a { color: var(--action-yellow) !important; }
.park-card:hover .park-card-links span { color: var(--action-yellow) !important; }

/* Action-Zone variant: yellow accent + dark text, yellow hover fill */
.park-card.action { border-top: 4px solid var(--action-yellow); }
.park-card.action:hover { background: var(--action-yellow); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(250,241,67,0.4); }
.park-card.action:hover .park-card-name { color: #282424 !important; }
.park-card.action:hover .park-card-addr { color: #3a3508 !important; }
.park-card.action:hover .park-card-addr b { color: #282424 !important; }
.park-card.action:hover .park-card-links a,
.park-card.action:hover .park-card-links span { color: var(--brand-dark) !important; }

/* Adventure-Camp variant: Waldgrün */
.park-card.adventure { border-top: 4px solid var(--adventure-green); }
.park-card.adventure:hover { background: var(--adventure-green); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(46,125,79,0.32); }
.park-card.adventure:hover .park-card-name { color: #fff !important; }
.park-card.adventure:hover .park-card-addr { color: rgba(255,255,255,0.86) !important; }
.park-card.adventure:hover .park-card-addr b { color: #fff !important; }
.park-card.adventure:hover .park-card-links a,
.park-card.adventure:hover .park-card-links span { color: #fff !important; }

/* ============ INTERVIEW / OPEN Q&A ============ */
.qa-list { display: flex; flex-direction: column; margin-top: 48px; }
.qa-item { display: grid; grid-template-columns: 68px 1fr; gap: 34px; padding: 40px 0; border-top: 1px solid var(--line); }
.qa-item:last-child { border-bottom: 1px solid var(--line); }
.qa-num { font-family: var(--font-display); font-weight: 700; font-size: 32px; line-height: 0.9; color: var(--brand); }
.qa-q { font-family: var(--font-display); font-weight: 700; font-size: clamp(21px, 2.2vw, 28px); text-transform: uppercase; line-height: 1.12; letter-spacing: -0.01em; color: var(--fg); margin-bottom: 18px; max-width: 760px; }
.qa-a { max-width: 760px; }
.qa-a p { font-family: var(--font-body); font-size: 16.5px; line-height: 1.7; color: var(--fg); margin-bottom: 14px; }
.qa-a p:last-child { margin-bottom: 0; }
.qa-a b { color: var(--brand-dark); font-weight: 700; }
.qa-a ul { list-style: none; margin: 8px 0 0; padding: 0; }
.qa-a li { font-family: var(--font-body); font-size: 16px; line-height: 1.55; color: var(--fg); padding-left: 22px; position: relative; margin-bottom: 8px; }
.qa-a li:last-child { margin-bottom: 0; }
.qa-a li::before { content: "—"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.qa-a .faq-note { background: var(--brand-soft); border-left: 3px solid var(--brand); padding: 14px 18px; margin-top: 12px; font-size: 15px; }
.qa-a .faq-note b { color: var(--brand-dark); }
@media (max-width: 600px) { .qa-item { grid-template-columns: 1fr; gap: 10px; padding: 30px 0; } }

/* ============ PROSE / LEGAL PAGES ============ */
.prose-wrap { max-width: 1440px; margin: 0 auto; padding: 84px 32px 110px; }
.prose-layout { display: grid; grid-template-columns: 248px 1fr; gap: 72px; align-items: start; }
.prose-toc { position: sticky; top: 120px; }
.prose-toc-label { font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--brand); font-weight: 700; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line-strong); }
.prose-toc ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.prose-toc a { font-family: var(--font-body); font-size: 14px; color: var(--muted); text-decoration: none; line-height: 1.4; transition: color 0.2s, padding-left 0.2s; display: block; }
.prose-toc a:hover { color: var(--brand); padding-left: 4px; }
.prose { max-width: 780px; }
.prose-meta { font-family: var(--font-mono); font-size: 14px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); font-weight: 700; margin-bottom: 40px; padding: 10px 0; border-top: 2px solid var(--brand); border-bottom: 1px solid var(--line); display: inline-block; padding-right: 40px; }
.prose h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 2.6vw, 32px); text-transform: uppercase; line-height: 1.1; color: var(--fg); letter-spacing: -0.01em; margin: 56px 0 20px; scroll-margin-top: 120px; display: flex; gap: 16px; align-items: baseline; }
.prose h2:first-child { margin-top: 0; }
.prose h2 .prose-num { font-family: var(--font-mono); font-size: 0.55em; color: var(--brand); font-weight: 700; flex-shrink: 0; }
.prose h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 1.8vw, 22px); text-transform: uppercase; line-height: 1.15; color: var(--brand-dark); margin: 34px 0 14px; }
.prose p { font-family: var(--font-body); font-size: 16px; line-height: 1.72; color: var(--fg); margin-bottom: 16px; }
.prose p b, .prose li b { color: var(--brand-dark); font-weight: 700; }
.prose a { color: var(--brand); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--brand-dark); }
.prose ul { list-style: none; margin: 8px 0 20px; padding: 0; }
.prose li { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--fg); padding-left: 24px; position: relative; margin-bottom: 10px; }
.prose li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; background: var(--brand); }
.prose li ul { margin: 10px 0 0; }
.prose-card { background: var(--bg-alt); border-left: 3px solid var(--brand); padding: 22px 26px; margin: 24px 0; }
.prose-card p:last-child, .prose ul:last-child, .prose p:last-child { margin-bottom: 0; }
.prose-address { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--fg); margin-bottom: 20px; }
.prose-address b { font-family: var(--font-display); font-size: 19px; text-transform: uppercase; color: var(--fg); display: block; margin-bottom: 4px; }

/* ============ TRACK / AUDIO CARDS (Sound) ============ */
.track-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.track-card { border: 1px solid var(--line-strong); background: #fff; padding: 30px 26px; display: flex; flex-direction: column; gap: 0; transition: all 0.3s cubic-bezier(0.16,1,0.3,1); }
.track-card:hover { background: var(--brand-darker); transform: translateY(-4px); box-shadow: 0 14px 34px rgba(10,25,41,0.22); }
.track-card-kind { font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--brand); font-weight: 700; margin-bottom: 18px; transition: color 0.3s; }
.track-card-play { width: 56px; height: 56px; border-radius: 50%; background: var(--action-yellow); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: transform 0.3s, box-shadow 0.3s; border: none; padding: 0; cursor: pointer; }
.track-card-play:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }
.track-card-play.is-playing { box-shadow: 0 0 0 6px rgba(255,255,255,0.18); }
.track-card-play.is-playing::before { width: 6px; height: 16px; border-width: 0; border-left: 4px solid #141414; border-right: 4px solid #141414; border-radius: 1px; margin-left: 0; background: transparent; }
.track-player { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.track-bar { position: relative; flex: 1; height: 4px; border-radius: 2px; background: var(--line-strong); cursor: pointer; overflow: hidden; transition: background 0.3s; }
.track-bar span { position: absolute; left: 0; top: 0; bottom: 0; width: 0%; background: var(--brand); border-radius: 2px; }
.track-time { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--muted); min-width: 36px; text-align: right; transition: color 0.3s; }
.track-card:hover .track-bar { background: rgba(255,255,255,0.22); }
.track-card:hover .track-bar span { background: var(--action-yellow); }
.track-card:hover .track-time { color: rgba(255,255,255,0.74); }
.track-card-play::before { content: ""; width: 0; height: 0; border-style: solid; border-width: 9px 0 9px 15px; border-color: transparent transparent transparent #141414; margin-left: 4px; }
.track-card:hover .track-card-play { transform: scale(1.08); }
.track-card-name { font-family: var(--font-display); font-weight: 700; font-size: 24px; text-transform: uppercase; line-height: 1.05; color: var(--fg); margin-bottom: 12px; transition: color 0.3s; }
.track-card-desc { font-family: var(--font-body); font-size: 15px; line-height: 1.55; color: var(--muted); margin-bottom: 24px; flex-grow: 1; transition: color 0.3s; }
.track-card-dl { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: var(--brand); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: color 0.3s; }
.track-card-dl span { transition: transform 0.25s; }
.track-card-dl:hover span { transform: translateY(3px); }
.track-card:hover .track-card-name { color: #fff; }
.track-card:hover .track-card-kind { color: var(--brand-light); }
.track-card:hover .track-card-desc { color: rgba(255,255,255,0.74); }
.track-card:hover .track-card-dl { color: var(--action-yellow); }

/* ============ EVENT FACTS / META GRID ============ */
.fact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 44px; }
.fact-cell { background: #fff; padding: 26px 24px; }
.fact-label { font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--brand); font-weight: 700; margin-bottom: 10px; }
.fact-value { font-family: var(--font-display); font-weight: 700; font-size: 19px; text-transform: uppercase; line-height: 1.2; color: var(--fg); }
.fact-value small { display: block; font-family: var(--font-body); font-size: 13px; text-transform: none; letter-spacing: 0; color: var(--muted); font-weight: 400; margin-top: 6px; line-height: 1.4; }

/* ============ BENEFIT / CHECK LIST ============ */
.benefit-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 40px; margin-top: 36px; }
.benefit-item { display: flex; gap: 16px; align-items: flex-start; padding: 4px 0; }
.benefit-check { flex-shrink: 0; width: 26px; height: 26px; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; margin-top: 2px; }
.benefit-text { font-family: var(--font-body); font-size: 16px; line-height: 1.5; color: var(--fg); }
.benefit-text b { color: var(--brand-dark); }

/* ============ CREATOR / NAME GRID ============ */
.creator-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; margin-top: 44px; }
.creator-chip { display: flex; align-items: center; justify-content: space-between; gap: 14px; border: 1px solid var(--line-strong); background: #fff; padding: 18px 20px; text-decoration: none; transition: all 0.25s cubic-bezier(0.16,1,0.3,1); }
.creator-chip:hover { background: var(--brand); border-color: var(--brand); transform: translateY(-3px); }
.creator-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; text-transform: uppercase; line-height: 1.1; color: var(--fg); transition: color 0.25s; }
.creator-ig { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 700; transition: color 0.25s; white-space: nowrap; }
.creator-chip:hover .creator-name { color: #fff; }
.creator-chip:hover .creator-ig { color: var(--action-yellow); }

/* ============ HASHTAG / PILL ROW ============ */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill { font-family: var(--font-mono); font-size: 13px; font-weight: 700; padding: 9px 16px; border: 1px solid var(--line-strong); color: var(--brand-dark); background: #fff; }
.pill-accent { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ============ PLACEHOLDER NOTICE ============ */
.placeholder-note { display: flex; gap: 16px; align-items: flex-start; border: 1px dashed var(--brand); background: var(--brand-soft); padding: 20px 24px; margin-top: 36px; }
.placeholder-note-tag { flex-shrink: 0; font-family: var(--font-mono); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #fff; background: var(--brand); padding: 5px 10px; }
.placeholder-note p { font-family: var(--font-body); font-size: 15px; line-height: 1.55; color: var(--brand-dark); margin: 0; }

/* ============ MEDIA / LINK LIST ============ */
.medien-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 44px; }
.medien-link { display: flex; align-items: center; gap: 18px; border: 1px solid var(--line); background: #fff; padding: 20px 22px; text-decoration: none; transition: all 0.25s cubic-bezier(0.16,1,0.3,1); }
.medien-link:hover { border-color: var(--brand); transform: translateX(4px); }
.medien-outlet { font-family: var(--font-display); font-weight: 700; font-size: 18px; text-transform: uppercase; color: var(--fg); line-height: 1.1; flex-shrink: 0; min-width: 132px; }
.medien-desc { font-family: var(--font-body); font-size: 14px; color: var(--muted); line-height: 1.4; flex-grow: 1; }
.medien-arrow { font-family: var(--font-mono); font-size: 18px; color: var(--brand); flex-shrink: 0; transition: transform 0.25s; }
.medien-link:hover .medien-arrow { transform: translateX(4px); }
.medien-link:hover .medien-outlet { color: var(--brand); }

/* ============ DJ / FEATURE SPLIT ============ */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 48px; border: 1px solid var(--line-strong); }
.feature-media { background: var(--brand-darker); min-height: 420px; position: relative; }
.feature-body { padding: clamp(32px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.feature-kicker { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--brand); font-weight: 700; margin-bottom: 16px; }
.feature-name { font-family: var(--font-display); font-weight: 700; font-size: clamp(36px, 4.5vw, 58px); text-transform: uppercase; line-height: 0.95; color: var(--fg); margin-bottom: 20px; letter-spacing: -0.01em; }
.feature-body p { font-family: var(--font-body); font-size: 16px; line-height: 1.65; color: var(--fg); margin-bottom: 16px; }
.feature-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 14px; }

/* ============ TIMELINE (Party schedule) ============ */
.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 44px; max-width: 640px; }
.timeline-row { display: grid; grid-template-columns: 120px 1fr; gap: 28px; padding: 22px 0; border-top: 1px solid var(--line); align-items: baseline; }
.timeline-row:last-child { border-bottom: 1px solid var(--line); }
.timeline-time { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--brand); line-height: 1; }
.timeline-event { font-family: var(--font-display); font-weight: 700; font-size: 20px; text-transform: uppercase; color: var(--fg); line-height: 1.15; }

/* ============ TEAM ============ */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.team-card { display: grid; grid-template-columns: 180px 1fr; gap: 28px; border: 1px solid var(--line); background: #fff; padding: 28px; align-items: start; }
.team-photo { width: 180px; height: 220px; display: block; }
.team-info-name { font-family: var(--font-display); font-weight: 700; font-size: 26px; text-transform: uppercase; line-height: 1.05; color: var(--fg); margin-bottom: 6px; letter-spacing: -0.01em; }
.team-role { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--brand); font-weight: 700; margin-bottom: 16px; }
.team-bio { font-family: var(--font-body); font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.team-grid-small { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 16px; }
.team-card-small { display: flex; align-items: center; gap: 20px; border: 1px solid var(--line); background: #fff; padding: 20px 24px; }
.team-card-small .team-photo { width: 72px; height: 72px; }
.team-card-small .team-info-name { font-size: 20px; margin-bottom: 4px; }
.team-card-small .team-role { margin-bottom: 0; }

/* ============ MASCOT / WIDE FEATURE ============ */
.mascot-split { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 0; margin-top: 48px; border: 1px solid var(--brand); background: var(--brand); color: #fff; }
.mascot-media { min-height: 360px; background: var(--brand-darker); }
.mascot-body { padding: clamp(32px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.mascot-kicker { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--action-yellow); font-weight: 700; margin-bottom: 16px; }
.mascot-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 3.6vw, 46px); text-transform: uppercase; line-height: 0.98; margin-bottom: 18px; }
.mascot-body p { font-family: var(--font-body); font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.88); margin-bottom: 14px; }
.mascot-body a.inline-link { color: var(--action-yellow); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ============ PROGRAMM — OPEN CARDS (poster + info) ============ */
.prog-zone-head { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; margin-bottom: 8px; }
.prog-list { display: flex; flex-direction: column; gap: 22px; margin-top: 48px; }
.prog-card { display: grid; grid-template-columns: 320px 1fr; border: 1px solid var(--line-strong); background: #fff; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; }
.prog-card:hover { box-shadow: 0 14px 34px rgba(10,25,41,0.12); transform: translateY(-3px); }
.prog-poster { width: 320px; height: auto; aspect-ratio: 3 / 4; align-self: start; background: var(--brand-darker); display: block; position: relative; border-right: 4px solid var(--brand); }
.prog-card.action .prog-poster { border-right-color: var(--action-yellow); }
.prog-body { padding: 30px 34px; display: flex; flex-direction: column; }
.prog-zone-tag { font-family: var(--font-mono); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; padding: 5px 11px; align-self: flex-start; margin-bottom: 16px; }
.prog-card.action .prog-zone-tag { background: var(--action-yellow); color: #282424; }
.prog-card.arena .prog-zone-tag { background: var(--brand); color: #fff; }
.prog-name { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.3vw, 28px); text-transform: uppercase; line-height: 1.05; color: var(--fg); letter-spacing: -0.01em; margin-bottom: 8px; }
.prog-sub { font-family: var(--font-body); font-size: 14px; font-style: italic; color: var(--muted); margin-bottom: 16px; line-height: 1.4; }
.prog-desc { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: var(--fg); margin-bottom: 20px; }
.prog-desc:last-child { margin-bottom: 0; }
.prog-desc b { color: var(--brand-dark); font-weight: 700; }
.prog-desc a { color: var(--brand); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.prog-showtimes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.prog-showtime { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.03em; padding: 6px 11px; white-space: nowrap; }
.prog-card.arena .prog-showtime { background: var(--brand-soft); color: var(--brand-dark); }
.prog-card.action .prog-showtime { background: rgba(250,241,67,0.28); color: #4a4204; }
.prog-showtime b { color: inherit; opacity: 0.62; }

/* zone divider heading accent */
.section-title .hl-yellow { color: #282424; }

/* ============ EXHIBITORS ============ */
.exhibitor-toolbar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 8px; }
.exhibitor-count { font-family: var(--font-mono); font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 700; }
.exhibitor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; }
.exhibitor-card { border: 1px solid var(--line); background: #fff; display: flex; flex-direction: column; transition: all 0.25s cubic-bezier(0.16,1,0.3,1); overflow: hidden; }
.exhibitor-card:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: 0 10px 26px rgba(48,102,161,0.12); }
.exhibitor-card.action:hover { border-color: var(--action-yellow); box-shadow: 0 10px 26px rgba(250,241,67,0.28); }
.exhibitor-logo { width: 100%; height: auto; aspect-ratio: 4 / 3; display: block; background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.exhibitor-card.action .exhibitor-logo { border-bottom: 3px solid var(--action-yellow); }
.exhibitor-inner { padding: 20px 22px 20px; display: flex; flex-direction: column; flex-grow: 1; }
.exhibitor-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.exhibitor-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; text-transform: uppercase; line-height: 1.08; color: var(--fg); letter-spacing: -0.005em; }
.exhibitor-stand { font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.06em; color: #fff; background: var(--brand); padding: 4px 8px; white-space: nowrap; flex-shrink: 0; }
.exhibitor-card.action .exhibitor-stand { background: var(--action-yellow); color: #282424; }
.exhibitor-brands { font-family: var(--font-body); font-size: 13px; line-height: 1.45; color: var(--muted); margin-bottom: 16px; flex-grow: 1; }
.exhibitor-brands b { color: var(--brand-dark); font-weight: 600; }
.exhibitor-links { display: flex; gap: 14px; margin-top: auto; }
.exhibitor-links a { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: var(--brand); text-decoration: none; transition: color 0.2s; }
.exhibitor-links a:hover { color: var(--brand-dark); text-decoration: underline; text-underline-offset: 3px; }
.exhibitor-card.action .exhibitor-links a { color: var(--brand-dark); }

/* ============ FULL-BLEED PHOTO BAND ============ */
.photo-band { position: relative; width: 100%; min-height: clamp(440px, 64vh, 660px); background: var(--brand-darker); overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; }
.photo-band > image-slot, .photo-band > .photo-band-img { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.photo-band-img { object-fit: cover; object-position: center 38%; }
.photo-band-ghost { position: absolute; right: -1vw; bottom: -7vw; z-index: 2; font-family: var(--font-display); font-weight: 700; font-size: clamp(160px, 30vw, 420px); color: rgba(255,255,255,0.06); line-height: 0.8; pointer-events: none; letter-spacing: -0.04em; white-space: nowrap; }
.photo-band-scrim { position: absolute; inset: 0; z-index: 3; pointer-events: none; background: linear-gradient(180deg, rgba(7,18,34,0.32) 0%, rgba(7,18,34,0.18) 42%, rgba(7,18,34,0.90) 100%); }
.photo-band-inner { position: relative; z-index: 4; max-width: 1440px; width: 100%; margin: 0 auto; padding: 0 32px clamp(40px, 6vh, 64px); align-self: flex-end; pointer-events: none; }
.photo-band-label { font-family: var(--font-mono); font-size: 14px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--action-yellow); font-weight: 700; margin-bottom: 18px; display: flex; align-items: center; gap: 14px; }
.photo-band-label::before { content: ""; width: 40px; height: 1px; background: var(--action-yellow); }
.photo-band-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(34px, 5vw, 72px); line-height: 0.98; letter-spacing: -0.01em; text-transform: uppercase; color: #fff; max-width: 17ch; }
.photo-band-meta { margin-top: 20px; font-family: var(--font-body); font-size: clamp(15px, 1.4vw, 18px); line-height: 1.55; color: rgba(255,255,255,0.82); max-width: 560px; }
.photo-band-meta b { color: #fff; font-weight: 700; }

/* ============ IMPRESSIONEN (photo mosaic) ============ */
.impressionen { margin-top: 64px; }
.impressionen-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(150px, 17vw, 220px); gap: 14px; margin-top: 40px; }
.impressionen-grid image-slot, .impressionen-grid img { width: 100%; height: 100%; display: block; border: 1px solid var(--line); background: var(--brand-darker); }
.impressionen-grid img { object-fit: cover; }
.imp-big { grid-column: span 2; grid-row: span 2; }
.imp-cap { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 700; margin-top: 18px; display: flex; align-items: center; gap: 10px; }
.imp-cap::before { content: ""; width: 26px; height: 1px; background: var(--brand); }

/* ============ DESKTOP GUTTERS ============
   roomier side padding on desktop; mobile keeps its 20px */
@media (min-width: 981px) {
  :root { --gutter: clamp(40px, 4.5vw, 72px); /* @kind spacing */ }
  .header-inner, .hero-identity-inner, .intro-split-inner, section.block,
  section.block-alt > .inner, .aussteller-strip-inner, .partners-strip-inner,
  .page-hero-inner, .prose-wrap, .photo-band-inner {
    padding-left: var(--gutter); padding-right: var(--gutter);
  }
  footer { padding-left: var(--gutter); padding-right: var(--gutter); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  /* Footer: Marke über die ganze Breite, darunter drei Linkspalten – 4 Spalten passen hier nicht */
  footer { padding: 56px 20px 28px; }
  .footer-inner { grid-template-columns: repeat(3, 1fr); gap: 30px 22px; margin-bottom: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-logo { height: 64px; margin-bottom: 18px; }
  .footer-tagline { margin-bottom: 20px; }
  .footer-col h4 { margin-bottom: 16px; letter-spacing: 0.16em; }
  .impressionen-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(150px, 34vw, 220px); }
  .imp-big { grid-column: span 2; grid-row: span 1; }
  .photo-band-title { max-width: none; }
  .nav-mobile-toggle { display: grid; place-items: center; order: 3; }
  .mz-ctrl { order: 2; }
  nav { display: none; position: absolute; top: 100%; right: 16px; background: #fff; border: 1px solid var(--line); padding: 18px; box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 16px; align-items: flex-start; }
  nav li.has-sub { width: 100%; }
  .nav-caret { display: none; }
  .nav-top { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--brand-dark); padding: 0; }
  .submenu { position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto; min-width: 0; box-shadow: none; border: none; padding: 8px 0 4px 14px; border-left: 2px solid var(--line-strong); margin-top: 10px; }
  .submenu a { padding: 7px 0; }
  .hero-videos-grid { grid-template-columns: 1fr; gap: 14px; }
  .intro-split-inner { grid-template-columns: 1fr; gap: 48px; }
  .intro-split-logo { order: -1; justify-content: center; }
  .intro-split-logo img { max-width: clamp(260px, 80vw, 480px); }
  .what-grid { grid-template-columns: 1fr; }
  .what-card { border-right: none; }
  .what-card:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .nums-grid { grid-template-columns: 1fr 1fr; }
  .num { border-bottom: 1px solid var(--line); }
  .press-grid { grid-template-columns: 1fr; }
  .park-grid { grid-template-columns: 1fr 1fr; }
  .intro-lead-row { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .intro-lead-cta { justify-content: flex-start; }
  .faq-transit { grid-template-columns: 1fr; }
  .prose-layout { grid-template-columns: 1fr; gap: 0; }
  .prose-toc { display: none; }
  .track-list { grid-template-columns: 1fr; }
  .benefit-list { grid-template-columns: 1fr; gap: 12px; }
  .medien-list { grid-template-columns: 1fr; }
  .feature-split { grid-template-columns: 1fr; }
  .feature-media { min-height: 280px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-grid-small { grid-template-columns: 1fr; }
  .mascot-split { grid-template-columns: 1fr; }
  .mascot-media { min-height: 240px; }
  .exhibitor-grid { grid-template-columns: 1fr 1fr; }
  .prog-card { grid-template-columns: 200px 1fr; }
  .prog-poster { width: 200px; }
}

@media (max-width: 600px) {
  .exhibitor-grid { grid-template-columns: 1fr; }
  .showtime-row { gap: 6px; }
  .prog-card { grid-template-columns: 1fr; }
  .prog-poster { width: 100%; aspect-ratio: 4 / 3; border-right: none; border-bottom: 4px solid var(--brand); }
  .prog-card.action .prog-poster { border-right-color: transparent; border-bottom-color: var(--action-yellow); }
  .feedback-inner { grid-template-columns: 1fr; gap: 32px; }
  .partners-strip-label { padding-right: 0; border-right: none; border-bottom: 1px solid var(--line-strong); padding-bottom: 16px; width: 100%; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .nums-grid { grid-template-columns: 1fr; }
  .park-grid { grid-template-columns: 1fr !important; }
  .faq-a { padding-left: 26px; }
  /* phones: trim the heading floor so long German lines never overflow */
  .section-title { font-size: clamp(31px, 9vw, 44px); overflow-wrap: break-word; }

  /* ---- "Was ist MOTO-ZÜRICH?" intro + pillars: phone fit ---- */
  .intro-split-inner { padding: 64px 20px; gap: 36px; }
  .intro-split-text h2 { font-size: clamp(34px, 11vw, 52px); word-break: break-word; hyphens: auto; }
  section.block { padding: 64px 20px; }
  .what-card { padding: 30px 22px 26px; }
  .what-card-num { font-size: 56px; top: 20px; right: 20px; }
  .what-card-tag { padding-right: 64px; }
  .what-card h3 { font-size: 26px; padding-right: 56px; }
  .what-card p { font-size: 15px; }
}
