/* Veganes Café — Powerhouse Erftstadt
 * Warm coffee/paper palette, meineeckecoffee-inspiriert
 */

:root {
  --bg: #fbf6ee;
  --bg-alt: #f2ead9;
  --bg-deep: #efe6d1;
  --paper: #fffdf8;
  --ink: #2a1d12;
  --ink-2: #4a3626;
  --muted: #7a634e;
  --line: #e5d9c1;
  --gold: #b48a3e;
  --gold-deep: #8f6a26;
  --leaf: #6d8b62;
  --leaf-deep: #4d6a45;
  --shadow-sm: 0 1px 2px rgba(42, 29, 18, .06), 0 2px 6px rgba(42, 29, 18, .04);
  --shadow-md: 0 4px 10px rgba(42, 29, 18, .08), 0 10px 28px rgba(42, 29, 18, .08);
  --radius: 12px;
  --radius-lg: 20px;
  --wrap: 1240px;
  --pad-x: clamp(1rem, 4vw, 2.4rem);
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
*, *::before, *::after { min-width: 0; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  word-break: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-deep); text-decoration: none; }
a:hover { color: var(--ink); }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 .75rem;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  font-variation-settings: "SOFT" 30, "opsz" 96;
  color: var(--ink);
  margin: 0 0 .8rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
p { margin: 0 0 1rem; color: var(--ink-2); }
.lead { font-size: 1.15rem; color: var(--ink-2); }
.muted { color: var(--muted); }

.skip {
  position: absolute; left: -9999px; top: -9999px;
  background: var(--ink); color: var(--paper);
  padding: .6rem 1rem; z-index: 1000;
}
.skip:focus { left: 1rem; top: 1rem; }

.topbar {
  background: var(--ink);
  color: var(--paper);
  font-size: .78rem;
  letter-spacing: .04em;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 34px;
  padding-top: .35rem;
  padding-bottom: .35rem;
  flex-wrap: wrap;
}
.topbar a { color: var(--paper); border-bottom: 1px dotted rgba(255,253,248,.4); }
.topbar a:hover { color: #f0d489; border-color: #f0d489; }
.topbar-status { display: inline-flex; align-items: center; gap: .5rem; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #7dbf4c;
  box-shadow: 0 0 0 3px rgba(125,191,76,.25);
}
.dot.closed { background: #d17a5a; box-shadow: 0 0 0 3px rgba(209,122,90,.25); }

.header {
  background: var(--bg);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(251,246,238,.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
  padding-top: .75rem;
  padding-bottom: .75rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.brand img { height: 62px; width: auto; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
}
.brand-sub {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  color: var(--ink-2);
  font-size: .95rem;
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.nav a:hover { color: var(--ink); border-color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  text-decoration: none;
  letter-spacing: .01em;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--gold-deep); color: var(--paper); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-gold { background: var(--gold-deep); color: var(--paper); }
.btn-gold:hover { background: var(--ink); color: var(--paper); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 8px;
  padding: .55rem .7rem;
  cursor: pointer;
}
.nav-toggle svg { display: block; width: 22px; height: 22px; }

.hero {
  padding-top: clamp(2rem, 6vw, 4rem);
  padding-bottom: clamp(2rem, 6vw, 4rem);
}
.hero-lead { max-width: 900px; margin: 0 auto; text-align: center; }
.hero-lead h1 { margin-bottom: 1.2rem; }
.hero-lead h1 em { font-style: italic; color: var(--gold-deep); }
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 auto 2rem;
}
.hero-cta {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}
.hero-tags {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .5rem .8rem;
  margin: 1.4rem 0 0;
}
.tag {
  font-size: .8rem;
  color: var(--muted);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: .3rem .7rem;
  border-radius: 999px;
}
.hero-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.6rem, 1.3vw, 1rem);
  margin-top: clamp(2.8rem, 5.5vw, 4.4rem);
}
.hero-gallery figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-alt);
  box-shadow: var(--shadow-sm);
}
.hero-gallery figure:nth-child(2) {
  transform: translateY(clamp(-2rem, -4vw, -3rem));
  aspect-ratio: 3 / 4.4;
}
.hero-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.hero-gallery figure:hover img { transform: scale(1.04); }

section { padding: clamp(3.6rem, 8vw, 6rem) 0; }
section.alt { background: var(--bg-alt); }
section.deep { background: var(--bg-deep); }

