/* ---------- Self-hosted Fonts (Inter Variable + Bebas Neue) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../assets/fonts/inter-variable.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/bebas-neue-400.woff2') format('woff2');
}

/* ============================================
   YARD 376 - Premium Indoor Football  (v2 - Anthrazit + Orange + Grün)
   - neutrales Anthrazit als Basis
   - Orange als Primaer-Akzent (Buttons, Eyebrows, CTAs)
   - Gruen als Sekundaer-Akzent (Live-Pulse, Stat-Suffix, Story-Pill)
   ============================================ */

/* ---------- Design Tokens (v2 - Anthrazit + Orange + Grün) ---------- */
:root {
  --bg:           #1a1a1c;
  --bg-2:         #1f1f22;
  --bg-3:         #232328;
  --surface:      #28282d;
  --surface-2:    #2f2f35;
  --border:       #34343a;
  --text:         #f1f0ee;
  --text-dim:     #b4b3b0;
  --text-mute:    #9a9996;
  --accent:       #ff7a1a;            /* Primaer-Akzent: Orange */
  --accent-2:     #e6651a;
  --accent-glow:  rgba(255, 122, 26, 0.32);
  --accent-green: #46c46e;            /* Sekundaer-Akzent: Gruen */
  --accent-green-glow: rgba(70, 196, 110, 0.32);
  --danger:       #ff5d4d;

  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    22px;

  --shadow-sm:    0 2px 8px rgba(0,0,0,0.4);
  --shadow:       0 12px 40px rgba(0,0,0,0.55);
  --shadow-glow:  0 0 40px var(--accent-glow);

  --max-w:        1240px;
  --max-w-narrow: 820px;
  --nav-h:        72px;               /* Hoehe der fixierten Navigation */

  --ease:         cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
html, body { height: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--accent); color: #000; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--max-w-narrow); }

.section {
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
}
.section--dark   { background: var(--bg); }
.section--darker { background: var(--bg-2); }
.section--accent {
  background: linear-gradient(135deg, var(--accent-green) 0%, #36a45a 100%);
  color: #0e2616;
}

.section__head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section__title {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.5px;
  margin: 12px 0 18px;
  text-transform: uppercase;
}
.section__title--left { text-align: left; }

.section__lead {
  color: var(--text-dim);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid rgba(255, 122, 26, 0.25);
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.06);
}
.eyebrow--inverse {
  color: #08130e;
  border-color: rgba(8,19,14,0.35);
  background: rgba(8,19,14,0.08);
}
.eyebrow--pulse {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow__pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 0 var(--accent-green-glow);
  animation: pulseDot 2s ease-out infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0    rgba(70, 196, 110, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(70, 196, 110, 0); }
  100% { box-shadow: 0 0 0 0    rgba(70, 196, 110, 0); }
}

.accent { color: var(--accent); }
.nowrap { white-space: nowrap; }

.link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .2s var(--ease);
}
.link:hover { color: var(--text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn--lg { padding: 16px 28px; font-size: 1rem; }

.btn--primary {
  background: var(--accent);
  color: #2a1607;
  box-shadow: 0 8px 24px rgba(255, 122, 26, 0.22);
}
.btn--primary:hover {
  background: #ff8f3d;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 122, 26, 0.42);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--bg);
  color: var(--accent);
  border: 1.5px solid var(--bg);
}
.btn--dark:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(26, 26, 28, 0.7);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.nav.is-scrolled {
  background: rgba(26, 26, 28, 0.92);
  border-bottom-color: rgba(255,255,255,0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--nav-h);
}

.nav__logo {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  letter-spacing: 1px;
  color: var(--text);
}
.nav__logo-mark { color: var(--text); }
.nav__logo-num  { color: var(--accent); }
.nav__logo img  {
  display: block;
  height: 40px;
  width: auto;
}
.footer__brand-logo {
  display: block;
  height: 36px;
  width: auto;
  margin-bottom: 10px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 24px;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { padding: 11px 20px; font-size: 0.9rem; }

/* ---------- Language Toggle ---------- */
.lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  margin-right: 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}
.lang__btn {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  padding: 6px 12px;
  min-height: 28px;
  border-radius: 999px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.lang__btn:hover { color: var(--text); }
.lang__btn.is-active {
  color: var(--accent);
  background: rgba(255, 122, 26,0.1);
}
.lang__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.lang__sep {
  color: var(--text-mute);
  font-size: 0.78rem;
  user-select: none;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text);
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  /* --notice-h wird von main.js gesetzt, wenn das Hinweis-Banner sichtbar ist.
     So bleibt der Hero auch mit Banner darüber genau einen Bildschirm hoch. */
  min-height: calc(100svh - var(--notice-h, 0px));
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute; inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(180deg,
      rgba(15,15,17,0.18) 0%,
      rgba(15,15,17,0.30) 45%,
      rgba(15,15,17,0.35) 100%),
    url("../assets/img/hero-bg.jpg");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-color: var(--bg);
}

.hero__grid {
  position: absolute; inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 50%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 50%, transparent 85%);
  opacity: 0.6;
}

.hero__glow {
  position: absolute;
  left: 50%; top: 0;
  width: 1200px; height: 1200px;
  transform: translate(-50%, -55%);
  z-index: -1;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.20) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 9vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 18px 0 22px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero__tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.85), 0 0 20px rgba(0,0,0,0.5);
}

.hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-dim);
  max-width: 640px;
  margin-bottom: 36px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.85), 0 0 32px rgba(0,0,0,0.6);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 720px;
}
.stat {
  display: flex;
  flex-direction: column-reverse;
  gap: 4px;
}
.stat__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text);
  line-height: 1;
}
.stat__num small {
  font-size: 0.55em;
  color: var(--accent-green);
  margin-left: 2px;
}
.stat__label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px; height: 40px;
  display: flex;
  justify-content: center;
}
.hero__scroll-line {
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ---------- Grids & Cards ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 122, 26,0.08), transparent 50%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.card--hover:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 26,0.4);
  background: var(--surface-2);
}
.card--hover:hover::before { opacity: 1; }

.card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255, 122, 26,0.1);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.card__icon svg { width: 30px; height: 30px; }

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.card p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* ---------- Features ---------- */
.features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.feature:hover {
  border-color: rgba(255, 122, 26,0.35);
  transform: translateY(-2px);
}
.feature--wide { grid-column: span 3; }

.feature__dot {
  flex: 0 0 auto;
  width: 12px; height: 12px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 8px;
  box-shadow: 0 0 0 4px rgba(255, 122, 26,0.15);
}
.feature h4 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.feature p {
  color: var(--text-dim);
  font-size: 0.92rem;
}

