/* =========================================================================
   R&ouml;stlust – Spezialitätenkaffee & Rösterei, Berlin-Prenzlauer Berg
   Demo-Website – gebaut von TEAM Gold LLC
   Gemeinsames Stylesheet für alle Unterseiten
   ========================================================================= */

:root {
  --color-espresso: #33200f;
  --color-espresso-dark: #1e1209;
  --color-espresso-soft: #55381f;
  --color-ochre: #c78a1e;
  --color-ochre-light: #e8b74a;
  --color-sand: #f6ecdc;
  --color-sand-dark: #ebdcc6;
  --color-cream: #fdf8f0;
  --color-white: #fffdf8;
  --color-ink: #2c231b;
  --color-ink-soft: #6b5a48;
  --color-line: rgba(51, 32, 15, 0.13);
  --color-mustard: #e0a92e;
  --color-mustard-light: #f2c95e;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-soft: 0 14px 32px -16px rgba(51, 32, 15, 0.38);
  --shadow-strong: 0 28px 56px -22px rgba(30, 18, 9, 0.5);
  --container-w: 1180px;
}

/* ------------------------------ Reset ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.68;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 40;
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--color-espresso-dark);
  margin: 0 0 0.5em;
}
p { margin: 0 0 1em; }
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ------------------------------ Typo-Skala ------------------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-ochre);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: var(--color-mustard);
  display: inline-block;
}
h1 { font-size: clamp(2.4rem, 4.8vw, 3.7rem); }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.32rem; }
.lede {
  font-size: 1.14rem;
  color: var(--color-ink-soft);
  max-width: 62ch;
}
.section-head {
  max-width: 730px;
  margin: 0 auto 50px;
  text-align: center;
}
.section-head.left { margin: 0 0 44px; text-align: left; }

/* ------------------------------ Buttons ------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-mustard);
  color: var(--color-espresso-dark);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-strong); background: var(--color-mustard-light); }
.btn-outline {
  border-color: rgba(255,255,255,0.75);
  color: var(--color-white);
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.btn-ghost {
  border-color: var(--color-espresso);
  color: var(--color-espresso);
  background: transparent;
}
.btn-ghost:hover { background: var(--color-espresso); color: var(--color-white); }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn svg { width: 18px; height: 18px; }

/* ------------------------------ Header / Nav ------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 240, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: var(--container-w);
  margin: 0 auto;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.34rem;
  letter-spacing: -0.02em;
  color: var(--color-espresso-dark);
}
.brand-icon { width: 42px; height: 42px; flex-shrink: 0; }
.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-ochre);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 17px;
  row-gap: 8px;
  flex-wrap: wrap;
}
.main-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-ink-soft);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--color-espresso);
  border-color: var(--color-mustard);
}
.header-actions { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--color-espresso-dark);
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 1010px) {
  .main-nav {
    position: fixed;
    inset: 74px 0 0 0;
    background: var(--color-cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 28px 40px;
    gap: 4px;
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border-top: 1px solid var(--color-line);
  }
  .main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a { width: 100%; padding: 12px 4px; border-bottom: 1px solid var(--color-line); }
  .nav-toggle { display: inline-flex; }
  .header-actions .btn-primary span.long { display: none; }
}

/* =========================================================================
   Hero – versetzte, überlappende Bildebenen auf hellem Sandgrund
   ========================================================================= */
