/* =========================================================
   Café de Villa — Homepage Wedel
   Page styles. Tokens & fonts come from assets/colors_and_type.css
   ========================================================= */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body { margin: 0; padding: 0; background: var(--cdv-paper); color: var(--cdv-ink); overflow-x: hidden; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--cdv-ink); color: var(--cdv-cream);
  padding: 12px 18px; border-radius: 0 0 12px 0;
  font-family: var(--font-body); font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ===================== NAV ===================== */
.nav {
  position: sticky; top: 16px; z-index: 60;
  max-width: 1200px; margin: 16px auto 0;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(251,246,238,0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--cdv-stone-100);
  border-radius: 999px;
  padding: 10px 14px 10px 22px;
  box-shadow: var(--shadow-md);
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand img { width: 38px; height: 48px; object-fit: contain; object-position: bottom; }
.nav-brand-name {
  font-family: var(--font-display); font-weight: 800;
  font-size: 15px; text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--cdv-coral-600);
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--cdv-ink); text-decoration: none;
  transition: color var(--dur-fast);
}
.nav-links a:hover { color: var(--cdv-coral-600); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-cta {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.02em;
  background: var(--cdv-sunset); color: var(--cdv-cream);
  border: none; border-radius: 999px;
  padding: 12px 22px; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 20px rgba(243,137,75,0.25);
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
}
.nav-cta:hover { box-shadow: 0 12px 28px rgba(243,137,75,0.32); transform: translateY(-1px); }
.nav-cta:active { transform: scale(0.98); }
.nav-cta svg { width: 16px; height: 16px; stroke: currentColor; }

.burger {
  display: none; width: 46px; height: 46px; border-radius: 999px;
  border: 1px solid var(--cdv-stone-100); background: var(--cdv-white);
  cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.burger span { width: 20px; height: 2px; background: var(--cdv-ink); border-radius: 2px; transition: transform var(--dur-base), opacity var(--dur-base); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: rgba(26,42,46,0.45); backdrop-filter: blur(4px);
  display: none; opacity: 0; transition: opacity var(--dur-base);
}
.mobile-menu.open { display: block; opacity: 1; }
.mobile-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(82%, 360px);
  background: var(--cdv-paper); padding: 28px 26px;
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: var(--shadow-xl);
  transform: translateX(100%); transition: transform var(--dur-slow) var(--ease-out);
}
.mobile-menu.open .mobile-panel { transform: translateX(0); }
.mobile-panel .m-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mobile-panel a {
  font-family: var(--font-display); font-weight: 600; font-size: 22px;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--cdv-ink); text-decoration: none;
  padding: 12px 0; border-bottom: 1px solid var(--cdv-stone-100);
}
.mobile-panel a:hover { color: var(--cdv-coral-600); }
.mobile-panel .nav-cta { margin-top: 22px; justify-content: center; font-size: 15px; padding: 16px; }
.m-close { width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--cdv-stone-100); background: var(--cdv-white); cursor: pointer; font-size: 20px; line-height: 1; color: var(--cdv-ink); }

/* ===================== SHARED ===================== */
section { scroll-margin-top: 100px; }
.eyebrow {
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--cdv-coral-600);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow.on-dark { color: var(--cdv-cream); opacity: 0.92; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; display: inline-block; }
.section-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: 64px; line-height: 0.96; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--cdv-ink); margin: 14px 0 16px;
}
.section-title .accent {
  font-family: var(--font-accent); font-weight: 400;
  text-transform: none; letter-spacing: 0; color: var(--cdv-coral-500);
  font-size: 0.86em; display: inline-block; transform: translateY(-2px) rotate(-2deg);
}
.section-lead { font-family: var(--font-body); font-size: 19px; line-height: 1.6; color: var(--cdv-stone-500); max-width: 620px; }

.btn {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.04em;
  border-radius: 999px; padding: 16px 28px; cursor: pointer; border: none;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  transition: transform var(--dur-fast), box-shadow var(--dur-fast), background var(--dur-fast);
}
.btn svg { width: 18px; height: 18px; stroke: currentColor; }
.btn--cream { background: var(--cdv-cream); color: var(--cdv-ink); box-shadow: 0 8px 22px rgba(26,42,46,0.18); }
.btn--cream:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(26,42,46,0.22); }
.btn--ghost-light { background: transparent; color: var(--cdv-cream); border: 2px solid rgba(255,253,213,0.6); }
.btn--ghost-light:hover { background: rgba(255,253,213,0.12); }
.btn--dark { background: var(--cdv-ink); color: var(--cdv-cream); box-shadow: var(--shadow-md); }
.btn--dark:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn--sunset { background: var(--cdv-sunset); color: var(--cdv-cream); box-shadow: 0 8px 22px rgba(243,137,75,0.28); }
.btn--sunset:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(243,137,75,0.34); }
.btn--ghost-dark { background: transparent; color: var(--cdv-ink); border: 2px solid var(--cdv-stone-200); }
.btn--ghost-dark:hover { border-color: var(--cdv-coral-400); color: var(--cdv-coral-600); }

