/* ============================================================
   BUNDESBIERSCHUTZ – ZENTRALE
   Stylesheet
   ============================================================ */

/* ── Lokale Fonts (self-hosted, kein Google) ─────────────── */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url(fonts/playfair-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url(fonts/playfair-latinext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(fonts/inter-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(fonts/inter-latinext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

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

:root {
  --beer-amber:   #D97706;
  --beer-gold:    #F59E0B;
  --beer-light:   #FCD34D;
  --beer-foam:    #FEF3C7;
  --beer-dark:    #92400E;
  --beer-darker:  #78350F;
  --bg:           #FFFBF0;
  --text:         #1C1917;
  --text-muted:   #78716C;
  --white:        #FFFFFF;
  --radius:       16px;
  --radius-sm:    8px;
  --shadow:       0 4px 24px rgba(146, 64, 14, 0.12);
  --shadow-lg:    0 12px 48px rgba(146, 64, 14, 0.18);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --nav-height:   72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Typography helpers ────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--beer-amber);
  background: rgba(217, 119, 6, 0.1);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-label.light {
  color: var(--beer-foam);
  background: rgba(254, 243, 199, 0.15);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.section-title.light { color: var(--white); }
.section-intro {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 3rem;
}
.section-intro.light { color: rgba(254, 243, 199, 0.8); }
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 6rem 0;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary,
.btn-secondary,
.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.22s ease;
  border: none;
}
.btn-primary {
  background: var(--beer-amber);
  color: white;
  padding: 0.85rem 2rem;
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.35);
}
.btn-primary:hover {
  background: var(--beer-dark);
  box-shadow: 0 6px 24px rgba(217, 119, 6, 0.45);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--beer-dark);
  padding: 0.85rem 2rem;
  border: 2px solid var(--beer-amber);
}
.btn-secondary:hover {
  background: var(--beer-foam);
  transform: translateY(-2px);
}
.btn-nav {
  background: var(--beer-amber);
  color: white;
  padding: 0.55rem 1.4rem;
  font-size: 0.875rem;
}
.btn-nav:hover {
  background: var(--beer-dark);
}

/* ── HEADER / NAV ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(255, 251, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 119, 6, 0.15);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
/* Nav logo image */
.nav-logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  padding: 2px;
  background: conic-gradient(
    from 0deg,
    var(--beer-amber),
    var(--beer-gold),
    var(--beer-foam),
    var(--beer-gold),
    var(--beer-amber)
  );
  box-shadow: 0 0 10px rgba(217,119,6,0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.nav-logo-img:hover {
  box-shadow: 0 0 18px rgba(217,119,6,0.4);
  transform: scale(1.08);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin: 0 auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: all 0.18s;
}
.nav-links a:hover {
  color: var(--beer-amber);
  background: rgba(217, 119, 6, 0.08);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-inner { justify-content: center; }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background: linear-gradient(160deg, #FFFBF0 0%, #FEF9E0 40%, #FEF3C7 100%);
  position: relative;
  overflow: hidden;
}
.hero-content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 4rem 1.5rem 4rem;
  flex: 1;
  z-index: 2;
  position: relative;
}
/* Hero seal – official badge with glow */
.hero-seal {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}
.seal-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,119,6,0.3) 0%, rgba(245,158,11,0.1) 50%, transparent 70%);
  animation: sealPulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sealPulse {
  0%, 100% { transform: translate(-50%, -55%) scale(1); opacity: 0.7; }
  50%      { transform: translate(-50%, -55%) scale(1.15); opacity: 1; }
}
.seal-ring {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 4px;
  background: conic-gradient(
    from 0deg,
    var(--beer-amber),
    var(--beer-gold),
    var(--beer-foam),
    var(--beer-gold),
    var(--beer-amber),
    var(--beer-dark),
    var(--beer-amber)
  );
  animation: sealSpin 10s linear infinite;
  box-shadow:
    0 0 20px rgba(217,119,6,0.3),
    0 0 40px rgba(217,119,6,0.15);
}
@keyframes sealSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  animation: sealCounterSpin 10s linear infinite;
}
@keyframes sealCounterSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}
.seal-label {
  margin-top: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--beer-dark);
  opacity: 0.7;
}

