:root {
  --bg: #f6efe1;
  --bg-soft: #fbf7ee;
  --bg-dark: #121110;
  --text: #1f1a17;
  --muted: #5c5046;
  --gold: #c49a4a;
  --gold-2: #b78634;
  --gold-line: rgba(196, 154, 74, 0.34);
  --red: #8f1e1f;
  --white: #fffdfa;
  --shadow: 0 20px 40px rgba(18, 17, 16, 0.08);
  --shadow-strong: 0 24px 60px rgba(18, 17, 16, 0.16);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7f1e5 0%, #f4ebdb 100%);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 100;
  background: #111;
  color: #fff;
  padding: .8rem 1rem;
}
.skip-link:focus { left: 1rem; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(18, 17, 16, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(196,154,74,.16);
}
.nav-row {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: rgba(255,255,255,.92);
  padding: 5px;
  border-radius: 4px;
}
.brand-copy strong {
  display: block;
  color: #fff6e3;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 500;
  letter-spacing: .06em;
}
.brand-copy em {
  color: var(--gold);
  font-style: italic;
}
.brand-copy span {
  display: block;
  color: var(--gold);
  letter-spacing: .28em;
  font-size: .68rem;
  margin-top: 4px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
}
.main-nav a {
  color: rgba(255, 246, 227, 0.9);
  position: relative;
  padding: .4rem 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -.25rem;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
  background: var(--gold);
  transition: width .18s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(196,154,74,.42);
  background: transparent;
  padding: 8px 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff6e3;
}

.section-dark {
  background:
    radial-gradient(circle at 20% 10%, rgba(196,154,74,.15), transparent 28%),
    linear-gradient(135deg, #151311 0%, #1d1815 40%, #101010 100%);
  color: #fff7e7;
}
.hero {
  padding: clamp(60px, 8vw, 110px) 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold);
}
.hero h1,
.section-header h2,
.section-intro h2,
.contact-copy h2,
.menu-full-head h3,
.legal-grid h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: -.03em;
  font-weight: 500;
}
.hero h1 { max-width: 760px; }
.hero-text {
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  max-width: 620px;
  color: rgba(255,247,231,.88);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(18,17,16,.18);
}
.btn-primary {
  background: linear-gradient(180deg, #a62627, var(--red));
  color: #fff7e7;
}
.btn-secondary {
  background: transparent;
  color: #fff7e7;
  border-color: rgba(196,154,74,.48);
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-points li {
  padding: 8px 14px;
  border: 1px solid rgba(196,154,74,.35);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  font-size: .95rem;
}
.hero-card {
  position: relative;
  border: 1px solid rgba(196,154,74,.44);
  padding: 18px;
  box-shadow: var(--shadow-strong);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}
.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(196,154,74,.22);
}
.hero-card::before { inset: 10px 10px auto auto; width: 80px; height: 80px; border-left: 0; border-bottom: 0; }
.hero-card::after { inset: auto auto 10px 10px; width: 110px; height: 110px; border-right: 0; border-top: 0; }
.hero-card img { width: 100%; }
.hero-card-badge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  background: rgba(18,17,16,.92);
  border: 1px solid rgba(196,154,74,.46);
  padding: 14px 18px;
  min-width: 210px;
}
.hero-card-badge span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .74rem;
}
.hero-card-badge strong {
  display: block;
  margin-top: 4px;
  font-size: 1.08rem;
  color: #fff7e7;
}