/* ===================== RESPONSIVE WRAP GUARDS ===================== */
/* Long German compounds (e.g. "Spezialitätenkaffee") must hyphenate instead
   of overflowing the dark panels, which clip via overflow:hidden. */
.hero h1,
.section-title,
.legal h1 { overflow-wrap: break-word; hyphens: manual; }
/* Let single-column (1fr) grids shrink below their longest word so the track
   no longer drags content past the panel edge on narrow viewports. */
.hero-grid > *,
.visit-grid > *,
.story > *,
.coffee-grid > *,
.connect > *,
.prod-hero-grid > *,
.menu-cols > * { min-width: 0; }

/* ===================== HERO ===================== */
.hero { margin-top: 28px; }
.hero-panel {
  background: var(--cdv-sunset);
  border-radius: 40px; padding: 72px 64px 56px;
  position: relative; overflow: hidden; color: var(--cdv-cream);
}
.hero-panel::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,253,213,0.07) 1px, transparent 1px);
  background-size: 3px 3px; pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center;
}
.hero-kicker {
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--cdv-cream);
  opacity: 0.92; margin: 0 0 18px; display: inline-flex; align-items: center; gap: 10px;
}
.hero-kicker::before { content: ""; width: 28px; height: 2px; background: var(--cdv-cream); display: inline-block; }
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 62px; line-height: 0.96; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--cdv-cream); margin: 0;
}
.hero h1 .accent {
  font-family: var(--font-accent); font-weight: 400; text-transform: none;
  letter-spacing: 0; font-size: 0.8em; display: inline-block; transform: rotate(-2deg);
}
.hero-sub { font-family: var(--font-body); font-size: 19px; line-height: 1.55; color: var(--cdv-cream); opacity: 0.96; max-width: 460px; margin: 22px 0 0; }
.hero-ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 30px; }
.hero-photo {
  width: 100%; aspect-ratio: 4/5; border-radius: 28px;
  box-shadow: var(--shadow-xl); overflow: hidden;
  outline: 6px solid rgba(255,253,213,0.18);
}
.hero-photo img, .story-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-meta {
  position: relative; z-index: 1; margin-top: 44px; padding-top: 28px;
  border-top: 1px solid rgba(255,253,213,0.22);
  display: flex; gap: 48px; flex-wrap: wrap;
  font-family: var(--font-body); font-size: 14px; color: var(--cdv-cream);
}
.hero-meta div { opacity: 0.95; display: flex; align-items: center; gap: 10px; }
.hero-meta b { display: block; font-weight: 700; font-size: 14px; }
.hero-meta small { font-weight: 400; font-size: 13px; opacity: 0.85; }
.hero-meta svg { width: 20px; height: 20px; stroke: var(--cdv-cream); opacity: 0.85; flex-shrink: 0; }

/* ===================== ANGEBOT ===================== */
.section-pad { padding: 96px 0; }
.angebot-inner { background: var(--cdv-paper-warm); border-radius: 40px; padding: 72px 64px; }
/* Tweakable tokens (driven by the Tweaks panel) */
:root {
  --offer-tint: var(--cdv-ink);
  --offer-overlay-o: 0.58;
  --offer-radius: 26px;
  --offer-justify: flex-end;
  --offer-text-align: left;
}
.offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px; }
.offer-card {
  position: relative; overflow: hidden; min-height: 360px;
  border-radius: var(--offer-radius);
  display: flex; flex-direction: column; justify-content: var(--offer-justify);
  background: var(--cdv-stone-100);
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.offer-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
img.offer-bg { object-fit: cover; display: block; }
.offer-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: var(--offer-overlay-o);
  background: linear-gradient(to top,
    var(--offer-tint) 0%,
    color-mix(in srgb, var(--offer-tint) 55%, transparent) 40%,
    color-mix(in srgb, var(--offer-tint) 0%, transparent) 82%);
}
.offer-content {
  position: relative; z-index: 2; padding: 30px 28px;
  display: flex; flex-direction: column; gap: 12px;
  text-align: var(--offer-text-align);
  align-items: var(--offer-content-align, flex-start);
  color: var(--cdv-cream);
}
.offer-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: rgba(255,253,213,0.18); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; color: var(--cdv-cream);
}
.offer-icon svg { width: 26px; height: 26px; stroke: currentColor; }
body.tw-noicons .offer-icon { display: none; }
.offer-card h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 27px;
  text-transform: uppercase; letter-spacing: -0.015em; line-height: 1; margin: 6px 0 0;
  color: var(--cdv-cream); text-shadow: 0 1px 14px rgba(14,21,23,0.35);
}
.offer-card p {
  font-family: var(--font-body); font-size: 15.5px; line-height: 1.55;
  color: var(--cdv-cream); opacity: 0.95; margin: 0; max-width: 34ch;
  text-shadow: 0 1px 12px rgba(14,21,23,0.35);
}
.offer-banner {
  margin-top: 26px; background: var(--cdv-white); border-radius: 20px;
  padding: 22px 30px; display: flex; align-items: center; gap: 18px;
  box-shadow: var(--shadow-sm); border: 1.5px dashed var(--cdv-coral-200);
}
.offer-banner .pill-icon {
  width: 46px; height: 46px; border-radius: 999px; background: var(--cdv-sunset);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--cdv-cream);
}
.offer-banner .pill-icon svg { width: 24px; height: 24px; stroke: currentColor; }
.offer-banner strong { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 18px; letter-spacing: -0.01em; color: var(--cdv-ink); }
.offer-banner span { font-family: var(--font-body); font-size: 15px; color: var(--cdv-stone-500); }

