/* =========================================================================
   Waldklause Murnau — Sportgaststätte
   Farbwelt aus dem echten Logo abgeleitet (Petrol-Teal #05687B).
   Tokens · Light + Dark · Mobil zuerst.
   ========================================================================= */

/* -------------------------------------------------------------------------
   Lokale Schriften (self-hosted, DSGVO: keine Google-Fonts-Verbindung)
   Nur latin-Subset, deckt Deutsch inkl. Umlaute, Anfuehrungszeichen und · ab.
   ------------------------------------------------------------------------- */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/fonts/fraunces.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url("assets/fonts/fraunces-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/mulish.woff2") format("woff2");
}

:root {
  /* Marke (aus Logo) */
  --petrol:        #05687B;   /* Wortmarke */
  --petrol-deep:   #063A46;
  --petrol-ink:    #04252D;
  --pine:          #2F4A3A;   /* Waldgrün, Begleitton */
  --wood:          #BF7A2C;   /* warmes Holz / Akzent */
  --wood-soft:     #E0A85A;
  --cream:         #F4EEE1;
  --cream-deep:    #EAE0CD;

  /* Rollen — Light (Default) */
  --bg:        var(--cream);
  --bg-2:      var(--cream-deep);
  --surface:   #FBF8F0;
  --ink:       #15262B;
  --ink-soft:  #45585C;
  --brand:     var(--petrol);
  --brand-2:   var(--petrol-deep);
  --on-brand:  #F6F1E6;
  --accent:    var(--wood);
  --accent-hi: #A8641F;
  --line:      rgba(21,38,43,.14);
  --line-strong: rgba(21,38,43,.28);
  --shadow:    0 1px 2px rgba(6,58,70,.06), 0 12px 30px -18px rgba(6,58,70,.45);
  --hero-veil: rgba(4,37,45,.55);

  --maxw: 1160px;
  --gutter: clamp(1.15rem, 4vw, 2.75rem);
  --radius: 4px;
  --radius-lg: 10px;

  --f-display: "Fraunces", Georgia, "Times New Roman", serif;
  --f-body: "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;

  --step--1: clamp(.82rem, .8rem + .2vw, .92rem);
  --step-0:  clamp(1rem, .96rem + .2vw, 1.1rem);
  --step-1:  clamp(1.2rem, 1.1rem + .5vw, 1.45rem);
  --step-2:  clamp(1.55rem, 1.3rem + 1.2vw, 2.1rem);
  --step-3:  clamp(2.1rem, 1.6rem + 2.4vw, 3.2rem);
  --step-4:  clamp(2.8rem, 1.9rem + 4.4vw, 5rem);
}

:root[data-theme="dark"] {
  --bg:        #0B1A1E;
  --bg-2:      #0E2329;
  --surface:   #123138;
  --ink:       #F1EADB;
  --ink-soft:  #AFBEBC;
  --brand:     #52B4C6;    /* aufgehelltes Petrol für Kontrast auf Dunkel */
  --brand-2:   #7CC9D6;
  --on-brand:  #04252D;
  --accent:    #E0A85A;
  --accent-hi: #EFC182;
  --line:      rgba(241,234,219,.14);
  --line-strong: rgba(241,234,219,.30);
  --shadow:    0 1px 2px rgba(0,0,0,.3), 0 18px 40px -22px rgba(0,0,0,.8);
  --hero-veil: rgba(4,20,24,.62);
}

