/* =========================================================
   Café Moon 2 · Entwurf
   Aufbau: Tokens, Basis, Layout, Sektionen, Formular, Motion
   Schreibregel: keine Gedankenstriche im sichtbaren Text.
   Typo: Serifen wie im Logo. Cinzel fett fuer Ueberschriften,
   EB Garamond fuer Text. Text nur schwarz oder weiss, Gold nur als Akzent.
   Kein Kursiv.
   ========================================================= */

:root {
  /* Marke */
  --mint: #8fe0cd;
  --mint-soft: #d9f5ec;
  --pink: #f4b8d0;
  --pink-soft: #ffe6f0;
  --nebula: #8a6fd6;
  --nebula-soft: #c9a7ee;
  /* Gold wie bei better behave */
  --gold-1: #f2c877;
  --gold-2: #e7b65c;
  --gold-3: #c98f3c;
  --accent: #e7b65c;
  --ink: #0b0b0f;
  --ink-2: #14131b;
  /* Beige aus dem Laden (Wandfarbe): warmer Greige mit Rosastich */
  --cream: #ece2d0;
  --cream-2: #ded1b8;
  /* Text auf Beige: Schwarz */
  --cream-ink: #0b0b0f;
  /* Text auf Dunkel: Weiss */
  --text: #ffffff;

  --gold-grad: linear-gradient(135deg, #c98f3c 0%, #f2c877 28%, #fff3d1 50%, #e7b65c 72%, #c98f3c 100%);

  /* Typo: Serifen wie im Logo. Cinzel (Trajan-Klon) fuer Ueberschriften,
     EB Garamond fuer Text. Kein Kursiv. */
  --font-display: "Cinzel", "Trajan Pro", Georgia, serif;
  --font-serif: "EB Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "EB Garamond", Georgia, "Times New Roman", serif;

  /* Raster */
  --pad-x: clamp(1.25rem, 5vw, 6rem);
  --maxw: 1240px;
  --radius: 18px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.7s;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* Kein Kursiv, nirgends. */
* { font-style: normal !important; }

/* Ueberschriften fett, Fliesstext normal. */
h1, h2, h3, h4,
.section__title, .hero-title, .hero-eyebrow, .eyebrow, .wordmark,
.drink-card h3, .bowl h3, .savory-card h3, .lemo h3, .feature__body h3 {
  font-weight: 700 !important;
}
p, li, td, th, input, select, textarea, button, .hero-meta, .section__title + p {
  font-weight: 400;
}

/* Betonte Woerter in Ueberschriften: Gold. */
.section__title em,
.hero-title em,
.eyebrow em,
h1 em, h2 em, h3 em {
  font-weight: inherit;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
em { color: var(--accent); }

@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
}

img { max-width: 100%; display: block; }
a { color: inherit; }

::selection { background: var(--nebula); color: #fff; }

.skip-link {
  position: fixed;
  top: -60px;
  left: 1rem;
  z-index: 999;
  background: var(--gold-2);
  color: #1a1206;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ---------- Topbar ---------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem var(--pad-x);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s;
}
.topbar[data-scrolled] {
  background: rgba(11, 11, 15, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(230, 200, 130, 0.14);
}
.topbar__brand { text-decoration: none; }
.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.28em;
  font-size: 1.35rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-left: 0.28em;
}
.wordmark--sm { font-size: 1.1rem; }

.topbar__nav {
  margin-left: auto;
  display: flex;
  gap: 1.6rem;
}
.topbar__nav a {
  text-decoration: none;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.72);
  transition: color 0.2s;
}
.topbar__nav a:hover { color: var(--gold-1); }

.open-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(230, 200, 130, 0.3);
  border-radius: 999px;
  white-space: nowrap;
}
.open-pill__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #7bdca0;
  box-shadow: 0 0 0 0 rgba(123, 220, 160, 0.7);
  animation: ping 2.4s var(--ease) infinite;
}
.open-pill[data-closed] .open-pill__dot { background: #e0748a; animation: none; }
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(123, 220, 160, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(123, 220, 160, 0); }
  100% { box-shadow: 0 0 0 0 rgba(123, 220, 160, 0); }
}