/* ===================== ÜBER UNS ===================== */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-photo { width: 100%; aspect-ratio: 4/5; border-radius: 28px; box-shadow: var(--shadow-warm); overflow: hidden; }
.story p { font-family: var(--font-body); font-size: 17.5px; line-height: 1.65; color: var(--cdv-ink-soft); max-width: 560px; }
.story p + p { margin-top: 16px; }
.values { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.value-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cdv-white); border: 1px solid var(--cdv-stone-100);
  border-radius: 999px; padding: 11px 20px 11px 14px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--cdv-ink);
  box-shadow: var(--shadow-xs);
}
.value-badge .vb-icon { width: 34px; height: 34px; border-radius: 999px; background: var(--cdv-teal-100); color: var(--cdv-teal-700); display: flex; align-items: center; justify-content: center; }
.value-badge .vb-icon svg { width: 19px; height: 19px; stroke: currentColor; }

/* ===================== KAFFEE (Uganda) ===================== */
.coffee { background: var(--cdv-ink); border-radius: 40px; padding: 0; overflow: hidden; color: var(--cdv-cream); }
.coffee-grid { display: grid; grid-template-columns: 1fr 1.05fr; align-items: stretch; }
.coffee-photo { min-height: 100%; }
.coffee-photo img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; display: block; }
.coffee-text { padding: 72px 60px; }
.coffee-text .section-title { color: var(--cdv-cream); }
.coffee-text .section-title .accent { color: var(--cdv-coral-300); }
.coffee-text p { font-family: var(--font-body); font-size: 17.5px; line-height: 1.65; color: var(--cdv-cream); opacity: 0.92; max-width: 520px; }
.coffee-text p + p { margin-top: 14px; }
.coffee-features { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 30px; }
.coffee-feature { display: flex; gap: 14px; align-items: flex-start; }
.coffee-feature .cf-icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,253,213,0.12); color: var(--cdv-coral-300); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.coffee-feature .cf-icon svg { width: 22px; height: 22px; stroke: currentColor; }
.coffee-feature b { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 17px; letter-spacing: -0.01em; display: block; margin-bottom: 2px; }
.coffee-feature span { font-family: var(--font-body); font-size: 15px; color: var(--cdv-cream); opacity: 0.82; }
.coffee-buttons { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ===================== KAFFEE KAUFEN (Produkt-Seite) ===================== */
.prod-hero { margin-top: 28px; }
.prod-hero-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: center; }
.prod-photo {
  position: relative; width: 100%; aspect-ratio: 4/5; border-radius: 32px; overflow: hidden;
  box-shadow: var(--shadow-warm); background: var(--cdv-paper-warm);
}
.prod-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prod-badge {
  position: absolute; top: 20px; left: 20px; z-index: 3;
  background: var(--cdv-forest); color: var(--cdv-cream);
  font-family: var(--font-body); font-weight: 700; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 9px 16px; border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.prod-back { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--cdv-coral-600); text-decoration: none; margin-bottom: 6px; }