.hero-badge {
  display: inline-block;
  background: rgba(217, 119, 6, 0.1);
  color: var(--beer-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(217, 119, 6, 0.2);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero-title-accent {
  color: var(--beer-amber);
  display: block;
}
.hero-sub {
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 100%;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-sub strong {
  color: var(--beer-dark);
  font-weight: 600;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero-graphic {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.hero-mug {
  width: clamp(160px, 22vw, 300px);
  animation: floatMug 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(146, 64, 14, 0.25));
}
@keyframes floatMug {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}
.beer-bubble { animation: riseBubble 3s ease-in infinite; }
.bb1 { animation-delay: 0s; animation-duration: 2.8s; }
.bb2 { animation-delay: 0.6s; animation-duration: 3.2s; }
.bb3 { animation-delay: 1.1s; animation-duration: 2.5s; }
.bb4 { animation-delay: 0.3s; animation-duration: 3.6s; }
.bb5 { animation-delay: 1.5s; animation-duration: 2.9s; }
.bb6 { animation-delay: 0.8s; animation-duration: 3.1s; }
@keyframes riseBubble {
  0%   { transform: translateY(0); opacity: 0.5; }
  80%  { opacity: 0.4; }
  100% { transform: translateY(-50px); opacity: 0; }
}

/* Hero steam */
.hero-steam {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}
.steam {
  width: 6px;
  height: 40px;
  background: linear-gradient(to top, rgba(255,255,255,0.6), transparent);
  border-radius: 100px;
  animation: steamRise 2.5s ease-in-out infinite;
}
.s1 { animation-delay: 0s; }
.s2 { animation-delay: 0.4s; transform: scaleX(-1); }
.s3 { animation-delay: 0.8s; }
@keyframes steamRise {
  0%   { transform: translateY(0) scaleX(1); opacity: 0; }
  30%  { opacity: 0.6; }
  100% { transform: translateY(-60px) scaleX(1.4); opacity: 0; }
}

/* Background bubbles */
.bubbles-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(217, 119, 6, 0.07);
  animation: driftBubble linear infinite;
}
.b1 { width: 80px;  height: 80px;  left: 5%;  animation-duration: 12s; animation-delay: 0s; }
.b2 { width: 50px;  height: 50px;  left: 15%; animation-duration: 9s;  animation-delay: 2s; }
.b3 { width: 120px; height: 120px; left: 70%; animation-duration: 14s; animation-delay: 1s; }
.b4 { width: 60px;  height: 60px;  left: 80%; animation-duration: 10s; animation-delay: 4s; }
.b5 { width: 40px;  height: 40px;  left: 45%; animation-duration: 8s;  animation-delay: 3s; }
.b6 { width: 90px;  height: 90px;  left: 30%; animation-duration: 16s; animation-delay: 6s; }
@keyframes driftBubble {
  0%   { bottom: -120px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.8; }
  100% { bottom: 110vh; opacity: 0; }
}

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  background: var(--beer-amber);
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
}
.stat-item {
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: white;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
  letter-spacing: 0.03em;
}
.stat-divider {
  font-size: 1.5rem;
  opacity: 0.7;
}

/* ── MISSION ──────────────────────────────────────────────── */
.mission {
  background: var(--white);
}
.mission-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.mission-card {
  background: var(--bg);
  border: 1px solid rgba(217, 119, 6, 0.12);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.25s ease;
}
.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(217, 119, 6, 0.3);
}
.mission-card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
}
.mission-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.mission-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── VERFASSUNG ───────────────────────────────────────────── */
.verfassung {
  background: linear-gradient(135deg, var(--beer-dark) 0%, var(--beer-darker) 100%);
  position: relative;
  overflow: hidden;
}
.verfassung-bg-graphic {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.verfassung-bg-graphic svg {
  width: 80%;
  max-width: 600px;
}
.paragraphen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}
.paragraph-item {
  display: flex;
  gap: 1.25rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(6px);
  transition: all 0.22s ease;
}
.paragraph-item:hover {
  background: rgba(255,255,255,0.12);
  transform: translateX(4px);
}
.para-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--beer-gold);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}
.para-content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.4rem;
}
.para-content p {
  color: rgba(254, 243, 199, 0.75);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── PHILOSOPHIE ──────────────────────────────────────────── */
.philosophie {
  background: var(--bg);
}
.philosophie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.quote-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(217, 119, 6, 0.1);
  box-shadow: var(--shadow);
  transition: all 0.25s ease;
  position: relative;
}
.quote-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 18px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(217, 119, 6, 0.12);
  font-weight: 900;
}
.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 119, 6, 0.25);
}
.quote-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.quote-card blockquote {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
  quotes: none;
}
.quote-card cite {
  font-size: 0.8rem;
  color: var(--beer-amber);
  font-style: normal;
  font-weight: 500;
}