/* ---------- Hamburger (mobil) ---------- */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: 0.6rem;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(230, 200, 130, 0.3);
  border-radius: 10px;
  color: var(--gold-1);
  cursor: pointer;
  flex: none;
}
.nav-toggle__bars {
  position: relative;
  display: block;
  width: 18px;
  height: 12px;
}
.nav-toggle__bars span,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars span { top: 5px; }
.nav-toggle__bars::after { top: 10px; }
.topbar[data-nav-open] .nav-toggle__bars::before { transform: translateY(5px) rotate(45deg); }
.topbar[data-nav-open] .nav-toggle__bars span { opacity: 0; }
.topbar[data-nav-open] .nav-toggle__bars::after { transform: translateY(-5px) rotate(-45deg); }

/* Zu schmal fuer die Inline-Navigation: immer Hamburger. */
@media (max-width: 899px) {
  .nav-toggle { display: inline-flex; }
  .open-pill { margin-left: auto; }
  .topbar__nav {
    position: absolute;
    top: calc(100% + 6px);
    left: var(--pad-x);
    right: var(--pad-x);
    margin: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.4rem;
    background: rgba(11, 11, 15, 0.96);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(230, 200, 130, 0.16);
    border-radius: 14px;
    box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  }
  .topbar[data-nav-open] .topbar__nav {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .topbar__nav a {
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
  }
  .topbar__nav a:hover,
  .topbar__nav a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    color: var(--gold-1);
  }
}

/* Sehr schmal: Status-Pille weicht, damit Wortmarke und Menue Platz haben.
   Die Oeffnungszeiten stehen weiterhin im Abschnitt Standort. */
@media (max-width: 479px) {
  .open-pill { display: none; }
}

/* ---------- Hero mit Scroll-Video ----------
   .hero gibt die Scroll-Distanz (per JS auf ~360vh gesetzt, sobald der
   GSAP-Pin aktiv ist). .hero-visual ist der gepinnte, sichtbare Ausschnitt.
   Ohne JS bleibt .hero so hoch wie .hero-visual, ganz normaler Einzel-Hero. */
.hero { position: relative; }
.hero-visual {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 2rem var(--pad-x);
}
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Standbild des Hero-Videos, ab der ersten Sekunde sichtbar. Das Video
     blendet spaeter deckungsgleich darueber. Farbtoene und eine leichte
     Abdunklung liegen obenauf, damit der Titel lesbar bleibt. */
  background:
    radial-gradient(120% 80% at 50% 10%, rgba(138, 111, 214, 0.28), transparent 60%),
    radial-gradient(90% 60% at 50% 120%, rgba(244, 184, 208, 0.22), transparent 60%),
    radial-gradient(70% 50% at 50% 100%, rgba(143, 224, 205, 0.14), transparent 65%),
    linear-gradient(180deg, rgba(11, 11, 15, 0.34) 0%, rgba(11, 11, 15, 0.3) 45%, rgba(11, 11, 15, 0.28) 100%),
    url("/assets/img/hero-poster.jpg") center / cover no-repeat,
    var(--ink);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-video.is-active { opacity: 1; }
.hero-video-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(11, 11, 15, 0.46) 0%,
    rgba(11, 11, 15, 0.3) 42%,
    rgba(11, 11, 15, 0.34) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hero-video-scrim.is-active { opacity: 1; }
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.logo-lockup {
  display: inline-grid;
  justify-items: center;
  gap: 0.35rem;
}
.hero-inner .logo-lockup { margin-bottom: 1.6rem; }
.logo-lockup__mark { width: clamp(92px, 15vw, 156px); height: auto; overflow: visible; }
.logo-lockup__moon { filter: drop-shadow(0 8px 30px rgba(143, 224, 205, 0.35)); }
.logo-lockup__word {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.34em;
  font-size: clamp(2.2rem, 6vw, 4rem);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-left: 0.34em;
  margin-top: -0.35em;
}

.hero-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  color: #f6f2ec;
  margin-bottom: 0.9rem;
  text-shadow: 0 2px 24px rgba(11, 11, 15, 0.8);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  font-size: clamp(1.9rem, 5.4vw, 3.6rem);
  letter-spacing: 0.01em;
  overflow: hidden;
  text-shadow: 0 4px 30px rgba(11, 11, 15, 0.7);
}
.hero-title .split-word { display: inline-block; white-space: nowrap; }
.hero-title .split-char { display: inline-block; will-change: transform; }
.hero-meta {
  margin-top: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 242, 236, 0.7);
  text-shadow: 0 2px 20px rgba(11, 11, 15, 0.85);
}
.hero-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  border: 1px solid rgba(230, 200, 130, 0.55);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-1);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
  transform-origin: center;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.hero-cta:hover,