.prod-back svg { width: 18px; height: 18px; stroke: currentColor; }
.prod-back:hover { color: var(--cdv-coral-700); }
.prod-title { font-family: var(--font-display); font-weight: 800; font-size: 58px; line-height: 0.94; letter-spacing: -0.02em; text-transform: uppercase; color: var(--cdv-ink); margin: 12px 0 0; }
.prod-title .accent { font-family: var(--font-accent); font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--cdv-coral-500); font-size: 0.62em; display: inline-block; transform: rotate(-2deg); }
.prod-lead { font-family: var(--font-body); font-size: 18.5px; line-height: 1.6; color: var(--cdv-ink-soft); max-width: 520px; margin: 20px 0 0; }
.prod-notes { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 0; }
.note-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--cdv-white); border: 1px solid var(--cdv-stone-100); border-radius: 999px; padding: 9px 16px; font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--cdv-ink); box-shadow: var(--shadow-xs); }
.note-chip .dot { width: 9px; height: 9px; border-radius: 999px; }
.prod-price-row { display: flex; align-items: flex-end; flex-wrap: wrap; gap: 6px 18px; margin: 30px 0 0; }
.prod-price { font-family: var(--font-display); font-weight: 800; font-size: 44px; line-height: 1; letter-spacing: -0.02em; color: var(--cdv-coral-600); }
.prod-price-unit { font-family: var(--font-body); font-size: 15px; color: var(--cdv-stone-500); padding-bottom: 4px; }
.prod-buy-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 22px 0 0; }
.prod-trust { display: flex; flex-wrap: wrap; gap: 18px; margin: 26px 0 0; padding-top: 22px; border-top: 1px solid var(--cdv-stone-200); }
.prod-trust div { display: flex; align-items: center; gap: 9px; font-family: var(--font-body); font-size: 14px; color: var(--cdv-stone-500); }
.prod-trust svg { width: 19px; height: 19px; stroke: var(--cdv-teal-700); flex-shrink: 0; }

/* spec grid */
.spec-inner { background: var(--cdv-paper-warm); border-radius: 40px; padding: 64px; }
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.spec-card { background: var(--cdv-white); border-radius: 22px; padding: 26px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 10px; }
.spec-card .sc-icon { width: 44px; height: 44px; border-radius: 13px; background: var(--cdv-teal-100); color: var(--cdv-teal-700); display: flex; align-items: center; justify-content: center; }
.spec-card .sc-icon svg { width: 23px; height: 23px; stroke: currentColor; }
.spec-card .sc-label { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cdv-coral-600); }
.spec-card .sc-value { font-family: var(--font-body); font-size: 16px; line-height: 1.45; color: var(--cdv-ink); font-weight: 500; }

/* preparation methods */
.method-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.method-chip { display: flex; align-items: center; gap: 11px; background: var(--cdv-white); border: 1px solid var(--cdv-stone-100); border-radius: 16px; padding: 16px 22px; box-shadow: var(--shadow-xs); font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: -0.005em; font-size: 17px; color: var(--cdv-ink); }
.method-chip svg { width: 24px; height: 24px; stroke: var(--cdv-coral-600); flex-shrink: 0; }

@media (max-width: 980px) {
  .prod-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .prod-photo { aspect-ratio: 16/12; max-width: 560px; order: 2; }
  .prod-title { font-size: 48px; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .spec-inner { padding: 44px 24px; border-radius: 30px; }
  .prod-title { font-size: 40px; }
}
@media (max-width: 520px) {
  .spec-grid { grid-template-columns: 1fr; }
}

/* ===================== LIEFERANTEN / PARTNER ===================== */
.partners-inner { background: var(--cdv-paper-warm); border-radius: 40px; padding: 72px 64px; }
.partners-head { max-width: 640px; }
.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px; }
/* Center the trailing two cards (5th & 6th) on the 4-column desktop layout */
.partner-grid > .partner-card:nth-child(5) { grid-column: 2; }
.partner-card {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--cdv-white); border-radius: 26px; padding: 30px 28px;
  text-decoration: none; color: var(--cdv-ink); min-height: 280px;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.partner-top { display: flex; align-items: center; justify-content: space-between; }
/* Long, multi-word category: stack it left-aligned below the icon instead of cramped beside it */
.partner-card--stack-top .partner-top { flex-direction: column; align-items: flex-start; gap: 14px; }
.partner-icon {
  width: 50px; height: 50px; border-radius: 15px; background: var(--cdv-teal-100);
  color: var(--cdv-teal-700); display: flex; align-items: center; justify-content: center;
}
.partner-icon svg { width: 26px; height: 26px; stroke: currentColor; }
.partner-cat {
  font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cdv-coral-600);
}
.partner-card h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 25px; line-height: 1;
  text-transform: uppercase; letter-spacing: -0.015em; margin: 4px 0 0;
}
.partner-card p { font-family: var(--font-body); font-size: 15px; line-height: 1.55; color: var(--cdv-stone-500); margin: 0; flex: 1; }
.partner-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--cdv-ink);
  transition: color var(--dur-fast), gap var(--dur-fast);
}
.partner-link svg { width: 17px; height: 17px; stroke: currentColor; }
.partner-card:hover .partner-link { color: var(--cdv-coral-600); gap: 11px; }
.partners-note {
  margin-top: 26px; font-family: var(--font-body); font-size: 14px; line-height: 1.6;
  color: var(--cdv-stone-500); max-width: 720px;
}