/* ---------- Reset-Ergänzung ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: var(--step-0);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1,h2,h3,h4 { font-family: var(--f-display); font-weight: 500; line-height: 1.05; margin: 0; letter-spacing: -.01em; }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

/* ---------- Layout-Helfer ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.eyebrow {
  font-family: var(--f-body);
  font-weight: 800;
  font-size: var(--step--1);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); display: inline-block; }
section { padding-block: clamp(3.5rem, 8vw, 7rem); }

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--brand); --_fg: var(--on-brand);
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--f-body); font-weight: 800; font-size: var(--step--1);
  letter-spacing: .04em; text-transform: uppercase; text-decoration: none;
  padding: .85em 1.5em; border-radius: 999px; border: 2px solid var(--_bg);
  background: var(--_bg); color: var(--_fg); cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--accent { --_bg: var(--accent); --_fg: #241503; border-color: var(--accent); }
.btn--ghost { background: transparent; --_fg: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn--on-dark { --_fg: var(--petrol-ink); background: var(--cream); border-color: var(--cream); }
.btn--on-dark.btn--ghost { background: transparent; --_fg: #F6F1E6; border-color: rgba(246,241,230,.4); }

/* =========================================================================
   Header / Nav
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: var(--shadow); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .7rem; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand .logo { height: clamp(38px, 6vw, 50px); width: auto; }
.logo--dark { display: none; }
:root[data-theme="dark"] .logo--light { display: none; }
:root[data-theme="dark"] .logo--dark { display: block; }

.nav-links { display: none; }
.nav-links a {
  text-decoration: none; font-weight: 700; font-size: var(--step--1);
  letter-spacing: .02em; color: var(--ink-soft); padding: .4rem .1rem; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--accent); transition: right .25s ease;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--ink); }
.nav-links a:hover::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: .5rem; }
.theme-toggle {
  width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--line-strong);
  background: transparent; color: var(--ink); cursor: pointer; display: grid; place-items: center;
  transition: border-color .2s, color .2s;
}
.theme-toggle:hover { color: var(--brand); border-color: var(--brand); }
.theme-toggle .sun { display: none; }
:root[data-theme="dark"] .theme-toggle .sun { display: block; }
:root[data-theme="dark"] .theme-toggle .moon { display: none; }

.nav-cta { display: none; }
.nav-toggle {
  display: inline-grid; place-items: center; width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--line-strong); border-radius: 8px;
  color: var(--ink); cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile-Menü */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(84vw, 360px); z-index: 70;
  background: var(--petrol-deep); color: #F6F1E6;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  padding: 5rem 2rem 2rem; display: flex; flex-direction: column; gap: .35rem;
  box-shadow: -20px 0 60px -20px rgba(0,0,0,.6);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { text-decoration: none; font-family: var(--f-display); font-size: var(--step-1); padding: .55rem 0; border-bottom: 1px solid rgba(246,241,230,.12); color: #F6F1E6; }
.mobile-menu .btn { margin-top: 1.25rem; }
.menu-backdrop { position: fixed; inset: 0; background: rgba(4,20,24,.5); z-index: 65; opacity: 0; pointer-events: none; transition: opacity .3s; }
.menu-backdrop.open { opacity: 1; pointer-events: auto; }
.mobile-close { position: absolute; top: 1.1rem; right: 1.25rem; width: 42px; height: 42px; background: transparent; border: 1px solid rgba(246,241,230,.3); border-radius: 8px; color: #F6F1E6; cursor: pointer; font-size: 1.3rem; }

/* =========================================================================
   Hero
   ========================================================================= */
.hero { position: relative; overflow: clip; background: var(--petrol-deep); color: #F3EEE2; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(82,180,198,.28), transparent 55%),
    radial-gradient(100% 80% at 0% 110%, rgba(47,74,58,.55), transparent 60%),
    linear-gradient(160deg, #074956 0%, #05323C 55%, #04252D 100%);
}
.hero__ridge { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: auto; z-index: -1; opacity: .9; }
.hero__grain { position: absolute; inset: 0; z-index: -1; opacity: .5; mix-blend-mode: soft-light;
  background-image: radial-gradient(rgba(255,255,255,.35) .5px, transparent .5px); background-size: 4px 4px; }
.hero__inner { padding-block: clamp(3.5rem, 11vw, 8rem) clamp(3rem, 9vw, 7rem); }
.hero__eyebrow { color: var(--wood-soft); }
.hero__eyebrow::before { background: var(--wood-soft); }
.hero h1 {
  font-size: var(--step-4); font-weight: 400; max-width: 15ch; margin-bottom: 1.1rem;
}
.hero h1 em { font-style: italic; color: var(--wood-soft); }
.hero__slogan {
  font-family: var(--f-display); font-style: italic; font-size: var(--step-2);
  color: #EFE7D6; max-width: 24ch; margin-bottom: 2rem; font-weight: 400; line-height: 1.2;
}
.hero__cuisines { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.2rem; }
.chip {
  border: 1px solid rgba(243,238,226,.35); border-radius: 999px; padding: .4em 1em;
  font-weight: 700; font-size: var(--step--1); letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: .5rem;
}
.chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--wood-soft); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.6rem; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; padding-top: 1.6rem; border-top: 1px solid rgba(243,238,226,.18); }
.hero__fact { max-width: 22ch; }
.hero__fact .k { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--wood-soft); font-weight: 800; }
.hero__fact .v { font-size: var(--step-0); color: #F3EEE2; }
.hero__fact a { text-decoration: none; }
.status { display: inline-flex; align-items: center; gap: .5rem; font-weight: 800; }
.status .dot { width: 9px; height: 9px; border-radius: 50%; background: #8FD694; box-shadow: 0 0 0 4px rgba(143,214,148,.2); }
.status.closed .dot { background: #E8926B; box-shadow: 0 0 0 4px rgba(232,146,107,.2); }

/* Hero-Bild-Panel */
.hero__inner { display: grid; gap: clamp(2rem, 5vw, 3.4rem); align-items: center; }
.hero__media {
  margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(243,238,226,.22);
  box-shadow: 0 24px 60px -28px rgba(0,0,0,.7);
}
.hero__img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

/* =========================================================================
   Intro / Über uns
   ========================================================================= */
.intro { background: var(--bg); }
.intro__grid { display: grid; gap: 2.5rem; }
.intro__lead { font-family: var(--f-display); font-size: var(--step-2); line-height: 1.25; font-weight: 400; }
.intro__lead .u { color: var(--brand); font-style: italic; }
.intro__body p + p { margin-top: 1rem; color: var(--ink-soft); }
.tsv-note {
  margin-top: 1.6rem; display: inline-flex; gap: .8rem; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem 1.1rem .5rem .7rem; font-size: var(--step--1); color: var(--ink-soft);
}
.tsv-note img { height: 30px; width: auto; border-radius: 50%; }
.tsv-note b { color: var(--ink); }

/* =========================================================================
   Küche — drei Welten
   ========================================================================= */
.kueche { background: var(--bg-2); }
.section-head { max-width: 46ch; margin-bottom: 2.6rem; }
.section-head h2 { font-size: var(--step-3); margin-bottom: .8rem; }
.section-head p { color: var(--ink-soft); }
.kueche__figure {
  margin: 0 0 2.4rem; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.kueche__figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center 72%; }
.cuisine-grid { display: grid; gap: 1.2rem; }
.cuisine {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem; position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cuisine:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand); }
.cuisine__no { font-family: var(--f-display); font-size: var(--step-2); color: var(--line-strong); line-height: 1; }
.cuisine h3 { font-size: var(--step-2); margin: .2rem 0 .3rem; }
.cuisine .flag { font-weight: 800; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-hi); }
.cuisine p { color: var(--ink-soft); margin-top: .7rem; }
.cuisine ul { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.cuisine li { font-size: var(--step--1); font-weight: 700; background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px; padding: .25em .8em; }
.cuisine__mark { position: absolute; top: 1.2rem; right: 1.2rem; width: 34px; height: 34px; color: var(--brand); opacity: .25; }
.menu-note { margin-top: 2rem; color: var(--ink-soft); font-size: var(--step--1); }
.menu-note strong { color: var(--ink); }

/* =========================================================================
   Feature-Bänder (Biergarten etc.) — Bild + Text
   ========================================================================= */
.feature { background: var(--bg); }
.feature + .feature { border-top: 1px solid var(--line); }
.feature__grid { display: grid; gap: 2rem; align-items: center; }
.feature__media {
  border-radius: var(--radius-lg); overflow: hidden; min-height: 300px; position: relative;
  background: linear-gradient(150deg, var(--petrol) 0%, var(--petrol-deep) 100%);
  color: #EFE7D6; display: grid; place-items: end start; padding: 1.4rem;
  border: 1px solid var(--line);
}
.feature__media.pine { background: linear-gradient(150deg, var(--pine) 0%, #1E3327 100%); }
.feature__media .ph-note { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; opacity: .75; }
.feature__media .decor { position: absolute; inset: 0; opacity: .5; }
.feature__body h2 { font-size: var(--step-3); margin-bottom: 1rem; }
.feature__body p { color: var(--ink-soft); }
.feature__body p + p { margin-top: 1rem; }
.spec-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .7rem; }
.spec-list li { display: flex; gap: .7rem; align-items: flex-start; font-weight: 600; }
.spec-list svg { width: 22px; height: 22px; flex: none; color: var(--accent-hi); margin-top: .15rem; }
.drink-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.drink-tags span { border: 1px solid var(--line-strong); border-radius: 999px; padding: .3em .9em; font-size: var(--step--1); font-weight: 700; }

/* Spiel: Kegeln & Boccia — Zahlenkacheln */
.play { background: var(--petrol-deep); color: #F1EADB; }
.play .section-head h2 { color: #fff; }
.play .section-head p { color: rgba(241,234,219,.8); }
.play .eyebrow { color: var(--wood-soft); }
.play .eyebrow::before { background: var(--wood-soft); }
.play__figure {
  margin: 0 0 2.4rem; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(241,234,219,.18);
  box-shadow: 0 20px 50px -28px rgba(0,0,0,.6);
}
.play__figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center; }
.play-grid { display: grid; gap: 1.2rem; }
.play-card { background: rgba(255,255,255,.05); border: 1px solid rgba(241,234,219,.16); border-radius: var(--radius-lg); padding: 1.8rem; }
.play-card .big { font-family: var(--f-display); font-size: var(--step-4); color: var(--wood-soft); line-height: .9; display: inline-block; }
.play-card .big-ico { width: .86em; height: .86em; display: inline-block; vertical-align: -.06em; }
.play-card h3 { font-size: var(--step-1); margin: .6rem 0 .5rem; }
.play-card p { color: rgba(241,234,219,.82); font-size: var(--step--1); }

/* =========================================================================
   Feiern / Festlichkeiten
   ========================================================================= */
.celebrate { background: var(--bg-2); }
.celebrate__grid { display: grid; gap: 2rem; align-items: center; }
.occasions { display: grid; gap: .8rem; grid-template-columns: repeat(2, 1fr); margin-top: 1.6rem; }
.occasion { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.1rem 1.2rem; }
.occasion svg { width: 26px; height: 26px; color: var(--brand); margin-bottom: .5rem; }
.occasion b { display: block; }
.occasion span { font-size: var(--step--1); color: var(--ink-soft); }

/* =========================================================================
   Öffnungszeiten
   ========================================================================= */
.hours { background: var(--bg); }
.hours__grid { display: grid; gap: 2.5rem; }
.hours-table { list-style: none; margin: 0; padding: 0; }
.hours-table li { display: flex; justify-content: space-between; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.hours-table li.today { color: var(--brand); font-weight: 800; }
.hours-table li.closed .time { color: var(--ink-soft); }
.hours-table .day { font-weight: 700; }
.hours-table .time { font-variant-numeric: tabular-nums; }
.hours__aside { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; align-self: start; }
.hours__aside h3 { font-size: var(--step-1); margin-bottom: .6rem; }
.hours__aside p { color: var(--ink-soft); font-size: var(--step--1); }
.hours__aside .status { margin-bottom: 1rem; color: var(--ink); }

/* =========================================================================
   Kontakt / Anfahrt
   ========================================================================= */
.contact { background: var(--petrol-deep); color: #F1EADB; }
.contact .eyebrow { color: var(--wood-soft); }
.contact .eyebrow::before { background: var(--wood-soft); }
.contact__grid { display: grid; gap: 2.5rem; }
.contact h2 { font-size: var(--step-3); color: #fff; margin-bottom: 1.2rem; }
.contact__lines { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.contact__lines li { display: flex; gap: .9rem; align-items: flex-start; }
.contact__lines svg { width: 24px; height: 24px; color: var(--wood-soft); flex: none; margin-top: .15rem; }
.contact__lines a { text-decoration: none; }
.contact__lines a:hover { color: var(--wood-soft); }
.contact__lines .k { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--wood-soft); font-weight: 800; display: block; }
.contact__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.map-embed { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(241,234,219,.2); min-height: 320px; background: #0d2a31; }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; filter: saturate(.85); }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: var(--petrol-ink); color: rgba(241,234,219,.85); padding-block: 3rem 2rem; }
.footer__top { display: grid; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(241,234,219,.14); }
.footer__brand img { height: 46px; margin-bottom: 1rem; }
.footer__brand p { max-width: 34ch; font-size: var(--step--1); }
.footer h4 { font-family: var(--f-body); font-weight: 800; letter-spacing: .16em; text-transform: uppercase; font-size: .72rem; color: var(--wood-soft); margin-bottom: 1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; font-size: var(--step--1); }
.footer a { text-decoration: none; }
.footer a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; padding-top: 1.6rem; font-size: var(--step--1); color: rgba(241,234,219,.6); }
.footer__bottom a { text-decoration: none; }
.footer__bottom a:hover { color: #fff; }

/* =========================================================================
   Scroll-Reveal
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* =========================================================================
   Breakpoints
   ========================================================================= */
@media (min-width: 620px) {
  .cuisine-grid { grid-template-columns: repeat(2, 1fr); }
  .play-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 860px) {
  .hero__inner { grid-template-columns: 1.02fr .98fr; gap: clamp(2.5rem, 5vw, 4rem); }
  .nav-links { display: flex; gap: clamp(1rem, 2vw, 1.9rem); }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .intro__grid { grid-template-columns: 1.05fr 1fr; gap: 3.5rem; }
  .feature__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .feature--reverse .feature__media { order: 2; }
  .cuisine-grid { grid-template-columns: repeat(3, 1fr); }
  .play-grid { grid-template-columns: repeat(4, 1fr); }
  .celebrate__grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .occasions { grid-template-columns: repeat(2, 1fr); }
  .hours__grid { grid-template-columns: 1.4fr 1fr; gap: 3.5rem; }
  .contact__grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .footer__top { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
}
@media (min-width: 1024px) {
  .feature__media { min-height: 420px; }
}

/* =========================================================================
   Karte: Klick-zum-Laden (kein externer Request vor Klick)
   ========================================================================= */
.map-ph {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center; gap: .9rem;
  padding: clamp(1.4rem, 4vw, 2.2rem); color: #EFE7D6;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(82,180,198,.22), transparent 55%),
    linear-gradient(150deg, var(--petrol) 0%, var(--petrol-deep) 100%);
}
.map-ph__title { font-family: var(--f-display); font-size: var(--step-1); line-height: 1.2; }
.map-ph__hint { font-size: var(--step--1); color: rgba(239,231,214,.85); max-width: 42ch; }
.map-ph__hint a { color: var(--wood-soft); }
.map-ph .btn { margin-top: .3rem; }

/* =========================================================================
   Datenschutz-Hinweis (dezenter Banner, dismissible)
   ========================================================================= */
.cookie-note {
  position: fixed; left: 50%; bottom: clamp(.8rem, 3vw, 1.6rem);
  transform: translateX(-50%);
  width: min(680px, calc(100% - 1.6rem)); z-index: 90;
  display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.2rem;
  justify-content: space-between;
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 1rem 1.2rem;
  animation: cookie-in .4s ease both;
}
.cookie-note[hidden] { display: none; }
.cookie-note p { font-size: var(--step--1); color: var(--ink-soft); flex: 1 1 22ch; margin: 0; }
.cookie-note a { color: var(--brand); font-weight: 700; }
.cookie-note__ok {
  font-family: var(--f-body); font-weight: 800; font-size: var(--step--1);
  letter-spacing: .04em; text-transform: uppercase; cursor: pointer;
  padding: .6em 1.3em; border-radius: 999px;
  border: 2px solid var(--accent); background: var(--accent); color: #241503;
  transition: transform .18s ease, filter .18s ease;
}
.cookie-note__ok:hover { transform: translateY(-2px); }
@keyframes cookie-in { from { opacity: 0; transform: translate(-50%, 14px); } to { opacity: 1; transform: translate(-50%, 0); } }
@media (prefers-reduced-motion: reduce) {
  .cookie-note { animation: none; }
}

/* ---------- Standort-Nadel (blaue Karten-Nadel als Overlay) ---------- */
.map-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 40px;
  transform: translate(-50%, -100%);
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(0 3px 4px rgba(0, 0, 0, .35));
  animation: mapMarkerIn .35s ease-out both;
}
.map-marker svg { display: block; width: 100%; height: 100%; }
@keyframes mapMarkerIn {
  from { opacity: 0; transform: translate(-50%, -130%); }
  to   { opacity: 1; transform: translate(-50%, -100%); }
}
@media (prefers-reduced-motion: reduce) {
  .map-marker { animation: none; }
}