.usp-strip {
  padding: 0 0 26px;
  background: linear-gradient(180deg, #151311 0%, #f4ebdb 100%);
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  transform: translateY(-24px);
}
.usp-item,
.why-box,
.benefit-card,
.benefit-highlight,
.menu-preview-card,
.menu-full-panel,
.event-card,
.step-card,
.contact-form,
.contact-cards div,
.legal-grid article,
.cocktail-card,
.faq-list details {
  background: rgba(255, 253, 250, 0.82);
  border: 1px solid var(--gold-line);
  box-shadow: var(--shadow);
}
.usp-item {
  padding: 22px 24px;
}
.usp-item strong {
  display: block;
  color: var(--red);
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.usp-item p { margin: 0; color: var(--muted); }

.section { padding: clamp(70px, 8vw, 112px) 0; }
.light-section { background: linear-gradient(180deg, #fbf7ee 0%, #f4ebdb 100%); }
.section-header,
.section-intro { max-width: 900px; }
.section-header.center { text-align: center; margin: 0 auto 40px; }
.section-intro p:last-child,
.section-header p:last-child,
.contact-copy p { font-size: 1.08rem; color: var(--muted); }
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 30px;
  align-items: center;
}
.why-box { padding: 30px; }
.check-list {
  display: grid;
  gap: 14px;
}
.check-list div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(196,154,74,.18);
}
.check-list div:last-child { border-bottom: 0; padding-bottom: 0; }
.check-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(143,30,31,.08);
  border: 1px solid rgba(196,154,74,.34);
  color: var(--red);
  font-weight: 700;
}
.check-list p { margin: 0; font-size: 1.04rem; }

.benefits-section { background: var(--bg); }
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.benefit-card,
.benefit-highlight { padding: 28px; }
.benefit-card h3,
.benefit-highlight h3,
.menu-preview-body h3,
.event-card h3,
.step-card h3,
.contact-cards span,
.cocktail-card h4 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.1;
}
.benefit-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}
.benefit-card li { margin: 10px 0; }
.benefit-highlight {
  background: linear-gradient(180deg, rgba(18,17,16,.98), rgba(33,29,25,.96));
  color: #fff7e7;
}
.benefit-highlight p { color: rgba(255,247,231,.85); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.text-link::after { content: "→"; }

.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.menu-preview-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 220px auto;
}
.menu-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-preview-body { padding: 22px; }
.mini-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(196,154,74,.28);
  background: rgba(196,154,74,.08);
  border-radius: 999px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .75rem;
  font-weight: 700;
}
.menu-preview-body p {
  margin: 12px 0 0;
  color: var(--muted);
}
.menu-preview-body ul {
  margin: 16px 0 0;
  padding-left: 18px;
}
.menu-preview-body li { margin: 6px 0; }
.menu-preview-body a,
.contact-cards a {
  color: var(--red);
}
.menu-preview-body a {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .88rem;
}

.menu-full-panel {
  margin-top: 34px;
  padding: 30px;
}
.menu-full-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}
.menu-full-head h3 { font-size: clamp(1.9rem, 4vw, 3rem); }
.menu-full-head strong {
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(196,154,74,.08);
  border: 1px solid rgba(196,154,74,.32);
  color: var(--red);
  white-space: nowrap;
}
.menu-toolbar {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(196,154,74,.22);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}
.menu-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.menu-filter button {
  border: 1px solid rgba(196,154,74,.36);
  background: rgba(255,255,255,.65);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, color .16s ease;
}
.menu-filter button:hover,
.menu-filter button.active {
  background: linear-gradient(180deg, #a62627, var(--red));
  color: #fff7e7;
  transform: translateY(-1px);
}
.cocktail-search {
  display: grid;
  gap: 6px;
  min-width: min(100%, 320px);
}
.cocktail-search span,
.contact-form span,
.contact-cards span {
  display: block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  font-weight: 700;
  color: var(--gold-2);
}
.cocktail-search input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(196,154,74,.34);
  background: rgba(255,255,255,.76);
  padding: 14px 15px;
  color: var(--text);
}
.cocktail-search input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid var(--gold-2);
  border-color: var(--gold-2);
}
.cocktail-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.cocktail-card { padding: 18px; }
.cocktail-card header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
}
.cocktail-card h4 { color: var(--red); font-size: 1.22rem; }
.favorite-mark { color: var(--gold-2); margin-left: 6px; font-size: .9em; }
.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(196,154,74,.10);
  color: var(--gold-2);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.ingredients { color: var(--muted); }
.note { color: var(--red); font-size: .95rem; }
.menu-note { margin: 20px 0 0; color: var(--muted); }

.events-section { background: linear-gradient(180deg, #111 0%, #181512 100%); color: #fff7e7; }
.events-section .section-header h2,
.events-section .section-header p:last-child,
.events-section .event-card h3,
.events-section .event-card p { color: inherit; }
.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.event-card {
  overflow: hidden;
  background: rgba(255,255,255,.05);
}
.event-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.event-card div { padding: 22px; }
.event-card p { color: rgba(255,247,231,.82); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step-card { padding: 24px; }
.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(196,154,74,.34);
  background: rgba(196,154,74,.1);
  color: var(--red);
  font-weight: 700;
  margin-bottom: 16px;
}
.step-card p { margin: 12px 0 0; color: var(--muted); }

.faq-section { background: var(--bg); }
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}
.faq-list { display: grid; gap: 14px; }
.faq-list details { padding: 18px 20px; }
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}
.faq-list p { margin: 12px 0 0; color: var(--muted); }