.hero-stack {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  padding: 0;
  display: flex;
  align-items: center;
  color: var(--color-espresso);
  background:
    radial-gradient(120% 90% at 8% 92%, rgba(224, 169, 46, 0.13), transparent 58%),
    linear-gradient(168deg, var(--color-cream) 0%, var(--color-sand) 62%, #f1e2cb 100%);
}

/* Dezenter Bohnen-Umriss links unten */
.hero-bean-mark {
  position: absolute;
  left: -66px;
  bottom: -104px;
  width: 340px;
  height: auto;
  color: var(--color-ochre);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

/* --- Bildebenen --- */
.hero-stack-media {
  position: absolute;
  top: -58px;
  right: -44px;
  width: 46%;
  height: 62vh;
  z-index: 1;
}
.hero-plate-main {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0 0 0 24px;
  box-shadow: 0 34px 70px -34px rgba(51, 32, 15, 0.5);
}
.hero-plate-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-plate-inset {
  position: absolute;
  top: calc(100% - 70px);
  left: -170px;
  width: 240px;
  height: 240px;
  margin: 0;
  padding: 8px;
  background: var(--color-cream);
  border-radius: 4px;
  box-shadow: 0 30px 60px -18px rgba(30, 18, 9, 0.42), 0 4px 14px rgba(30, 18, 9, 0.12);
}
.hero-plate-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

/* --- Textebene --- */
.hero-stack-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 92px;
  padding-bottom: 92px;
}
.hero-stack-text { max-width: min(580px, 48vw); }
.hero-eyebrow {
  margin: 0 0 30px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #8a5a16;
}
.hero-stack h1 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.028em;
  color: var(--color-espresso-dark);
  margin: 0 0 30px;
}
.hero-stack h1 em { font-style: normal; color: #a8701d; }
.hero-stack .lede {
  color: var(--color-ink-soft);
  font-size: 1.09rem;
  max-width: 462px;
  margin-bottom: 0;
}
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 38px; }
/* Auf hellem Grund braucht der Outline-Button dunkle Kontur statt weißer */
.hero-stack .btn-outline {
  border-color: rgba(51, 32, 15, 0.42);
  color: var(--color-espresso);
}
.hero-stack .btn-outline:hover {
  background: var(--color-espresso);
  border-color: var(--color-espresso);
  color: var(--color-white);
}

/* --- Kennzahlenzeile ohne Pillen --- */
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
  margin: 52px 0 0;
}
.hero-fact {
  padding: 2px 26px;
  border-left: 1px solid rgba(51, 32, 15, 0.16);
}
.hero-fact:first-child { padding-left: 0; border-left: none; }
.hero-fact-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.62rem;
  line-height: 1.1;
  color: var(--color-espresso-dark);
}
.hero-fact-num span { font-size: 0.72em; color: #a8701d; }
.hero-fact-label {
  margin: 6px 0 0;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
}

@media (max-width: 1080px) {
  .hero-stack-media { width: 44%; height: 54vh; top: -40px; }
  .hero-plate-inset { width: 200px; height: 200px; left: -130px; }
  .hero-stack-text { max-width: 40vw; }
  .hero-stack h1 { font-size: clamp(2.2rem, 4.4vw, 3.1rem); }
  .hero-stack .lede { max-width: 100%; font-size: 1.02rem; }
  .hero-facts { margin-top: 40px; }
}

@media (max-width: 900px) {
  .hero-stack {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }
  .hero-stack-media {
    position: relative;
    order: -1;
    top: 0;
    right: 0;
    width: 100%;
    height: 40vh;
    min-height: 240px;
  }
  .hero-plate-main { border-radius: 0; }
  .hero-plate-inset {
    top: calc(100% - 40px);
    left: 22px;
    width: 148px;
    height: 148px;
  }
  .hero-stack-inner {
    padding-top: 130px;
    padding-bottom: 64px;
  }
  .hero-stack-text { max-width: none; }
  .hero-stack h1 { font-size: clamp(2.8rem, 5vw, 4.6rem); }
  .hero-stack .lede { font-size: 1.05rem; max-width: 100%; }
  .hero-facts { margin-top: 44px; }
  .hero-bean-mark { width: 220px; left: -50px; bottom: -70px; }
}

@media (max-width: 620px) {
  /* Zeile bleibt dreispaltig – Labels dürfen umbrechen statt zu wrappen */
  .hero-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
  .hero-fact { padding: 2px 12px; }
  .hero-fact-num { font-size: 1.34rem; }
  .hero-fact-label { font-size: 0.58rem; letter-spacing: 0.08em; line-height: 1.5; }
}

/* Seitenkopf (Unterseiten) */
.page-hero {
  color: var(--color-white);
  background: linear-gradient(115deg, var(--color-espresso-dark), var(--color-espresso) 58%, #7a4a17 125%);
  padding: 74px 0 66px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 16px 16px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--color-white); max-width: 860px; }
.page-hero .lede { color: rgba(255,255,255,0.88); max-width: 68ch; }
.page-hero .eyebrow { color: var(--color-mustard-light); }
.breadcrumb {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.72);
  margin-bottom: 18px;
}
.breadcrumb a { text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb a:hover { color: var(--color-mustard-light); }

/* ------------------------------ Sektionen ------------------------------ */
section { padding: 88px 0; }
.section-alt { background: var(--color-sand); }
.section-sand { background: var(--color-sand-dark); }
.section-dark {
  background: linear-gradient(160deg, var(--color-espresso-dark), var(--color-espresso));
  color: rgba(255,255,255,0.9);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--color-white); }
