/* ═══════════════════════════════════════════════════════════
   BRAUWERKSTATT WASSERBURG – Design-System
   NUR per Gruppenbeschluss ändern.
   Zwei Header-Varianten: data-theme="a" oder data-theme="b"
   ═══════════════════════════════════════════════════════════ */

/* ── Design-Tokens ──────────────────────────────────────── */
:root {
  /* Basis */
  --bg-dark:      #1e2a35;
  --bg-mid:       #253341;
  --bg-light:     #f9f6f0;
  --text-dark:    #1e2a35;
  --text-muted:   #6b7c8a;
  --text-light:   #f9f6f0;
  --border:       rgba(255,255,255,.1);

  /* Schriften – direkt von den Etiketten */
  --font-brand:       'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
  --font-kopf:        'Playfair Display', Georgia, serif;
  --font-handschrift: 'Special Elite', 'Courier New', monospace;
  --font-text:        'Inter', system-ui, sans-serif;

  /* Bier-Akzente – Farben direkt vom Etikett gemessen */
  --helles:       #00A14B;
  --helles-bg:    #e8f5ee;
  --weiss-blau:   #1D73BC;
  --weiss-gelb:   #f0c420;
  --weiss-bg:     #e8f0f8;
  --stout:        #1a1a1a;
  --stout-gold:   #c8a84b;
  --stout-bg:     #f5f3f0;
  --pale-ale:     #e8640c;
  --pale-bg:      #fff4ec;

  /* Typografie */
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Abstände */
  --nav-h:        68px;
  --section-pad:  6rem 1.5rem;
  --radius:       3px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

/* ══════════════════════════════════════════════════════════
   VARIANTE A – "Werkstatt Dunkel"
   Dunkle Nav, bleibt dunkel beim Scrollen
   ══════════════════════════════════════════════════════════ */
[data-theme="a"] .nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

[data-theme="a"] .nav__logo {
  font-family: var(--font-brand);
  font-size: 1.5rem;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.nav__logo-icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: url('../content/images/logo-nav.png') center / contain no-repeat;
  flex-shrink: 0;
  opacity: .9;
}

[data-theme="a"] .nav__logo span {
  color: var(--stout-gold);
}

[data-theme="a"] .nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

[data-theme="a"] .nav__links a {
  color: rgba(249,246,240,.7);
  text-decoration: none;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}

[data-theme="a"] .nav__links a:hover,
[data-theme="a"] .nav__links a.aktiv {
  color: var(--text-light);
  border-bottom-color: var(--stout-gold);
}

/* ── Submenu (Desktop) ───────────────────────────────────── */
.hat-submenu { position: relative; }

/* Split-Button: Label-Link + Pfeil-Button nebeneinander */
.submenu-kopf { display: flex; align-items: center; }

.submenu-label {
  color: rgba(249,246,240,.7); font-family: inherit; font-size: .9rem;
  letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 3px; border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.submenu-label:hover,
.submenu-label.aktiv {
  color: var(--text-light);
  border-bottom-color: var(--stout-gold);
}
.submenu-label--plain { cursor: default; }

.submenu-toggle {
  -webkit-appearance: none; appearance: none;
  background: transparent; border: none; cursor: pointer;
  color: rgba(249,246,240,.7);
  padding: 0 .2rem 3px .15rem;
  border-bottom: 2px solid transparent;
  display: flex; align-items: center;
  transition: color .2s;
}
.submenu-toggle:hover { color: var(--text-light); }

.submenu-pfeil { font-size: .65em; transition: transform .15s; display: inline-block; }
.submenu-offen .submenu-pfeil { transform: rotate(180deg); }

.nav__submenu {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark); border: 1px solid rgba(200,168,75,.2);
  border-radius: 6px; min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  z-index: 500; padding: .3rem 0;
  list-style: none;
}
.hat-submenu:hover .nav__submenu,
.hat-submenu.submenu-offen .nav__submenu { display: block; }

.nav__submenu li a {
  display: block; padding: .55rem 1.1rem;
  color: rgba(249,246,240,.75); text-decoration: none;
  font-size: .85rem; letter-spacing: .03em; white-space: nowrap;
  border-bottom: none !important; transition: color .15s, background .15s;
}
.nav__submenu li a:hover,
.nav__submenu li a.aktiv {
  color: var(--text-light) !important;
  background: rgba(200,168,75,.12);
  border-bottom: none !important;
}

/* ── Variante A: Hero ────────────────────────────────────── */
[data-theme="a"] .hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background:
    linear-gradient(160deg, rgba(30,42,53,.92) 0%, rgba(30,42,53,.75) 100%),
    url('/content/images/hero-bg.jpg') center/cover no-repeat;
  background-color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

[data-theme="a"] .hero__inner {
  padding: 3rem 2rem;
  max-width: 700px;
}

[data-theme="a"] .hero__kicker {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stout-gold);
  margin-bottom: 1.2rem;
}