/* ---------- Story ---------- */
.story {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.story__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 122, 26, 0.32), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(70, 196, 110, 0.10), transparent 55%),
    linear-gradient(160deg, #1e1e22 0%, #14150f 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 40px;
  overflow: hidden;
  isolation: isolate;
}
.story__visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 122, 26,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 122, 26,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  z-index: -1;
}
.story__pill {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 1px;
  color: var(--text);
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px 26px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.story__pill--alt {
  color: var(--accent);
  border-color: rgba(255, 122, 26, 0.4);
  background: rgba(255, 122, 26, 0.08);
}

.story__text .section__title { margin-bottom: 28px; }
.story__text p {
  color: var(--text-dim);
  margin-bottom: 28px;
  line-height: 1.75;
}
.story__text p:last-child { margin-bottom: 0; }
.story__lead {
  font-size: 1.08rem;
  color: var(--text) !important;
}
.story__quote {
  border-left: 3px solid var(--accent);
  padding: 22px 26px;
  margin: 36px 0;
  background: rgba(255, 122, 26, 0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
}
.story__quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}

/* ---------- Booking Banner ---------- */
.booking {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 40px;
  padding: clamp(28px, 4vw, 56px);
  background: rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
}
.booking__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 12px 0 14px;
  color: #08130e;
}
.booking p { color: #0d2218; max-width: 540px; }
.booking p + p { margin-top: 12px; }
.booking .link { color: inherit; }
.booking .link:hover { color: #000; }
.booking__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.booking__cta small { color: rgba(8,19,14,0.7); font-size: 0.82rem; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.gallery__item {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.gallery__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__placeholder {
  width: 100%; height: 100%;
  display: grid;
  place-items: center;
  color: var(--text-mute);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #1a1a22 0%, #0e0e12 100%);
  position: relative;
}
.gallery__placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 122, 26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 122, 26,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.gallery__placeholder span { position: relative; z-index: 1; }
.gallery__placeholder--1 { background: linear-gradient(135deg, #2c2620 0%, #161210 100%); }
.gallery__placeholder--2 { background: linear-gradient(135deg, #28282d 0%, #161618 100%); }
.gallery__placeholder--3 { background: linear-gradient(135deg, #2a2520 0%, #161210 100%); }
.gallery__placeholder--4 { background: linear-gradient(135deg, #28282d 0%, #181819 100%); }
.gallery__placeholder--5 { background: linear-gradient(135deg, #2c2521 0%, #161210 100%); }
.gallery__placeholder--6 { background: linear-gradient(135deg, #2a2a2f 0%, #18181c 100%); }

.gallery__cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* ---------- FAQ ---------- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq__item[open] { border-color: rgba(255, 122, 26,0.35); }
.faq__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  user-select: none;
  transition: background .2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { background: rgba(255,255,255,0.02); }

.faq__icon {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: transform .25s var(--ease);
}
.faq__icon::before { left: 0; right: 0; top: 50%; height: 2px; margin-top: -1px; }
.faq__icon::after  { top: 0; bottom: 0; left: 50%; width: 2px; margin-left: -1px; }
.faq__item[open] .faq__icon::after { transform: scaleY(0); }

.faq__body {
  padding: 0 24px;
  color: var(--text-dim);
  font-size: 0.97rem;
  overflow: hidden;
  height: 0;
  transition: height 0.35s var(--ease), padding-bottom 0.35s var(--ease);
}
.faq__body > p { padding-bottom: 22px; }

@media (prefers-reduced-motion: reduce) {
  .faq__body { transition: none; }
}

/* ---------- Kontakt ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
}
.contact__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-content: start;
}
.contact__block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.contact__block h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 700;
}
.contact__block p {
  color: var(--text-dim);
  font-size: 0.97rem;
}

.contact__socials { display: flex; gap: 10px; }
.social {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255, 122, 26,0.08);
  color: var(--accent);
  display: grid;
  place-items: center;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.social:hover { background: var(--accent); color: #04140b; transform: translateY(-2px); }

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 380px;
  background: var(--surface);
}
.contact__map iframe {
  width: 100%; height: 100%; min-height: 380px;
  border: 0;
  filter: grayscale(0.4) contrast(1.1) invert(0.92) hue-rotate(180deg);
}

/* ---------- Final CTA ---------- */
.finalcta {
  text-align: center;
  padding: clamp(64px, 9vw, 120px) 0;
  background:
    radial-gradient(ellipse at center top, rgba(255, 122, 26,0.18), transparent 60%),
    var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.finalcta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.finalcta p {
  color: var(--text-dim);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* ---------- Footer ---------- */
.footer {
  background: #07070a;
  padding: 64px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer__brand p {
  color: var(--text-mute);
  margin-top: 8px;
  font-size: 0.9rem;
  max-width: 280px;
}
.footer__col h5 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}
.footer__col a {
  display: block;
  font-size: 0.92rem;
  color: var(--text-mute);
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  padding-top: 24px;
  color: var(--text-mute);
  font-size: 0.85rem;
  text-align: center;
}

/* ---------- Legal Pages (Impressum / Datenschutz) ---------- */
.legal-page {
  padding: 140px 0 80px;
  background: var(--bg);
  min-height: 100vh;
}
.legal-page__header {
  text-align: center;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
}
.legal-page__header .section__title {
  margin: 14px 0 16px;
}

.legal h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 40px 0 14px;
  color: var(--accent);
}
.legal h3 {
  font-size: 1.05rem;
  margin: 24px 0 8px;
  color: var(--text);
}
.legal p,
.legal li {
  color: var(--text-dim);
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 0.97rem;
}
.legal strong { color: var(--text); }
.legal ul,
.legal ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
.legal__note {
  background: rgba(255, 122, 26, 0.06);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  margin: 28px 0;
  color: var(--text) !important;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.94rem;
}
.legal__back {
  margin-top: 48px;
}

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature--wide { grid-column: span 2; }
  .contact { grid-template-columns: 1fr; }
  .contact__map { min-height: 320px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .story { grid-template-columns: 1fr; }
  .story__visual {
    aspect-ratio: auto;
    width: 100%;
    min-height: 320px;
    max-width: 560px;
    margin: 0 auto;
    padding: 32px 20px;
  }
}

@media (max-width: 768px) {
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .lang { margin-right: 8px; padding: 4px 8px; }
  .lang__btn { padding: 6px 12px; }

  .nav__links {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 16px 24px 24px;
    background: rgba(26, 26, 28,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s var(--ease), opacity .2s var(--ease);
  }
  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: var(--text);
    font-size: 1rem;
  }
  .nav__links a::after { display: none; }

  .hero { padding: 110px 0 60px; min-height: 92svh; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }

  .grid--4 { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .feature--wide { grid-column: auto; }

  .booking { grid-template-columns: 1fr; }
  .booking__cta { align-items: stretch; }
  .booking__cta .btn { justify-content: center; }

  .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }

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

  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .story__pill { font-size: clamp(1.3rem, 5vw, 1.8rem); padding: 10px 20px; letter-spacing: 0.5px; }
  .story__visual { min-height: 280px; padding: 24px 16px; gap: 14px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .gallery { grid-template-columns: 1fr; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ---------- Cookie Notice ---------- */
.cookiebar {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  max-width: 720px;
  width: calc(100% - 32px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px 18px;
  animation: cookieSlideIn 0.4s var(--ease);
}
.cookiebar[hidden] { display: none; }

@keyframes cookieSlideIn {
  from { opacity: 0; transform: translate(-50%, 14px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

.cookiebar__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookiebar__text {
  flex: 1 1 320px;
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
}
.cookiebar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.cookiebar__close {
  flex: 0 0 auto;
  background: var(--accent);
  color: var(--bg);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.cookiebar__close:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px var(--accent-glow);
}
.cookiebar__close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.cookiebar__decline {
  flex: 0 0 auto;
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.cookiebar__decline:hover {
  color: var(--text);
  border-color: var(--text-dim);
}
.cookiebar__decline:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .cookiebar {
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 12px 14px;
  }
  .cookiebar__text { flex-basis: 100%; }
  .cookiebar__actions { width: 100%; }
  .cookiebar__actions button { flex: 1 1 0; }
}

/* ---------- A11y: Skip-Link ---------- */
.skiplink {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 999;
  background: var(--accent);
  color: var(--bg);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: top .2s var(--ease);
  text-decoration: none;
}
.skiplink:focus {
  top: 12px;
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

/* ---------- A11y: Global Focus-Ring ---------- */
:where(a, button, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline-offset: 4px;
}

/* ============ v4 Facts-Grid (Hero-Stats Refactor) ============ */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin: 0;
}
.facts-grid--7 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1024px) {
  .facts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 540px) {
  .facts-grid { grid-template-columns: 1fr; }
}
.fact {
  text-align: center;
  padding: 36px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.fact:hover {
  border-color: rgba(255, 122, 26, 0.35);
  transform: translateY(-3px);
}
.fact__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--text);
  margin: 0 0 10px;
}
.fact__num small {
  color: var(--accent-green);
  font-size: 0.5em;
  margin-left: 2px;
}
.fact__body {
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--text-mute);
  margin: 10px 0 0;
}
.fact__num--small {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  letter-spacing: 0.02em;
}
.fact__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  margin: 0;
}

@media (max-width: 768px) {
  .facts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============ v4 Features als Icon-Grid ============ */
.features-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 40px) clamp(18px, 2vw, 28px);
}
.icon-feature {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.icon-feature__icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(255, 122, 26, 0.08);
  border: 1px solid rgba(255, 122, 26, 0.18);
  border-radius: 16px;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.icon-feature:hover .icon-feature__icon {
  background: rgba(255, 122, 26, 0.14);
  border-color: rgba(255, 122, 26, 0.40);
  transform: translateY(-2px);
}
.icon-feature__icon svg {
  width: 32px;
  height: 32px;
  display: block;
}
.icon-feature__title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.3;
  max-width: 18ch;
}

@media (max-width: 1024px) {
  .features-icons { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .features-icons { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.feature__icon {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255, 122, 26, 0.08);
  border: 1px solid rgba(255, 122, 26, 0.18);
  color: var(--accent);
  display: grid;
  place-items: center;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.feature:hover .feature__icon {
  background: rgba(255, 122, 26, 0.14);
  border-color: rgba(255, 122, 26, 0.40);
}
.feature__icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

/* ---------- WhatsApp Button ---------- */
.btn--whatsapp {
  background: #25d366;
  color: #ffffff;
  margin-top: 14px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.22);
}
.btn--whatsapp:hover {
  background: #1ebe5d;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.42);
}
.btn--whatsapp svg { color: #fff; }

/* ---------- Inline-Icons in Contact-Links ---------- */
.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 4px;
}
.contact__link:hover { color: var(--text); }
.contact__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--accent);
}


/* ---------- Map Consent Placeholder ---------- */
.map-consent {
  position: relative;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 24px;
  text-align: center;
  background:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.015) 0 12px,
      rgba(255,255,255,0.035) 12px 24px),
    var(--surface);
}
.map-placeholder__icon {
  width: 40px; height: 40px;
  color: var(--accent);
  opacity: 0.7;
}
.map-placeholder__text {
  color: var(--text-dim);
  font-size: 0.92rem;
  max-width: 36ch;
  margin: 0;
  line-height: 1.5;
}
.map-placeholder__btn {
  margin-top: 8px;
}
.map-consent iframe {
  width: 100%; height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

/* ---------- Eversports Booking Widget ---------- */
.booking-widget {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.booking-widget iframe {
  height: clamp(640px, 85vh, 900px);
}

.contact__address {
  font-style: normal;
  color: var(--text-dim);
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0 0 12px;
}

/* ---------- Story: Untertitel + Quote-Cards (3-Col Grid) ---------- */
.story__subtitle {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 22px;
  line-height: 1.4;
}
.story__quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(48px, 6vw, 80px);
}
.story-quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.story-quote--placeholder {
  border-left-style: dashed;
  opacity: 0.65;
}
.story-quote__text {
  font-style: italic;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}
.story-quote__cite {
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .story__quotes { grid-template-columns: 1fr; gap: 18px; }
}

/* ---------- Hero-Eyebrow: festerer Hintergrund + Backdrop-Blur fuer Lesbarkeit ---------- */
.hero .eyebrow {
  background: rgba(15, 15, 17, 0.40);
  border-color: rgba(255, 122, 26, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Gruene Akzent-Varianten fuer Facts */
.fact__num--green { color: var(--accent-green); }
.accent-green { color: var(--accent-green); }

/* ---------- Code Teaser (Index) ---------- */
.code-teaser {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.code-teaser__visual {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}
.code-teaser__visual:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  border-color: rgba(255, 122, 26, 0.35);
}
.code-teaser__visual img {
  width: 100%;
  height: auto;
  display: block;
}
.code-teaser__text { display: flex; flex-direction: column; align-items: flex-start; }
.code-teaser__text .section__lead { margin-bottom: 28px; }
.code-teaser__text .btn { gap: 10px; }

@media (max-width: 860px) {
  .code-teaser { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Code-Page (code.html) ---------- */
.code-cover {
  margin: 0 0 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.code-cover img {
  width: 100%;
  height: auto;
  display: block;
}
.code-intro {
  font-size: 1.05rem;
  color: var(--text) !important;
  margin-bottom: 32px !important;
}
.code-highlight {
  background: rgba(255, 122, 26, 0.06);
  border: 1px solid rgba(255, 122, 26, 0.25);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 30px;
  margin: 0 0 48px;
}
.code-highlight__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--accent);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.code-highlight p {
  color: var(--text) !important;
  margin-bottom: 12px;
}
.code-highlight__short {
  font-style: italic;
  border-top: 1px solid rgba(255, 122, 26, 0.2);
  padding-top: 14px;
  margin-top: 18px !important;
  margin-bottom: 0 !important;
}
.code-num {
  display: inline-block;
  color: var(--accent);
  margin-right: 12px;
}
.code-final {
  font-size: 1.1rem !important;
}
.code-final li {
  font-weight: 600;
  color: var(--text) !important;
  padding-left: 0 !important;
}
.code-final li::before { display: none; }
.code-signature {
  margin-top: 40px !important;
  font-size: 1.05rem;
  color: var(--text) !important;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

/* ==========================================================================
   REDAKTIONSINHALTE (pflegbar über /admin)
   Hinweis-Banner und der Block unter dem Hero. Beide Sektionen sind im HTML
   mit [hidden] ausgeliefert; main.js blendet sie nur ein, wenn Inhalt da ist.
   ========================================================================== */

.notice[hidden],
.cslot[hidden] { display: none; }

/* ---------------------------------------------------------------- Hinweis-Banner */

/* Das Banner steht im Fluss GANZ OBEN, die Navigation ist aber position:fixed.
   Ohne diesen Freiraum verschwindet der Text komplett unter der Leiste - er ist
   dann per Strg+F auffindbar, aber unsichtbar. Der Hero darunter gleicht die
   Navigation selbst über sein padding-top aus und braucht keine Anpassung. */
.notice {
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.14) 0%, rgba(255, 122, 26, 0.06) 100%);
  border-bottom: 1px solid rgba(255, 122, 26, 0.28);
  padding: calc(var(--nav-h) + 16px) 0 16px;
}

.notice__inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.notice__icon {
  flex: none;
  margin-top: 2px;
  color: var(--accent);
}

.notice__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}

/* ---------------------------------------------------------------- Block unter dem Hero */

.cslot__inner {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

/* Zweispaltig nur, wenn tatsächlich ein Bild hinterlegt ist. */
.cslot--has-media .cslot__inner {
  grid-template-columns: 1fr 1fr;
}

.cslot__title {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.cslot__title[hidden] { display: none; }

.cslot__body p {
  margin: 0 0 16px;
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.7;
}

.cslot__body p:last-child { margin-bottom: 0; }

.cslot__figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-3);
  box-shadow: var(--shadow);
}

.cslot__figure[hidden] { display: none; }

.cslot__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* Ohne Bild liest sich der Text zentriert und schmal deutlich besser. */
.cslot:not(.cslot--has-media) .cslot__text {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 860px) {
  .cslot--has-media .cslot__inner { grid-template-columns: 1fr; }
  .cslot__figure { order: -1; }
}

@media (max-width: 480px) {
  .notice__text { font-size: 0.9rem; }
}