.hero-cta:focus-visible,
.hero-cta:active {
  background: var(--gold-grad);
  color: #1a1206;
  border-color: transparent;
  /* !important, weil GSAP nach dem Intro einen Inline-transform auf der
     CTA stehen laesst, der die Vergroesserung sonst schlucken wuerde. */
  transform: translateY(-2px) scale(1.08) !important;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2.4rem;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px;
  height: 40px;
  border: 1px solid rgba(230, 200, 130, 0.45);
  border-radius: 14px;
}
.hero-scroll-cue span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--gold-1);
  animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(16px); }
}

/* ---------- Marquee ----------
   Kein sichtbarer Absatz zu Hero und Drinks: gleicher Schwarzton, keine
   Trennlinien. Zwei identische Gruppen, jede mindestens Viewport-breit,
   damit die Zeile bei translateX(-50%) nahtlos durchlaeuft und rechts nie
   abgeschnitten wirkt. */
.marquee {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  background: var(--ink);
  overflow: hidden;
  padding: 0.9rem 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee 26s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding-right: 1.4rem;
  flex: none;
  min-width: 100vw;
  justify-content: space-around;
  white-space: nowrap;
}
.marquee__group span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(244, 241, 236, 0.82);
}
.marquee__group i {
  color: var(--gold-2);
  font-style: normal;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Sektionen ---------- */
.section {
  position: relative;
  padding: clamp(4.5rem, 11vw, 9rem) var(--pad-x);
  overflow: hidden;
}
/* Produktpraesentation: schwarz. Info und Basis: Beige. */
.section--dark { background: var(--ink); }
.section--pink { background: var(--ink); }
.section--cream {
  background: var(--cream);
  color: var(--cream-ink);
}
.section--cream .eyebrow { color: var(--gold-3); }
.section--cream .section__title { color: var(--cream-ink); }
.section--cream .section__title em {
  background: linear-gradient(120deg, #b98f2f, #8a6a1e 60%, #5c4712);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__head {
  max-width: var(--maxw);
  margin: 0 auto clamp(2.5rem, 6vw, 4.5rem);
}
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 1rem;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.02;
  font-size: clamp(2.4rem, 7vw, 5rem);
  letter-spacing: 0.01em;
}
.section__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Drinks ----------
   Umbrechendes Raster statt horizontalem Scroll-Band: nichts wird am
   rechten Rand abgeschnitten. Mobil 1 Spalte, dann 2, dann 3. */
.drink-rail {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1.4rem;
}

.drink-card {
  scroll-snap-align: start;
  border: 1px solid rgba(230, 200, 130, 0.16);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  transition: transform 0.4s var(--ease), border-color 0.3s;
  transform-style: preserve-3d;
}
.drink-card:hover { border-color: rgba(230, 200, 130, 0.4); }
.drink-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  background: radial-gradient(120% 90% at 50% 0%, color-mix(in srgb, var(--a) 70%, transparent), transparent 70%), var(--ink-2);
  display: grid;
  place-items: end center;
  overflow: hidden;
  margin-bottom: 1rem;
}
/* Echtes Produktfoto, liegt ueber dem Farbschichten-Platzhalter. */
.drink-card__media,
.feature__media,
.savory-card__media,
.bowl__disc,
.lemo__cup {
  position: relative;
}
/* Produktfotos haben einen weissen Studio-Hintergrund. Per multiply-Blend
   verschwindet das Weiss und die Kachel bekommt eine eigene Markenfarbe.
   Deshalb pro Kachel ein heller Farbton (aus --a bzw. --g1/--c1). */
.media-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  border-radius: inherit;
  mix-blend-mode: multiply;
}
/* Kachelfarbe je Produkt bewusst als Gegenfarbe (Kontrast), nicht als
   Angleichung. Wert kommt aus --tint im HTML. */