/* ===================== ÖFFNUNGSZEITEN & ANFAHRT ===================== */
.visit { background: var(--cdv-sunset); border-radius: 40px; padding: 72px 64px; position: relative; overflow: hidden; color: var(--cdv-cream); }
.visit::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,253,213,0.07) 1px, transparent 1px); background-size: 4px 4px; pointer-events: none; }
.visit-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.visit .section-title { color: var(--cdv-cream); }
.visit .section-title .accent { color: var(--cdv-cream); }
.visit-lead { font-family: var(--font-body); font-size: 19px; line-height: 1.55; color: var(--cdv-cream); opacity: 0.96; max-width: 460px; margin: 0 0 26px; }
.visit-card { background: var(--cdv-paper); border-radius: 24px; padding: 30px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 22px; }
.vc-row { display: flex; flex-direction: column; gap: 7px; }
.vc-label { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cdv-coral-600); display: inline-flex; align-items: center; gap: 8px; }
.vc-label svg { width: 16px; height: 16px; stroke: currentColor; }
.vc-value { font-family: var(--font-body); font-size: 16.5px; line-height: 1.5; color: var(--cdv-ink); font-weight: 500; }
.vc-value a { color: var(--cdv-coral-600); text-decoration: none; }
.vc-value a:hover { text-decoration: underline; text-underline-offset: 3px; }
.vc-hours { display: flex; justify-content: space-between; gap: 12px; font-family: var(--font-body); font-size: 15.5px; color: var(--cdv-ink); padding: 3px 0; }
.vc-hours span:first-child { font-weight: 600; }
.vc-hours--off { color: var(--cdv-stone-400); }
.visit-side { display: flex; flex-direction: column; gap: 22px; }
.map-wrap { flex: 1; min-height: 300px; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); background: var(--cdv-paper); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }

/* ===================== NEWSLETTER & SOCIAL ===================== */
.connect { background: var(--cdv-paper-warm); border-radius: 40px; padding: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.connect .section-title { font-size: 52px; }
.connect-actions { display: flex; flex-direction: column; gap: 12px; }
.connect-btn { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px; border-radius: 18px; font-family: var(--font-display); font-weight: 700; font-size: 17px; text-transform: uppercase; letter-spacing: 0.02em; text-decoration: none; transition: transform var(--dur-fast), box-shadow var(--dur-fast), border-color var(--dur-fast); }
.connect-btn--primary { background: var(--cdv-ink); color: var(--cdv-cream); box-shadow: var(--shadow-md); }
.connect-btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.connect-btn--ghost { background: transparent; color: var(--cdv-ink); border: 1.5px solid var(--cdv-stone-200); }
.connect-btn--ghost:hover { border-color: var(--cdv-coral-400); color: var(--cdv-coral-600); }
.connect-btn .label { display: flex; align-items: center; gap: 14px; }
.connect-btn .label svg { width: 22px; height: 22px; stroke: currentColor; }
.connect-btn .arrow-pill { width: 38px; height: 38px; border-radius: 999px; background: var(--cdv-sunset); color: var(--cdv-cream); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform var(--dur-fast); }
.connect-btn .arrow-pill svg { width: 18px; height: 18px; stroke: currentColor; }
.connect-btn--ghost .arrow-pill { background: var(--cdv-stone-100); color: var(--cdv-coral-600); }
.connect-btn:hover .arrow-pill { transform: translateX(4px); }
.connect-sign { font-family: var(--font-accent); font-size: 22px; color: var(--cdv-coral-600); margin: 22px 0 0; }

/* ===================== FAQ ===================== */
.faq-inner { background: var(--cdv-paper-warm); border-radius: 40px; padding: 72px 64px; }
.faq-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.faq-head .eyebrow { justify-content: center; }
.faq-head .eyebrow::before { display: none; }
.faq-head .section-lead { margin: 0 auto; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--cdv-white); border-radius: 20px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-family: var(--font-display); font-weight: 600; font-size: 20px; text-transform: uppercase; letter-spacing: -0.01em; color: var(--cdv-ink); }
.faq-q .chev { width: 38px; height: 38px; border-radius: 999px; background: var(--cdv-paper-warm); color: var(--cdv-coral-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform var(--dur-base) var(--ease-out), background var(--dur-fast); }
.faq-q .chev svg { width: 20px; height: 20px; stroke: currentColor; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); background: var(--cdv-sunset); color: var(--cdv-cream); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-out); }
.faq-a-inner { padding: 0 28px 26px; font-family: var(--font-body); font-size: 16.5px; line-height: 1.6; color: var(--cdv-ink-soft); }
.faq-a-inner a { color: var(--cdv-coral-600); }