.contact-section { background: linear-gradient(180deg, #fbf7ee 0%, #f2e7d3 100%); }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}
.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.contact-cards div { padding: 18px 20px; }
.contact-cards p,
.contact-cards a { margin: 8px 0 0; color: var(--text); }
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
}
.contact-form label { display: grid; gap: 8px; }
.contact-form textarea { min-height: 160px; resize: vertical; }
.full-width { grid-column: 1 / -1; }
.form-note {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: .94rem;
}

.site-footer {
  background: #111;
  color: #f8edd8;
  border-top: 1px solid rgba(196,154,74,.26);
}
.footer-row {
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-row nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-row a { color: var(--gold); }

.legal-section {
  background: #181512;
  color: #f8edd8;
  padding: 38px 0 54px;
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.legal-grid article { padding: 22px; background: rgba(255,255,255,.03); }
.legal-grid h2 { color: var(--gold); font-size: 1.6rem; }
.legal-grid p { margin: 10px 0 0; color: rgba(248,237,216,.86); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1120px) {
  .hero-grid,
  .two-col,
  .faq-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .usp-grid,
  .benefit-cards,
  .menu-preview-grid,
  .event-grid,
  .steps-grid,
  .cocktail-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px 22px;
    background: rgba(18,17,16,.98);
    border-bottom: 1px solid rgba(196,154,74,.18);
  }
  .main-nav.open { display: flex; }

  .menu-full-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form,
  .legal-grid,
  .cocktail-list { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .nav-row { min-height: 82px; }
  .brand img { width: 58px; height: 58px; }
  .brand-copy strong { font-size: 1rem; }
  .brand-copy span { font-size: .57rem; letter-spacing: .22em; }
  .hero h1,
  .section-header h2,
  .section-intro h2,
  .contact-copy h2,
  .menu-full-head h3 { font-size: clamp(2.1rem, 10vw, 3.3rem); }
  .hero-card-badge {
    position: static;
    min-width: 0;
    margin-top: 14px;
  }
  .usp-grid,
  .benefit-cards,
  .menu-preview-grid,
  .event-grid,
  .steps-grid,
  .legal-grid { grid-template-columns: 1fr; }
  .menu-full-panel,
  .contact-form,
  .benefit-card,
  .benefit-highlight,
  .why-box,
  .step-card,
  .contact-cards div,
  .legal-grid article,
  .usp-item { padding-left: 20px; padding-right: 20px; }
}

/* ---------------------------------------------------------
   MOBILE FIX: Menü-Karten und Bilder sauber trennen
   --------------------------------------------------------- */
.menu-preview-card img {
  height: 220px;
  object-fit: cover;
  object-position: left center;
}

.menu-preview-body {
  position: relative;
  z-index: 1;
  background: rgba(255, 253, 250, 0.96);
}

@media (max-width: 720px) {
  .section {
    padding: 56px 0;
  }

  .section-header.center {
    margin-bottom: 28px;
  }

  .menu-preview-grid {
    gap: 16px;
  }

  .menu-preview-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: 0;
    background: rgba(255, 253, 250, 0.96);
  }

  .menu-preview-card img {
    width: 92px;
    height: 100%;
    min-height: 235px;
    object-fit: cover;
    object-position: left center;
  }

  .menu-preview-body {
    padding: 18px 16px;
    background: rgba(255, 253, 250, 0.98);
  }

  .mini-tag {
    padding: 5px 9px;
    font-size: .63rem;
    letter-spacing: .07em;
  }

  .menu-preview-body h3 {
    margin-top: 10px;
    font-size: 1.42rem;
    line-height: 1.08;
  }

  .menu-preview-body p {
    margin-top: 9px;
    font-size: .98rem;
    line-height: 1.45;
  }

  .menu-preview-body ul {
    list-style: none;
    padding: 0;
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .menu-preview-body li {
    margin: 0;
    padding: 5px 9px;
    border: 1px solid rgba(196,154,74,.28);
    border-radius: 999px;
    background: rgba(246,239,225,.72);
    font-size: .9rem;
    line-height: 1.2;
  }

  .menu-preview-body a {
    margin-top: 16px;
    font-size: .82rem;
    letter-spacing: .06em;
  }

  .menu-full-panel {
    padding: 22px 16px;
  }

  .menu-filter button {
    padding: 9px 12px;
    font-size: .92rem;
  }

  .cocktail-card {
    padding: 16px;
  }

  .cocktail-card header {
    display: block;
  }

  .cocktail-card .tag {
    margin-top: 8px;
  }
}

@media (max-width: 420px) {
  .menu-preview-card {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .menu-preview-card img {
    width: 78px;
    min-height: 250px;
  }

  .menu-preview-body {
    padding: 16px 14px;
  }

  .menu-preview-body h3 {
    font-size: 1.28rem;
  }

  .menu-preview-body p {
    font-size: .93rem;
  }

  .menu-preview-body li {
    font-size: .84rem;
    padding: 5px 8px;
  }
}