.section-dark .lede { color: rgba(255,255,255,0.8); }
.section-dark .eyebrow { color: var(--color-mustard-light); }

/* ------------------------------ Raster / Feature-Karten ------------------------------ */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--color-espresso-soft), var(--color-espresso-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.icon-badge svg { width: 28px; height: 28px; color: var(--color-mustard-light); }
.icon-badge.ochre { background: linear-gradient(145deg, var(--color-mustard-light), var(--color-ochre)); }
.icon-badge.ochre svg { color: var(--color-espresso-dark); }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--color-ink-soft); margin-bottom: 0; font-size: 0.97rem; }

/* ------------------------------ Zahlenleiste ------------------------------ */
.stats-bar {
  background: var(--color-espresso-dark);
  color: var(--color-white);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--color-mustard-light);
  margin-bottom: 4px;
  line-height: 1;
}
.stat-label { font-size: 0.86rem; color: rgba(255,255,255,0.75); letter-spacing: 0.02em; }
@media (max-width: 800px) { .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 34px; } }

/* ------------------------------ Produkt-/Bohnenkarten ------------------------------ */
.bean-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}
.bean-card:hover { transform: translateY(-4px); }
.bean-head {
  padding: 26px 26px 20px;
  color: var(--color-white);
  position: relative;
}
.bean-head h3 { color: var(--color-white); margin-bottom: 2px; }
.bean-origin { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.78); }
.bean-body { padding: 22px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.bean-body p { color: var(--color-ink-soft); font-size: 0.95rem; }
.bean-meta { margin-top: auto; padding-top: 16px; border-top: 1px dashed var(--color-line); display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.bean-price { font-family: var(--font-display); font-weight: 700; color: var(--color-ochre); font-size: 1.2rem; white-space: nowrap; }
.bean-weight { font-size: 0.82rem; color: var(--color-ink-soft); }
.b-bg-1 { background: linear-gradient(150deg, #7a4a17, #33200f); }
.b-bg-2 { background: linear-gradient(150deg, #a8701d, #4a2c11); }
.b-bg-3 { background: linear-gradient(150deg, #5c4326, #241708); }

.tag-row { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.tag {
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--color-sand);
  color: var(--color-espresso-soft);
  border: 1px solid var(--color-line);
}
.tag.solid { background: var(--color-mustard); color: var(--color-espresso-dark); border-color: transparent; }

/* Röstprofil-Skala */
.roast-scale { display: flex; gap: 5px; margin-top: 14px; align-items: center; }
.roast-dot { width: 15px; height: 15px; border-radius: 50%; background: var(--color-sand-dark); border: 1px solid var(--color-line); }
.roast-dot.on { background: var(--color-espresso-soft); border-color: var(--color-espresso-soft); }
.roast-scale-label { font-size: 0.78rem; color: var(--color-ink-soft); margin-left: 8px; letter-spacing: 0.04em; }

/* ------------------------------ Bewertungen ------------------------------ */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 10px 20px;
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  font-size: 0.94rem;
}
.stars { display: inline-flex; gap: 2px; color: var(--color-mustard); }
.stars svg { width: 18px; height: 18px; fill: currentColor; }

/* Sprunglink für Tastaturnutzung */
.skip-link:focus {
  position: fixed !important;
  left: 16px !important;
  top: 12px;
  z-index: 200;
  background: var(--color-mustard);
  color: var(--color-espresso-dark);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-quote { font-size: 1.01rem; color: var(--color-ink-soft); margin-bottom: 20px; }
.testimonial-quote::before { content: "\201C"; color: var(--color-mustard); font-family: var(--font-display); font-size: 1.5em; line-height: 0; margin-right: 3px; }
.testimonial-author { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.monogram {
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(145deg, var(--color-mustard), var(--color-espresso-soft));
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.95rem; color: var(--color-espresso-dark); }
.testimonial-meta { font-size: 0.82rem; color: var(--color-ink-soft); }
.testimonial-stars { margin-bottom: 14px; }

.rating-breakdown { display: grid; gap: 10px; margin-top: 10px; }
.rating-row { display: grid; grid-template-columns: 54px 1fr 48px; align-items: center; gap: 14px; font-size: 0.86rem; color: var(--color-ink-soft); }
.rating-bar { height: 9px; border-radius: 999px; background: var(--color-sand-dark); overflow: hidden; }
.rating-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--color-mustard), var(--color-ochre)); border-radius: 999px; }

/* ------------------------------ Zeitstrahl ------------------------------ */
.timeline { position: relative; margin-left: 12px; padding-left: 38px; border-left: 3px solid var(--color-mustard); }
.timeline-item { position: relative; padding-bottom: 46px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -48px;
  top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--color-espresso);
  border: 3px solid var(--color-cream);
  box-shadow: 0 0 0 3px var(--color-mustard);
}
.timeline-year {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-ochre);
  font-size: 1.5rem;
  margin-bottom: 4px;
  line-height: 1.1;
}
.timeline-item h3 { margin-bottom: 8px; }
.timeline-item p { color: var(--color-ink-soft); margin-bottom: 0; }
.section-alt .timeline-item::before { border-color: var(--color-sand); }

/* Prozess-Zeitstrahl (horizontal, Röstweg) */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
@media (max-width: 1000px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process-steps { grid-template-columns: 1fr; } }
.process-step {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 30px 26px 28px;
  box-shadow: var(--shadow-soft);
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-espresso-dark);
  background: var(--color-mustard);
  width: 46px; height: 46px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.process-step h3 { font-size: 1.16rem; margin-bottom: 8px; }
.process-step p { color: var(--color-ink-soft); font-size: 0.95rem; margin-bottom: 0; }
.process-step .step-time { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-ochre); font-weight: 700; margin-bottom: 6px; }

/* ------------------------------ Team ------------------------------ */
.team-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  padding: 30px 26px 32px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  height: 100%;
}
.team-monogram {
  width: 88px; height: 88px;
  margin: 0 auto 18px;
  border-radius: 26px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.9rem;
  color: var(--color-white);
  background: linear-gradient(150deg, var(--color-mustard-light), var(--color-ochre) 50%, var(--color-espresso));
  border: 4px solid var(--color-cream);
  box-shadow: var(--shadow-soft);
}
.team-role { color: var(--color-ochre); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.team-bio { color: var(--color-ink-soft); font-size: 0.93rem; margin-bottom: 0; }
.team-facts { list-style: none; margin: 16px 0 0; padding: 16px 0 0; border-top: 1px dashed var(--color-line); text-align: left; }
.team-facts li { font-size: 0.86rem; color: var(--color-ink-soft); padding: 4px 0 4px 20px; position: relative; }
.team-facts li::before { content: "•"; position: absolute; left: 4px; color: var(--color-mustard); font-weight: 700; }

/* ------------------------------ Karte / Menü ------------------------------ */
.menu-section { margin-bottom: 58px; }
.menu-section:last-child { margin-bottom: 0; }
.menu-section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--color-mustard);
}
.menu-section-head .icon-badge { margin-bottom: 0; width: 48px; height: 48px; border-radius: 14px; }
.menu-section-head .icon-badge svg { width: 24px; height: 24px; }
.menu-section-head h2 { margin: 0; font-size: 1.7rem; }
.menu-section-head p { margin: 4px 0 0; font-size: 0.9rem; color: var(--color-ink-soft); }
.menu-row {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-line);
}
.menu-row:last-child { border-bottom: none; }
.menu-row-name { font-weight: 700; color: var(--color-espresso-dark); font-size: 1.02rem; }
.menu-row-desc { color: var(--color-ink-soft); font-size: 0.91rem; margin-top: 3px; }
.menu-row-price { font-family: var(--font-display); font-weight: 700; color: var(--color-ochre); white-space: nowrap; font-size: 1.06rem; }
.menu-row-price small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.74rem; color: var(--color-ink-soft); text-align: right; }
.menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 56px; }
@media (max-width: 860px) { .menu-cols { grid-template-columns: 1fr; } }
.menu-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
  font-size: 0.86rem;
  color: var(--color-ink-soft);
}
.menu-legend span { display: inline-flex; align-items: center; gap: 7px; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }

.note-box {
  background: var(--color-sand);
  border-left: 4px solid var(--color-mustard);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  font-size: 0.94rem;
  color: var(--color-ink-soft);
}
.note-box strong { color: var(--color-espresso-dark); }
.note-box p:last-child { margin-bottom: 0; }
.section-alt .note-box { background: var(--color-white); }

/* ------------------------------ Kontakt / Formular ------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; } }
.info-block { display: flex; gap: 16px; margin-bottom: 28px; }
.info-block .icon-badge { flex-shrink: 0; margin-bottom: 0; width: 48px; height: 48px; border-radius: 14px; }
.info-block .icon-badge svg { width: 24px; height: 24px; }
.info-block h3 { margin-bottom: 6px; font-size: 1.08rem; }
.info-block p { color: var(--color-ink-soft); margin-bottom: 0; font-size: 0.95rem; }

.map-placeholder {
  border-radius: var(--radius-lg);
  height: 300px;
  background: linear-gradient(135deg, #efe4d1, #ddccb0);
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}
.map-placeholder svg.map-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%); width: 46px; height: 46px; color: var(--color-espresso); filter: drop-shadow(0 8px 10px rgba(0,0,0,0.28)); }
.map-label {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(30,18,9,0.88);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.demo-notice {
  background: #fff5dd;
  border: 1px solid var(--color-mustard);
  color: #6b4d0d;
  padding: 15px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.demo-notice svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.demo-notice p { margin: 0; }

.form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 520px) { .form-card { padding: 24px 20px; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 0.85rem; font-weight: 700; color: var(--color-espresso-dark); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 0.96rem;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-line);
  background: var(--color-cream);
  color: var(--color-ink);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-ochre);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(224,169,46,0.18);
}
.field-check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--color-ink-soft); margin-bottom: 22px; }
.field-check input { margin-top: 4px; width: auto; }
.form-demo-feedback {
  display: none;
  margin-top: 20px;
  background: var(--color-sand);
  border: 1px dashed var(--color-ochre);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.92rem;
  color: var(--color-espresso-soft);
}

/* ------------------------------ Öffnungszeiten ------------------------------ */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 10px 0; border-bottom: 1px dashed var(--color-line); font-size: 0.95rem; color: var(--color-ink-soft); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--color-espresso-dark); }