/* ── MUSIK / ALBUM ───────────────────────────────────────── */
.musik {
  background: linear-gradient(135deg, var(--beer-dark) 0%, var(--beer-darker) 100%);
  position: relative;
  overflow: hidden;
}
.album-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.album-cover {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.album-cover img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}
.album-tracklist {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 600px;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.album-tracklist::-webkit-scrollbar {
  width: 6px;
}
.album-tracklist::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
}
.album-tracklist::-webkit-scrollbar-thumb {
  background: var(--beer-amber);
  border-radius: 3px;
}
.track-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.2s ease;
  cursor: default;
}
.track-item:hover {
  background: rgba(255,255,255,0.1);
}
.track-item.playing {
  background: rgba(217, 119, 6, 0.2);
  border-color: rgba(217, 119, 6, 0.4);
}
.track-play-btn {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
  background: var(--beer-amber);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s ease;
}
.track-play-btn:hover {
  background: var(--beer-gold);
  transform: scale(1.1);
}
.track-play-btn svg {
  width: 16px;
  height: 16px;
}
.track-play-btn .icon-pause {
  display: none;
}
.track-item.playing .track-play-btn .icon-play {
  display: none;
}
.track-item.playing .track-play-btn .icon-pause {
  display: block;
}
.track-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  flex-shrink: 0;
  max-width: 240px;
}
.track-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--beer-gold);
  opacity: 0.7;
  flex-shrink: 0;
}
.track-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.track-progress {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  min-width: 60px;
}
.track-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--beer-gold);
  border-radius: 2px;
  transition: width 0.1s linear;
}
.track-time {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
  min-width: 36px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
  .album-layout {
    grid-template-columns: 1fr;
  }
  .album-cover {
    position: static;
    max-width: 280px;
    margin: 0 auto;
  }
  .album-tracklist {
    max-height: none;
    padding-right: 0;
  }
  .track-info {
    max-width: 140px;
  }
}

/* ── AUSFLÜGE / BLOG ────────────────────────────────────── */
.ausfluege {
  background: var(--white);
}
.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--bg);
  border: 1px solid rgba(217, 119, 6, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 119, 6, 0.3);
}
.blog-card-img {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-placeholder svg {
  width: 100%;
  height: 100%;
}
.blog-card-body {
  padding: 1.5rem;
}
.blog-card-date {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--beer-amber);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.blog-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 0.4rem 0 0.6rem;
  line-height: 1.3;
}
.blog-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
/* ── Himmelfahrt Banner ── */
.himmelfahrt-banner {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border: 2px solid var(--beer-amber);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2.5rem;
}
.himmelfahrt-icon {
  flex-shrink: 0;
  width: 200px;
}
.himmelfahrt-icon svg {
  width: 100%;
  height: auto;
}
.himmelfahrt-text h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--beer-dark);
  margin-bottom: 0.5rem;
}
.himmelfahrt-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.ausfluege-subtitle {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
  .himmelfahrt-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }
  .himmelfahrt-icon { width: 100px; }
}

.blog-card--planned {
  border: 2px dashed var(--beer-amber);
}
.blog-card--planned .blog-card-date {
  color: var(--beer-dark);
}
.blog-card--cancelled {
  opacity: 0.55;
}
.blog-card--cancelled .blog-card-img {
  filter: grayscale(1);
}
.blog-more {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── BIERRANKING ──────────────────────────────────────────── */
.bierranking {
  background: white;
}
.pyramide-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}
.pyramide {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pyramide-level {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  transition: transform 0.2s ease;
}
.pyramide-level:hover {
  transform: scale(1.015);
}
.level-1 {
  background: linear-gradient(135deg, #D97706, #B45309);
  color: white;
  border: 2px solid #92400E;
}
.level-2 {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: white;
}
.level-3 {
  background: linear-gradient(135deg, #FCD34D, #F59E0B);
  color: var(--beer-darker);
}
.level-4 {
  background: linear-gradient(135deg, #FEF3C7, #FCD34D);
  color: var(--beer-dark);
}
.level-5 {
  background: linear-gradient(135deg, #F5F5F4, #E7E5E4);
  color: var(--text-muted);
  border: 1px dashed #CBD5E1;
}
.pyramide-badge {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}
.pyramide-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pyramide-content strong {
  font-weight: 700;
  font-size: 1rem;
}
.pyramide-content span {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Beer Fakten */
.bier-fakten {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid rgba(217, 119, 6, 0.12);
}
.fakten-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  text-align: center;
}
.fakten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.fakt {
  text-align: center;
}
.fakt-zahl {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--beer-amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.fakt-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── MITGLIEDER ───────────────────────────────────────────── */
.mitglieder {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.mitglieder-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.mitglieder-bg svg {
  width: 100%;
  height: 100%;
}
.mitglieder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.mitglied-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(217, 119, 6, 0.1);
  box-shadow: 0 2px 12px rgba(146, 64, 14, 0.07);
  transition: all 0.25s ease;
}
.mitglied-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 119, 6, 0.25);
}
.mitglied-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mitglied-avatar svg {
  width: 60px;
  height: 60px;
}
.mitglied-rolle {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--beer-amber);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.mitglied-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
/* Footer logo image */
.footer-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
  flex-shrink: 0;
}
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
}
.footer-logo-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.footer-motto {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--beer-light);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-bottom: 2rem;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.18s;
}
.footer-links a:hover {
  color: var(--beer-light);
}
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}
.footer-disclaimer {
  margin-top: 0.25rem;
  font-style: italic;
}

