/* =================================================================
   LIEBLINGSKÜCHE — shared styles, themed via body class
   ================================================================= */

:root{
  --bg: #3a4530;
  --bg-deep: #2e3a26;
  --bg-soft: #4a5640;
  --fg: #f0e7d6;
  --fg-soft: rgba(240,231,214,.85);
  --accent: #f0e7d6;
  --ink: #1c2118;
  --line: rgba(240,231,214,.22);
  --cream-block: #ece2cf;
  --cream-block-ink: #1c2118;
}

/* ---------- THEME: BUSINESS (deep navy/slate) ---------- */
body.theme-business{
  --bg: #1f2a3a;
  --bg-deep: #15202d;
  --bg-soft: #2a3648;
  --fg: #e8e2d4;
  --fg-soft: rgba(232,226,212,.82);
  --accent: #c9a96a;
  --ink: #0e1620;
  --line: rgba(232,226,212,.18);
  --cream-block: #e8e2d4;
  --cream-block-ink: #15202d;
}

/* ---------- THEME: FINGERFOOD (terracotta) ---------- */
body.theme-fingerfood{
  --bg: #a04a28;
  --bg-deep: #7e3818;
  --bg-soft: #b85a36;
  --fg: #f6e8d0;
  --fg-soft: rgba(246,232,208,.85);
  --accent: #f6e8d0;
  --ink: #2a0e04;
  --line: rgba(246,232,208,.22);
  --cream-block: #f3e3c8;
  --cream-block-ink: #2a0e04;
}

/* ---------- THEME: HOCHZEITEN (champagne / blush) ---------- */
body.theme-hochzeiten{
  --bg: #e8dcc4;
  --bg-deep: #d8c9aa;
  --bg-soft: #efe4d0;
  --fg: #2c2418;
  --fg-soft: rgba(44,36,24,.78);
  --accent: #5c4a2e;
  --ink: #1c160c;
  --line: rgba(44,36,24,.22);
  --cream-block: #3a4530;
  --cream-block-ink: #f0e7d6;
}
/* Light theme — invert button + audio pill so they stay legible */
body.theme-hochzeiten .cta-btn{
  background: var(--ink);
  color: #f0e7d6;
}
body.theme-hochzeiten .cta-btn:hover{ filter: brightness(1.4); }
body.theme-hochzeiten .audio-pill{
  background: var(--ink);
  color: #f0e7d6;
}
body.theme-hochzeiten .audio-icon{
  background: #f0e7d6;
  color: var(--ink);
}
body.theme-hochzeiten .audio-icon svg{ fill: var(--ink); }
body.theme-hochzeiten .audio-bars span{ background: #f0e7d6; }

/* ---------- THEME: GETRÄNKE & SERVICE (deep wine) ---------- */
body.theme-getraenke{
  --bg: #4d1e2a;
  --bg-deep: #361218;
  --bg-soft: #5d2632;
  --fg: #f3e2cc;
  --fg-soft: rgba(243,226,204,.82);
  --accent: #d8a85a;
  --ink: #1f0808;
  --line: rgba(243,226,204,.18);
  --cream-block: #f1e0c9;
  --cream-block-ink: #1f0808;
}

/* =================================================================
   BASE
   ================================================================= */
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight:400;
  font-size:18px;
  line-height:1.65;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  transition: background .4s ease, color .4s ease;
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none;transition:opacity .25s ease}
a:hover{opacity:.7}

.display, .brand, h1,h2,h3,h4,
.section-title, .nav, .hero-eyebrow, .intro-eyebrow,
.signature, .press-eyebrow, .footer-grid h4, .footer-bottom,
.cta-btn, .audio-pill{
  font-family:'Cormorant SC', 'Cormorant Garamond', Georgia, serif;
  font-weight:400;
}

/* =================================================================
   HEADER
   ================================================================= */
header{
  background: var(--bg);
  padding: 38px 64px 32px;
  position: relative;
}
.header-inner{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:32px;
  max-width: 1480px;
  margin: 0 auto;
}
.header-left{display:flex;gap:24px;align-items:center}
.header-right{display:flex;gap:28px;align-items:center;justify-content:flex-end}
.header-center{display:flex;flex-direction:column;align-items:center;gap:14px}
.brand{
  font-size: 32px;
  letter-spacing:.18em;
  color: var(--fg);
  line-height:1;
  white-space:nowrap;
}
.brand-logo{ width: 52px; height: 52px; margin-bottom: 4px; }
.brand-logo .stroke{ stroke: var(--fg); }
.brand-logo .fill  { fill:   var(--fg); }
.nav{
  display:flex;
  gap: 38px;
  font-family:'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--fg);
}
.nav a{position:relative;padding:4px 0}
.nav a.active{font-style:italic}
.nav a.active::after{
  content:'';
  position:absolute;left:0;right:0;bottom:-2px;
  height:1px;background: var(--fg);
}
.social{ display:flex; gap:18px; color: var(--fg) }
.social svg{width:18px;height:18px;fill: var(--fg)}
.login{
  font-family:'Cormorant Garamond', serif;
  font-size:18px;
  color: var(--fg);
}
.cta-btn{
  background: var(--fg);
  color: var(--ink);
  padding: 16px 30px;
  font-size: 17px;
  border:none;
  cursor:pointer;
  letter-spacing:.04em;
  display:inline-block;
  transition: all .3s ease;
}
.cta-btn:hover{ filter: brightness(1.08); transform:translateY(-1px); opacity:1 }