.sec-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.sec-head p { color: var(--ink-2); font-size: 1.05rem; }
.sec-head.left { text-align: left; margin-left: 0; }

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.story-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}
.story-visual img { width: 100%; height: 100%; object-fit: cover; }
.story-visual .badge {
  position: absolute; bottom: 1.2rem; left: 1.2rem;
  background: var(--paper);
  padding: .5rem .9rem;
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  box-shadow: var(--shadow-sm);
}
.story-body blockquote {
  margin: 1.4rem 0;
  padding: 0 0 0 1.2rem;
  border-left: 3px solid var(--gold);
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
}
.story-sig {
  display: inline-flex; align-items: center; gap: .8rem;
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.story-sig img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.story-sig .who { font-size: .95rem; }
.story-sig .who strong { display: block; color: var(--ink); }
.story-sig .who span { color: var(--muted); font-size: .82rem; }

.usp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
}
.usp-item {
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--line);
}
.usp-item .num {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--gold-deep);
  letter-spacing: .12em;
  margin-bottom: .8rem;
  display: inline-block;
}
.usp-item h3 { margin-bottom: .5rem; }
.usp-item p { color: var(--ink-2); font-size: .98rem; margin: 0; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.menu-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.menu-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.menu-card .thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-alt);
}
.menu-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.menu-card:hover .thumb img { transform: scale(1.05); }
.menu-card .body {
  padding: 1.2rem 1.3rem 1.4rem;
  display: flex; flex-direction: column; gap: .3rem; flex: 1;
}
.menu-card .cat {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.menu-card h3 { margin: 0; font-size: 1.35rem; }
.menu-card .desc { color: var(--ink-2); font-size: .93rem; margin: .3rem 0 0; }
.menu-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--muted);
  font-size: .95rem;
}

.hours-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hours-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}
.hours-visual img { width: 100%; height: 100%; object-fit: cover; }
.hours-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  border-top: 1px solid var(--line);
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: .95rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
  color: var(--ink-2);
}
.hours-list li.today {
  color: var(--ink);
  font-weight: 600;
}
.hours-list li.today .day::after {
  content: "\00b7 heute";
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-left: .7rem;
  font-weight: 500;
  vertical-align: 1px;
}
.hours-list li.today .time { color: var(--ink); font-weight: 600; }
.hours-list .day { text-transform: capitalize; }
.hours-list .time { font-variant-numeric: tabular-nums; }
.hours-note { font-size: .9rem; color: var(--muted); margin: 1rem 0 0; }