[data-theme="a"] .hero__title {
  font-family: var(--font-brand);
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--text-light);
  line-height: 1.0;
  letter-spacing: .06em;
  margin-bottom: 1.2rem;
}

[data-theme="a"] .hero__sub {
  font-size: 1.1rem;
  color: rgba(249,246,240,.7);
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

[data-theme="a"] .hero__cta {
  display: inline-block;
  padding: .9rem 2.5rem;
  background: var(--stout-gold);
  color: var(--bg-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  border-radius: 30px;
  transition: opacity .2s;
}

[data-theme="a"] .hero__cta:hover { opacity: .85; }

/* ══════════════════════════════════════════════════════════
   VARIANTE B – "Craft Hell"
   Helle transparente Nav, wird weiß beim Scrollen
   ══════════════════════════════════════════════════════════ */
[data-theme="b"] .nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  transition: background .3s, box-shadow .3s;
}

[data-theme="b"] .nav.gescrollt {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

[data-theme="b"] .nav__logo {
  font-family: var(--font-brand);
  font-size: 1.5rem;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: .08em;
  transition: color .3s;
}

[data-theme="b"] .nav.gescrollt .nav__logo {
  color: var(--text-dark);
}

[data-theme="b"] .nav__logo span { color: var(--pale-ale); }

[data-theme="b"] .nav__links {
  display: flex;
  gap: 0;
  list-style: none;
}

[data-theme="b"] .nav__links a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: .9rem;
  padding: .45rem .9rem;
  border-radius: 20px;
  transition: background .2s, color .2s;
}

[data-theme="b"] .nav.gescrollt .nav__links a {
  color: var(--text-dark);
}

[data-theme="b"] .nav__links a:hover {
  background: rgba(232,100,12,.12);
  color: var(--pale-ale);
}

/* ── Variante B: Hero ────────────────────────────────────── */
[data-theme="b"] .hero {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(30,42,53,.55) 0%, rgba(30,42,53,.3) 60%, var(--bg-light) 100%),
    url('/content/images/hero-bg.jpg') center/cover no-repeat;
  background-color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8vw;
}

[data-theme="b"] .hero__inner {
  max-width: 600px;
  padding-top: var(--nav-h);
}

[data-theme="b"] .hero__kicker {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pale-ale);
  margin-bottom: 1rem;
}

[data-theme="b"] .hero__title {
  font-family: var(--font-brand);
  font-size: clamp(3.5rem, 7vw, 6rem);
  color: var(--text-light);
  line-height: 1.0;
  letter-spacing: .06em;
  margin-bottom: 1rem;
}

[data-theme="b"] .hero__sub {
  font-size: 1.05rem;
  color: rgba(249,246,240,.8);
  max-width: 420px;
  margin-bottom: 2rem;
}

[data-theme="b"] .hero__cta {
  display: inline-block;
  padding: .85rem 2.2rem;
  border: 2px solid var(--text-light);
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  border-radius: 30px;
  transition: background .2s, color .2s;
}

[data-theme="b"] .hero__cta:hover {
  background: var(--text-light);
  color: var(--text-dark);
}

/* ── Hamburger Mobile (beide Varianten) ─────────────────── */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-light);
  transition: transform .2s, opacity .2s;
}

[data-theme="b"] .nav.gescrollt .nav__burger span {
  background: var(--text-dark);
}

/* ══════════════════════════════════════════════════════════
   INHALTS-SEKTIONEN (beide Varianten gleich)
   ══════════════════════════════════════════════════════════ */

/* ── Sektion-Wrapper ────────────────────────────────────── */
.sektion {
  padding: var(--section-pad);
}

.sektion--dunkel {
  background: var(--bg-dark);
  color: var(--text-light);
}

.sektion--creme {
  background: #f4f0ea;
}

.sektion__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.sektion__titel {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: .06em;
  margin-bottom: .5rem;
}