/* =================================================================
   HERO
   ================================================================= */
.hero{
  background: var(--bg);
  padding: 70px 64px 80px;
  text-align:center;
}
.hero-eyebrow{
  font-size: 15px;
  letter-spacing: .32em;
  color: var(--fg);
  opacity:.92;
  margin-bottom: 36px;
}
.hero h1{
  font-size: clamp(48px, 7vw, 102px);
  line-height: 1.04;
  letter-spacing: .02em;
  color: var(--fg);
  max-width: 1200px;
  margin: 0 auto;
}
.hero h1.in-caps{
  font-family:'Cormorant SC', serif;
  letter-spacing: .04em;
}
.hero-image{
  width:100%;
  height: 60vh;
  min-height: 480px;
  max-height: 720px;
  background-size: cover;
  background-position: center;
}

/* =================================================================
   INTRO QUOTE
   ================================================================= */
.intro{
  background: var(--bg);
  padding: 110px 64px 90px;
  text-align:center;
}
.intro-eyebrow{
  font-size:13px;
  letter-spacing:.36em;
  color: var(--fg);
  opacity:.78;
  margin-bottom:28px;
}
.intro p{
  max-width: 880px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.7;
  color: var(--fg);
  font-weight: 300;
  font-family: 'Cormorant Garamond', serif;
}
.intro p em{ font-style: italic; opacity:.95 }
.intro .signature{
  margin-top: 38px;
  font-size: 12px;
  letter-spacing: .4em;
  opacity:.65;
}
.intro .address{
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: .28em;
  opacity:.55;
  font-family:'Cormorant SC', serif;
}

/* =================================================================
   CATEGORY HERO CARDS — 4 big clickable tiles
   ================================================================= */
.categories{
  background: var(--bg);
  padding: 30px 64px 110px;
}
.section-title{
  font-weight: 400;
  font-size: clamp(32px, 4vw, 54px);
  text-align:center;
  color: var(--fg);
  letter-spacing: .04em;
  margin-bottom: 70px;
  font-family:'Cormorant SC', serif;
}
.cat-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
}
.cat-card{
  position: relative;
  display:block;
  aspect-ratio: 4/5;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor:pointer;
  transition: all .55s cubic-bezier(.2,.7,.2,1);
}
.cat-card::before{
  content:'';
  position:absolute;inset:0;
  background: linear-gradient(180deg, rgba(20,24,16,.05) 0%, rgba(20,24,16,.65) 100%);
  z-index: 1;
  transition: background .4s ease;
}
.cat-card:hover{ opacity:1; }
.cat-card:hover::before{ background: linear-gradient(180deg, rgba(20,24,16,.1) 0%, rgba(20,24,16,.78) 100%); }
.cat-card:hover img.cat-bg{ transform: scale(1.06); }
.cat-card .cat-bg{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
}
.cat-card .cat-content{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding: 50px;
  color: #f0e7d6;
}
.cat-card .cat-num{
  font-size: 13px;
  letter-spacing: .35em;
  font-family:'Cormorant SC', serif;
  opacity:.85;
  margin-bottom: 16px;
}
.cat-card h3{
  font-family:'Cormorant SC', serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.cat-card p{
  font-family:'Cormorant Garamond', serif;
  font-size: 17px;
  line-height: 1.55;
  opacity:.95;
  max-width: 90%;
  margin-bottom: 22px;
}
.cat-card .cat-link{
  font-family:'Cormorant SC', serif;
  font-size: 13px;
  letter-spacing: .3em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  display:inline-block;
  align-self:flex-start;
}

/* =================================================================
   WEITERE ANLÄSSE — compact list
   ================================================================= */
.further{
  background: var(--bg-deep);
  padding: 100px 64px;
  border-top: 1px solid var(--line);
}
.further-title{
  font-family:'Cormorant SC', serif;
  text-align:center;
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing:.06em;
  color: var(--fg);
  margin-bottom: 60px;
}
.further-list{
  max-width: 980px;
  margin: 0 auto;
}
.further-item{
  display:grid;
  grid-template-columns: 28px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items:start;
}
.further-item:last-child{ border-bottom: 1px solid var(--line) }
.further-num{
  font-family:'Cormorant SC', serif;
  font-size: 13px;
  letter-spacing: .2em;
  opacity:.6;
  padding-top: 6px;
}
.further-content h4{
  font-family:'Cormorant SC', serif;
  font-size: 22px;
  font-weight:400;
  letter-spacing:.08em;
  margin-bottom: 6px;
  color: var(--fg);
}
.further-content p{
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-soft);
  font-family:'Cormorant Garamond', serif;
}

