:root{
  --bg: #0b0d10;
  --panel: rgba(255,255,255,.06);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --faint: rgba(255,255,255,.55);
  --line: rgba(255,255,255,.14);
  --accent: #b0122a;
  --accent2:#e2b24a;
  --shadow: 0 18px 55px rgba(0,0,0,.55);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(176,18,42,.22), transparent 60%),
    radial-gradient(900px 520px at 90% 10%, rgba(226,178,74,.18), transparent 62%),
    radial-gradient(1100px 700px at 50% 110%, rgba(255,255,255,.06), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}
a{ color: inherit; text-decoration: none; }
.wrap{ max-width: 1100px; margin: 0 auto; padding: 22px; }

header{
  position: sticky; top:0; z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11,13,16,.60);
  border-bottom: 1px solid var(--line);
}
.topbar{
  display:flex; align-items:center; justify-content:space-between;
  gap: 16px; padding: 12px 22px;
  max-width:1100px; margin:0 auto;
}
.brand{ display:flex; align-items:center; gap: 12px; font-weight: 900; letter-spacing: .4px; }
.logoSmall{
  height: 40px; width: auto; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 10px 30px rgba(0,0,0,.40);
  background: rgba(255,255,255,.03);
}
nav{ display:flex; gap: 14px; flex-wrap: wrap; font-size: 14px; color: var(--muted); justify-content: flex-end; }
nav a{ padding: 8px 10px; border-radius: 12px; border: 1px solid transparent; }
nav a:hover{ color: var(--text); border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.04); }
@media (max-width: 900px){ nav{ justify-content: flex-start; } }

.card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero{ padding: 52px 0 24px; }
.heroGrid{ display:grid; grid-template-columns: 1.25fr .75fr; gap: 18px; align-items: stretch; }
@media (max-width: 900px){ .heroGrid{ grid-template-columns: 1fr; } }
.heroMain{ padding: 28px; position: relative; overflow:hidden; min-height: 320px; }
.rune{
  position:absolute; inset:auto -90px -120px auto;
  width: 360px; height: 360px; border-radius: 999px;
  background: conic-gradient(from 180deg, rgba(176,18,42,.0), rgba(176,18,42,.35), rgba(226,178,74,.22), rgba(176,18,42,.0));
  opacity: .9; border: 1px solid rgba(255,255,255,.10); transform: rotate(18deg);
}
.heroLogo{
  width: 180px; max-width: 100%;
  border-radius: 18px; border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
  margin-bottom: 14px; background: rgba(255,255,255,.03);
}
@media (max-width: 520px){ .heroLogo{ width: 140px; } }
.eyebrow{
  display:inline-flex; gap:10px; align-items:center;
  padding: 6px 10px; border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--muted); font-size: 13px;
}
.dot{ width:8px; height:8px; border-radius:999px; background: var(--accent2); box-shadow: 0 0 0 6px rgba(226,178,74,.12); }
h1{ margin: 14px 0 8px; font-size: 48px; line-height: 1.05; letter-spacing: -0.6px; }
@media (max-width: 520px){ h1{ font-size: 40px; } }
.claim{ font-size: 18px; color: var(--muted); max-width: 60ch; margin-top: 10px; }
.buttons{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 14px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  color: var(--text); font-weight: 800; font-size: 14px;
}
.btn:hover{ background: rgba(255,255,255,.07); }
.btn.primary{
  background: linear-gradient(135deg, rgba(176,18,42,.95), rgba(176,18,42,.45));
  border-color: rgba(176,18,42,.70);
  box-shadow: 0 14px 40px rgba(176,18,42,.25);
}
.badgeRow{ margin-top:16px; display:flex; gap:10px; flex-wrap:wrap; }
.badge{
  display:inline-flex; align-items:center; gap: 8px;
  padding: 8px 10px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--muted); font-size: 12px; white-space: nowrap;
}
.heroSide{ padding: 22px; display:flex; flex-direction: column; gap: 14px; justify-content: space-between; }
.miniTitle{ font-weight: 900; letter-spacing: .4px; }
.pillRow{ display:flex; flex-wrap: wrap; gap: 8px; }
.pill{ font-size: 12px; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); color: var(--muted); }
blockquote{ margin: 0; padding: 14px 14px; border-left: 3px solid var(--accent2); background: rgba(255,255,255,.04); border-radius: 12px; color: rgba(255,255,255,.84); font-weight: 700; }
blockquote span{ display:block; margin-top: 6px; font-size: 12px; color: var(--faint); font-weight: 600; }