/* ------------------------------ CTA-Band ------------------------------ */
.cta-band {
  background: linear-gradient(120deg, var(--color-espresso), var(--color-espresso-dark) 70%, #7a4a17 130%);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 58px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-strong);
}
.cta-band h2 { color: var(--color-white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 0; max-width: 56ch; }
@media (max-width: 620px) { .cta-band { padding: 40px 26px; } }

/* ------------------------------ Rechtliches ------------------------------ */
.legal-block { max-width: 830px; margin: 0 auto; }
.legal-block h2 { margin-top: 52px; }
.legal-block h2:first-child { margin-top: 0; }
.legal-block h3 { font-size: 1.1rem; margin-top: 30px; }
.legal-block p, .legal-block li { color: var(--color-ink-soft); }
.legal-block ul { margin: 12px 0 12px 4px; }
.legal-block li { padding: 4px 0 4px 22px; position: relative; }
.legal-block li::before { content: "—"; position: absolute; left: 0; color: var(--color-ochre); }
.legal-tabs { display: flex; gap: 12px; margin-bottom: 44px; flex-wrap: wrap; }
.legal-tabs a {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--color-line);
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--color-white);
}
.legal-tabs a:hover { border-color: var(--color-ochre); color: var(--color-ochre); }
hr.legal-divider { border: none; border-top: 3px solid var(--color-mustard); margin: 60px 0; }