/* =================================================================
   SERVICE / GETRÄNKE BLOCK — cream
   ================================================================= */
.service-block{
  background: var(--cream-block);
  color: var(--cream-block-ink);
  padding: 110px 64px;
  text-align:center;
}
.service-block h3{
  font-family:'Cormorant SC', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing:.04em;
  margin-bottom: 32px;
  color: var(--cream-block-ink);
}
.service-block p{
  max-width: 720px;
  margin: 0 auto 24px;
  font-family:'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.65;
}
.service-block .extras{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap: 18px 36px;
  margin-top: 38px;
  font-family:'Cormorant SC', serif;
  font-size: 14px;
  letter-spacing:.18em;
  opacity:.72;
}

/* =================================================================
   FINAL CTA
   ================================================================= */
.final-cta{
  background: var(--bg);
  padding: 110px 64px 90px;
  text-align:center;
  border-top: 1px solid var(--line);
}
.final-cta h2{
  font-family:'Cormorant SC', serif;
  font-weight:400;
  font-size: clamp(38px, 5vw, 68px);
  letter-spacing:.03em;
  color: var(--fg);
  margin-bottom: 28px;
  line-height:1.15;
}
.final-cta p.lead{
  font-size: 21px;
  color: var(--fg);
  max-width: 720px;
  margin: 0 auto 50px;
  line-height: 1.6;
  font-style: italic;
  opacity:.92;
  font-family:'Cormorant Garamond', serif;
}

/* contact rows */
.contact-row{
  max-width: 980px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid var(--line);
  text-align:left;
}
.contact-block{ }
.contact-block h4{
  font-family:'Cormorant SC', serif;
  font-size: 14px;
  letter-spacing: .3em;
  margin-bottom: 18px;
  opacity:.7;
}
.contact-block a, .contact-block p{
  font-family:'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.6;
  display:block;
  color: var(--fg);
  margin-bottom: 4px;
}

.qr-row{
  max-width: 980px;
  margin: 60px auto 0;
  display:flex;
  justify-content:center;
  gap: 60px;
  flex-wrap:wrap;
  padding-top: 50px;
  border-top: 1px solid var(--line);
}
.qr-item{ text-align:center }
.qr-item img{
  width: 130px; height: 130px;
  border: 1px solid var(--line);
}
.qr-item .qr-label{
  font-family:'Cormorant SC', serif;
  font-size: 12px;
  letter-spacing: .3em;
  margin-top: 14px;
  opacity:.75;
}

/* =================================================================
   FOOTER
   ================================================================= */
footer{
  background: var(--bg-deep);
  padding: 70px 64px 40px;
  color: var(--fg);
  border-top: 1px solid var(--line);
}
.footer-grid{
  max-width: 1400px;
  margin: 0 auto 50px;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}
.footer-grid h4{
  font-family:'Cormorant SC', serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing:.22em;
  margin-bottom: 18px;
  opacity:.85;
}
.footer-grid p, .footer-grid a{
  font-family:'Cormorant Garamond', serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg);
  opacity:.85;
  display:block;
}
.footer-bottom{
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap: 14px;
  font-size: 12px;
  letter-spacing: .22em;
  opacity:.65;
}

/* =================================================================
   AUDIO PILL
   ================================================================= */