section{ padding: 26px 0; }
.sectionHead{ display:flex; align-items:flex-end; justify-content:space-between; gap: 16px; margin-bottom: 12px; }
h2{ margin:0; font-size: 24px; letter-spacing: -0.2px; }
.sub{ margin: 0; color: var(--muted); max-width: 70ch; }

.grid{ display:grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
.col-6{ grid-column: span 6; }
.col-4{ grid-column: span 4; }
.col-8{ grid-column: span 8; }
@media (max-width: 900px){ .col-6,.col-4,.col-8{ grid-column: span 12; } }

.panel{ padding: 18px; }
.kicker{ font-size: 12px; color: var(--faint); letter-spacing: .18em; text-transform: uppercase; margin-bottom: 6px; }
.list{ margin: 12px 0 0; padding-left: 18px; color: var(--muted); }
.list li{ margin: 6px 0; }
.hr{ height:1px; background: var(--line); margin: 10px 0 0; }

.beerCard{ overflow:hidden; display:flex; flex-direction: column; min-height: 220px; }
.beerImgBtn{ border:0; padding:0; margin:0; background:transparent; cursor: zoom-in; }
.beerImg{
  width:100%;
  height: 220px;
  object-fit: contain;
  background: rgba(0,0,0,.22);
  border-bottom: 1px solid var(--line);
  display:block;
}
.beerBody{ padding: 16px 18px 18px; display:flex; flex-direction: column; gap: 10px; flex: 1; }
.beerTop{ display:flex; align-items:flex-start; justify-content:space-between; gap: 10px; }
.beerName{ font-weight: 900; font-size: 18px; letter-spacing: .2px; margin: 0; }
.tag{
  font-size: 12px; padding: 6px 10px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--muted); white-space: nowrap;
}
.beerDesc{ margin: 0; color: var(--muted); }
.beerQuote{ margin-top:auto; padding-top: 10px; border-top: 1px dashed rgba(255,255,255,.14); color: rgba(255,255,255,.84); font-weight: 800; font-size: 13px; }

.gallery{ display:grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
.g1{ grid-column: span 7; }
.g2{ grid-column: span 5; }
.g3{ grid-column: span 4; }
.g4{ grid-column: span 8; }
@media (max-width: 900px){ .g1,.g2,.g3,.g4{ grid-column: span 12; } }

.galleryItem{ position: relative; overflow:hidden; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow); background: rgba(255,255,255,.03); }
.galleryBtn{ width:100%; border:0; padding:0; margin:0; background:transparent; cursor: zoom-in; display:block; }
.galleryImg{
  width:100%;
  height: 320px;
  object-fit: contain;
  background: rgba(0,0,0,.22);
  display:block;
}
.zoomHint{
  position:absolute; right:12px; bottom:12px;
  font-size: 12px; color: rgba(255,255,255,.82);
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.14);
  padding: 6px 10px; border-radius: 999px;
  backdrop-filter: blur(6px);
}

