:root {
  --ink: #111111;
  --deep: #070708;
  --navy: #10141c;
  --cream: #f4efe5;
  --paper: #fbf8f1;
  --muted: #70685e;
  --line: rgba(17, 17, 17, .13);
  --gold: #b99a55;
  --gold-soft: #d7c18a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, .22);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: radial-gradient(circle at top, rgba(185,154,85,.18), transparent 32%), rgba(7,7,8,.94);
}
.age-gate.is-hidden { display: none; }
.age-card {
  width: min(560px, 100%);
  background: var(--paper);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(185,154,85,.35);
  box-shadow: var(--shadow);
  text-align: center;
}
.age-card h1 { font: 700 clamp(2.4rem, 5vw, 4.2rem)/.9 var(--serif); margin: 10px 0 18px; }
.age-card small { display: block; margin-top: 22px; color: var(--muted); }
.age-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,248,241,.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav {
  max-width: 1220px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: flex; align-items: center; gap: 12px; letter-spacing: .04em; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font: 700 1.15rem var(--serif);
}
.brand-name { font: 700 1.35rem var(--serif); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: .9rem; text-transform: uppercase; letter-spacing: .12em; }
.nav-links a { color: #2c2b28; }
.nav-links a:hover { color: var(--gold); }
.menu-toggle { display: none; background: transparent; border: 1px solid var(--line); padding: 10px 14px; text-transform: uppercase; letter-spacing: .12em; }
.cart-button { border: 1px solid var(--gold); background: transparent; color: var(--ink); padding: 11px 15px; cursor: pointer; text-transform: uppercase; letter-spacing: .12em; }
.cart-button span { color: var(--gold); font-weight: 700; }

.hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7,7,8,.92), rgba(7,7,8,.78) 48%, rgba(7,7,8,.22)),
    radial-gradient(circle at 72% 48%, rgba(185,154,85,.28), transparent 22%),
    linear-gradient(135deg, #141824, #050506 64%);
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 72px 5vw 72px auto;
  width: min(520px, 42vw);
  border: 1px solid rgba(215,193,138,.28);
}
.hero-content { position: relative; z-index: 2; padding: clamp(72px, 9vw, 130px) 0 clamp(72px, 9vw, 130px) clamp(28px, 8vw, 110px); max-width: 760px; }
.eyebrow, .section-label, .product-kicker {
  margin: 0 0 16px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .76rem;
  font-weight: 700;
}
.hero h1 { font: 700 clamp(3.4rem, 7vw, 7.8rem)/.82 var(--serif); letter-spacing: -.04em; margin: 0 0 26px; }
.hero-text { max-width: 600px; color: rgba(255,255,255,.78); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-bottle { position: relative; z-index: 1; display: grid; place-items: center; min-height: 640px; padding-right: 8vw; }
.hero-bottle img { width: min(250px, 38vw); filter: drop-shadow(0 36px 55px rgba(0,0,0,.55)); transform: rotate(-2deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: #101010; border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.45); color: var(--white); }
.btn-muted { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-small { min-height: 40px; padding: 0 16px; font-size: .74rem; }

.intro, .products, .service, .contact, .legal-note, .imprint { max-width: 1220px; margin: 0 auto; padding: clamp(70px, 9vw, 120px) 24px; }
.intro-grid { display: grid; grid-template-columns: minmax(250px, .8fr) minmax(300px, 1fr); gap: clamp(36px, 7vw, 100px); align-items: start; }
.intro h2, .section-heading h2, .service h2, .contact h2, .legal-note h2, .imprint h2 { font: 700 clamp(2.5rem, 5vw, 5rem)/.88 var(--serif); letter-spacing: -.03em; margin: 0; }
.intro p, .section-heading p, .service p, .contact p, .legal-note p, .imprint p { color: var(--muted); }

.quote-band {
  background: var(--deep);
  color: var(--white);
  padding: clamp(56px, 8vw, 92px) 24px;
  text-align: center;
  border-top: 1px solid rgba(185,154,85,.28);
  border-bottom: 1px solid rgba(185,154,85,.28);
}
.quote-band p { max-width: 980px; margin: 0 auto 18px; font: 600 clamp(2.2rem, 5vw, 5.4rem)/.9 var(--serif); }
.quote-band span { color: var(--gold-soft); letter-spacing: .18em; text-transform: uppercase; font-size: .78rem; }

.section-heading { display: grid; grid-template-columns: .8fr 1fr; gap: clamp(24px, 5vw, 80px); align-items: end; margin-bottom: 46px; }
.section-heading .section-label { grid-column: 1 / -1; margin-bottom: -18px; color: var(--gold); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
  background: #fffaf0;
  border: 1px solid var(--line);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 22px 60px rgba(0,0,0,.12); border-color: rgba(185,154,85,.45); }
.product-card.featured { background: linear-gradient(180deg, #fffaf0, #f3ead9); border-color: rgba(185,154,85,.45); }
.product-media { min-height: 340px; display: grid; place-items: center; padding: 34px; background: linear-gradient(180deg, #f3eadc, #fffaf0); }
.product-media img { width: 116px; filter: drop-shadow(0 20px 30px rgba(0,0,0,.18)); }
.product-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font: 700 2.35rem/.95 var(--serif); margin: 0 0 12px; }
.product-body p { color: var(--muted); }
.product-kicker { color: var(--gold); margin-bottom: 10px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: auto 0 26px; }
.product-meta span { border: 1px solid var(--line); padding: 6px 10px; font-size: .75rem; color: var(--muted); }
.product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line); padding-top: 20px; }
.product-bottom strong { font-size: 1.15rem; }

.service { display: grid; grid-template-columns: .95fr 1.05fr; gap: 24px; align-items: stretch; }
.service-card { padding: clamp(34px, 5vw, 60px); }
.service-card.dark { background: var(--navy); color: var(--white); border: 1px solid rgba(185,154,85,.28); }
.service-card.dark p { color: rgba(255,255,255,.72); }
.service-list { display: grid; gap: 14px; }
.service-list > div { background: #fffaf0; border: 1px solid var(--line); padding: 28px; }
.service-list span { color: var(--gold); font: 700 1.3rem var(--serif); }
.service-list h3 { margin: 10px 0 6px; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .1em; }
.service-list p { margin: 0; }

.legal-note { padding-top: 40px; }
.legal-note h2 { margin-bottom: 28px; }
.legal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.legal-grid p { margin: 0; padding: 22px; border: 1px solid var(--line); background: #fffaf0; }
.legal-grid strong { color: var(--ink); }

.imprint { padding-top: 40px; }
.imprint-card {
  background: #fffaf0;
  border: 1px solid var(--line);
  padding: clamp(28px, 5vw, 58px);
}
.imprint-head {
  display: grid;
  grid-template-columns: minmax(240px, .75fr) minmax(240px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}
.imprint-head p { margin: 0; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; }
.imprint-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.imprint-grid > div { border: 1px solid var(--line); background: var(--paper); padding: 22px; }
.imprint-grid h3 { margin: 0 0 12px; font-size: .9rem; text-transform: uppercase; letter-spacing: .12em; }
.imprint-grid p { margin: 0; }
.imprint a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.imprint-warning {
  margin-top: 18px;
  border: 1px solid rgba(185,154,85,.45);
  background: #f4ead5;
  color: var(--muted);
  padding: 18px 20px;
  line-height: 1.6;
}
.imprint-warning strong { color: var(--ink); }

.contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 6vw, 88px); align-items: start; }
.contact-form { display: grid; gap: 16px; background: #fffaf0; border: 1px solid var(--line); padding: clamp(24px, 4vw, 42px); }
.contact-form label { display: grid; gap: 8px; font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--line); background: var(--paper); padding: 14px 15px; outline: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }

.cart-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(460px, 100%);
  background: var(--paper);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .22s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.cart-panel.is-open { transform: translateX(0); }
.cart-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 180; display: none; }
.cart-backdrop.is-open { display: block; }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart-header h2 { margin: 0; font: 700 2.2rem var(--serif); }
.cart-close { border: 0; background: transparent; font-size: 2rem; cursor: pointer; }
.cart-items { padding: 18px 24px; display: grid; gap: 12px; overflow: auto; flex: 1; }
.cart-item { display: grid; grid-template-columns: 1fr auto; gap: 8px; border: 1px solid var(--line); padding: 14px; background: #fffaf0; }
.cart-item strong { display: block; }
.cart-item small { color: var(--muted); }
.cart-item button { grid-row: span 2; border: 0; background: transparent; color: var(--muted); cursor: pointer; }
.cart-footer { padding: 22px 24px; border-top: 1px solid var(--line); display: grid; gap: 12px; }
.cart-footer p { margin: 0; font-weight: 800; }
.cart-footer small { color: var(--muted); }

.site-footer {
  background: var(--deep);
  color: var(--white);
  padding: 38px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
}
.site-footer p { margin: 8px 0 0; color: rgba(255,255,255,.64); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; color: var(--gold-soft); }
.fineprint { grid-column: 1 / -1; font-size: .8rem; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding-right: 28px; }
  .hero-bottle { min-height: 420px; padding: 0 24px 70px; }
  .hero-bottle img { width: 180px; }
  .intro-grid, .section-heading, .service, .contact, .imprint-head { grid-template-columns: 1fr; }
  .product-grid, .legal-grid, .imprint-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .nav { align-items: flex-start; }
  .nav-links {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.is-open { display: flex; }
  .site-footer { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .product-media { min-height: 270px; }
}

/* Patch 2026-06-24: dekorativen Hero-Rahmen entfernen */
.hero::before {
  display: none;
}

/* Mehrsprachigkeit */
.age-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.age-topline .eyebrow { margin-bottom: 0; }
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  padding: 3px;
  background: rgba(255,255,255,.32);
}
.language-switch button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 7px 9px;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.language-switch button.is-active {
  background: var(--gold);
  color: #101010;
}
.nav-links .language-switch {
  margin-left: -8px;
}

@media (max-width: 760px) {
  .nav-links .language-switch { margin-left: 0; width: max-content; }
  .age-topline { align-items: flex-start; }
}

/* Patch 2026-06-24 v2: Flaggen-Sprachumschalter */
.language-switch {
  gap: 5px;
}
.language-switch button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 32px;
  white-space: nowrap;
}
.language-switch button img {
  width: 22px;
  height: 15px;
  display: block;
  border: 1px solid rgba(0,0,0,.18);
  box-shadow: 0 1px 2px rgba(0,0,0,.12);
}
.language-switch button span {
  color: inherit;
}
@media (max-width: 760px) {
  .language-switch {
    flex-wrap: wrap;
  }
}