.visit {
  background: var(--ink);
  color: var(--paper);
}
.visit h2, .visit h3 { color: var(--paper); }
.visit .eyebrow { color: #e8c67c; }
.visit p { color: rgba(255,253,248,.8); }
.visit a { color: #f0d489; }
.visit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.2rem, 2.6vw, 2rem);
  margin-top: 2.4rem;
  align-items: stretch;
}
.visit-card {
  padding: 1.6rem;
  background: rgba(255,253,248,.05);
  border: 1px solid rgba(255,253,248,.1);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.visit-card h3 { font-size: 1.15rem; margin: 0 0 .3rem; }
.visit-card p { margin: 0; font-size: .94rem; }
.visit-card a.action {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .9rem;
  font-size: .9rem;
  color: #f0d489;
  border-bottom: 1px solid rgba(240,212,137,.4);
  padding-bottom: 2px;
}
.visit-card a.action:hover { color: var(--paper); border-color: var(--paper); }
.visit-cta {
  display: flex; gap: .75rem; flex-wrap: wrap;
  margin-top: 2rem;
  justify-content: center;
}

/* --- SIGNATURE / CINNAMON ROLLS --- */
.signature {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  padding-top: clamp(3.6rem, 8vw, 6rem);
  padding-bottom: clamp(3.6rem, 8vw, 6rem);
}
.sig-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.sig-lead-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-md);
}
.sig-lead-visual img { width: 100%; height: 100%; object-fit: cover; }
.sig-lead h2 em { font-style: italic; color: var(--gold-deep); }
.roll-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(.5rem, 1.1vw, .9rem);
}
.roll-strip figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-alt);
  position: relative;
}
.roll-strip figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.roll-strip figure:hover img { transform: scale(1.06); }
.roll-strip figcaption {
  position: absolute; bottom: 8px; left: 8px; right: 8px;
  background: rgba(255,253,248,.9);
  padding: .3rem .55rem;
  border-radius: 6px;
  font-size: .72rem;
  color: var(--ink);
  letter-spacing: .04em;
  text-align: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
@media (max-width: 900px) {
  .sig-lead { grid-template-columns: 1fr; }
  .sig-lead-visual { max-width: 460px; aspect-ratio: 3 / 4; }
  .roll-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .roll-strip { grid-template-columns: repeat(2, 1fr); }
}

.house {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
.house-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.house-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 5 / 4;
}
.house-visual img { width: 100%; height: 100%; object-fit: cover; }
.house-body h2 em { font-style: italic; color: var(--leaf-deep); }
.house-badges {
  display: flex; flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.4rem;
}
.house-badges span {
  font-size: .84rem;
  color: var(--leaf-deep);
  background: rgba(109,139,98,.12);
  border: 1px solid rgba(109,139,98,.28);
  padding: .35rem .8rem;
  border-radius: 999px;
}

.footer {
  background: #1e150c;
  color: rgba(255,253,248,.78);
  padding: clamp(1.8rem, 3vw, 2.6rem) 0 1rem;
  font-size: .88rem;
}
.footer a { color: rgba(255,253,248,.78); }
.footer a:hover { color: #f0d489; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "emblem   emblem"
    "besuchen kontakt";
  gap: 1rem 2rem;
  margin-bottom: 1.4rem;
  align-items: center;
}
@media (min-width: 780px) {
  .footer-grid {
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "besuchen emblem kontakt";
    gap: 1.4rem 2.4rem;
    align-items: center;
  }
}
.foot-besuchen { grid-area: besuchen; }
.foot-kontakt { grid-area: kontakt; text-align: right; }
.foot-emblem {
  grid-area: emblem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .4rem 0;
}
.foot-emblem {
  position: relative;
  padding: .6rem 1rem;
}
.foot-emblem::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(240, 212, 137, .18) 0%, rgba(240, 212, 137, .06) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.foot-emblem img {
  position: relative;
  width: clamp(94px, 11vw, 132px);
  height: auto;
  filter: brightness(1.08) contrast(1.05) drop-shadow(0 4px 16px rgba(240, 212, 137, .32));
}
@media (max-width: 560px) {
  .foot-kontakt { text-align: left; }
  }

.footer h4 {
  color: var(--paper);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 .6rem;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: .2rem 0; }
.footer .brand-block img { height: 68px; width: auto; margin-bottom: 1rem; }
.footer .brand-block p { color: rgba(255,253,248,.65); font-size: .9rem; line-height: 1.6; max-width: 300px; }
.footer-legal {
  border-top: 1px solid rgba(255,253,248,.1);
  padding-top: .9rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .76rem;
  color: rgba(255,253,248,.5);
  flex-wrap: wrap;
}
.footer-legal ul { display: flex; gap: 1.4rem; flex-wrap: wrap; }

.subpage {
  padding: clamp(3rem, 6vw, 5rem) 0;
  max-width: 780px;
  margin: 0 auto;
}
.subpage h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 2rem; }
.subpage h2 { font-size: 1.4rem; margin: 2.4rem 0 .8rem; }
.subpage h3 { font-size: 1.1rem; margin: 1.6rem 0 .5rem; }
.subpage p, .subpage li { color: var(--ink-2); }
.subpage ul { padding-left: 1.4rem; }

@media (max-width: 900px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--pad-x) 1.4rem;
    gap: .4rem;
    align-items: stretch;
  }
  .nav.open a {
    padding: .75rem 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav.open .btn { align-self: flex-start; margin-top: .6rem; }
  .nav-toggle { display: inline-flex; }
  .header { position: relative; }

  .story-grid,
  .hours-wrap,
  .house-grid { grid-template-columns: 1fr; }

  .story-visual { aspect-ratio: 4 / 3.4; max-width: 520px; }
  .hours-visual { display: none; }
  .house-visual { max-width: 620px; }

  .usp { grid-template-columns: 1fr; gap: 1.5rem; }
  .usp-item { padding-top: 1.2rem; }

  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .visit-grid { grid-template-columns: 1fr; }

  .footer .brand-block { grid-column: 1 / -1; }

  .hero-gallery figure:nth-child(2) { transform: none; aspect-ratio: 3 / 4; }
}