.drink-card__media:has(.media-photo),
.feature__media:has(.media-photo),
.savory-card__media:has(.media-photo),
.bowl__disc:has(.media-photo),
.lemo__cup:has(.media-photo) {
  background: var(--tint, #e7e7ea);
}
/* Farbschichten-Platzhalter ausblenden, sobald ein echtes Foto da ist. */
.drink-card__media:has(.media-photo) .glass,
.bowl__disc:has(.media-photo) .bowl__topping { display: none; }
.drink-card h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 600;
}
.drink-card p {
  font-size: 0.9rem;
  color: rgba(244, 241, 236, 0.62);
  margin-top: 0.3rem;
}

/* Glas mit Farbschichten (Platzhalter fuer echtes Foto) */
.glass {
  width: 58%;
  height: 84%;
  border-radius: 10px 10px 14px 14px / 8px 8px 26px 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  backdrop-filter: blur(2px);
}
.glass--layered span {
  display: block;
  height: var(--h, 25%);
  background: var(--c, #fff);
  filter: saturate(1.05);
}

/* ---------- Bowls ---------- */
.bowl-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.4rem;
  text-align: center;
}
.bowl__disc {
  width: min(78%, 260px);
  aspect-ratio: 1;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--r3) 0 18%, transparent 18.5%),
    radial-gradient(circle at 50% 50%, var(--r2) 0 34%, transparent 34.5%),
    radial-gradient(circle at 50% 50%, var(--r1) 0 50%, transparent 50.5%);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6), inset 0 0 40px rgba(0, 0, 0, 0.35);
  position: relative;
  display: grid;
  place-items: center;
}
.bowl__topping {
  width: 46%;
  height: 46%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff 0 8%, transparent 9%),
    radial-gradient(circle at 66% 40%, #f4b8d0 0 10%, transparent 11%),
    radial-gradient(circle at 50% 70%, #e6c48f 0 12%, transparent 13%),
    radial-gradient(circle at 40% 55%, #7a3a5f 0 10%, transparent 11%);
}
.bowl h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.4rem;
}
.bowl p { font-size: 0.9rem; opacity: 0.7; margin-top: 0.2rem; }

/* ---------- Feature-Liste (Suesses) ---------- */
.feature-list {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}
.feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
}
.feature--rev { grid-template-columns: 1fr 1.1fr; }
.feature--rev .feature__media { order: 2; }
.feature__media {
  aspect-ratio: 16 / 11;
  border-radius: var(--radius);
  background: linear-gradient(140deg, var(--g1), var(--g2));
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.7);
}
.feature__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
}
.feature__body p {
  margin-top: 0.6rem;
  color: rgba(244, 241, 236, 0.62);
  max-width: 34ch;
}
@media (max-width: 760px) {
  .feature, .feature--rev { grid-template-columns: 1fr; }
  .feature--rev .feature__media { order: 0; }
}

/* ---------- Herzhaft ---------- */
.savory-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.savory-card__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: linear-gradient(140deg, var(--g1), var(--g2));
  margin-bottom: 1rem;
  box-shadow: 0 30px 60px -35px rgba(0, 0, 0, 0.5);
}
.savory-card h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.5rem;
}
.savory-card p { opacity: 0.72; margin-top: 0.2rem; }

/* ---------- Lemonades ---------- */
.lemo-row {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.6rem;
  text-align: center;
}
.lemo__cup {
  display: block;
  width: 60%;
  aspect-ratio: 3 / 4;
  margin: 0 auto 0.9rem;
  border-radius: 12px 12px 18px 18px / 8px 8px 34px 34px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--c1) 60%, transparent), var(--c2));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 3px 10px rgba(255, 255, 255, 0.18), 0 24px 44px -26px rgba(0, 0, 0, 0.6);
}
.lemo h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.15rem;
}

/* ---------- Einzelne, groessere Karte (nur ein Produkt in der Sektion) ---------- */
.bowl-grid--single { grid-template-columns: 1fr; }
.bowl--big .bowl__disc { width: min(92%, 460px); margin-bottom: 1.6rem; }
.bowl--big h3 { font-size: clamp(1.6rem, 4vw, 2.4rem); }

.savory-grid--single {
  grid-template-columns: 1fr;
  max-width: 760px;
  text-align: center;
}
.savory-grid--single .savory-card__media { aspect-ratio: 16 / 10; }
.savory-grid--single .savory-card p { max-width: none; }

