/* Cormorant Garamond — self-hosted (OFL license) */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(/fonts/cormorant-garamond-normal-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(/fonts/cormorant-garamond-normal-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url(/fonts/cormorant-garamond-italic-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url(/fonts/cormorant-garamond-italic-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Outfit — self-hosted (OFL license) */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(/fonts/outfit-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(/fonts/outfit-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --sans: 'Outfit', sans-serif;
  --serif: 'Cormorant Garamond', Georgia, serif;
  /* Summer */
  --s-accent: rgba(255,190,100,0.7);
  --s-accent-soft: rgba(255,200,120,0.55);
  --s-accent-bg: rgba(255,190,100,0.18);
  /* Winter */
  --w-accent: rgba(150,190,255,0.7);
  --w-accent-soft: rgba(150,190,255,0.55);
  --w-accent-bg: rgba(130,175,240,0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: #0a0a0a; color: #fff; min-height: 100vh; font-family: var(--sans); }
button { font-family: var(--sans); }
button:hover { opacity: 0.85; }
a:hover { opacity: 0.8; }
::selection { background: rgba(255,255,255,0.1); }

/* ═══ NAV ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.8); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05); transition: all 0.3s;
}
.nav.scrolled { background: rgba(10,10,10,0.96); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 44px;
}
.nav-logo {
  font-size: 18px; font-weight: 700; letter-spacing: 3px;
  color: #fff; cursor: pointer; text-transform: uppercase; text-decoration: none;
}
.nav-left { display: flex; align-items: center; gap: 20px; }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-link {
  background: none; border: none; color: rgba(255,255,255,0.35);
  font-size: 11px; font-weight: 400; letter-spacing: 1.5px;
  text-transform: uppercase; cursor: pointer; padding: 4px 0;
  border-bottom: 1px solid transparent; transition: all 0.3s;
  text-decoration: none;
}
.nav-link.active { color: #fff; font-weight: 600; border-bottom-color: #fff; }
.hamburger {
  background: none; border: none; color: #fff; font-size: 22px;
  cursor: pointer; padding: 4px; display: none;
}
.mobile-menu {
  display: none; padding: 8px 20px 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-direction: column; gap: 12px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  background: none; border: none; color: rgba(255,255,255,0.4);
  font-size: 13px; font-weight: 400; letter-spacing: 1px;
  text-transform: uppercase; cursor: pointer; padding: 6px 0;
  text-align: left; text-decoration: none; display: block;
}
.mobile-link.active { color: #fff; font-weight: 600; }

/* ═══ SEASON TOGGLE ═══ */
.season-toggle {
  display: flex; align-items: center; gap: 6px;
  border-radius: 18px; padding: 4px 12px; cursor: pointer;
  transition: all 0.4s; border: 1px solid;
}
.season-toggle[data-season="summer"] {
  background: rgba(255,190,100,0.08); border-color: rgba(255,190,100,0.2);
}
.season-toggle[data-season="winter"] {
  background: rgba(130,175,240,0.08); border-color: rgba(130,175,240,0.2);
}
.season-toggle .icon { font-size: 12px; }
.season-toggle .label {
  font-size: 9px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
}
.season-toggle[data-season="summer"] .label { color: rgba(255,200,120,0.75); }
.season-toggle[data-season="winter"] .label { color: rgba(150,190,255,0.75); }

/* ═══ CTA BUTTONS ═══ */
.btn-mediakit {
  background: #fff; color: #0a0a0a; border: none;
  padding: 12px 24px; font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px; text-decoration: none;
}
.btn-mediakit.small { padding: 9px 16px; }
.btn-outline {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.15);
  padding: 9px 16px; font-size: 11px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-outline.primary { padding: 12px 24px; }
.tel-link {
  color: rgba(255,255,255,0.5); font-size: 12px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
}

/* ═══ SECTION HELPERS ═══ */
.section { padding: 100px 52px 80px; min-height: 100vh; }
.section-inner { max-width: 1060px; margin: 0 auto; }
.section-tag {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.22); margin-bottom: 8px;
}
.section-title {
  font-weight: 300; color: #fff; margin: 0 0 28px; font-family: var(--serif);
  font-size: 42px;
}
.section-title em { font-weight: 700; font-style: italic; }

/* ═══ HERO ═══ */
.hero {
  min-height: 92vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 120px 40px 80px; position: relative; overflow: hidden;
  transition: background 0.8s;
}
.hero[data-season="summer"] {
  background: linear-gradient(170deg,#1a1408 0%,#0d0d0d 45%,#0d0b08 100%);
}
.hero[data-season="winter"] {
  background: linear-gradient(170deg,#080f1a 0%,#0d0d0d 45%,#0a0d12 100%);
}
.hero-glow {
  position: absolute; top: -15%; right: -5%; width: 400px; height: 400px;
  pointer-events: none;
}
.hero[data-season="summer"] .hero-glow {
  background: radial-gradient(circle,rgba(255,180,80,0.05) 0%,transparent 70%);
}
.hero[data-season="winter"] .hero-glow {
  background: radial-gradient(circle,rgba(100,160,255,0.04) 0%,transparent 70%);
}
.hero-content {
  opacity: 0; transform: translateY(20px);
  transition: all 0.8s;
}
.hero-content.visible { opacity: 1; transform: translateY(0); }
.hero-badge {
  display: inline-block; padding: 4px 14px; margin-bottom: 20px;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(34px,5vw,62px); font-weight: 300; color: #fff;
  line-height: 1.15; margin: 0 0 16px; font-family: var(--serif); max-width: 820px;
}
.hero h1 span { font-weight: 700; font-style: italic; }
.hero-sub {
  font-size: 15px; color: rgba(255,255,255,0.4); max-width: 480px;
  margin: 0 auto 28px; line-height: 1.7; font-weight: 300;
}
.hero-ctas { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; border-top: 1px solid rgba(255,255,255,0.05);
}
.hero-stat {
  flex: 1; padding: 20px 16px; text-align: center;
}
.hero-stat + .hero-stat { border-left: 1px solid rgba(255,255,255,0.05); }
.hero-stat .num {
  font-size: 22px; font-weight: 300; color: #fff; font-family: var(--serif);
}
.hero-stat .lbl {
  font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.22); margin-top: 2px;
}

/* ═══ VERTICALS ═══ */
.verticals { display: grid; grid-template-columns: 1fr 1fr; }
.vertical-card {
  padding: 56px 44px; display: flex; flex-direction: column;
  justify-content: center; cursor: pointer; text-decoration: none; color: inherit;
}
.vertical-card.cinema {
  background: linear-gradient(145deg,#1c1408 0%,#261a0a 50%,#1a1207 100%);
}
.vertical-card.hockey {
  background: linear-gradient(145deg,#0a1420 0%,#0e1c2e 50%,#0a1520 100%);
}
.vertical-card .season-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 8px;
}
.vertical-card.cinema .season-label { color: rgba(255,190,110,0.4); }
.vertical-card.hockey .season-label { color: rgba(130,175,240,0.4); }
.vertical-card h2 {
  font-size: 34px; font-weight: 300; color: #fff; margin: 0 0 10px;
  font-family: var(--serif); line-height: 1.2;
}
.vertical-card h2 span { font-weight: 700; font-style: italic; }
.vertical-card p {
  font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.7;
  max-width: 320px; font-weight: 300;
}
.vertical-card .arrow {
  margin-top: 12px; font-size: 11px; letter-spacing: 1px;
}
.vertical-card.cinema .arrow { color: rgba(255,190,110,0.45); }
.vertical-card.hockey .arrow { color: rgba(130,175,240,0.45); }

/* ═══ USP BAR ═══ */
.usp-bar { background: #0e0e0e; padding: 64px 52px; }
.usp-grid {
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px;
}
.usp-item h3 {
  font-size: 13px; font-weight: 600; color: #fff; margin: 0 0 6px;
}
.usp-item p {
  font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.7;
  margin: 0; font-weight: 300;
}

/* ═══ REF BAR ═══ */
.ref-bar {
  background: #080808; padding: 48px 52px;
  border-top: 1px solid rgba(255,255,255,0.03);
}
.ref-bar-inner { max-width: 1060px; margin: 0 auto; text-align: center; }
.ref-bar .sub {
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.13); margin-bottom: 16px;
}
.ref-bar .clients { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.ref-bar .client {
  font-size: 12px; letter-spacing: 1.5px; color: rgba(255,255,255,0.14);
}

/* ═══ FOOTER ═══ */
.footer {
  background: #080808; border-top: 1px solid rgba(255,255,255,0.04);
  padding: 44px 52px 24px;
}
.footer-inner { max-width: 1060px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 36px; margin-bottom: 28px;
}
.footer-logo {
  font-size: 14px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: #fff; margin-bottom: 12px;
}
.footer-nav { display: flex; flex-direction: column; gap: 6px; }
.footer-nav a {
  font-size: 12px; color: rgba(255,255,255,0.28); text-decoration: none;
  font-weight: 300;
}
.footer-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.18); margin-bottom: 10px; font-weight: 600;
}
.footer-addr {
  font-size: 11px; color: rgba(255,255,255,0.32); line-height: 2; font-weight: 300;
}
.footer-contact-label {
  font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.13);
}
.footer-contact-val {
  font-size: 11px; color: rgba(255,255,255,0.32); font-weight: 300;
  text-decoration: none;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04); padding-top: 14px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-size: 9px; letter-spacing: 1px; color: rgba(255,255,255,0.1);
}

/* ═══ METRICS GRID ═══ */
.metrics-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.03); margin-bottom: 28px;
}
.metric {
  background: #0a0a0a; padding: 22px 14px; text-align: center;
}
.metric .val {
  font-size: 26px; font-weight: 300; color: #fff;
  font-family: var(--serif); margin-bottom: 3px;
}
.metric .lbl {
  font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.45);
}
.metric .sub {
  font-size: 9px; color: rgba(255,255,255,0.18);
}

/* ═══ FORMATE TABS ═══ */
.format-tabs {
  display: flex; gap: 0; margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.format-tab {
  background: none; border: none;
  border-bottom: 2px solid transparent;
  color: rgba(255,255,255,0.28); padding: 12px 20px;
  font-size: 13px; font-weight: 400; cursor: pointer;
  transition: all 0.3s; white-space: nowrap; flex-shrink: 0;
}
.format-tab.active {
  color: #fff; font-weight: 600; border-bottom-color: #fff;
}
.format-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.format-season-label {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 4px;
}
.format-tag {
  font-size: 14px; font-style: italic; color: rgba(255,255,255,0.45);
  margin: 0 0 14px; font-family: var(--serif);
}
.format-desc {
  font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.8;
  margin: 0 0 20px; font-weight: 300;
}
.spec-row {
  display: flex; justify-content: space-between; padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.spec-label {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}
.spec-value {
  font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 400;
  text-align: right;
}

/* ═══ MAP ═══ */
.map-container {
  background: rgba(255,255,255,0.015);
  padding: 28px 20px 20px; margin-bottom: 28px;
}
.map-container svg { width: 100%; height: auto; }
.region-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 28px; margin-bottom: 32px;
}
.region-label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 6px; font-weight: 600;
}
.region-label.summer { color: rgba(255,190,100,0.4); }
.region-label.winter { color: rgba(140,180,240,0.4); }
.region-venues {
  font-size: 12px; color: rgba(255,255,255,0.32); line-height: 1.9; font-weight: 300;
}

/* ═══ ARENA TABLE ═══ */
.arena-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.03);
}
.arena-left { display: flex; gap: 12px; align-items: baseline; flex: 1; min-width: 0; }
.arena-ort { font-size: 12px; font-weight: 600; color: #fff; width: 75px; flex-shrink: 0; }
.arena-name {
  font-size: 11px; color: rgba(255,255,255,0.2); font-weight: 300;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1;
}
.arena-right { display: flex; align-items: baseline; gap: 10px; flex-shrink: 0; }
.arena-games { font-size: 10px; color: rgba(255,255,255,0.18); width: 45px; }
.arena-avg { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 400; width: 55px; text-align: right; }
.arena-reg { font-size: 9px; color: rgba(255,255,255,0.15); width: 28px; text-align: right; }

/* ═══ CHART ═══ */
.chart-container {
  display: flex; align-items: flex-end; gap: 6px;
  margin-bottom: 28px; height: 120px; padding: 0 0 20px; position: relative;
}
.chart-bar-group {
  flex: 1; display: flex; flex-direction: column; align-items: center; position: relative;
}
.chart-bars {
  display: flex; gap: 2px; align-items: flex-end; width: 100%;
  justify-content: center; height: 100px;
}
.chart-bar-norm {
  width: 38%; background: rgba(255,255,255,0.08); border-radius: 2px 2px 0 0;
  transition: height 0.5s;
}
.chart-bar-curr {
  width: 38%; border-radius: 2px 2px 0 0; transition: height 0.5s;
}
.chart-bar-curr.normal { background: rgba(140,180,240,0.35); }
.chart-bar-curr.olympia { background: rgba(255,100,80,0.4); }
.chart-label {
  font-size: 9px; color: rgba(255,255,255,0.25); margin-top: 4px;
}
.chart-olympia {
  position: absolute; top: -18px; font-size: 8px;
  color: rgba(255,100,80,0.6); white-space: nowrap;
}

/* ═══ INSIGHT SUMMER ═══ */
.eck-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 10px; margin-bottom: 32px;
}
.eck-card { padding: 14px 16px; }
.eck-card.summer {
  background: rgba(255,190,100,0.06); border: 1px solid rgba(255,190,100,0.08);
}
.eck-title.summer { font-size: 13px; font-weight: 600; color: rgba(255,200,120,0.7); margin-bottom: 3px; }
.eck-desc { font-size: 11px; color: rgba(255,255,255,0.3); font-weight: 300; }
.source-note {
  font-size: 10px; color: rgba(255,255,255,0.13); font-style: italic;
}