.audio-pill{
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 100;
  background: var(--fg);
  color: var(--bg-deep);
  border-radius: 999px;
  padding: 13px 22px 13px 16px;
  display:flex;
  align-items:center;
  gap: 14px;
  cursor:pointer;
  font-family:'Cormorant SC', serif;
  font-size: 13px;
  letter-spacing:.22em;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  transition: all .35s ease;
  border: 1px solid rgba(0,0,0,.08);
}
.audio-pill:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,.25);
  opacity:1;
}
.audio-icon{
  width: 30px; height:30px;
  display:flex;align-items:center;justify-content:center;
  background: var(--bg-deep);
  color: var(--fg);
  border-radius: 50%;
  flex-shrink:0;
}
.audio-icon svg{width:13px;height:13px;fill: var(--fg)}
.audio-bars{ display:flex; gap:3px; align-items: end; height: 14px; margin-left:2px;}
.audio-bars span{
  display:block; width:3px;
  background: var(--bg-deep);
  border-radius: 2px;
  animation: bar 1.1s ease-in-out infinite;
}
.audio-bars span:nth-child(1){ height: 60%; animation-delay: -.1s }
.audio-bars span:nth-child(2){ height: 100%; animation-delay: -.4s }
.audio-bars span:nth-child(3){ height: 70%; animation-delay: -.25s }
.audio-bars span:nth-child(4){ height: 90%; animation-delay: -.55s }
@keyframes bar{ 0%,100%{transform:scaleY(.35)} 50%{transform:scaleY(1)} }
.audio-pill.paused .audio-bars{ display:none }
.audio-pill:not(.paused) .audio-icon{ display:none }

/* =================================================================
   FADE-UP ANIMATIONS
   ================================================================= */
.fade-up{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s ease, transform .9s ease;
}
.fade-up.in{ opacity: 1; transform: translateY(0); }

/* =================================================================
   SUBPAGE HERO — used on subpages
   ================================================================= */
.subhero{
  padding: 60px 64px 100px;
  text-align:center;
  background: var(--bg);
  position: relative;
}
.subhero .breadcrumb{
  font-family:'Cormorant SC', serif;
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--fg);
  opacity:.7;
  margin-bottom: 40px;
}
.subhero .breadcrumb a{ border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.subhero h1{
  font-family:'Cormorant SC', serif;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 100px);
  letter-spacing: .03em;
  line-height: 1.05;
  color: var(--fg);
  max-width: 1100px;
  margin: 0 auto 30px;
}
.subhero p.tag{
  font-family:'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 21px;
  color: var(--fg-soft);
  max-width: 720px;
  margin: 0 auto;
}

/* feature list on subpages */
.detail-grid{
  background: var(--bg);
  padding: 90px 64px;
}
.detail-inner{
  max-width: 1200px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.detail-inner h2{
  font-family:'Cormorant SC', serif;
  font-size: clamp(32px, 3.6vw, 50px);
  font-weight:400;
  letter-spacing:.04em;
  margin-bottom: 24px;
  line-height: 1.15;
  color: var(--fg);
}
.detail-inner p{
  font-family:'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 22px;
  color: var(--fg);
}
.detail-image{
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.bullets{
  list-style: none;
  padding: 0; margin: 30px 0 0;
  border-top: 1px solid var(--line);
}
.bullets li{
  font-family:'Cormorant Garamond', serif;
  font-size: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--fg);
  display:grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  align-items: baseline;
}
.bullets li::before{
  content: attr(data-num);
  font-family:'Cormorant SC', serif;
  font-size: 13px;
  letter-spacing: .2em;
  opacity:.55;
}

/* big edge-to-edge image on subpage */
.subbanner{
  width: 100%;
  height: 65vh;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.subbanner::after{
  content:'';
  position:absolute;inset:0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,24,16,.35) 100%);
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1080px){
  header, .hero, .intro, .categories, .further, .service-block,
  .final-cta, .subhero, .detail-grid, footer{
    padding-left: 28px; padding-right: 28px;
  }
  .header-inner{ grid-template-columns: 1fr; gap: 22px; text-align:center; }
  .header-left{ justify-content:center }
  .header-right{ justify-content:center }
  .nav{ flex-wrap:wrap; justify-content:center; gap: 22px; font-size:17px }
  .cat-grid{ grid-template-columns: 1fr; gap: 20px }
  .cat-card{ aspect-ratio: 16/11 }
  .cat-card .cat-content{ padding: 30px }
  .further-item{ grid-template-columns: 1fr; gap: 4px }
  .further-num{ display:none }
  .detail-inner{ grid-template-columns: 1fr; gap: 40px }
  .footer-grid{ grid-template-columns: 1fr; gap: 38px }
  .contact-row{ grid-template-columns: 1fr; gap: 32px }
  .audio-pill .audio-label{ display:none }
  .audio-pill{ padding: 11px }
}
@media (max-width: 600px){
  header{ padding: 22px 20px }
  .hero{ padding: 40px 20px 60px }
  .hero-image{ height: 50vh; min-height: 320px }
  .intro p{ font-size:19px }
  .brand{ font-size: 24px }
  .categories, .further, .service-block, .final-cta,
  .subhero, .detail-grid{ padding-top: 70px; padding-bottom: 70px }
  .qr-item img{ width: 110px; height: 110px }
}