.lightbox{
  position: fixed; inset:0;
  display:none;
  align-items:center; justify-content:center;
  background: rgba(0,0,0,.78);
  z-index: 999;
  padding: 18px;
}
.lightbox.open{ display:flex; }
.lightboxPanel{
  max-width: min(1100px, 96vw);
  max-height: 90vh;
  background: rgba(11,13,16,.75);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,.70);
  overflow:hidden;
  position: relative;
}
.lightboxImg{
  display:block;
  width:100%;
  max-height: 78vh;
  object-fit: contain;
  background: rgba(0,0,0,.35);
}
.lightboxCaption{
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
}
.closeBtn{
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-radius: 12px;
  padding: 8px 10px;
  font-weight: 800;
  cursor: pointer;
}
.closeBtn:hover{ background: rgba(255,255,255,.08); }

footer{ padding: 24px 0 40px; border-top: 1px solid var(--line); margin-top: 18px; color: var(--muted); font-size: 14px; }
.fine{ margin-top: 8px; color: var(--faint); font-size: 12px; }

/* Formular Styling */
form input, form textarea {
  font-family: inherit;
  font-size: 14px;
}
form label {
  color: var(--text);
}
form button {
  margin-top: 8px;
}

/* Tablet Ansicht */
@media (max-width: 768px) {
  .wrap { padding: 16px; }
  .topbar { padding: 10px 16px; }
  .hero { padding: 40px 0 16px; }
  .heroGrid { gap: 14px; }
  .heroMain { padding: 20px; }
  h1 { font-size: 42px; }
  .claim { font-size: 16px; }
  .btn { padding: 10px 12px; font-size: 13px; }
  .panel { padding: 14px; }
  .beerImg { height: 180px; }
  .galleryImg { height: 280px; }
  .lightbox { padding: 12px; }
}

/* Smartphone Ansicht */
@media (max-width: 480px) {
  .wrap { padding: 12px; }
  .topbar { padding: 8px 12px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .brand { font-size: 16px; }
  .logoSmall { height: 32px; }
  nav { justify-content: flex-start; font-size: 13px; gap: 10px; }
  nav a { padding: 6px 8px; }
  .hero { padding: 32px 0 12px; }
  .heroGrid { grid-template-columns: 1fr; gap: 12px; }
  .heroMain { padding: 16px; min-height: 280px; }
  .heroLogo { width: 120px; }
  h1 { font-size: 32px; line-height: 1.1; }
  .claim { font-size: 14px; max-width: 100%; }
  .buttons { flex-direction: column; align-items: stretch; }
  .btn { padding: 10px 12px; font-size: 14px; }
  .badgeRow { flex-direction: column; align-items: flex-start; gap: 6px; }
  .miniTitle { font-size: 14px; }
  .pillRow { gap: 6px; }
  .pill { font-size: 11px; padding: 4px 8px; }
  blockquote { padding: 10px 12px; font-size: 13px; }
  .sectionHead { flex-direction: column; align-items: flex-start; gap: 8px; }
  h2 { font-size: 20px; }
  .sub { font-size: 13px; }
  .grid { gap: 8px; }
  .panel { padding: 12px; }
  .kicker { font-size: 11px; }
  .list { padding-left: 14px; }
  .list li { margin: 4px 0; }
  .beerCard { min-height: 180px; }
  .beerImg { height: 160px; }
  .beerBody { padding: 12px 14px 14px; }
  .beerName { font-size: 16px; }
  .tag { font-size: 11px; padding: 4px 8px; }
  .beerDesc { font-size: 13px; }
  .beerQuote { font-size: 12px; padding-top: 8px; }
  .gallery { gap: 6px; }
  .galleryImg { height: 240px; }
  .zoomHint { font-size: 11px; padding: 4px 8px; }
  .lightboxPanel { max-width: 95vw; max-height: 85vh; }
  .lightboxImg { max-height: 70vh; }
  .lightboxCaption { padding: 10px 12px; font-size: 13px; }
  .closeBtn { padding: 6px 8px; font-size: 12px; }
  footer { padding: 16px 0 24px; font-size: 13px; }
  .fine { font-size: 11px; }
  form input, form textarea { font-size: 16px; }
  form button { width: 100%; }
}