/* ═══ TECHNISCHES ═══ */
.steps-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 2px; margin-bottom: 36px;
}
.step-card { background: rgba(255,255,255,0.02); padding: 24px 16px; }
.step-num {
  font-size: 22px; font-weight: 200; color: rgba(255,255,255,0.06);
  font-family: var(--serif); margin-bottom: 6px;
}
.step-title { font-size: 12px; font-weight: 600; color: #fff; margin: 0 0 5px; }
.step-desc { font-size: 10px; color: rgba(255,255,255,0.28); line-height: 1.6; margin: 0; font-weight: 300; }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.spec-panel { overflow: hidden; }
.spec-panel.cinema { background: rgba(255,190,100,0.03); border: 1px solid rgba(255,190,100,0.05); }
.spec-panel.hockey { background: rgba(130,175,240,0.03); border: 1px solid rgba(130,175,240,0.05); }
.spec-panel-header {
  width: 100%; background: none; border: none; padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
}
.spec-panel-title {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
}
.spec-panel.cinema .spec-panel-title { color: rgba(255,190,100,0.5); }
.spec-panel.hockey .spec-panel-title { color: rgba(130,175,240,0.5); }
.spec-panel-arrow {
  font-size: 14px; color: rgba(255,255,255,0.2); transition: transform 0.3s;
}
.spec-panel-arrow.open { transform: rotate(180deg); }
.spec-panel-body { padding: 0 18px 14px; display: none; }
.spec-panel-body.open { display: block; }

/* ═══ INHOUSE BOX ═══ */
.inhouse-box {
  background: rgba(140,180,240,0.05); border: 1px solid rgba(140,180,240,0.08);
  padding: 20px 24px; margin-bottom: 28px;
}
.inhouse-title {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(140,180,240,0.45); margin-bottom: 8px; font-weight: 600;
}
.inhouse-desc {
  font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; font-weight: 300;
}

/* ═══ SEASON VISIBILITY ═══ */
.summer-only { display: none; }
.winter-only { display: none; }
body.season-summer .summer-only { display: block; }
body.season-summer .summer-only-flex { display: flex; }
body.season-summer .summer-only-grid { display: grid; }
body.season-summer .summer-only-inline { display: inline-block; }
body.season-winter .winter-only { display: block; }
body.season-winter .winter-only-flex { display: flex; }
body.season-winter .winter-only-grid { display: grid; }
body.season-winter .winter-only-inline { display: inline-block; }

/* Hide mobile-only elements by default */
.mobile-only { display: none; }
.desktop-only { display: block; }
.desktop-only-flex { display: flex; }
.desktop-only-grid { display: grid; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 767px) {
  .mobile-only { display: block; }
  .desktop-only, .desktop-only-flex, .desktop-only-grid { display: none; }

  .nav-inner { padding: 10px 20px; }
  .nav-left { gap: 12px; }
  .nav-logo { font-size: 16px; }
  .nav-links { display: none; }
  .hamburger { display: block; }

  .section { padding: 100px 20px 80px; }
  .section-title { font-size: 28px; }

  .hero { padding: 100px 20px 80px; }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 13px; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { flex: 1 1 50%; padding: 14px 8px; }
  .hero-stat + .hero-stat { border-left: none; }
  .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .hero-stat .num { font-size: 18px; }

  .verticals { grid-template-columns: 1fr; }
  .vertical-card { padding: 40px 24px; }
  .vertical-card h2 { font-size: 26px; }

  .usp-bar { padding: 40px 20px; }
  .usp-grid { grid-template-columns: 1fr; gap: 24px; }

  .ref-bar { padding: 32px 20px; }
  .ref-bar .clients { gap: 12px; }
  .ref-bar .client { font-size: 10px; }

  .footer { padding: 32px 20px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-nav a { font-size: 14px; padding: 4px 0; }

  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .metric { padding: 18px 10px; }
  .metric .val { font-size: 20px; }

  .format-tab { padding: 10px 14px; font-size: 12px; }
  .format-detail { grid-template-columns: 1fr; gap: 28px; }

  .map-container { padding: 16px 8px 8px; }
  .region-grid { grid-template-columns: 1fr; gap: 20px; }

  .arena-left { gap: 6px; }
  .arena-ort { font-size: 11px; width: 65px; }
  .arena-name { display: none; }
  .arena-right { gap: 6px; }
  .arena-games { display: none; }
  .arena-avg { font-size: 12px; }
  .arena-row { padding: 8px 0; }

  .chart-container { gap: 4px; }
  .chart-bar-norm, .chart-bar-curr { width: 35%; }
  .chart-label { font-size: 8px; }
  .chart-olympia { top: -16px; font-size: 7px; }

  .eck-grid { grid-template-columns: 1fr; }

  .steps-grid { grid-template-columns: 1fr; gap: 8px; }
  .step-card { padding: 16px 12px; }
  .specs-grid { grid-template-columns: 1fr; }

  .inhouse-box { padding: 16px; }
}

/* ═══ ADDITIONS — extracted from inline styles ═══ */

/* Visually-hidden but available to screen readers */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Focus ring for keyboard users (incl. SVG map points) */
:focus-visible { outline: 2px solid rgba(255,255,255,0.6); outline-offset: 3px; }
.map-container svg [tabindex]:focus { outline: none; }

/* Hero badge — was inline */
.hero-badge {
  border: 1px solid rgba(255,190,100,0.18);
  color: rgba(255,200,120,0.55);
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  font-family: var(--sans);
}
body.season-winter .hero-badge {
  border-color: rgba(130,175,240,0.18);
  color: rgba(150,190,255,0.55);
}

/* Format detail blocks — was inline */
.format-detail h2.format-h2 {
  font-size: 28px; font-weight: 300; color: #fff;
  margin: 0 0 4px; font-family: var(--serif);
}
.cta-row {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.cta-row.with-tel { margin-bottom: 0; }
.cta-row-cinema .format-season-label { color: rgba(255,190,110,0.4); }
.cta-row-hockey .format-season-label { color: rgba(130,175,240,0.4); }

/* Section transitions */
.section.fade { transition: background 0.5s; }

/* Standorte description text */
.standorte-desc {
  font-size: 13px; color: rgba(255,255,255,0.3);
  margin-bottom: 28px; font-weight: 300;
}

/* Insight subtitles */
.insight-subtitle {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.2); margin-bottom: 10px;
}
.insight-fineprint {
  font-size: 10px; color: rgba(255,255,255,0.2); margin-bottom: 24px;
}

/* Technisches headline override */
.tech-h1 {
  font-size: 38px; line-height: 1.2; margin-bottom: 6px;
}
.tech-lead {
  font-size: 13px; color: rgba(255,255,255,0.3); margin-bottom: 32px;
  font-weight: 300; max-width: 480px;
}
.tech-cta-row {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 40px; align-items: center;
}
.tech-or {
  font-size: 11px; color: rgba(255,255,255,0.2);
}

/* Mobile-only inline contact (formerly inline-styled) */
.footer-mobile-contact {
  display: none; gap: 20px; margin-bottom: 20px;
}
@media (max-width: 767px) {
  .footer-mobile-contact { display: flex; }
}
.footer-mobile-contact a,
.footer-mobile-contact span {
  font-size: 11px; color: rgba(255,255,255,0.3); text-decoration: none;
}

/* Legal pages (impressum, datenschutz) */
.legal-section {
  padding: 120px 52px 80px; max-width: 760px; margin: 0 auto;
}
.legal-section h1 {
  font-family: var(--serif); font-weight: 300; font-size: 36px;
  color: #fff; margin: 0 0 32px;
}
.legal-section h2 {
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  margin: 28px 0 10px;
}
.legal-section p,
.legal-section li {
  font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.8;
  font-weight: 300; margin: 0 0 12px;
}
.legal-section ul { padding-left: 20px; margin-bottom: 12px; }
.legal-section a { color: rgba(255,255,255,0.75); }

/* 404 */
.notfound {
  min-height: 80vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 120px 20px 80px; text-align: center;
}
.notfound h1 {
  font-family: var(--serif); font-size: 96px; font-weight: 300;
  color: #fff; margin: 0 0 12px;
}
.notfound p {
  font-size: 14px; color: rgba(255,255,255,0.4);
  margin: 0 0 28px; font-weight: 300;
}

@media (max-width: 767px) {
  .legal-section { padding: 100px 20px 60px; }
  .legal-section h1 { font-size: 28px; }
  .notfound h1 { font-size: 64px; }
}

/* Mediakit Modal */
.mk-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
}
.mk-overlay.open { display: flex; }
.mk-modal {
  background: #141414; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 36px 32px 28px; max-width: 400px; width: 90%;
  position: relative;
}
.mk-close {
  position: absolute; top: 12px; right: 16px; background: none; border: none;
  color: rgba(255,255,255,0.4); font-size: 20px; cursor: pointer; padding: 4px;
}
.mk-close:hover { color: #fff; }
.mk-modal h3 {
  font-family: var(--serif); font-weight: 300; font-size: 24px;
  color: #fff; margin: 0 0 6px;
}
.mk-modal p {
  font-size: 13px; color: rgba(255,255,255,0.4); margin: 0 0 20px;
  font-weight: 300; line-height: 1.5;
}
.mk-form { display: flex; flex-direction: column; gap: 12px; }
.mk-input {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 12px 14px; color: #fff; font-size: 14px;
  font-family: var(--sans); outline: none; transition: border-color 0.2s;
}
.mk-input:focus { border-color: rgba(255,190,100,0.5); }
.mk-input::placeholder { color: rgba(255,255,255,0.25); }
.mk-submit {
  background: rgba(255,190,100,0.15); border: 1px solid rgba(255,190,100,0.3);
  border-radius: 6px; padding: 12px; color: rgba(255,190,100,0.9);
  font-size: 14px; font-weight: 500; font-family: var(--sans);
  cursor: pointer; transition: background 0.2s;
}
.mk-submit:hover { background: rgba(255,190,100,0.25); }
.mk-submit:disabled { opacity: 0.4; cursor: not-allowed; }
.mk-privacy {
  font-size: 10px; color: rgba(255,255,255,0.2); text-align: center;
  margin-top: 4px; line-height: 1.5;
}
.mk-privacy a { color: rgba(255,255,255,0.35); }
.mk-success {
  text-align: center; padding: 12px 0;
}
.mk-success p { color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.mk-success .mk-dl {
  display: inline-block; background: rgba(255,190,100,0.15);
  border: 1px solid rgba(255,190,100,0.3); border-radius: 6px;
  padding: 10px 20px; color: rgba(255,190,100,0.9); text-decoration: none;
  font-size: 14px; font-weight: 500;
}
.season-winter .mk-input:focus { border-color: rgba(140,180,240,0.5); }
.season-winter .mk-submit {
  background: rgba(140,180,240,0.15); border-color: rgba(140,180,240,0.3);
  color: rgba(140,180,240,0.9);
}
.season-winter .mk-submit:hover { background: rgba(140,180,240,0.25); }
.season-winter .mk-success .mk-dl {
  background: rgba(140,180,240,0.15); border-color: rgba(140,180,240,0.3);
  color: rgba(140,180,240,0.9);
}

