/* ============================================================
   Minigolfpark Arheilgen — Design System v2
   "Vintage Leisure Club" — mono labels, hard offset shadows,
   color-blocking, paper texture, editorial numbering.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,600;12..96,700;12..96,800&family=Space+Mono:wght@400;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --forest:      #15412c;
  --forest-2:    #1c4a32;
  --moss:        #1f6b43;
  --grass:       #3aa75e;
  --grass-soft:  #d3e9d3;
  --sun:         #f4bf2e;
  --sun-2:       #f7d05a;
  --sun-soft:    #fbe7a4;
  --flag:        #df3f25;
  --flag-soft:   #f7cfc6;
  --cream:       #f3ead6;   /* warmer, more saturated paper */
  --cream-2:     #ece0c6;
  --paper:       #fdf8ec;
  --ink:         #1a2018;   /* outline / text */
  --stone:       #5f6557;

  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --mono:    'Space Mono', ui-monospace, monospace;
  --body:    'Manrope', system-ui, sans-serif;

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 30px;

  /* hard offset shadow (poster/sticker) */
  --hard:    5px 5px 0 var(--ink);
  --hard-lg: 8px 8px 0 var(--ink);
  --bd: 2px solid var(--ink);

  --maxw: 1240px;
  --pad:  clamp(18px, 5vw, 60px);
  --nav-h: 70px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 14px); }
body {
  font-family: var(--body);
  color: var(--ink);
  background-color: var(--cream);
  background-image: radial-gradient(rgba(26,32,24,.05) 1.1px, transparent 1.1px);
  background-size: 22px 22px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--flag); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; line-height: .98; letter-spacing: -.022em; color: var(--forest); }