/* ===================== FOOTER ===================== */
.site-footer { margin-top: 64px; background: var(--cdv-dusk); color: var(--cdv-cream); border-radius: 40px 40px 0 0; padding: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; max-width: 1200px; margin: 0 auto; }
.footer-brand img { width: 78px; opacity: 0.95; }
.footer-brand-line { font-family: var(--font-accent); font-size: 22px; margin-top: 14px; max-width: 280px; line-height: 1.3; }
.footer-col h2 { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.7; margin: 0 0 14px; }
.footer-col address { font-style: normal; }
.footer-col a, .footer-col p { color: var(--cdv-cream); text-decoration: none; font-family: var(--font-body); font-size: 14px; line-height: 1.8; display: block; opacity: 0.95; margin: 0; }
.footer-col a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,253,213,0.18); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; max-width: 1200px; margin-left: auto; margin-right: auto; font-family: var(--font-body); font-size: 12.5px; opacity: 0.8; }
.footer-bottom a { color: inherit; }

/* ===================== MODALS ===================== */
.modal { position: fixed; inset: 0; background: rgba(26,42,46,0.55); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; z-index: 100; padding: 20px; }
.modal.open { display: flex; }
.modal-card { background: var(--cdv-paper); border-radius: 28px; padding: 36px; max-width: 600px; width: 100%; box-shadow: var(--shadow-xl); max-height: 88vh; overflow: auto; }
.modal-card h2 { font-family: var(--font-display); font-weight: 800; font-size: 38px; text-transform: uppercase; letter-spacing: -0.01em; margin: 0 0 6px; line-height: 1; color: var(--cdv-ink); }
.modal-card h3 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em; font-size: 12px; color: var(--cdv-stone-500); margin: 20px 0 4px; font-weight: 700; }
.modal-card p { font-family: var(--font-body); font-size: 15px; line-height: 1.65; color: var(--cdv-ink); margin: 0; }
.modal-card p a { color: var(--cdv-coral-600); }
.modal-close { margin-top: 26px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1080px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid > .partner-card:nth-child(5) { grid-column: auto; }
  .section-title { font-size: 52px; }
  .hero h1 { font-size: 52px; }
  .offer-card p { max-width: 100%; }
}
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav .nav-cta { display: none; }
  .burger { display: flex; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo { aspect-ratio: 16/11; max-width: 520px; }
  .story { grid-template-columns: 1fr; gap: 36px; }
  .story-photo { aspect-ratio: 16/11; order: 2; }
  .coffee-grid { grid-template-columns: 1fr; }
  .coffee-photo img { min-height: 320px; }
  .coffee-text { padding: 48px 36px; }
  .visit-grid { grid-template-columns: 1fr; }
  .connect { grid-template-columns: 1fr; gap: 32px; padding: 48px 36px; }
  .angebot-inner, .faq-inner { padding: 48px 36px; }
  .partners-inner { padding: 48px 36px; }
  .visit { padding: 48px 36px; }
}
@media (max-width: 720px) {
  .container { padding: 0 18px; }
  .hero-panel { padding: 48px 28px 40px; border-radius: 30px; }
  .hero h1 { font-size: 44px; }
  .section-pad { padding: 64px 0; }
  .angebot-inner, .faq-inner { padding: 48px 24px; border-radius: 30px; }
  .visit, .connect { padding: 44px 26px; border-radius: 30px; }
  .offer-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 40px; }
  .site-footer { padding: 48px 26px; border-radius: 30px 30px 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-meta { gap: 24px; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
  .section-title { font-size: 34px; }
}

/* ===================== LEGAL PAGES ===================== */
.legal { max-width: 760px; margin: 0 auto; padding: 56px 0 96px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--cdv-coral-600); text-decoration: none; margin-bottom: 28px; }
.legal-back svg { width: 18px; height: 18px; stroke: currentColor; }
.legal h1 { font-family: var(--font-display); font-weight: 800; font-size: 56px; text-transform: uppercase; letter-spacing: -0.02em; color: var(--cdv-ink); margin: 0 0 8px; }
.legal .note { font-family: var(--font-accent); font-size: 18px; color: var(--cdv-coral-600); margin: 0 0 36px; }
.legal h2 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 22px; letter-spacing: -0.01em; color: var(--cdv-ink); margin: 32px 0 8px; }
.legal p, .legal address { font-family: var(--font-body); font-size: 17px; line-height: 1.7; color: var(--cdv-ink-soft); font-style: normal; margin: 0 0 4px; }
.legal a { color: var(--cdv-coral-600); }
.placeholder-tag { display: inline-block; background: var(--cdv-warning-bg); color: var(--cdv-coral-700); font-family: var(--font-body); font-weight: 600; font-size: 13px; padding: 6px 12px; border-radius: 999px; margin-bottom: 24px; }