@media (max-width: 560px) {
  .menu-grid { grid-template-columns: 1fr; }
  .hero-gallery { grid-template-columns: 1fr; }
  .hero-gallery figure { aspect-ratio: 4 / 3; }
  .hero-gallery figure:nth-child(2) { display: none; }

  .brand img { height: 54px; }
  .brand-txt { display: none; }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-inner .topbar-mail { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* Map-Button-Paar in visit-card */
.map-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}
.map-btns .btn {
  padding: .55rem .95rem;
  font-size: .85rem;
}
.map-btns .btn svg {
  width: 15px; height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

/* --- visit-card button overrides (dark background) --- */
.visit-card .btn-gold {
  background: #f0d489;
  color: var(--ink);
  border-color: #f0d489;
}
.visit-card .btn-gold:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.visit-card .btn-outline {
  background: transparent;
  color: #f0d489;
  border-color: rgba(240, 212, 137, .5);
}
.visit-card .btn-outline:hover {
  background: #f0d489;
  color: var(--ink);
  border-color: #f0d489;
}


@media (max-width: 380px) {
  
  
}



/* --- btn-icon (icon-only) --- */




/* --- Adress-Card & visit-card p: mehr Zeilenabstand --- */
.visit-card p { line-height: 1.85; margin-bottom: 1.4rem; }

/* --- DECO v3: body-weiter Deko-Layer (smooth) --- */
body { position: relative; }
.page-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}
section { position: relative; /* kein z-index → kein stacking context */ }
section > .wrap { position: relative; z-index: 5; }
.header, .topbar, .footer { position: relative; z-index: 10; }

.pd {
  position: absolute;
  display: block;
  pointer-events: none;
  top: var(--t);
  left: var(--l);
  transform: rotate(var(--r, 0deg));
  -webkit-mask: var(--deco-mask, none) no-repeat center / contain;
          mask: var(--deco-mask, none) no-repeat center / contain;
  background-color: currentColor;
  will-change: transform;
}
.pd.deco-bean     { --deco-mask: url("/assets/img/deco/bean.svg"); }
.pd.deco-leaf     { --deco-mask: url("/assets/img/deco/leaf.svg"); }
.pd.deco-sprig    { --deco-mask: url("/assets/img/deco/sprig.svg"); }
.pd.deco-cup      { --deco-mask: url("/assets/img/deco/cup.svg"); }
.pd.deco-wheat    { --deco-mask: url("/assets/img/deco/wheat.svg"); }
.pd.deco-cinnamon { --deco-mask: url("/assets/img/deco/cinnamon.svg"); }

.pd.d-green    { color: var(--leaf-deep); opacity: .10; }
.pd.d-espresso { color: var(--ink-2);     opacity: .08; }
.pd.d-gold     { color: var(--gold-deep); opacity: .11; }
.pd.d-cinnamon { color: #7d4a1e;          opacity: .10; }
.pd.d-light    { color: #f0d489;          opacity: .12; }

.pd.d-sm { width: clamp(80px,  10vw, 130px); height: clamp(80px,  10vw, 130px); }
.pd.d-md { width: clamp(130px, 16vw, 200px); height: clamp(130px, 16vw, 200px); }
.pd.d-lg { width: clamp(200px, 24vw, 300px); height: clamp(200px, 24vw, 300px); }
.pd.d-xl { width: clamp(260px, 32vw, 400px); height: clamp(260px, 32vw, 400px); }

@media (max-width: 720px) {
  .pd.d-sm { width: clamp(60px,  16vw, 100px); height: clamp(60px,  16vw, 100px); }
  .pd.d-md { width: clamp(100px, 26vw, 160px); height: clamp(100px, 26vw, 160px); }
  .pd.d-lg { width: clamp(150px, 40vw, 220px); height: clamp(150px, 40vw, 220px); }
  .pd.d-xl { width: clamp(190px, 52vw, 280px); height: clamp(190px, 52vw, 280px); }
  .pd.d-green    { opacity: .12; }
  .pd.d-espresso { opacity: .10; }
  .pd.d-gold     { opacity: .13; }
  .pd.d-cinnamon { opacity: .12; }
  .pd.d-light    { opacity: .14; }
}

/* --- Reservieren-Page --- */
.res-hero {
  padding: clamp(2.4rem, 5vw, 4rem) 0 clamp(1.4rem, 3vw, 2rem);
}
.res-lead {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.res-lead h1 em { font-style: italic; color: var(--gold-deep); }

.res-form-sec {
  background: var(--bg-alt);
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}
.res-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 860px) {
  .res-grid { grid-template-columns: 1fr; }
}

.res-info {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
  position: sticky; top: 100px;
}
@media (max-width: 860px) { .res-info { position: static; } }
.res-info h2 {
  font-size: 1.4rem;
  margin: 0 0 1.2rem;
}
.res-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
}
.res-info-list li {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: .95rem 0;
  border-top: 1px solid var(--line);
}
.res-info-list li:first-child { border-top: none; padding-top: 0; }
.res-info-list strong {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}
.res-info-list span { color: var(--ink-2); font-size: .95rem; line-height: 1.55; }
.res-info-contact {
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  margin-top: 1.2rem;
  display: flex; align-items: center; gap: .8rem; flex-wrap: wrap;
}
.res-info-contact p { margin: 0; }

.res-form {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.res-form h2 {
  font-size: 1.4rem;
  margin: 0 0 .3rem;
}
.res-row { display: block; }
.res-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 560px) { .res-row-2 { grid-template-columns: 1fr; } }
.res-row label {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
  font-size: .92rem;
}
.res-row label em.muted {
  color: var(--muted);
  font-style: normal;
  font-weight: 400;
  font-size: .82rem;
}
.res-row input,
.res-row textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .75rem .9rem;
  transition: border-color .15s ease, box-shadow .15s ease;
  min-width: 0;
  width: 100%;
}
.res-row textarea { resize: vertical; min-height: 96px; }
.res-row input:focus,
.res-row textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(180, 138, 62, .18);
}