/* ── SCROLL REVEAL (JS-enhanced) ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    text-align: center;
  }
  .hero-content {
    padding-bottom: 320px;
  }
  .hero-seal { margin: 0 auto 1.5rem; }
  .hero-sub { margin: 0 auto 2.5rem; }
  .hero-cta-group { justify-content: center; }
  .hero-graphic {
    position: absolute;
    right: 50%;
    transform: translate(50%, 0);
    top: auto;
    bottom: 1.5rem;
  }
}

@media (max-width: 600px) {
  .hero { min-height: auto; padding-top: calc(var(--nav-height) + 1.5rem); }
  .seal-ring { width: 80px; height: 80px; }
  .seal-glow { width: 110px; height: 110px; }
  .hero-content { padding: 1.5rem 1rem 200px; }
  .hero-graphic { bottom: 1rem; }
  .hero-mug { width: clamp(100px, 28vw, 150px); }
  .section { padding: 3rem 0; }
  .section-inner { padding: 0 1rem; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2.2rem); margin-bottom: 0.75rem; }
  .section-intro { margin-bottom: 2rem; }
  .stats-bar { gap: 0.75rem 1rem; padding: 1.25rem 1rem; }
  .stat-number { font-size: 1.4rem; }
  .stat-label { font-size: 0.7rem; }
  .stat-divider { display: none; }
  .paragraphen { grid-template-columns: 1fr; }
  .paragraph-item { padding: 1rem; gap: 0.75rem; }
  .para-num { font-size: 1.3rem; }
  .para-content h4 { font-size: 0.95rem; }
  .para-content p { font-size: 0.82rem; }
  .mission-cards { gap: 1rem; }
  .mission-card { padding: 1.25rem; }
  .mission-card h3 { font-size: 1.05rem; }
  .mission-card p { font-size: 0.88rem; }
  .quote-card { padding: 1.25rem; }
  .quote-card blockquote { font-size: 0.92rem; }
  .pyramide-level { flex-direction: row; padding: 0.75rem 1rem; }
  .pyramide-badge { font-size: 1.4rem; width: 36px; }
  .pyramide-content strong { font-size: 0.88rem; }
  .pyramide-content span { font-size: 0.78rem; }
  .bier-fakten { padding: 1.5rem 1rem; }
  .fakten-title { font-size: 1.2rem; }
  .fakt-zahl { font-size: 1.5rem; }
  .fakt-text { font-size: 0.8rem; }
  .mitglieder-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
  .mitglied-card { padding: 1.25rem 1rem; }
  .mitglied-rolle { font-size: 0.72rem; }
  .mitglied-card p { font-size: 0.8rem; }
  .track-info { max-width: 120px; }
  .track-name { font-size: 0.8rem; }
  .blog-card-body { padding: 1rem; }
  .blog-card-body h3 { font-size: 1rem; }
  .blog-card-body p { font-size: 0.82rem; }
  .btn-primary, .btn-secondary { padding: 0.7rem 1.5rem; font-size: 0.88rem; }
  .footer-inner { padding: 0 1rem; }
  .footer-logo-name { font-size: 1.1rem; }
  .footer-motto { font-size: 0.95rem; }
}

/* ── Scroll-to-Top Button ── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--beer-amber);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  z-index: 999;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--beer-dark);
}
.scroll-top svg {
  width: 22px;
  height: 22px;
}