/* footer helpers */
.footer-col h2.footer-col-social-h2 { margin-top: 34px; }

@media (max-width: 720px) {
  .legal { padding: 36px 0 64px; }
  .legal h1 { font-size: 36px; }
  .legal h2 { font-size: 19px; }
  .legal p, .legal address { font-size: 16px; }
  .legal .note { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .faq-a { transition: none; }
}

/* ===================== ANGEBOT → KARTE CTA ===================== */
.angebot-cta { margin-top: 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.angebot-cta .hint { font-family: var(--font-body); font-size: 15px; color: var(--cdv-stone-500); }

/* ===================== KARTE (Menu subpage) ===================== */
.menu-hero { margin-top: 28px; }
.menu-hero-panel {
  background: var(--cdv-sunset); border-radius: 40px; padding: 64px;
  position: relative; overflow: hidden; color: var(--cdv-cream);
}
.menu-hero-panel::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,253,213,0.07) 1px, transparent 1px);
  background-size: 3px 3px; pointer-events: none;
}
.menu-hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 16px; max-width: 720px; }
.menu-back {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--cdv-cream);
  text-decoration: none; opacity: 0.92;
}
.menu-back svg { width: 18px; height: 18px; stroke: currentColor; }
.menu-back:hover { opacity: 1; }
.menu-hero h1 {
  font-family: var(--font-display); font-weight: 800; font-size: 68px; line-height: 0.94;
  letter-spacing: -0.02em; text-transform: uppercase; color: var(--cdv-cream); margin: 0;
}
.menu-hero h1 .accent {
  font-family: var(--font-accent); font-weight: 400; text-transform: none; letter-spacing: 0;
  font-size: 0.7em; display: inline-block; transform: rotate(-2deg);
}
.menu-hero p { font-family: var(--font-body); font-size: 18px; line-height: 1.55; color: var(--cdv-cream); opacity: 0.96; margin: 0; max-width: 560px; }
.menu-hero .price-note { font-family: var(--font-body); font-size: 13px; letter-spacing: 0.04em; opacity: 0.85; }

.menu-wrap { padding: 72px 0 96px; }
.menu-card { background: var(--cdv-paper-warm); border-radius: 40px; padding: 64px; }
.menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 56px 64px; }
.menu-block + .menu-block { margin-top: 48px; }
.menu-cat-title {
  font-family: var(--font-display); font-weight: 800; font-size: 30px; line-height: 1;
  text-transform: uppercase; letter-spacing: -0.01em; color: var(--cdv-ink);
  display: flex; align-items: center; gap: 14px; margin: 0 0 6px;
}
.menu-cat-title svg { width: 26px; height: 26px; stroke: var(--cdv-coral-600); flex-shrink: 0; }
.menu-cat-note { font-family: var(--font-body); font-style: italic; font-size: 14.5px; line-height: 1.5; color: var(--cdv-stone-500); margin: 0 0 14px; max-width: 42ch; }
.menu-list { display: flex; flex-direction: column; gap: 4px; padding-top: 8px; }
.menu-item { display: flex; align-items: baseline; gap: 8px; padding: 7px 0; }
.mi-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mi-name { font-family: var(--font-body); font-weight: 600; font-size: 17px; color: var(--cdv-ink); }
.mi-name .mi-tag { font-weight: 400; font-style: italic; color: var(--cdv-stone-500); font-size: 15px; }
.mi-sub { font-family: var(--font-body); font-style: italic; font-size: 14px; line-height: 1.4; color: var(--cdv-stone-500); }
.mi-leader { flex: 1; border-bottom: 1.5px dotted var(--cdv-stone-300); transform: translateY(-4px); min-width: 18px; }
.mi-price { font-family: var(--font-body); font-weight: 700; font-size: 16.5px; color: var(--cdv-coral-700); white-space: nowrap; font-variant-numeric: tabular-nums; }
.mi-add { display: flex; align-items: baseline; gap: 8px; padding: 2px 0 6px 0; }
.mi-add .mi-sub { flex: 0 1 auto; }
.mi-add .mi-price { font-size: 14.5px; color: var(--cdv-stone-500); font-weight: 600; }