.lemo-row--single { grid-template-columns: 1fr; }
.lemo--big .lemo__cup { width: min(72%, 320px); }
.lemo--big h3 { font-size: clamp(1.3rem, 3.5vw, 1.8rem); }

/* Bereits freigestelltes Foto (echte Transparenz): kein multiply, ganzes
   Motiv sichtbar, schwebt auf der Farbflaeche. */
.media-photo--cut {
  mix-blend-mode: normal;
  object-fit: contain;
  inset: 7%;
  width: 86%;
  height: 86%;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.35));
}

/* ---------- Galerie / Laden ---------- */
.gallery {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(140deg, var(--g1), var(--g2));
  overflow: hidden;
  box-shadow: 0 30px 60px -40px rgba(0, 0, 0, 0.6);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.store__note {
  max-width: var(--maxw);
  margin: 1.6rem auto 0;
  font-size: 0.9rem;
  opacity: 0.6;
}
@media (max-width: 760px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
}

/* ---------- Instagram ---------- */
.insta-grid {
  max-width: 640px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.insta-tile {
  aspect-ratio: 1;
  border-radius: 10px;
  background: linear-gradient(140deg, var(--g1), var(--g2));
  transition: transform 0.3s var(--ease), filter 0.3s;
  overflow: hidden;
  display: block;
}
.insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.insta-tile:hover { transform: scale(1.04); filter: brightness(1.08); }
.insta { text-align: center; }

/* ---------- Standort ---------- */
.location-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  align-items: stretch;
}
.map-placeholder {
  border-radius: var(--radius);
  min-height: 320px;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.3rem;
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 12px, transparent 12px 24px),
    var(--cream-2);
  border: 1px dashed rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.5);
  font-family: var(--font-serif);
  font-style: italic;
}
.map-placeholder small { font-family: var(--font-sans); font-style: normal; font-size: 0.75rem; }