.sektion__untertitel {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.sektion--dunkel .sektion__untertitel { color: rgba(249,246,240,.55); }

/* ── Trennlinie unter Titeln ────────────────────────────── */
.sektion__titel::after {
  content: '';
  display: block;
  width: 48px; height: 3px;
  background: var(--akzent-linie, var(--stout-gold));
  margin-top: .6rem;
  margin-bottom: 2.5rem;
}

/* ── Spalten-Layout ─────────────────────────────────────── */
.spalten-container {
  display: grid;
  grid-template-columns: repeat(var(--sp-count, 2), 1fr);
  gap: 2rem;
  align-items: start;
}
.spalte {
  min-height: 1px;
}
.spalte .sektion {
  padding: 0;
}
.spalte .sektion__inner {
  max-width: none;
}
@media (max-width: 900px) {
  .spalten-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .spalten-container { grid-template-columns: 1fr; }
}

/* ── Bier-Karten ────────────────────────────────────────── */
.bier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.bier-karte {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  background: #fff;
}

.bier-karte:nth-child(even) {
  grid-template-columns: 340px 1fr;
}
.bier-karte:nth-child(even) .bier-karte__foto {
  order: -1;
}

.bier-karte__info {
  padding: 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 5px solid var(--akzent, #888);
}

.bier-karte:nth-child(even) .bier-karte__info {
  border-left: none;
  border-right: 5px solid var(--akzent, #888);
}

.bier-karte__badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--akzent, #888);
  margin-bottom: .8rem;
}

.bier-karte__name {
  font-family: var(--font-kopf);
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .4rem;
  line-height: 1.1;
}

.bier-karte__sud {
  font-family: var(--font-handschrift);
  font-size: .88rem;
  color: var(--akzent, #888);
  margin-bottom: .9rem;
  letter-spacing: .02em;
}

.bier-karte__charakter {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.bier-karte__zutaten {
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.bier-karte__details {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid #eee;
}

.bier-detail {
  font-size: .8rem;
}

.bier-detail__label {
  display: block;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .7rem;
  margin-bottom: 2px;
}

.bier-detail__wert {
  font-weight: 600;
  color: var(--akzent, #888);
}

.bier-karte__foto {
  background: var(--akzent-bg, #f5f5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.bier-karte__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bier-karte__foto-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--akzent, #ccc);
  opacity: .5;
  font-size: .85rem;
}

.bier-karte__foto-placeholder svg {
  width: 48px; height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

/* ── Text-Block ─────────────────────────────────────────── */
.text-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.text-block--voll { grid-template-columns: 1fr; max-width: 720px; }

.text-block__text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #3a4a55;
}

.text-block__text p + p { margin-top: 1rem; }

/* ── Brauprozess ────────────────────────────────────────── */
.prozess-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  counter-reset: schritt;
}

.prozess-schritt {
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  position: relative;
  counter-increment: schritt;
}

.prozess-schritt::before {
  content: counter(schritt, decimal-leading-zero);
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--stout-gold);
  opacity: .4;
  margin-bottom: .5rem;
  line-height: 1;
}

.prozess-schritt__text {
  font-size: .95rem;
  color: rgba(249,246,240,.8);
}

/* ── Galerie ────────────────────────────────────────────── */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.galerie-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform .3s;
}

.galerie-grid img:hover { transform: scale(1.02); }

.galerie-leer {
  color: var(--text-muted);
  font-style: italic;
  padding: 3rem 0;
  text-align: center;
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: #131d25;
  color: rgba(249,246,240,.5);
  padding: 3rem 2rem;
  text-align: center;
}

.footer__disclaimer {
  max-width: 680px;
  margin: 0 auto 2rem;
  font-size: .875rem;
  line-height: 1.75;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
}

.footer__links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer__links a {
  color: rgba(249,246,240,.5);
  text-decoration: none;
  font-size: .85rem;
  transition: color .2s;
}

.footer__links a:hover { color: var(--text-light); }

.footer__copy {
  font-size: .8rem;
  opacity: .4;
}

/* ══════════════════════════════════════════════════════════
   SUD-KARTE – Bier-Post-Karte
   ══════════════════════════════════════════════════════════ */

.sude-vorschau {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sude-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.sud-karte {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}

.sud-karte:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}

.sud-karte__foto {
  aspect-ratio: 8/11;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 3px solid var(--akzent, #ccc);
  position: relative;
}

.sud-karte__foto img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .3s;
}

.sud-karte:hover .sud-karte__foto img {
  transform: scale(1.04);
}

.sud-karte__foto-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: .5;
  font-size: .8rem;
}

.sud-karte__info {
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sud-karte__kat {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}

.sud-karte__name {
  font-family: var(--font-kopf);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: .25rem;
}

.sud-karte__nr {
  font-family: var(--font-handschrift);
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: .6rem;
}

.sud-karte__hover-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(20, 30, 40, .87);
  color: #f9f6f0;
  padding: .8rem 1rem;
  font-size: .82rem;
  line-height: 1.55;
  transform: translateY(100%);
  transition: transform .22s ease;
}

@media (hover: hover) {
  .sud-karte:hover .sud-karte__hover-info { transform: translateY(0); }
}

.sud-karte__footer {
  display: flex;
  align-items: flex-start;
  font-size: .8rem;
  color: var(--text-muted);
  padding-top: .8rem;
  border-top: 1px solid #eee;
  margin-top: auto;
}

.sud-karte__daten {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.sud-karte--kompakt .sud-karte__foto { aspect-ratio: 4/3; }
.sud-karte--kompakt .sud-karte__name { font-size: 1.2rem; }

/* ══════════════════════════════════════════════════════════
   KATEGORIE-FILTER
   ══════════════════════════════════════════════════════════ */

.kategorie-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: .4rem 1rem;
  border: 1.5px solid #ccc;
  background: transparent;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .02em;
}

.filter-btn.aktiv {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: var(--text-light);
}

.filter-btn:hover:not(.aktiv) {
  background: rgba(0,0,0,.05);
}

/* ══════════════════════════════════════════════════════════
   BIER-DETAIL-HERO
   ══════════════════════════════════════════════════════════ */

.bier-detail-hero {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 3.5rem max(1.5rem, calc((100% - 1100px) / 2)) 3rem;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 3rem;
  align-items: center;
}

.bier-detail-hero__inner { max-width: 620px; }

.bier-detail-hero__links {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.zurueck-link {
  color: rgba(249,246,240,.6);
  text-decoration: none;
  font-size: .85rem;
  transition: color .2s;
}

.zurueck-link:hover { color: var(--text-light); }

.kategorie-badge {
  display: inline-block;
  padding: .2rem .7rem;
  border-radius: 20px;
  border: 1px solid;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bier-detail-hero__name {
  font-family: var(--font-kopf);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-style: italic;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: .5rem;
}

.bier-detail-hero__sud {
  font-family: var(--font-handschrift);
  font-size: .95rem;
  color: var(--akzent, var(--stout-gold));
  margin-bottom: 1rem;
}

.bier-detail-hero__kurz {
  font-size: 1.05rem;
  color: rgba(249,246,240,.75);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.bier-detail-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.2rem;
  font-size: .85rem;
  color: rgba(249,246,240,.55);
}

.bier-detail-hero__etikett {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bier-detail-hero__etikett img {
  max-height: 260px;
  max-width: 200px;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}

.bier-detail-hero__etikett--placeholder {
  height: 220px;
  width: 140px;
  border: 2px dashed;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  font-size: .8rem;
}

/* ══════════════════════════════════════════════════════════
   BIER-DETAIL INHALT
   ══════════════════════════════════════════════════════════ */

.bier-detail-inhalt {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}
.bier-detail-inhalt--leer { grid-template-columns: 1fr; }
.bier-detail-inhalt--leer .bier-detail-text { display: none; }
.edit-modus .bier-detail-inhalt--leer { grid-template-columns: 1fr 280px; }
.edit-modus .bier-detail-inhalt--leer .bier-detail-text { display: block; }

.bier-detail-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: #3a4a55;
  margin-bottom: 1rem;
}

.braunotiz {
  margin-top: 2rem;
  padding: 1.1rem 1.3rem 1.1rem 1.4rem;
  background: #fdf8e1;
  border-left: 3px solid #c8a84b;
  border-radius: 2px 6px 6px 2px;
  box-shadow: 2px 3px 8px rgba(0,0,0,.10), -1px 0 0 #e8d87a;
  font-family: 'Special Elite', serif;
  font-size: .95rem;
  color: #3a2e1a;
  line-height: 1.7;
  transform: rotate(-0.4deg);
  position: relative;
}
.braunotiz::before {
  content: none;
}

.steckbrief {
  background: #fff;
  border-radius: 12px;
  padding: 1.4rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.steckbrief__titel {
  font-family: var(--font-kopf);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: .9rem;
}

.steckbrief__liste {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .4rem 1rem;
  font-size: .88rem;
}

.steckbrief__liste dt {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .05em;
  align-self: center;
}

.steckbrief__liste dd {
  font-weight: 600;
  color: var(--text-dark);
}

/* ══════════════════════════════════════════════════════════
   PRIMÄR-BUTTON
   ══════════════════════════════════════════════════════════ */

.btn-primaer {
  display: inline-block;
  padding: .85rem 2.2rem;
  background: var(--bg-dark);
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .03em;
  border-radius: 30px;
  border: 2px solid rgba(255,255,255,.2);
  transition: opacity .2s, transform .1s;
}

.btn-primaer:hover {
  opacity: .85;
  transform: translateY(-1px);
}

/* ── Theme-Umschalter (Entwicklungshilfe) ───────────────── */
.theme-switcher {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 200;
  display: flex;
  gap: .5rem;
  background: rgba(30,42,53,.9);
  padding: .5rem .7rem;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.1);
}

.theme-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(249,246,240,.7);
  font-size: .75rem;
  padding: .3rem .7rem;
  border-radius: 20px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all .2s;
}

.theme-btn.aktiv {
  background: var(--stout-gold);
  color: var(--bg-dark);
  border-color: var(--stout-gold);
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .bier-karte,
  .bier-karte:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .bier-karte:nth-child(even) .bier-karte__foto { order: 0; }
  .bier-karte:nth-child(even) .bier-karte__info {
    border-right: none;
    border-left: 5px solid var(--akzent, #888);
  }

  .bier-karte__foto { min-height: 220px; }

  .text-block { grid-template-columns: 1fr; gap: 2rem; }

  .sude-vorschau { grid-template-columns: 1fr 1fr; }

  .bier-detail-inhalt {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Handy-Hochformat: unter 600px alles einspalt */
@media (max-width: 600px) {
  .sude-vorschau { grid-template-columns: 1fr; }
  .sude-grid     { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .bier-detail-hero {
    grid-template-columns: 1fr;
    padding: 2rem 1.2rem 1.5rem;
  }
  .bier-detail-hero--has-etikett {
    grid-template-columns: 1fr 100px;
    gap: 1.2rem;
  }
  .bier-detail-hero__etikett { display: none; }
  .bier-detail-hero--has-etikett .bier-detail-hero__etikett {
    display: flex;
  }
  .bier-detail-hero--has-etikett .bier-detail-hero__etikett img {
    max-height: 160px;
    max-width: 90px;
  }
}

@media (max-width: 680px) {
  :root { --section-pad: 4rem 1.2rem; --nav-h: 58px; }

  /* Logo: nur Icon + "BRAUWERKSTATT", "Wasserburg" ausblenden */
  [data-theme="a"] .nav__logo,
  [data-theme="b"] .nav__logo {
    font-size: 1.15rem;
    letter-spacing: .05em;
  }

  .nav__logo-sub { display: none; }

  [data-theme="a"] .nav__links,
  [data-theme="b"] .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    padding: .5rem 0;
  }

  [data-theme="b"] .nav__links { background: #fff; }

  .nav__links.offen { display: flex; }

  [data-theme="a"] .nav__links a,
  [data-theme="b"] .nav__links a {
    padding: .8rem 1.5rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
    border-left: 3px solid transparent;
  }

  [data-theme="a"] .nav__links a.aktiv,
  [data-theme="b"] .nav__links a.aktiv {
    border-bottom-color: transparent;
    border-left-color: var(--stout-gold);
    color: var(--stout-gold);
    background: rgba(200,168,75,.12);
  }

  [data-theme="b"] .nav.gescrollt .nav__links { background: #fff; }
  [data-theme="b"] .nav__links a { color: var(--text-dark); }

  /* Mobile Submenu – Split-Button */
  .submenu-kopf {
    display: flex; align-items: center; width: 100%;
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .submenu-kopf .submenu-label {
    flex: 1;
    padding: .8rem 1rem .8rem 1.5rem;
    border-bottom: none !important;
    font-size: .9rem; letter-spacing: .04em; text-transform: uppercase;
    text-decoration: none; color: rgba(249,246,240,.7);
  }
  .submenu-kopf .submenu-label:hover,
  .submenu-kopf .submenu-label.aktiv { color: var(--text-light); }
  .submenu-toggle {
    width: 44px !important; height: 44px !important;
    padding: 0 !important; margin-right: .5rem;
    border-left: 1px solid rgba(255,255,255,.1);
    border-bottom: none !important; border-radius: 0;
    font-size: .8rem; justify-content: center; align-items: center;
    display: flex !important;
  }
  .nav__submenu {
    display: none; position: static; transform: none;
    box-shadow: none; border-radius: 0; border: none;
    padding: 0; background: rgba(0,0,0,.15);
    min-width: unset;
  }
  .hat-submenu:hover .nav__submenu { display: none; }
  .hat-submenu.submenu-offen .nav__submenu { display: block; }
  /* Submenu-Kinder: eingerückt + kleiner als Top-Level */
  .nav__submenu li a {
    padding: .6rem 1.5rem .6rem 2.5rem !important;
    font-size: .82rem !important;
    color: rgba(249,246,240,.6) !important;
    border-left: 2px solid rgba(200,168,75,.3);
  }
  .nav__submenu li a:hover,
  .nav__submenu li a.aktiv {
    color: var(--text-light) !important;
    border-left-color: var(--stout-gold);
  }

  .nav__burger { display: flex; }

  .bier-karte__info { padding: 1.8rem 1.5rem; }

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

@media (max-width: 420px) {
  .prozess-grid { grid-template-columns: 1fr; }
  [data-theme="b"] .hero { padding: 0 1.5rem; }
  .sude-vorschau { grid-template-columns: 1fr; }
  .sude-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
}

/* ── Slider ──────────────────────────────────────────────── */
.bier-slider, .bild-slider {
  position: relative; display: flex; align-items: center; gap: .5rem;
}
.slider-spur {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; flex: 1;
}
.slider-spur::-webkit-scrollbar { display: none; }
.slider-spur .sud-karte { scroll-snap-align: start; flex-shrink: 0; width: 260px; }
.bild-slide { scroll-snap-align: start; flex-shrink: 0; width: 100%; }
.bild-slide img { width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius); }
.slider-pfeil {
  background: rgba(26,35,48,.7); border: 1px solid rgba(255,255,255,.15);
  color: #e8edf2; width: 40px; height: 40px; border-radius: 50%;
  cursor: pointer; font-size: 1.4rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; z-index: 2;
}
.slider-pfeil:hover { background: var(--stout-gold); color: #1a1a1a; }

/* ── Akkordeon ───────────────────────────────────────────── */
.akkordeon { display: flex; flex-direction: column; gap: .5rem; }
.akkordeon-item { border: 1px solid rgba(0,0,0,.1); border-radius: var(--radius); overflow: hidden; }
.akkordeon-frage {
  width: 100%; text-align: left; background: var(--bg-light);
  border: none; padding: 1rem 1.2rem; font-size: 1rem;
  font-family: var(--font-body); cursor: pointer; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
}
.akkordeon-frage::after { content: '+'; font-size: 1.3rem; color: var(--stout-gold); }
.akkordeon-item.offen .akkordeon-frage::after { content: '−'; }
.akkordeon-antwort { display: none; padding: 0 1.2rem; background: #fff; }
.akkordeon-item.offen .akkordeon-antwort { display: block; padding: .8rem 1.2rem 1rem; }

/* ══════════════════════════════════════════════════════════
   REZEPT-BLOCK
   ══════════════════════════════════════════════════════════ */

.rezept__meta-leiste {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.rezept__meta-tag {
  background: var(--stout-bg);
  border: 1px solid rgba(200,168,75,.3);
  color: var(--stout-gold);
  padding: .25rem .75rem;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  font-family: var(--font-body);
}

.rezept {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.rezept__sektion {
  background: #fff;
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.rezept__sektion-titel {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: .8rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--stout-gold);
  font-family: var(--font-body);
}

.rezept__tabelle {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}

.rezept__tabelle thead th {
  text-align: left;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  padding: .2rem .35rem .4rem;
  border-bottom: 1px solid #eee;
  font-family: var(--font-body);
  font-weight: 600;
}

.rezept__tabelle tbody tr:nth-child(even) td { background: #f9f6f0; }

.rezept__tabelle tbody td {
  padding: .4rem .35rem;
  border-bottom: 1px solid #f0ebe3;
  vertical-align: middle;
  color: var(--text-dark);
}

.rezept__tabelle tbody tr:last-child td { border-bottom: none; }

.rezept__zahl {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: #3a4a55;
  white-space: nowrap;
}

.rezept__hinweise {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.rezept__wrapper {
  padding: 0 max(1.5rem, calc((100% - 1100px) / 2)) 4rem;
  background: var(--bg-light);
}

@media (max-width: 600px) {
  .rezept { grid-template-columns: 1fr; }
  .rezept__wrapper { padding: 0 1.2rem 3rem; }
}