/* highlighted boxed groups (Chai Sirup / selbstgemachte) */
.menu-box { border: 1.5px dashed var(--cdv-coral-300); border-radius: 18px; padding: 16px 20px; margin: 14px 0; }
.menu-box--teal { border-color: var(--cdv-teal-400); }
.menu-box-title { font-family: var(--font-accent); font-size: 19px; color: var(--cdv-coral-600); margin: 0 0 8px; }
.menu-box--teal .menu-box-title { color: var(--cdv-teal-700); letter-spacing: 0.14em; text-transform: lowercase; }
.menu-box .menu-list { padding-top: 0; }

.menu-foot { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--cdv-stone-200); font-family: var(--font-body); font-size: 14.5px; line-height: 1.55; color: var(--cdv-stone-500); text-align: center; }

@media (max-width: 860px) {
  .menu-cols { grid-template-columns: 1fr; gap: 48px; }
  .menu-hero h1 { font-size: 52px; }
}
@media (max-width: 720px) {
  .menu-hero-panel { padding: 44px 28px; border-radius: 30px; }
  .menu-card { padding: 40px 24px; border-radius: 30px; }
  .menu-wrap { padding: 48px 0 64px; }
  .menu-hero h1 { font-size: 42px; }
}

/* =========================================================
   Newsletter-Seite (newsletter.html)
   ========================================================= */
.nl-card { background: var(--cdv-white); border-radius: 26px; padding: 36px; box-shadow: var(--shadow-md); }
.nl-form { display: flex; flex-direction: column; gap: 16px; }
.nl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nl-field { display: flex; flex-direction: column; gap: 7px; }
.nl-field label { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--cdv-ink); }
.nl-field .nl-opt { font-family: var(--font-body); font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--cdv-stone-400); }
.nl-field input { font-family: var(--font-body); font-size: 16px; color: var(--cdv-ink); background: var(--cdv-stone-50); border: 1.5px solid var(--cdv-stone-200); border-radius: 14px; padding: 14px 16px; transition: border-color var(--dur-fast), box-shadow var(--dur-fast), background var(--dur-fast); }
.nl-field input::placeholder { color: var(--cdv-stone-300); }
.nl-field input:focus { outline: none; background: var(--cdv-white); border-color: var(--cdv-coral-400); box-shadow: 0 0 0 4px rgba(243,137,75,0.14); }
.nl-consent-check { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; font-family: var(--font-body); font-size: 14px; line-height: 1.5; color: var(--cdv-stone-500); }
.nl-consent-check input { flex-shrink: 0; width: 19px; height: 19px; margin-top: 1px; accent-color: var(--cdv-coral-500); cursor: pointer; }
.nl-submit { width: 100%; justify-content: center; margin-top: 4px; cursor: pointer; border: none; }
.nl-submit:disabled { opacity: 0.6; cursor: progress; }
.nl-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.nl-consent { font-family: var(--font-body); font-size: 13px; line-height: 1.5; color: var(--cdv-stone-500); margin: 2px 0 0; }
.nl-consent a { color: var(--cdv-coral-600); }
.nl-status { font-family: var(--font-body); font-size: 14.5px; line-height: 1.5; border-radius: 14px; }
.nl-status:empty { display: none; }
.nl-status:not(:empty) { padding: 13px 16px; }
.nl-status--loading { background: var(--cdv-info-bg); color: var(--cdv-teal-700); }
.nl-status--success { background: var(--cdv-success-bg); color: #2F7A53; }
.nl-status--error { background: var(--cdv-error-bg); color: #B23B29; }
.nl-perks-head { text-align: center; max-width: 640px; margin: 0 auto 12px; }
.nl-perks-head .eyebrow { justify-content: center; }
.nl-perks-head .eyebrow::before { display: none; }
.nl-perks-head .section-lead { margin: 0 auto; }
.nl-howto { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 16px; margin: 44px auto 0; max-width: 760px; font-family: var(--font-body); font-size: 15px; color: var(--cdv-stone-500); text-align: center; }
.nl-howto .nl-step b { font-family: var(--font-display); color: var(--cdv-coral-600); margin-right: 6px; }
.nl-howto .nl-arrow { color: var(--cdv-stone-300); font-weight: 700; }
@media (max-width: 720px) {
  .nl-card { padding: 26px 22px; border-radius: 22px; }
  .nl-row { grid-template-columns: 1fr; }
  .nl-howto { flex-direction: column; gap: 8px; }
  .nl-howto .nl-arrow { transform: rotate(90deg); }
}