/* ------------------------------ Footer ------------------------------ */
.site-footer {
  background: var(--color-espresso-dark);
  color: rgba(255,255,255,0.82);
  padding: 66px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 46px;
}
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .brand-icon { width: 38px; height: 38px; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.22rem; color: var(--color-white); font-weight: 700; }
.site-footer h4 {
  font-family: var(--font-body);
  color: var(--color-mustard-light);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.site-footer p { font-size: 0.92rem; }
.footer-links li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-links a { transition: color 0.15s ease; }
.footer-links a:hover { color: var(--color-mustard-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.footer-demo-note {
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.28);
  border-radius: var(--radius-md);
  padding: 15px 18px;
  font-size: 0.82rem;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.76);
}
.footer-demo-note strong { color: var(--color-mustard-light); }

/* ------------------------------ Helfer ------------------------------ */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.two-col-text { columns: 2; column-gap: 52px; }
@media (max-width: 800px) { .two-col-text { columns: 1; } }
.two-col-text p { break-inside: avoid; }

.divider-bean { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 44px 0; color: var(--color-ochre); }
.divider-bean svg { width: 30px; height: 30px; }
.divider-bean::before, .divider-bean::after { content: ""; flex: 1; height: 1px; background: var(--color-line); max-width: 170px; }

.value-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 660px) { .value-list { grid-template-columns: 1fr; } }
.value-item { display: flex; gap: 15px; align-items: flex-start; }
.value-item .icon-badge { width: 46px; height: 46px; border-radius: 14px; margin-bottom: 0; flex-shrink: 0; }
.value-item .icon-badge svg { width: 22px; height: 22px; }
.value-item h4 { margin-bottom: 4px; font-family: var(--font-body); font-weight: 700; font-size: 1rem; color: var(--color-espresso-dark); }
.value-item p { font-size: 0.9rem; color: var(--color-ink-soft); margin-bottom: 0; }

.info-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  background: var(--color-sand);
  border: 1px dashed var(--color-ochre);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--color-espresso-dark);
  font-weight: 600;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 30px;
  text-align: center;
}
.info-strip svg { width: 18px; height: 18px; color: var(--color-ochre); flex-shrink: 0; }

.quote-slab {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  color: var(--color-espresso-dark);
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  line-height: 1.35;
}
.quote-slab span { color: var(--color-ochre); }

/* Abo-Karten */
.plan-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.plan-card.featured { border: 2px solid var(--color-mustard); }
.plan-badge {
  position: absolute; top: -14px; left: 28px;
  background: var(--color-mustard);
  color: var(--color-espresso-dark);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 15px;
  border-radius: 999px;
}
.plan-price { font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; color: var(--color-ochre); margin: 6px 0 16px; line-height: 1.1; }
.plan-price small { font-family: var(--font-body); font-size: 0.8rem; color: var(--color-ink-soft); font-weight: 500; }
.plan-list { margin: 0 0 24px; }
.plan-list li { display: flex; gap: 10px; padding: 8px 0; font-size: 0.93rem; color: var(--color-ink-soft); border-bottom: 1px dashed var(--color-line); }
.plan-list li:last-child { border-bottom: none; }
.plan-list svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--color-ochre); margin-top: 3px; }
.plan-card .btn { margin-top: auto; justify-content: center; }

/* FAQ */
.faq-item { background: var(--color-white); border: 1px solid var(--color-line); border-radius: var(--radius-md); padding: 24px 26px; margin-bottom: 16px; box-shadow: var(--shadow-soft); }
.faq-item h3 { font-size: 1.08rem; margin-bottom: 8px; }
.faq-item p { color: var(--color-ink-soft); font-size: 0.95rem; margin-bottom: 0; }

/* =========================================================================
   Fotografie-Erweiterungen
   ========================================================================= */

.page-hero.has-photo {
  background-image:
    linear-gradient(100deg, rgba(30,18,9,0.95) 0%, rgba(51,32,15,0.87) 48%, rgba(122,74,23,0.58) 100%),
    var(--photo);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

/* Vollbreite Foto-Band mit Zitat */
.photo-band {
  position: relative;
  padding: 0;
  color: var(--color-white);
  background-image:
    linear-gradient(100deg, rgba(30,18,9,0.94) 0%, rgba(51,32,15,0.82) 45%, rgba(122,74,23,0.5) 100%),
    var(--photo);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.photo-band-inner { padding: 116px 0; max-width: 780px; }
.photo-band blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  line-height: 1.34;
  color: var(--color-white);
}
.photo-band blockquote::before { content: "\201C"; color: var(--color-mustard-light); }
.photo-band blockquote::after { content: "\201D"; color: var(--color-mustard-light); }
.photo-band cite {
  display: block;
  margin-top: 22px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-mustard-light);
}
@media (max-width: 720px) { .photo-band-inner { padding: 76px 0; } }