.location-info__addr {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}
.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.hours th, .hours td {
  text-align: left;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.hours th { font-weight: 500; }
.hours td { text-align: right; opacity: 0.75; }
.hours tr[data-today] th, .hours tr[data-today] td {
  color: var(--gold-3);
  font-weight: 600;
  opacity: 1;
}
.location-info__actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
@media (max-width: 820px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* ---------- Buttons ----------
   Ruhezustand: leicht transparent, zart weiss.
   Hover, Tastaturfokus und Klick: Gold und groesser.
   Vergroesserung bewusst 8 statt 20 Prozent: bei der Hero-CTA und dem
   Formular-Button liefe 20 Prozent in Nachbarelemente und wuerde am
   Rand abgeschnitten. Wert unten (scale) bei Bedarf anpassen. */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(230, 200, 130, 0.5);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(2px);
  transform-origin: center;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.section--cream .btn { border-color: rgba(0, 0, 0, 0.25); color: #241c1a; }
.btn:hover,
.btn:focus-visible,
.btn:active {
  background: var(--gold-grad);
  color: #1a1206;
  border-color: transparent;
  /* !important, weil das Reveal-System (.js [data-reveal].is-in) sonst mit
     hoeherer Spezifitaet transform: none erzwingt und die Vergroesserung
     schluckt. Betrifft u. a. den Instagram-Button. */
  transform: translateY(-2px) scale(1.08) !important;
}
/* In den beigen Sektionen ist .section--cream .btn spezifischer als .btn:hover
   und wuerde Textfarbe und Rahmen im Hover festhalten. Hier explizit ueberschreiben. */
.section--cream .btn:hover,
.section--cream .btn:focus-visible,
.section--cream .btn:active {
  color: #1a1206;
  border-color: transparent;
}
.btn--solid, .btn--ghost:hover {
  background: var(--gold-grad);
  color: #1a1206;
  border-color: transparent;
}
.btn--solid {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* =========================================================
   FORMULAR
   Hausregel: alle Eingabefelder sehen gleich aus.
   text, email, tel, number, date, time, select, textarea
   teilen Breite, Polsterung, Rahmen, Hintergrund, Schriftgroesse.
   ========================================================= */
.inquiry-box {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid rgba(230, 200, 130, 0.18);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 4vw, 2.6rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}
.tab {
  flex: 1 1 auto;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(230, 200, 130, 0.3);
  background: transparent;
  color: rgba(244, 241, 236, 0.7);
  font-family: inherit;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.tab.is-active {
  background: var(--gold-grad);
  color: #1a1206;
  border-color: transparent;
}

.form { display: grid; gap: 1.1rem; }
.form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.1rem;
}
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.field { display: grid; gap: 0.4rem; }
.field > span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.6);
}

.field input,
.field select,
.field textarea,
.field .dp-trigger {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #f4f1ec;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(230, 200, 130, 0.28);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 110px; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e6c882' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.4rem;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(244, 241, 236, 0.35); }

.field input:focus,
.field select:focus,
.field textarea:focus,
.field .dp-trigger:focus-visible {
  outline: none;
  border-color: var(--gold-1);
  background-color: rgba(255, 255, 255, 0.07);
}

/* ---------- Eigener Datepicker (kein natives Popup) ---------- */
.field--date { position: relative; }
.field .dp-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  min-height: 3rem;
  text-align: left;
  cursor: pointer;
}
.dp-trigger__text { color: inherit; }
.field--date:not(.has-value) .dp-trigger__text { color: rgba(244, 241, 236, 0.35); }
.dp-trigger__ico { flex: none; color: var(--gold-1); opacity: 0.85; }

.dp-pop {
  position: absolute;
  z-index: 40;
  top: calc(100% + 8px);
  left: 0;
  width: min(320px, 84vw);
  padding: 0.9rem;
  border-radius: 14px;
  background: rgba(20, 19, 27, 0.98);
  border: 1px solid rgba(230, 200, 130, 0.3);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
}
.dp-pop__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}
.dp-pop__month {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  text-transform: capitalize;
  color: #f4f1ec;
}
.dp-pop__nav {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(230, 200, 130, 0.3);
  background: transparent;
  color: var(--gold-1);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.dp-pop__nav:hover { background: rgba(230, 200, 130, 0.14); }
.dp-pop__week,
.dp-pop__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.dp-pop__week {
  margin-bottom: 4px;
}
.dp-pop__week span {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.45);
  padding: 0.3rem 0;
}
.dp-pop__day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 9px;
  background: transparent;
  color: rgba(244, 241, 236, 0.85);
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.dp-pop__day:hover:not(:disabled) { background: rgba(230, 200, 130, 0.16); }
.dp-pop__day:disabled { color: rgba(244, 241, 236, 0.22); cursor: default; }
.dp-pop__day--pad { pointer-events: none; }
.dp-pop__day.is-today { box-shadow: inset 0 0 0 1px rgba(230, 200, 130, 0.5); }
.dp-pop__day.is-selected {
  background: var(--gold-grad);
  color: #1a1206;
  font-weight: 600;
}

.field--check {
  grid-auto-flow: column;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
}
.field--check input {
  width: 20px;
  height: 20px;
  margin-top: 0.15rem;
  accent-color: var(--gold-2);
}
.field--check span {
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(244, 241, 236, 0.7);
  line-height: 1.5;
}
.field--check a { color: var(--gold-1); }

.form__status {
  font-size: 0.9rem;
  min-height: 1.2em;
}
.form__status[data-state="ok"] { color: #7bdca0; }
.form__status[data-state="err"] { color: #f0a0ae; }

[hidden] { display: none !important; }

/* =========================================================
   BEIGE-SEKTIONEN: helle Varianten fuer Info und Basis
   ========================================================= */
.section--cream .store__note { color: rgba(43, 36, 32, 0.6); }

.section--cream .insta-tile { box-shadow: 0 14px 30px -18px rgba(0, 0, 0, 0.35); }

.section--cream .btn { border-color: rgba(43, 36, 32, 0.3); color: var(--cream-ink); }
.section--cream .btn--solid { color: #1a1206; }

.section--cream .map-placeholder {
  background:
    repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.035) 0 12px, transparent 12px 24px),
    var(--cream-2);
  border-color: rgba(43, 36, 32, 0.25);
  color: rgba(43, 36, 32, 0.55);
}

.section--cream .inquiry-box {
  border-color: rgba(43, 36, 32, 0.18);
  background: rgba(255, 255, 255, 0.35);
}
.section--cream .tab {
  border-color: rgba(43, 36, 32, 0.28);
  color: rgba(43, 36, 32, 0.65);
}
.section--cream .tab.is-active { color: #1a1206; }

.section--cream .field > span { color: rgba(43, 36, 32, 0.62); }
.section--cream .field input,
.section--cream .field select,
.section--cream .field textarea,
.section--cream .field .dp-trigger {
  color: var(--cream-ink);
  background-color: rgba(255, 255, 255, 0.55);
  border-color: rgba(43, 36, 32, 0.24);
}
.section--cream .field input::placeholder,
.section--cream .field textarea::placeholder { color: rgba(43, 36, 32, 0.4); }
.section--cream .field--date:not(.has-value) .dp-trigger__text { color: rgba(43, 36, 32, 0.42); }
.section--cream .dp-trigger__ico { color: var(--gold-3); }
.section--cream .field input:focus,
.section--cream .field select:focus,
.section--cream .field textarea:focus,
.section--cream .field .dp-trigger:focus-visible {
  border-color: var(--gold-2);
  background-color: #fff;
}

/* Datepicker-Popover auf Beige */
.section--cream .dp-pop {
  background: #fff;
  border-color: rgba(43, 36, 32, 0.2);
  box-shadow: 0 24px 60px -24px rgba(43, 36, 32, 0.35);
}
.section--cream .dp-pop__month { color: var(--cream-ink); }
.section--cream .dp-pop__nav { border-color: rgba(43, 36, 32, 0.28); color: var(--gold-3); }
.section--cream .dp-pop__nav:hover { background: rgba(138, 106, 30, 0.12); }
.section--cream .dp-pop__week span { color: rgba(43, 36, 32, 0.45); }
.section--cream .dp-pop__day { color: rgba(43, 36, 32, 0.8); }
.section--cream .dp-pop__day:hover:not(:disabled) { background: rgba(138, 106, 30, 0.12); }
.section--cream .dp-pop__day:disabled { color: rgba(43, 36, 32, 0.28); }
.section--cream .dp-pop__day.is-today { box-shadow: inset 0 0 0 1px rgba(138, 106, 30, 0.55); }
.section--cream .dp-pop__day.is-selected { color: #1a1206; }

/* Karte (Google-Maps-Embed im Entwurf) */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  border: 1px solid rgba(43, 36, 32, 0.2);
  background: var(--cream-2);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}
.section--cream .field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a6a1e' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
}
.section--cream .field input[type="date"]::-webkit-calendar-picker-indicator,
.section--cream .field input[type="time"]::-webkit-calendar-picker-indicator {
  filter: none;
  opacity: 0.6;
}
.section--cream .field--check span { color: rgba(43, 36, 32, 0.72); }
.section--cream .field--check a { color: var(--gold-3); }
.section--cream .form__status[data-state="ok"] { color: #3b7d54; }
.section--cream .form__status[data-state="err"] { color: #b0475a; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink-2);
  border-top: 1px solid rgba(230, 200, 130, 0.16);
  padding: clamp(3rem, 8vw, 5rem) var(--pad-x) 3rem;
}
.footer__top {
  max-width: var(--maxw);
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.footer__matcha {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(244, 241, 236, 0.6);
}
.footer__cols {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.6rem;
}
.footer__cols h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 0.6rem;
}
.footer__cols p { color: rgba(244, 241, 236, 0.65); font-size: 0.92rem; }
.footer__cols a { text-decoration: none; }
.footer__cols a:hover { color: var(--gold-1); }
.footer__fine {
  max-width: var(--maxw);
  margin: 2.5rem auto 0;
  font-size: 0.8rem;
  color: rgba(244, 241, 236, 0.4);
}

/* ---------- Custom Cursor ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(230, 200, 130, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s, border-color 0.25s;
}
.cursor[data-hot] {
  width: 44px;
  height: 44px;
  border-color: rgba(230, 200, 130, 0.95);
  background: rgba(230, 200, 130, 0.14);
}
@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* ---------- Reveal ----------
   Nur verstecken, wenn JS laeuft (html.js). Ohne JS bleibt alles sichtbar. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .hero-scroll-cue span { animation: none; }
  .hero-video, .hero-video-scrim { opacity: 1; }
}