.res-note {
  padding: .95rem 1.1rem;
  background: rgba(180, 138, 62, .08);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
}
.res-note p { margin: 0; font-size: .88rem; color: var(--ink-2); }

.res-submit {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: .4rem;
}
.res-submit .btn { padding: .95rem 1.6rem; font-size: 1rem; }

/* --- Kaffeebohnen-Trail (feine kleine Bohnen entlang einer Kurve) --- */
.pd-trail {
  width: clamp(28px, 3.5vw, 44px);
  height: clamp(28px, 3.5vw, 44px);
  --deco-mask: url("/assets/img/deco/beantrail.svg");
  color: var(--ink-2);
  opacity: .09;
}
@media (max-width: 720px) {
  .pd-trail {
    width: clamp(22px, 6vw, 34px);
    height: clamp(22px, 6vw, 34px);
    opacity: .11;
  }
}
/* --- Google-Trust-Strip (nur Button) --- */
.gtrust {
  background: var(--bg);
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gtrust-inner {
  display: flex;
  justify-content: center;
}
.gtrust-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.4rem;
  font-size: .95rem;
}
.gtrust-btn svg {
  width: 18px;
  height: 18px;
  color: #f4b400;
  flex-shrink: 0;
}

/* --- visit-card map-btns: konsolidiert (restored) --- */
.visit-card .map-btns {
  display: flex;
  gap: .6rem;
  margin-top: auto !important;
  padding-top: 1.2rem;
  flex-wrap: nowrap;
}
.visit-card .map-btns .btn {
  flex: 1 1 0;
  min-width: 0;
  padding: .85rem 1rem;
  font-size: .95rem;
  line-height: 1.2;
  min-height: 56px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
}
.visit-card .map-btns .btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.7;
  flex-shrink: 0;
}
.visit-card .map-btns .btn.btn-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.8;
}
.visit-card .btn-gold {
  background: #f0d489;
  color: var(--ink);
  border-color: #f0d489;
}
.visit-card .btn-gold:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.visit-card .btn-outline {
  background: transparent;
  color: #f0d489;
  border-color: rgba(240, 212, 137, .5);
}
.visit-card .btn-outline:hover {
  background: #f0d489;
  color: var(--ink);
  border-color: #f0d489;
}
@media (max-width: 380px) {
  .visit-card .map-btns { flex-wrap: wrap; }
  .visit-card .map-btns .btn { flex: 1 1 100%; }
}

/* --- keine Deko über Bildern (verstärkt: z-index + isolation) --- */
main img,
main picture,
main .hero-gallery,
main .hero-gallery figure,
main .story-visual,
main .hours-visual,
main .house-visual,
main .sig-lead-visual,
main .roll-strip,
main .roll-strip figure,
main .menu-card,
main .menu-card .thumb {
  position: relative;
  z-index: 20;
  isolation: isolate;
}