/* Zweispaltige Text/Bild-Sektion */
.split-media { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split-media.reverse .media-frame { order: 2; }
@media (max-width: 920px) { .split-media { grid-template-columns: 1fr; gap: 34px; } .split-media.reverse .media-frame { order: 0; } }
.media-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-strong); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.media-frame.framed-gold { border: 3px solid var(--color-mustard); }
.media-caption { font-size: 0.83rem; color: var(--color-ink-soft); margin-top: 10px; font-style: italic; }

/* Foto-Galerie (gemischtes Raster) */
.photo-gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.photo-gallery figure {
  margin: 0;
  position: relative;
  grid-column: span 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--color-espresso-dark);
}
.photo-gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; transition: transform 0.45s ease; }
.photo-gallery figure:hover img { transform: scale(1.05); }
.photo-gallery figure.span-3 { grid-column: span 3; }
.photo-gallery figure.span-4 { grid-column: span 4; }
.photo-gallery figure.span-3 img { aspect-ratio: 4 / 3; }
.photo-gallery figure.span-4 img { aspect-ratio: 16 / 9; }
.photo-gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  inset: auto 0 0 0;
  padding: 44px 22px 18px;
  color: var(--color-white);
  font-size: 0.89rem;
  line-height: 1.45;
  background: linear-gradient(to top, rgba(30,18,9,0.94) 0%, rgba(30,18,9,0.6) 55%, rgba(30,18,9,0) 100%);
}
.photo-gallery figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  margin-bottom: 2px;
  color: var(--color-white);
}

/* Typografische Farbkacheln in der Galerie */
.type-tile {
  grid-column: span 2;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 240px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  color: var(--color-white);
}
.type-tile.span-3 { grid-column: span 3; }
.type-tile.span-4 { grid-column: span 4; }
.type-tile::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 15px 15px;
  pointer-events: none;
}
.type-tile > * { position: relative; z-index: 1; }
.type-tile .tt-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; opacity: 0.82; margin-bottom: 12px; }
.type-tile .tt-big { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; margin-bottom: 8px; }
.type-tile .tt-quote { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.33; margin-bottom: 10px; }
.type-tile p { font-size: 0.9rem; margin-bottom: 0; opacity: 0.88; }
.type-tile .tt-rows { margin-top: 8px; }
.type-tile .tt-rows li { display: flex; justify-content: space-between; gap: 14px; font-size: 0.88rem; padding: 7px 0; border-bottom: 1px dashed rgba(255,255,255,0.24); }
.type-tile .tt-rows li:last-child { border-bottom: none; }
.tt-espresso { background: linear-gradient(150deg, #4a2c11, #1e1209); }
.tt-ochre { background: linear-gradient(150deg, #e0a92e, #a8701d); color: #2b1a08; }
.tt-ochre .tt-label { opacity: 0.7; }
.tt-ochre .tt-rows li { border-color: rgba(43,26,8,0.22); }
.tt-sand { background: linear-gradient(150deg, #f2e3cb, #d9c19a); color: var(--color-espresso-dark); }
.tt-sand::after { background-image: radial-gradient(rgba(51,32,15,0.08) 1px, transparent 1px); }
.tt-sand .tt-rows li { border-color: rgba(51,32,15,0.2); }
.tt-clay { background: linear-gradient(150deg, #8a5a2b, #3b2410); }

@media (max-width: 920px) {
  .photo-gallery { grid-template-columns: repeat(4, 1fr); }
  .photo-gallery figure.span-4, .type-tile.span-4 { grid-column: span 4; }
}
@media (max-width: 620px) {
  .photo-gallery { grid-template-columns: 1fr; gap: 18px; }
  .photo-gallery figure,
  .photo-gallery figure.span-3,
  .photo-gallery figure.span-4,
  .type-tile, .type-tile.span-3, .type-tile.span-4 { grid-column: span 1; }
  .photo-gallery img,
  .photo-gallery figure.span-3 img,
  .photo-gallery figure.span-4 img { aspect-ratio: 4 / 3; }
}