.eyebrow {
  font-family: var(--mono); font-weight: 700; font-size: .76rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--moss);
  display: inline-flex; align-items: center; gap: .7em;
}
.eyebrow .num { color: var(--flag); }
.eyebrow::after { content: ""; flex: none; width: 26px; height: 0; border-top: 2px dotted currentColor; opacity: .5; }
.section-title { font-size: clamp(2.1rem, 5vw, 3.6rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--stone); line-height: 1.55; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(60px, 8vw, 116px); position: relative; }
.section--tight { padding-block: clamp(46px, 6vw, 80px); }
.section-head { max-width: 760px; margin-bottom: clamp(34px, 5vw, 58px); }
.section-head .lead { margin-top: 18px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .8em 1.35em; border-radius: 999px; font-family: var(--mono);
  font-weight: 700; font-size: .9rem; letter-spacing: .01em; white-space: nowrap;
  border: var(--bd); box-shadow: var(--hard);
  transition: transform .12s ease, box-shadow .12s ease, background .18s ease;
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--ink); }
.btn:active { transform: translate(5px, 5px); box-shadow: 0 0 0 var(--ink); }
.btn--primary { background: var(--grass); color: #fff; }
.btn--dark { background: var(--forest); color: var(--cream); }
.btn--ghost { background: var(--paper); color: var(--forest); }
.btn--sun { background: var(--sun); color: var(--ink); }
.btn--flag { background: var(--flag); color: #fff; }
.btn--lg { padding: 1em 1.6em; font-size: .98rem; }
.btn .ic { width: 1.05em; height: 1.05em; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h); display: flex; align-items: center; transition: background .25s, box-shadow .25s; }
.nav.is-stuck { background: var(--cream); border-bottom: var(--bd); }
.nav__inner { display: flex; align-items: center; gap: 24px; width: 100%; padding-inline: var(--pad); }
.brand { display: flex; align-items: center; gap: .6em; flex: none; font-family: var(--display); font-weight: 800; font-size: 1.16rem; color: var(--forest); letter-spacing: -.02em; }
.brand > span { display: flex; flex-direction: column; line-height: 1.05; white-space: nowrap; }
.brand__mark { width: 36px; height: 36px; flex: none; }
.brand small { display: block; white-space: nowrap; font-family: var(--mono); font-weight: 700; font-size: .56rem; letter-spacing: .16em; text-transform: uppercase; color: var(--moss); margin-top: 2px; }
.nav__links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav__links a { padding: .48em .66em; border-radius: 999px; font-family: var(--mono); font-weight: 400; font-size: .82rem; color: var(--forest); white-space: nowrap; transition: background .16s, color .16s; }
.nav__links a:hover { background: var(--sun); }
.nav__links a[aria-current="true"] { background: var(--forest); color: var(--cream); }
.nav__cta { display: flex; align-items: center; gap: 10px; margin-left: 8px; }
.nav__menu { display: contents; }
.nav__toggle { display: none; width: 46px; height: 46px; border-radius: 12px; margin-left: auto; align-items: center; justify-content: center; border: var(--bd); background: var(--paper); box-shadow: var(--hard); }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content:""; display:block; width: 20px; height: 2.5px; background: var(--ink); border-radius:2px; transition: transform .25s, opacity .2s; }
.nav__toggle span::before { position: relative; top: -6px; }
.nav__toggle span::after { position: relative; top: 3.5px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__toggle span::after { transform: translateY(-6px) rotate(-45deg); }

.ic { fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

/* prevent grid blow-out from long German words */
.qi-grid > *, .events-grid > *, .price-grid > *, .anlagen-grid > *,
.kiosk-grid > *, .anfahrt-grid > *, .scorecard__body > *, .footer-grid > * { min-width: 0; }
.event-card h3, .course-card h3, .qi-card h3 { overflow-wrap: break-word; hyphens: auto; }

@media (max-width: 1120px) { .nav__cta .btn--phone-label { display: none; } }
@media (max-width: 1536px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    display: flex; flex-direction: column; gap: 8px;
    background: var(--cream); border-bottom: var(--bd);
    padding: 16px var(--pad);
    max-height: calc(100dvh - var(--nav-h)); overflow-y: auto;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .22s, transform .22s;
  }
  .nav.is-open .nav__menu { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links { flex-direction: column; align-items: stretch; gap: 4px; margin: 0; }
  .nav__links a { padding: .8em 1em; font-size: 1rem; color: var(--forest) !important; }
  .nav__links a[aria-current="true"] { background: var(--sun) !important; color: var(--ink) !important; }
  .nav__cta { flex-direction: column; align-items: stretch; gap: 10px; margin: 0; padding-top: 6px; }
  .nav__cta .btn { width: 100%; }
  .nav__cta .btn--phone-label { display: inline; }
}

/* ============================================================
   HERO  — full-width panorama lane
   ============================================================ */
.hero {
  position: relative; background: var(--forest); color: var(--cream);
  padding-top: calc(var(--nav-h) + clamp(26px, 5vw, 56px));
  padding-bottom: 0;
  background-image:
    radial-gradient(120% 80% at 100% 0%, rgba(58,167,94,.28), transparent 55%),
    radial-gradient(90% 70% at 0% 100%, rgba(244,191,46,.12), transparent 60%);
}
/* nav sits over the green stage until scrolled */
.nav:not(.is-stuck) .brand, .nav:not(.is-stuck) .nav__links a { color: var(--cream); }
.nav:not(.is-stuck) .brand small { color: var(--sun); }
.nav:not(.is-stuck) .nav__links a:hover { background: rgba(255,255,255,.14); color: #fff; }
.nav:not(.is-stuck) .nav__links a[aria-current="true"] { background: var(--sun); color: var(--ink); }
@media (min-width: 1537px) { .nav:not(.is-stuck) .nav__toggle { color: var(--cream); } }

.hero__intro { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: start; padding-bottom: clamp(26px, 4vw, 46px); }
.hero__kicker { font-family: var(--mono); font-weight: 700; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sun); display: inline-flex; align-items: center; gap: .7em; }
.hero__kicker::before { content: ""; width: 30px; border-top: 2px dotted var(--sun); opacity: .7; }
.hero h1 { font-size: clamp(3rem, 9.5vw, 7.4rem); font-weight: 800; line-height: .86; letter-spacing: -.035em; margin-top: 18px; color: var(--cream); }
.hero h1 .line2 { color: transparent; -webkit-text-stroke: 2px var(--sun); text-stroke: 2px var(--sun); }
.hero__sub { font-size: clamp(1.08rem, 1.5vw, 1.35rem); color: rgba(243,234,214,.82); max-width: 44ch; margin-top: 24px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__actions .btn--ghost { background: transparent; color: var(--cream); border-color: rgba(255,255,255,.5); box-shadow: 5px 5px 0 rgba(0,0,0,.35); }
.hero__actions .btn--ghost:hover { background: rgba(255,255,255,.1); }

/* rotating signature emblem */
.emblem { position: relative; width: clamp(116px, 13vw, 168px); aspect-ratio: 1; flex: none; }
.emblem__ring { position: absolute; inset: 0; animation: spin 26s linear infinite; }
.emblem__ring text { font-family: var(--mono); font-weight: 700; font-size: 8.3px; letter-spacing: 2.2px; fill: var(--sun); text-transform: uppercase; }
.emblem__core { position: absolute; inset: 22%; background: var(--sun); border-radius: 50%; display: grid; place-items: center; border: 2.5px solid var(--ink); }
.emblem__core .ic { width: 48%; height: 48%; color: var(--flag); stroke-width: 2.2; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 720px) { .emblem { display: none; } }

/* facts marquee strip */
.hero__marquee { border-top: var(--bd); border-bottom: var(--bd); background: var(--sun); color: var(--ink); overflow: hidden; }
.hero__marquee .track { display: flex; gap: 0; width: max-content; animation: marquee 78s linear infinite; }
.hero__marquee .track > span { font-family: var(--mono); font-weight: 700; font-size: .9rem; letter-spacing: .05em; text-transform: uppercase; padding: 12px 0; display: inline-flex; align-items: center; }
.hero__marquee .track > span::after { content: "✦"; color: var(--flag); margin: 0 28px; font-size: .8em; }
@keyframes marquee { to { transform: translateX(-50%); } }
.hero__marquee:hover .track { animation-play-state: paused; }

@media (max-width: 720px) {
  .hero__intro { grid-template-columns: 1fr; gap: 8px; }
}
@media (max-width: 560px) {
  .hero { padding-top: calc(var(--nav-h) + 24px); }
  .hero h1 {
    font-size: clamp(2.85rem, 16vw, 4.35rem);
    line-height: .92;
    letter-spacing: -.02em;
    margin-top: 14px;
  }
  .hero h1 .line2 { -webkit-text-stroke-width: 1.35px; text-stroke-width: 1.35px; }
  .hero__sub { margin-top: 18px; font-size: 1.02rem; }
  .hero__actions { gap: 10px; margin-top: 24px; }
  .hero__actions .btn { width: min(100%, 260px); justify-content: center; }
}

/* ---- full-bleed lane ---- */
.hero__game { position: relative; }
.game {
  position: relative; width: 100%;
  border-top: var(--bd); border-bottom: var(--bd);
  background: var(--forest);
}
.game__canvas-wrap {
  position: relative; width: 100%;
  height: clamp(360px, 52vh, 600px);
  touch-action: none; cursor: grab; overflow: hidden;
}
.game__canvas-wrap.is-aiming { cursor: grabbing; }
.game canvas { width: 100%; height: 100%; display: block; }

/* HUD strip overlaid on the lane */
.game__hud {
  position: absolute; left: 0; right: 0; top: 0; z-index: 4;
  display: flex; align-items: center; gap: 16px;
  padding: 12px var(--pad);
  background: linear-gradient(180deg, rgba(13,33,22,.92), rgba(13,33,22,.4) 75%, transparent);
  color: var(--cream); font-family: var(--mono); flex-wrap: wrap;
}
.hud__lane { display: flex; align-items: baseline; gap: 10px; min-width: 0; }
.hud__lane .lane-no { background: var(--sun); color: var(--ink); font-weight: 700; font-size: .8rem; padding: .15em .5em; border-radius: 6px; }
.hud__lane .lane-name { font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hud__dots { display: flex; gap: 6px; margin-left: 2px; }
.hud__dots i { width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.5); display: block; }
.hud__dots i.done { background: var(--grass); border-color: var(--grass); }
.hud__dots i.active { background: var(--sun); border-color: var(--sun); }
.hud__stats { display: flex; gap: 8px; margin-left: auto; }
.hud-stat { background: rgba(255,255,255,.1); border-radius: 8px; padding: .3em .6em; text-align: center; min-width: 50px; }
.hud-stat b { display: block; font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: #fff; line-height: 1.1; }
.hud-stat span { font-size: .56rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.hud-stat.par b { color: var(--sun); }

/* control bar below lane */
.game__bar {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 12px var(--pad);
  background: var(--forest-2); color: var(--cream); font-family: var(--mono);
  border-top: 2px solid rgba(255,255,255,.1);
}
.game__power { flex: 1; min-width: 180px; display: flex; align-items: center; gap: 10px; }
.game__power label { font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); font-weight: 700; }
.power-track { flex: 1; height: 12px; border-radius: 999px; background: rgba(0,0,0,.3); overflow: hidden; border: 1px solid rgba(255,255,255,.15); }
.power-fill { height: 100%; width: 50%; background: linear-gradient(90deg, var(--grass), var(--sun) 65%, var(--flag)); }
.game__hintline { font-size: .76rem; color: rgba(255,255,255,.62); flex: 1; min-width: 160px; }
.game__btn { display: inline-flex; align-items: center; gap: .45em; background: rgba(255,255,255,.1); color: var(--cream); padding: .55em .95em; border-radius: 999px; font-family: var(--mono); font-weight: 700; font-size: .8rem; white-space: nowrap; border: 2px solid rgba(255,255,255,.18); transition: background .16s, transform .1s; }
.game__btn:hover { background: rgba(255,255,255,.2); }
.game__btn:active { transform: translateY(1px); }
.game__btn--go { background: var(--sun); color: var(--ink); border-color: var(--ink); }
.game__btn--go:hover { background: var(--sun-2); }
.game__btn .ic { width: 1em; height: 1em; }

.game__hint { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); background: rgba(13,33,22,.8); color: var(--cream); font-family: var(--mono); font-size: .74rem; padding: .45em .9em; border-radius: 999px; pointer-events: none; transition: opacity .3s; z-index: 3; white-space: nowrap; }
.game__win { position: absolute; inset: 0; z-index: 6; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: rgba(13,33,22,.84); opacity: 0; pointer-events: none; transition: opacity .3s; text-align: center; padding: 24px; }
.game__win.show { opacity: 1; pointer-events: auto; }
.game__win h3 { color: #fff; font-size: clamp(1.8rem, 5vw, 3rem); }
.game__win .win-score { font-family: var(--mono); color: var(--sun); font-weight: 700; font-size: 1rem; }
.game__win p { color: rgba(255,255,255,.85); max-width: 40ch; }
.game__win .win-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }
.game-final-link { display: none; }
.game__win.is-final .game-final-link { display: inline-flex; }
.game__win.is-final .btn--ghost { background: transparent; color: var(--cream); border-color: rgba(255,255,255,.55); box-shadow: 5px 5px 0 rgba(0,0,0,.35); }

/* ============================================================
   QUICK INFO
   ============================================================ */
.quickinfo { padding-top: clamp(48px, 6vw, 80px); }
.open-status {
  display: flex; align-items: center; justify-content: space-between; gap: 18px 28px;
  margin-bottom: clamp(22px, 4vw, 34px);
  background: var(--forest); color: var(--cream);
  border: var(--bd); border-radius: var(--r-xl); box-shadow: var(--hard-lg);
  padding: clamp(20px, 3vw, 30px);
  position: relative; overflow: hidden;
}
.open-status::after {
  content: ""; position: absolute; inset: auto -28px -46px auto; width: 180px; aspect-ratio: 1;
  border-radius: 50%; border: 18px solid rgba(244,191,46,.2);
}
.open-status__main { display: grid; gap: 4px; min-width: 0; position: relative; z-index: 1; }
.open-status__label {
  width: max-content; max-width: 100%;
  font-family: var(--mono); font-weight: 700; font-size: .74rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--sun);
}
.open-status strong {
  display: block;
  font-family: var(--display); font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1; color: #fff;
}
.open-status__main span:last-child { color: rgba(243,234,214,.78); }
.open-status__actions { display: flex; flex-wrap: wrap; gap: 10px; position: relative; z-index: 1; }
.open-status__actions .btn--ghost { background: transparent; color: var(--cream); border-color: rgba(255,255,255,.55); box-shadow: 5px 5px 0 rgba(0,0,0,.35); }
.open-status__actions .btn--ghost:hover { background: rgba(255,255,255,.1); }
.qi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.qi-card { background: var(--paper); border: var(--bd); border-radius: var(--r-lg); padding: 24px 22px; box-shadow: var(--hard); transition: transform .12s, box-shadow .12s; }
.qi-card:hover { transform: translate(2px,2px); box-shadow: 3px 3px 0 var(--ink); }
.qi-card__ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--grass); color: #fff; border: var(--bd); margin-bottom: 16px; }
.qi-card:nth-child(2) .qi-card__ic { background: var(--sun); color: var(--ink); }
.qi-card:nth-child(3) .qi-card__ic { background: var(--flag); color: #fff; }
.qi-card:nth-child(4) .qi-card__ic { background: var(--forest); color: var(--cream); }
.qi-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.qi-card p { font-size: .93rem; color: var(--stone); line-height: 1.5; }
.qi-card .tel { display: block; color: var(--forest); font-weight: 600; font-family: var(--mono); font-size: .86rem; }
.qi-card .tel:hover { color: var(--flag); }
@media (max-width: 760px) {
  .open-status { align-items: stretch; flex-direction: column; }
  .open-status__actions .btn { width: 100%; }
}
@media (max-width: 940px) { .qi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .qi-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ANLAGEN
   ============================================================ */
.anlagen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.course-card { background: var(--paper); border: var(--bd); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--hard-lg); display: flex; flex-direction: column; transition: transform .12s, box-shadow .12s; }
.course-card:hover { transform: translate(3px,3px); box-shadow: 5px 5px 0 var(--ink); }
.course-card__viz { position: relative; height: 192px; overflow: hidden; background: var(--forest); border-bottom: var(--bd); }
.course-card:nth-child(2) .course-card__viz { background: var(--moss); }
.course-card__tag { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--sun); color: var(--ink); border: var(--bd); font-family: var(--mono); font-weight: 700; font-size: .72rem; padding: .35em .7em; border-radius: 999px; }
.course-card__body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.course-card h3 { font-size: 1.5rem; margin-bottom: 4px; }
.course-card__sys { font-family: var(--mono); font-weight: 700; color: var(--moss); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; }
.spec-list { display: grid; gap: 12px; margin-bottom: 20px; }
.spec { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; }
.spec .ic { width: 22px; height: 22px; flex: none; color: var(--grass); margin-top: 1px; }
.spec.no .ic { color: var(--flag); }
.course-card__foot { margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; align-items: center; gap: .4em; background: var(--cream); color: var(--forest); font-family: var(--mono); font-weight: 700; font-size: .72rem; padding: .4em .75em; border-radius: 999px; border: var(--bd); white-space: nowrap; }
.chip.is-star { background: var(--sun); color: var(--ink); }
.chip .ic { width: 15px; height: 15px; }
.anlagen-note { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.note-pill { display: flex; align-items: center; gap: .55em; background: var(--paper); padding: .6em 1em; border-radius: 999px; border: var(--bd); box-shadow: var(--hard); font-family: var(--mono); font-weight: 700; font-size: .8rem; white-space: nowrap; }
.note-pill .ic { width: 20px; height: 20px; color: var(--moss); }
@media (max-width: 820px) { .anlagen-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PREISE  (dark color block)
   ============================================================ */
.preise { background: var(--forest); color: var(--cream); border: var(--bd); border-radius: var(--r-xl); box-shadow: var(--hard-lg); }
.preise, .kiosk { padding: clamp(30px, 5vw, 58px); }
.preise .section-head, .kiosk .section-head { margin-bottom: clamp(24px, 4vw, 38px); }
.preise .section-title, .preise h3 { color: var(--cream); }
.preise .eyebrow { color: var(--sun); } .preise .eyebrow .num { color: var(--sun-2); }
.preise .lead { color: rgba(243,234,214,.72); }
.price-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 18px; align-items: start; }
.price-card { background: rgba(255,255,255,.05); border: 2px solid rgba(255,255,255,.16); border-radius: var(--r-lg); padding: 28px; transition: transform .12s, border-color .2s; }
.price-card:hover { transform: translateY(-3px); }
.price-card.is-feature { background: var(--sun); color: var(--ink); border-color: var(--ink); box-shadow: var(--hard); }
.price-card.is-feature h3, .price-card.is-feature .price-row b { color: var(--ink); }
.price-card.is-feature .price-card__cap { color: rgba(26,32,24,.65); }
.price-card.is-feature .price-row { border-color: rgba(26,32,24,.18); }
.price-card.is-feature .price-row span { color: rgba(26,32,24,.85); }
.price-card h3 { font-size: 1.35rem; margin-bottom: 4px; }
.price-card__cap { font-family: var(--mono); font-size: .76rem; color: rgba(243,234,214,.6); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 20px; }
.price-badge {
  display: inline-flex; align-items: center; width: max-content; max-width: 100%;
  margin-bottom: 16px; padding: .36em .75em;
  border: var(--bd); border-radius: 999px;
  background: var(--flag); color: #fff;
  font-family: var(--mono); font-weight: 700; font-size: .68rem;
  letter-spacing: .08em; text-transform: uppercase;
}
.price-badge--quiet { background: transparent; color: var(--sun); border-color: rgba(244,191,46,.7); }
.price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.price-row:last-child { border-bottom: none; }
.price-row span { font-size: .93rem; color: rgba(243,234,214,.88); }
.price-row b { font-family: var(--display); font-weight: 800; font-size: 1.2rem; color: #fff; white-space: nowrap; }
.price-row b.free { color: var(--grass); }
.price-card.is-feature .price-row b.free { color: var(--moss); }
.price-card .btn { margin-top: 20px; width: 100%; }
.price-special { display: flex; flex-direction: column; gap: 14px; }
.price-special p { color: rgba(243,234,214,.8); font-size: .94rem; }
.price-special .btn { white-space: normal; text-align: center; line-height: 1.2; height: auto; }
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; } }

/* ============================================================
   EVENTS
   ============================================================ */
.events-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 28px; }
.event-card { background: var(--paper); border: var(--bd); border-radius: var(--r); padding: 22px 20px; box-shadow: var(--hard); transition: transform .12s, box-shadow .12s; }
.event-card:nth-child(2) { background: var(--grass-soft); }
.event-card:nth-child(4) { background: var(--sun-soft); }
.event-card:hover { transform: translate(2px,2px); box-shadow: 3px 3px 0 var(--ink); }
.event-card__num { font-family: var(--mono); font-weight: 700; font-size: .85rem; color: var(--flag); }
.event-card h3 { font-size: 1.05rem; margin-top: 12px; line-height: 1.1; }
.event-card .ic { width: 30px; height: 30px; color: var(--moss); }
.events-cta { background: oklch(0.53 0.15 34); color: #fff; border: var(--bd); border-radius: var(--r-lg); padding: clamp(26px,4vw,40px); display: flex; align-items: center; gap: 28px; box-shadow: var(--hard-lg); flex-wrap: wrap; }
.events-cta h3 { color: #fff; }
.events-cta__text { flex: 1; min-width: 260px; }
.events-cta__text p { color: rgba(255,255,255,.9); margin-top: 8px; }
@media (max-width: 920px) { .events-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 560px) { .events-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   KIOSK
   ============================================================ */
.kiosk { background: var(--sun); border: var(--bd); border-radius: var(--r-xl); box-shadow: var(--hard-lg); }
.kiosk .eyebrow { color: #8a6a00; } .kiosk .eyebrow .num { color: var(--flag); }
.kiosk .lead { color: rgba(26,32,24,.7); }
.kiosk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.kiosk-highlights {
  grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.kiosk-highlights span {
  display: flex; align-items: center; justify-content: center; gap: .55em;
  background: rgba(255,255,255,.28); border: var(--bd); border-radius: var(--r);
  padding: .75em 1em; font-family: var(--mono); font-weight: 700; font-size: .78rem;
  text-align: center;
}
.kiosk-highlights .ic { width: 18px; height: 18px; color: var(--flag); flex: none; }
.kiosk-col { background: var(--paper); border: var(--bd); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--hard); }
.kiosk-col h3 { font-size: 1.25rem; margin-bottom: 18px; display: flex; align-items: center; gap: .55em; }
.kiosk-col h3 .ic { width: 26px; height: 26px; color: var(--flag); }
.kiosk-list { display: grid; gap: 12px; }
.kiosk-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; }
.kiosk-list li .ic { width: 18px; height: 18px; color: var(--grass); flex: none; margin-top: 3px; }
.kiosk-note { grid-column: 1 / -1; display: flex; gap: 12px; align-items: center; background: var(--forest); border: var(--bd); border-radius: var(--r); padding: 16px 22px; color: var(--cream); font-family: var(--mono); font-weight: 700; font-size: .88rem; }
.kiosk-note .ic { width: 22px; height: 22px; flex: none; color: var(--sun); }
@media (max-width: 760px) {
  .preise, .kiosk { padding: 24px; }
  .kiosk-grid, .kiosk-highlights { grid-template-columns: 1fr; }
}

/* ============================================================
   SCORECARD / SPIELREGELN
   ============================================================ */
.scorecard { background: var(--paper); border: var(--bd); border-radius: var(--r-xl); box-shadow: var(--hard-lg); overflow: hidden; }
.scorecard__head { background: var(--forest); color: var(--cream); padding: 22px clamp(22px,3vw,36px); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-bottom: var(--bd); }
.scorecard__head h2 { color: var(--cream); font-size: clamp(1.4rem, 3vw, 1.9rem); }
.scorecard__body { display: grid; grid-template-columns: repeat(5, 1fr); }
.rule { padding: clamp(22px,3vw,30px) clamp(16px,2.4vw,24px); border-right: 2px dashed var(--cream-2); }
.rule:last-child { border-right: none; }
.rule__no { font-family: var(--mono); font-weight: 700; font-size: 1.4rem; color: var(--flag); }
.rule p { margin-top: 12px; font-size: .93rem; line-height: 1.5; }
@media (max-width: 900px) { .scorecard__body { grid-template-columns: 1fr 1fr; } .rule:nth-child(2n){border-right:none;} .rule { border-bottom: 2px dashed var(--cream-2);} }
@media (max-width: 520px) { .scorecard__body { grid-template-columns: 1fr; } .rule { border-right: none; } }
.regeln-cta { display: flex; align-items: center; gap: 18px 26px; flex-wrap: wrap; margin-top: 26px; }
.regeln-cta p { flex: 1; min-width: 240px; max-width: 54ch; margin: 0; font-family: var(--mono); font-size: .84rem; line-height: 1.55; color: var(--stone); }

/* ============================================================
   TURNIERE
   ============================================================ */
.turniere { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); align-items: center; }
.turniere__viz { background: var(--forest); border: var(--bd); border-radius: var(--r-xl); aspect-ratio: 1/1; box-shadow: var(--hard-lg); display: grid; place-items: center; overflow: hidden; }
.cred-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 24px; }
.cred { display: inline-flex; align-items: center; gap: .5em; background: var(--paper); padding: .5em 1em; border-radius: 999px; border: var(--bd); box-shadow: var(--hard); font-family: var(--mono); font-weight: 700; font-size: .8rem; color: var(--forest); white-space: nowrap; }
.cred .ic { width: 18px; height: 18px; color: var(--flag); }
.turniere ul.facts { display: grid; gap: 14px; }
.turniere ul.facts li { display: flex; gap: 12px; font-size: .98rem; align-items: flex-start; }
.turniere ul.facts li .ic { width: 22px; height: 22px; color: var(--grass); flex: none; margin-top: 2px; }
@media (max-width: 840px) { .turniere { grid-template-columns: 1fr; } .turniere__viz { aspect-ratio: 16/9; } }

/* ============================================================
   SHOP
   ============================================================ */
.shop { display: flex; align-items: center; gap: clamp(20px,4vw,46px); background: var(--grass); color: #fff; border: var(--bd); border-radius: var(--r-xl); padding: clamp(28px,4vw,46px); box-shadow: var(--hard-lg); flex-wrap: wrap; }
.shop .eyebrow { color: #fff; } .shop .eyebrow .num { color: var(--sun); } .shop .eyebrow::after { border-color: rgba(255,255,255,.6); }
.shop h2 { color: #fff; }
.shop__ic { width: 88px; height: 88px; border-radius: 20px; background: var(--paper); color: var(--moss); display: grid; place-items: center; flex: none; border: var(--bd); }
.shop__text { flex: 1; min-width: 260px; }
.shop__text p { color: rgba(255,255,255,.9); margin-top: 10px; }

/* ============================================================
   ANFAHRT
   ============================================================ */
.anfahrt-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 22px; }
.map-card { border: var(--bd); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--hard-lg); position: relative; min-height: 380px; }
.map-card__frame { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: saturate(.92); }
.map-card__overlay { position: absolute; inset: 16px 16px auto 16px; background: var(--paper); border: var(--bd); border-radius: var(--r); padding: 16px 18px; box-shadow: var(--hard); display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.map-card__overlay div { flex: 1; min-width: 150px; }
.map-card__overlay strong { display: block; color: var(--forest); }
.map-card__overlay span { font-family: var(--mono); font-size: .82rem; color: var(--stone); }
.info-stack { display: grid; gap: 16px; align-content: space-between; }
.info-block { background: var(--paper); border: var(--bd); border-radius: var(--r-lg); padding: 24px 26px; box-shadow: var(--hard); }
.info-block h3 { font-size: 1.12rem; margin-bottom: 10px; display: flex; align-items: center; gap: .5em; }
.info-block h3 .ic { width: 22px; height: 22px; color: var(--flag); }
.info-block p, .info-block address { font-style: normal; line-height: 1.7; }
.info-block .muted { color: var(--stone); font-size: .93rem; }
@media (max-width: 840px) { .anfahrt-grid { grid-template-columns: 1fr; } .map-card { min-height: 280px; } }

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt { background: var(--forest); color: var(--cream); border: var(--bd); border-radius: var(--r-xl); box-shadow: var(--hard-lg); }
.kontakt .section-title { color: var(--cream); }
.kontakt .eyebrow { color: var(--sun); } .kontakt .eyebrow .num { color: var(--sun-2); }
.kontakt .lead { color: rgba(243,234,214,.78); }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px,4vw,56px); align-items: center; }
.kontakt-list { display: grid; gap: 4px; }
.kontakt-list a { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: var(--r); transition: background .18s; }
.kontakt-list a:hover { background: rgba(255,255,255,.07); }
.kontakt-list .ic-wrap { width: 44px; height: 44px; border-radius: 10px; background: var(--sun); color: var(--ink); display: grid; place-items: center; flex: none; border: var(--bd); }
.kontakt-list .ic { width: 20px; height: 20px; }
.kontakt-list small { display: block; font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(243,234,214,.55); }
.kontakt-list b { font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: #fff; }
.kontakt-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.kontakt-actions .btn--ghost { background: transparent; color: var(--cream); border-color: rgba(255,255,255,.5); box-shadow: 5px 5px 0 rgba(0,0,0,.35); }
.kontakt-actions .btn--ghost:hover { background: rgba(255,255,255,.1); box-shadow: 3px 3px 0 rgba(0,0,0,.45); }
@media (max-width: 760px) { .kontakt-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--forest); border-top: var(--bd); color: rgba(243,234,214,.72); padding-block: clamp(46px,6vw,70px) 30px; margin-top: clamp(50px,7vw,90px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
.footer h4 { color: var(--cream); font-family: var(--mono); font-weight: 700; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer .brand { color: var(--cream); margin-bottom: 14px; }
.footer .brand small { color: var(--sun); }
.footer ul { display: grid; gap: 9px; }
.footer a { font-family: var(--mono); font-size: .85rem; }
.footer a:hover { color: var(--sun); }
.footer address { font-style: normal; line-height: 1.8; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px 28px; justify-content: space-between; align-items: center; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(243,234,214,.14); font-family: var(--mono); font-size: .8rem; }
.footer-bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-note { background: rgba(244,191,46,.12); border-radius: var(--r); padding: 12px 16px; color: var(--sun-soft); font-family: var(--mono); font-size: .78rem; display: flex; gap: 10px; align-items: center; line-height: 1.5; }
.footer-note .ic { width: 18px; height: 18px; flex: none; color: var(--sun); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .07s; }
.reveal[data-d="2"] { transition-delay: .14s; }
.reveal[data-d="3"] { transition-delay: .21s; }
.reveal[data-d="4"] { transition-delay: .28s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .qi-card, .course-card, .event-card, .price-card { transition: none !important; }
  .emblem__ring, .hero__marquee .track { animation: none !important; }
}
