/* ============================================
   GMIETET — STYLES
   Warm vintage · cream, ink, gold
   ============================================ */

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
img, svg, video { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }

/* Theme */
:root {
  /* === BASIS === */
  --paper: #f5efe4;
  --paper-soft: #ede4d3;
  --paper-deep: #e3d7be;
  --ink: #1a1612;
  --ink-soft: #4a3f33;
  --gold: #c9a455;
  --gold-deep: #9b7d35;
  --line: rgba(26, 22, 18, .12);

  /* === TYPOGRAFIE === */
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-hand: "Caveat", cursive;
  --font-bold: "Anton", "Inter", sans-serif;

  /* === RADIUS / SHADOW === */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-pill: 999px;
  --shadow-soft: 0 6px 24px rgba(26, 22, 18, .08);
  --shadow-md: 0 12px 40px rgba(26, 22, 18, .12);

  /* === ABSTÄNDE === */
  --section-pad: 6rem;

  /* Legacy-Kompatibilität (bestehende Klassen / Inline-Styles) */
  --primary: var(--ink);
  --primary-dark: var(--gold-deep);
  --primary-light: var(--gold);
  --primary-50: var(--paper-soft);
  --primary-100: var(--paper-deep);
  --primary-200: var(--paper-deep);
  --primary-700: var(--gold-deep);
  --accent: var(--gold);
  --text: var(--ink);
  --text-muted: var(--ink-soft);
  --text-soft: var(--ink-soft);
  --border: var(--line);
  --border-soft: var(--line);
  --bg: var(--paper);
  --bg-alt: var(--paper-soft);
  --success: #3d6b4f;
  --success-bg: #d8eadf;
  --warning: #9b7d35;
  --warning-bg: #f5ecd4;
  --shadow-sm: var(--shadow-soft);
  --shadow: var(--shadow-md);
  --shadow-lg: var(--shadow-md);
  --container: 1200px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .h-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.1; margin-bottom: 1rem; }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1em; }

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}
a:hover { color: var(--gold-deep); }

/* Layout helpers */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: var(--section-pad) 0; }
.section-tight { padding: 4rem 0; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .75rem;
}
.muted { color: var(--ink-soft); }
.text-center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 60ch; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0;
  transition: border-color .2s;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 56px; }
.brand-logo {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1;
  position: relative;
  padding-bottom: 4px;
}
.brand-logo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--gold);
  transform-origin: left;
  transition: transform .3s ease;
}
.brand-logo:hover { color: var(--gold-deep); }
.brand-logo:hover::after { background: var(--gold-deep); }
.brand-logo::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: .5rem;
  vertical-align: .15em;
  flex-shrink: 0;
}
body.theme-bau .brand-logo {
  color: #1a1612;
  font-style: italic;
}
body.theme-bau .brand-logo::after { background: #ff7a1a; }
body.theme-bau .brand-logo::before { background: #ff7a1a; }
body.theme-bau .brand-logo:hover { color: #ff7a1a; }
body.theme-event .brand-logo::after { background: var(--gold); }
body.theme-event .brand-logo::before { background: var(--gold); }
.site-footer .brand-logo {
  color: var(--paper);
  font-size: 1.6rem;
}
.site-footer .brand-logo::after { background: var(--gold); }
.site-footer .brand-logo::before { background: var(--gold); }
/* Alias — alte Klasse, falls noch referenziert */
.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; }
.nav-list { display: none; gap: 2rem; list-style: none; padding: 0; margin: 0; }
.nav-list a {
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s;
}
.nav-list a:hover { color: var(--gold-deep); }
.nav-list a[aria-current="page"] {
  color: var(--gold-deep);
  border-bottom: 2px solid var(--gold);
}
.nav-cta { display: none; padding: .6rem 1.2rem; font-size: .92rem; }
body.theme-bau .nav-cta {
  background: #ff7a1a;
  color: #1a1612;
  border-color: #ff7a1a;
}
body.theme-bau .nav-cta:hover { background: #1a1612; color: #fff; }
body.theme-event .nav-cta {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
body.theme-event .nav-cta:hover { background: var(--ink); color: var(--paper); }
.menu-toggle {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: .5rem .75rem;
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--ink);
  z-index: 10;
  position: relative;
}
@media (min-width: 880px) {
  .nav-list { display: flex; }
  .nav-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}
.mobile-menu {
  display: none;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; padding: 0; margin: 0 0 1rem; }
.mobile-menu li { padding: .5rem 0; border-bottom: 1px solid var(--line); }
.mobile-menu a { display: block; font-weight: 500; text-decoration: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .9rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: .9rem;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all .25s ease;
  text-align: center;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--gold-deep); color: #fff; }
.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); color: var(--ink); }
.btn-gold:hover { background: var(--gold-deep); color: #fff; }
.btn-whatsapp { background: #22c55e; color: #fff; border-color: transparent; }
.btn-whatsapp:hover { background: #16a34a; color: #fff; }
.btn-lg { padding: 1.1rem 2rem; font-size: 1rem; }
.btn-sm { padding: .55rem 1rem; font-size: .85rem; }

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(201, 164, 85, .12), transparent 55%),
    radial-gradient(700px 360px at 0% 30%, rgba(227, 215, 190, .5), transparent 60%),
    linear-gradient(180deg, var(--paper-soft) 0%, var(--paper) 88%);
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 5vw, 4rem);
  overflow: hidden;
}
.hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 4rem; } }
.hero h1 span {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead { font-size: 1.2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.hero-trust {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.hero-trust-item { display: flex; align-items: center; gap: .55rem; color: var(--ink-soft); font-size: .9rem; }
.hero-trust-item svg { color: var(--gold-deep); flex-shrink: 0; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--ink), var(--ink-soft));
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .15), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(201, 164, 85, .2), transparent 50%);
}
.hero-visual-card {
  position: relative;
  z-index: 1;
  background: rgba(245, 239, 228, .96);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1.5rem;
  width: 84%;
  box-shadow: var(--shadow-soft);
}
.hero-visual-card .price { font-size: 2rem; font-weight: 800; color: var(--ink); font-family: var(--font-serif); }
.hero-visual-card .price small { font-size: .9rem; font-weight: 500; color: var(--ink-soft); }
.hero-visual-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--paper);
  padding: .4rem .75rem;
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold-deep);
  border: 1px solid var(--line);
  z-index: 2;
}

/* Cards / Grid */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 164, 85, .35);
}
.card h3 { margin-bottom: .35rem; }
.card .card-meta { color: var(--ink-soft); font-size: .9rem; margin-bottom: .75rem; }
.card .card-body { flex: 1; color: var(--ink-soft); font-size: .95rem; }
.card .card-footer { margin-top: 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.card a.card-link { color: var(--gold-deep); font-weight: 600; font-size: .9rem; text-decoration: none; }
.card a.card-link:hover { text-decoration: underline; }

/* Category cards */
.cat-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--paper-soft), var(--paper));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-decoration: none;
  transition: all .2s ease;
}
.cat-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.cat-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.cat-card .icon-wrap svg { width: 28px; height: 28px; }
.cat-card h3 { font-size: 1.3rem; }

/* Product card */
.image-area {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border: 1px solid var(--line);
}
.image-area::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper-deep);
  opacity: 0.5;
  animation: pulse 1.5s infinite;
  z-index: 0;
}
.product-card .image-area {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.1rem;
}
.image-area img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  z-index: 1;
}
.product-hero .image-area img { padding: 1.25rem; }
.image-area.loaded::after { display: none; }
@supports selector(.image-area:has(img)) {
  .image-area:has(img[data-loaded="true"])::after { display: none; }
}
.image-area.image-fallback {
  background: var(--paper-soft);
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  padding: 1rem;
}
.image-area.image-fallback::after {
  content: attr(data-fallback-text);
  position: relative;
  z-index: 0;
}
@keyframes pulse {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .7rem;
  border-radius: var(--radius-pill);
  font-size: .75rem;
  font-weight: 600;
}
.badge-success { background: var(--success-bg); color: var(--success); }
.badge-warning { background: var(--warning-bg); color: var(--warning); }
.badge-blue { background: var(--paper-deep); color: var(--ink); }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* Trust strip */
.trust-strip {
  display: grid;
  gap: 1rem;
  padding: 2rem 0;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip-item { display: flex; align-items: center; gap: .75rem; }
.trust-strip-item svg { color: var(--gold-deep); flex-shrink: 0; width: 24px; height: 24px; }
.trust-strip-item strong { display: block; font-size: .95rem; }
.trust-strip-item span { color: var(--ink-soft); font-size: .85rem; }

/* Steps */
.steps { display: grid; gap: 1.5rem; counter-reset: step; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--paper-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px;
  left: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: var(--shadow-soft);
}
.step h3 { margin-top: .5rem; }

/* Pills (city links) */
.pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .9rem;
  border-radius: var(--radius-pill);
  background: var(--paper-soft);
  color: var(--ink);
  font-size: .85rem;
  font-weight: 500;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: all .2s ease;
}
.pill:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-1px);
}

/* CTA Block */
.cta-block {
  background: linear-gradient(135deg, var(--ink), #2d241c);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201, 164, 85, .2), transparent 50%);
}
.cta-block > * { position: relative; }
.cta-block h2 { color: var(--paper); }
.cta-block p { color: rgba(245, 239, 228, .88); font-size: 1.1rem; max-width: 520px; margin: 0 auto 2rem; }
.cta-block .btn-primary { background: var(--gold); color: var(--ink); }
.cta-block .btn-primary:hover { background: var(--gold-deep); color: #fff; }
.cta-block .btn-outline { color: var(--paper); border-color: rgba(245, 239, 228, .45); }
.cta-block .btn-outline:hover { border-color: var(--paper); background: rgba(245, 239, 228, .12); color: var(--paper); }

/* Breadcrumb */
.breadcrumb {
  font-family: var(--font-sans);
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  align-items: center;
}
.breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.breadcrumb a:hover { color: var(--gold-deep); border-bottom-color: var(--gold); }
.breadcrumb-sep { margin: 0 .6rem; opacity: .5; }

/* Product detail */
.product-hero { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 880px) { .product-hero { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.product-hero .image-area { aspect-ratio: 1/1; border-radius: var(--radius-lg); }
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.5rem 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-table th, .price-table td { padding: .85rem 1rem; text-align: left; }
.price-table thead { background: var(--paper-soft); }
.price-table th {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink-soft);
  font-weight: 600;
}
.price-table tbody tr + tr td { border-top: 1px solid var(--line); }
.price-table td:last-child { font-weight: 700; color: var(--gold-deep); text-align: right; }
.usage-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0 1.5rem; }
.usage-pills .pill { background: var(--paper-soft); color: var(--ink); border: 1px solid var(--line); cursor: default; }
.usage-pills .pill:hover { transform: none; background: var(--paper-soft); color: var(--ink); }
.notice {
  background: var(--warning-bg);
  border: 1px solid var(--paper-deep);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: .95rem;
}
.notice strong { color: var(--warning); }

/* Form */
.form { display: grid; gap: 1rem; }
.form label { font-size: .9rem; font-weight: 600; }
.form input, .form textarea, .form select {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: border-color .15s, box-shadow .15s;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 164, 85, .25);
}
.form textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-check { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--ink-soft); }
.form-check input { width: auto; margin-top: .25rem; }

/* Contact split */
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 880px) { .contact-grid { grid-template-columns: .9fr 1.1fr; gap: 3rem; } }
.contact-info {
  background: var(--paper-soft);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.contact-info dt {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink-soft);
  font-weight: 600;
  margin-top: 1.25rem;
}
.contact-info dt:first-child { margin-top: 0; }
.contact-info dd { margin: .25rem 0 0; font-weight: 500; }
.contact-info dd a { color: var(--gold-deep); text-decoration: none; }
.contact-info dd a:hover { text-decoration: underline; }

/* City overview */
.city-band { margin-bottom: 2rem; }
.city-band h3 {
  font-size: 1rem;
  color: var(--ink-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}
.city-card {
  display: block;
  padding: 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all .2s ease;
}
.city-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.city-card h4 { margin: 0 0 .25rem; font-size: 1.05rem; font-weight: 700; }
.city-card span { color: var(--ink-soft); font-size: .85rem; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.site-footer h4 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.site-footer .brand-logo { font-family: var(--font-serif); text-decoration: none; }
.site-footer a { color: var(--paper); text-decoration-color: var(--gold); }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .5rem; line-height: 1.6; }
.footer-grid { display: grid; gap: 3rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand p { color: rgba(245, 239, 228, .72); font-size: .9rem; max-width: 28ch; }
.footer-delivery-hint {
  color: rgba(245, 239, 228, .6);
  font-size: .85rem;
  margin-top: 1rem;
}
.footer-bottom {
  border-top: 1px solid rgba(245, 239, 228, .15);
  padding-top: 1.5rem;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  color: rgba(245, 239, 228, .6);
  font-size: .85rem;
}
@media (max-width: 720px) {
  .footer-bottom { flex-direction: column; gap: .8rem; text-align: center; }
}

/* Article / Prose */
.prose { max-width: 70ch; }
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 1.75rem; }
.prose ul { padding-left: 1.25rem; }
.prose li { margin: .35rem 0; }
.prose p { font-size: 1.05rem; line-height: 1.75; }

/* Utilities */
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; } .mt-6 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.flex-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

/* Anchor offset for sticky header */
section[id], div[id] { scroll-margin-top: 90px; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Print */
@media print { .site-header, .site-footer, .btn, .hero-visual { display: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Floating WhatsApp Button */
.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35), 0 2px 6px rgba(26, 22, 18, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
}
.whatsapp-fab:hover {
  background: #1ebd5a;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45), 0 4px 10px rgba(26, 22, 18, 0.2);
}
.whatsapp-fab svg { width: 32px; height: 32px; fill: #fff; }
.whatsapp-fab::after {
  content: "WhatsApp";
  position: absolute;
  right: 70px;
  background: var(--ink);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(8px);
}
.whatsapp-fab:hover::after { opacity: 1; transform: translateX(0); }
@media (max-width: 600px) {
  .whatsapp-fab { right: 1rem; bottom: 1rem; width: 54px; height: 54px; }
  .whatsapp-fab svg { width: 28px; height: 28px; }
  .whatsapp-fab::after { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab,
  .whatsapp-fab::after { transition: none; }
}
@media print { .whatsapp-fab { display: none; } }
body.theme-bau .whatsapp-fab {
  background: #1a1612;
  color: #fff;
  border: 2px solid #ff7a1a;
  box-shadow: 0 8px 20px rgba(26, 22, 18, .25), 0 2px 6px rgba(26, 22, 18, .15);
}
body.theme-bau .whatsapp-fab:hover {
  background: #ff7a1a;
  box-shadow: 0 12px 28px rgba(255, 122, 26, .35), 0 4px 10px rgba(26, 22, 18, .2);
}

/* About Pinboard (ueber-uns) — unverändert */
.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-50);
}
.pinboard {
  background-color: #ffffff;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0,0,0,.03) 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(0,0,0,.02) 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(0,0,0,.025) 1px, transparent 1px),
    repeating-linear-gradient(15deg, rgba(15,23,42,.02) 0px, rgba(15,23,42,.02) 2px, transparent 2px, transparent 8px);
  background-size: 8px 8px, 12px 12px, 6px 6px, auto;
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pinboard-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  align-items: flex-start;
}
.polaroid {
  background: #fdfaf2;
  padding: 1rem 1rem 3rem 1rem;
  box-shadow:
    0 12px 24px rgba(0,0,0,.28),
    0 4px 8px rgba(0,0,0,.18),
    0 0 0 1px rgba(0,0,0,.04);
  max-width: 280px;
  position: relative;
  transition: transform .3s ease;
}
.polaroid::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.85) 0%, rgba(255,255,255,0) 22%),
    radial-gradient(circle at 35% 35%, #ff7a7a 0%, #d62020 55%, #7a0c0c 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.4) inset,
    0 -1px 2px rgba(0,0,0,.35) inset,
    0 4px 6px rgba(0,0,0,.35),
    0 8px 16px rgba(0,0,0,.18);
  z-index: 3;
}
.polaroid::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%) rotate(8deg);
  width: 4px;
  height: 14px;
  background: linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,0));
  border-radius: 2px;
  z-index: 2;
  filter: blur(1.5px);
  pointer-events: none;
}
.polaroid:nth-child(1)::before {
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.85) 0%, rgba(255,255,255,0) 22%),
    radial-gradient(circle at 35% 35%, #ff7a7a 0%, #d62020 55%, #7a0c0c 100%);
}
.polaroid:nth-child(2)::before {
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.85) 0%, rgba(255,255,255,0) 22%),
    radial-gradient(circle at 35% 35%, #7aff7a 0%, #20c920 55%, #0c6b0c 100%);
}
.polaroid:nth-child(3)::before {
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.85) 0%, rgba(255,255,255,0) 22%),
    radial-gradient(circle at 35% 35%, #ffe17a 0%, #d6a020 55%, #7a5a0c 100%);
}
.polaroid:hover { transform: rotate(0deg) translateY(-6px) !important; }
.polaroid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  filter: contrast(1.05) saturate(.9);
}
.polaroid figcaption {
  font-family: 'Caveat', cursive;
  font-size: 1.15rem;
  text-align: center;
  color: #2a2a2a;
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  right: 0;
}
.about-quote {
  font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  max-width: 40ch;
  margin: 0 auto 0.75rem;
  font-family: var(--font-serif);
}
.about-quote-author {
  margin: 0;
  color: var(--text-muted);
  font-size: .95rem;
}
@media (max-width: 700px) {
  .pinboard-wrap {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .polaroid {
    max-width: min(280px, 100%);
    margin-top: 0 !important;
  }
}
@media (max-width: 320px) {
  .pinboard-wrap { gap: 1.5rem; }
  .polaroid { max-width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .polaroid,
  .polaroid:hover {
    transform: none !important;
  }
}

/* About page extras */
.about-hero-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .about-hero-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.about-pinboard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.about-polaroid {
  position: relative;
  width: min(42vw, 240px);
  background: #fff;
  border-radius: 2px;
  padding: 0.55rem 0.55rem 0.75rem;
  box-shadow: 0 8px 22px rgba(26, 22, 18, 0.14), 0 0 0 1px rgba(26, 22, 18, 0.06);
  transform: rotate(-2deg);
  transition: transform .2s ease, box-shadow .2s ease;
}
.about-polaroid.is-right { transform: rotate(2deg); }
.about-polaroid:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 22, 18, 0.16), 0 0 0 1px rgba(26, 22, 18, 0.08);
}
.about-polaroid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 1px;
}
.about-polaroid figcaption {
  margin-top: .45rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: center;
}
.about-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-deep);
  color: var(--gold-deep);
  margin-bottom: .75rem;
}
.about-icon svg { width: 22px; height: 22px; }

/* Alt sections with inline bg */
.section[style*="background"] {
  background: var(--paper-soft) !important;
}

/* Homepage — hero intro */
.hero-intro {
  padding-top: 7rem;
  padding-bottom: 4rem;
}
.hero-intro h1 em {
  font-family: var(--font-serif);
  font-weight: 500;
}

/* === HERO STRIP === */
.hero-strip {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 1rem 4rem;
  flex-wrap: wrap;
  position: relative;
}
.hero-strip img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  background: #fff;
  padding: .6rem .6rem 2.5rem;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
  border-radius: 2px;
  transition: transform .5s ease;
}
.hero-strip img:nth-child(1) { transform: rotate(-3deg); }
.hero-strip img:nth-child(2) {
  transform: rotate(0deg) scale(1.08);
  z-index: 2;
  position: relative;
}
.hero-strip img:nth-child(3) { transform: rotate(3deg); }
@media (max-width: 720px) {
  .hero-strip img { width: 170px; height: 170px; }
}

/* Homepage — Bau / Event split */
.choice-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.choice-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 3rem;
  overflow: hidden;
  text-decoration: none;
  transition: flex-grow .4s ease;
  color: var(--paper);
}
.choice-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s ease, filter .4s ease;
  z-index: 0;
}
.choice-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .3) 60%, rgba(0, 0, 0, .15) 100%);
  z-index: 1;
}
.choice-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.choice-eyebrow {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .8rem;
}
.choice-arrow {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--gold);
}
.choice-card:hover .choice-bg {
  transform: scale(1.08);
}
.choice-bau .choice-bg {
  background-image: url("/assets/img/geruest-stahl-110qm.jpg");
  filter: grayscale(.6) contrast(1.15) brightness(.85);
}
.choice-bau .choice-title {
  font-family: var(--font-bold);
  font-size: clamp(3.5rem, 8vw, 6rem);
  letter-spacing: .04em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 .5rem;
  white-space: nowrap;
}
.choice-bau .choice-eyebrow { color: #ff7a1a; }
.choice-bau .choice-arrow { border-bottom-color: #ff7a1a; }
.choice-event .choice-bg {
  background:
    linear-gradient(135deg, rgba(42, 31, 26, .55) 0%, rgba(74, 48, 34, .45) 60%, rgba(107, 70, 34, .4) 100%),
    url("/assets/img/popcornmaschine.webp") center / cover no-repeat;
  filter: none;
}
.choice-event .choice-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--paper);
  margin: 0 0 .5rem;
  line-height: 1;
}
.choice-event .choice-eyebrow { color: var(--gold); }
.choice-event .choice-arrow { border-bottom-color: var(--gold); }
.choice-text {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, .92);
  max-width: 42ch;
  margin: 0;
}
/* Tablet & kleiner: Karten untereinander — kein gequetschtes Nebeneinander */
@media (max-width: 1024px) {
  .choice-split {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .choice-card {
    min-height: 48vh;
    padding: 2.5rem 2rem;
    align-items: flex-end;
  }
  .choice-bau .choice-title,
  .choice-event .choice-title {
    font-size: clamp(2.8rem, 10vw, 4.5rem) !important;
    white-space: normal;
    line-height: 1.05;
  }
  .choice-text { font-size: 1rem; max-width: 36ch; }
  .choice-eyebrow {
    font-size: .72rem;
    letter-spacing: .2em;
    margin-bottom: .65rem;
  }
}
/* Nur Desktop: zwei Spalten mit Hover-Verbreiterung */
@media (hover: hover) and (min-width: 1025px) {
  .choice-split {
    display: flex;
    grid-template-columns: none;
    min-height: 70vh;
  }
  .choice-split .choice-card {
    flex: 1;
    min-height: auto;
    padding: 3rem;
  }
  .choice-split:hover .choice-card:hover { flex: 1.35; }
  .choice-bau .choice-title,
  .choice-event .choice-title {
    font-size: clamp(3.5rem, 8vw, 6rem) !important;
  }
  .choice-bau .choice-title { white-space: nowrap; }
}
@media (prefers-reduced-motion: reduce) {
  .choice-card:hover .choice-bg { transform: none; }
}

/* === POPULAR (Startseite) === */
.popular-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.popular-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 6px;
  padding: 1rem 1rem 1.25rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.popular-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .08);
}
.popular-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #ffffff;
  padding: .75rem;
  border-radius: 4px;
  margin-bottom: .9rem;
  display: block;
}
.popular-card-cat {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .3rem;
}
.popular-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
}
@media (max-width: 980px) {
  .popular-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .popular-grid { grid-template-columns: 1fr; }
}

/* ============================================
   BAU SUBTHEME (theme-bau) — helles Grau
   ============================================ */
body.theme-bau {
  background: #ececea;
  color: #1a1612;
  --radius: 2px;
  --radius-lg: 2px;
  --radius-sm: 2px;
}

body.theme-bau .site-header {
  background: #fafafa;
  border-bottom: 1px solid #d8d6d3;
}
body.theme-bau .site-header .brand-logo,
body.theme-bau .site-header .nav-list a {
  color: #1a1612;
}
body.theme-bau .site-header .nav-list a:hover { color: #ff7a1a; }
body.theme-bau .site-header .nav-list a[aria-current="page"] {
  color: #ff7a1a;
  border-bottom: 2px solid #ff7a1a;
}
body.theme-bau .menu-toggle {
  color: #1a1612;
  border-color: #d8d6d3;
  background: #fff;
}
body.theme-bau .mobile-menu {
  background: #fafafa;
  border-top-color: #d8d6d3;
}
body.theme-bau .mobile-menu a { color: #1a1612; }
body.theme-bau .mobile-menu a:hover { color: #ff7a1a; }

body.theme-bau h1,
body.theme-bau h2,
body.theme-bau h3 {
  font-family: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #1a1612;
}
body.theme-bau h1 { font-size: clamp(2.8rem, 6vw, 5rem); line-height: .95; }
body.theme-bau h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }

body.theme-bau .eyebrow {
  color: #ff7a1a;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: .25em;
}
body.theme-bau .breadcrumb,
body.theme-bau .breadcrumb a { color: #6b665e; }
body.theme-bau .breadcrumb a:hover { color: #ff7a1a; }
body.theme-bau .lead { color: #4a3f33; }
body.theme-bau a { color: #1a1612; text-decoration-color: #ff7a1a; }
body.theme-bau a:hover { color: #ff7a1a; }

body.theme-bau .btn-primary {
  background: #1a1612;
  color: #fff;
  border-radius: 4px;
  border: 1.5px solid #1a1612;
}
body.theme-bau .btn-primary:hover { background: #ff7a1a; border-color: #ff7a1a; color: #fff; }
body.theme-bau .btn-outline {
  background: transparent;
  color: #1a1612;
  border: 1.5px solid #1a1612;
  border-radius: 4px;
}
body.theme-bau .btn-outline:hover { background: #1a1612; color: #fff; }
body.theme-bau .btn-whatsapp { border-radius: 4px; }

body.theme-bau .bau-tape {
  height: 10px;
  background: repeating-linear-gradient(-45deg, #ff7a1a 0 12px, #1a1612 12px 24px);
  margin: 3.5rem 0;
  border-radius: 2px;
  opacity: .92;
}

body.theme-bau .bau-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  background: transparent;
  border: none;
}
body.theme-bau .bau-card {
  background: #ffffff;
  border: 1px solid #d8d6d3;
  border-radius: 6px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  text-decoration: none;
  color: #1a1612;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
body.theme-bau .bau-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 4px;
  background: #ff7a1a;
}
body.theme-bau .bau-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 22, 18, .08);
  border-color: #ff7a1a;
}
body.theme-bau .bau-card::after {
  content: "→";
  position: absolute;
  bottom: 1.3rem;
  right: 1.4rem;
  color: #ff7a1a;
  font-family: var(--font-bold);
  font-size: 1.3rem;
  transition: transform .25s ease;
}
body.theme-bau .bau-card:hover::after { transform: translateX(4px); }

body.theme-bau .bau-card-img {
  aspect-ratio: 4 / 3;
  background: #f5f5f3;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 0 .8rem 0;
  padding: .8rem;
}
body.theme-bau .bau-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  transition: transform .35s ease;
}
body.theme-bau .bau-card:hover .bau-card-img img { transform: scale(1.04); }

body.theme-bau .bau-card-cat {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #ff7a1a;
}
body.theme-bau .bau-card-title {
  font-family: var(--font-bold);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.15;
  color: #1a1612;
  padding-right: 2rem;
}
body.theme-bau .bau-card-price {
  margin-top: auto;
  font-family: var(--font-sans);
  font-weight: 700;
  color: #1a1612;
  font-size: .98rem;
  padding-top: .8rem;
  border-top: 1px solid #ececea;
}

body.theme-bau .site-footer {
  background: #1a1612;
  border-top: 4px solid #ff7a1a;
  color: var(--paper);
}
body.theme-bau .site-footer a {
  color: var(--paper);
  text-decoration-color: var(--gold);
}
body.theme-bau .site-footer a:hover { color: var(--gold); }
body.theme-bau .site-footer h4 { color: var(--gold); }
body.theme-bau .site-footer ul li { color: var(--paper); }
body.theme-bau .footer-brand p { color: rgba(245, 239, 228, .72); }
body.theme-bau .footer-delivery-hint { color: rgba(245, 239, 228, .6); }
body.theme-bau .footer-bottom { color: rgba(245, 239, 228, .6); }
body.theme-bau .site-footer .brand-logo { color: var(--paper); }

body.theme-bau .section + .section { background: transparent; }

@media (max-width: 900px) {
  body.theme-bau .bau-grid { grid-template-columns: 1fr; }
  body.theme-bau .bau-card-img { min-height: 200px; }
  body.theme-bau .bau-card-img img { padding: 1rem; }
}
@media (max-width: 640px) {
  body.theme-bau .bau-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  body.theme-bau .bau-card,
  body.theme-bau .bau-card:hover,
  body.theme-bau .bau-card-img img,
  body.theme-bau .bau-card:hover .bau-card-img img {
    transition: none;
    transform: none;
  }
}

/* === ÜBER UNS — Redesign === */
.about-intro { padding-top: 5rem; }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-intro h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}
.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-fact {
  background: var(--paper);
  padding: 1.6rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.about-fact-num {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 2.4rem;
  color: var(--ink);
  line-height: 1;
}
.about-fact-label {
  font-family: var(--font-sans);
  font-size: .82rem;
  color: var(--ink-soft);
  letter-spacing: .02em;
}

.about-story { padding-top: 4rem; padding-bottom: 4rem; }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.about-story h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  max-width: 12ch;
  line-height: 1.1;
}
.about-story-text p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.about-story-text p:first-letter {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  float: left;
  line-height: .9;
  padding: .2rem .7rem 0 0;
  color: var(--gold-deep);
}

.about-promises { background: var(--paper-soft); }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.promise {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.promise:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.promise-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.promise h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.35rem;
  margin-bottom: .7rem;
  color: var(--ink);
}
.promise p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.about-quote-section {
  background: var(--ink);
  color: var(--paper);
  padding: 6rem 0;
  text-align: center;
}
.about-quote-big {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.4;
  max-width: 60ch;
  margin: 0 auto;
  color: var(--paper);
  position: relative;
  border: none;
  padding: 0;
}
.about-quote-big::before {
  content: "\201C";
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6rem;
  color: var(--gold);
  font-family: var(--font-serif);
  line-height: 1;
}
.about-quote-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.about-quote-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.about-quote-author {
  font-family: var(--font-sans);
  font-size: .92rem;
  color: var(--paper);
  opacity: .85;
  letter-spacing: .03em;
}

.cta-block h2 em {
  font-style: italic;
  color: var(--gold-deep);
}

@media (max-width: 820px) {
  .about-intro-grid,
  .about-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .promise-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .about-quote-big::before { top: -2.5rem; font-size: 4rem; }
  .about-facts { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .promise,
  .promise:hover { transform: none; transition: none; }
}

/* ============================================
   EVENT SUBTHEME (theme-event)
   ============================================ */
body.theme-event {
  background: var(--paper);
  line-height: 1.75;
}
body.theme-event .nav-list a[aria-current="page"] {
  color: var(--gold-deep);
}
body.theme-event h1,
body.theme-event h2,
body.theme-event h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -.01em;
  color: var(--ink);
}
body.theme-event .eyebrow { color: #5a1a1f; }

.event-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 4rem 0;
  color: var(--gold-deep);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
}
.event-divider::before,
.event-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold) 40%, var(--gold) 60%, transparent);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.event-card {
  background: #fbf6ec;
  border: 1px solid var(--paper-deep);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform .4s ease, box-shadow .4s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.event-card-img {
  aspect-ratio: 5 / 4;
  background: #fff;
  overflow: hidden;
  position: relative;
}
.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  filter: none;
  transition: transform .6s ease;
}
.event-card:hover .event-card-img img { transform: scale(1.03); }
.event-card-body { padding: 1.5rem 1.75rem 2rem; }
.event-card-cat {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.event-card-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.15;
  margin: .6rem 0 .8rem;
  color: var(--ink);
}
.event-card-text {
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}
.event-card-price {
  display: inline-block;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--gold-deep);
  font-size: 1.05rem;
  padding-top: .8rem;
  border-top: 1px solid var(--paper-deep);
}

.event-hero-frame {
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: 5rem 0;
  margin: 2rem 0 4rem;
  text-align: center;
}
.event-hero-frame h1 em {
  display: block;
  font-style: italic;
  color: var(--gold-deep);
  font-size: .8em;
  margin-top: .3em;
}

@media (max-width: 900px) {
  .event-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .event-card-img { min-height: 220px; }
  .event-card-img img { padding: 1.25rem; }
  .event-key-card { margin-bottom: 2rem; }
}
@media (max-width: 640px) {
  .event-grid { grid-template-columns: 1fr; }
  .event-hero-frame { padding: 3rem 0; margin: 1.5rem 0 2.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .event-card:hover {
    transform: none;
  }
  .event-card:hover .event-card-img img {
    transform: none;
  }
}

.coming-soon-img {
  aspect-ratio: 5 / 4;
  background:
    linear-gradient(135deg, #2a1f1a 0%, #4a3022 60%, #6b4622 100%),
    radial-gradient(circle at 80% 20%, rgba(201, 164, 85, .18), transparent 50%);
  background-blend-mode: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: .04em;
  position: relative;
  overflow: hidden;
}
.coming-soon-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, .04), transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(201, 164, 85, .12), transparent 40%);
}
.coming-soon-img-icon {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .8rem;
  position: relative;
  z-index: 1;
}
.coming-soon-img-label {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
}
.coming-soon-img-sub {
  display: block;
  margin-top: .3rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .65;
}

.event-key-card {
  background: #fbf6ec;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: var(--ink);
  transition: transform .3s ease, box-shadow .3s ease;
}
.event-key-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.event-key-card .coming-soon-img { aspect-ratio: auto; min-height: 360px; }
.event-key-card .event-key-img {
  background: #fff;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.event-key-card .event-key-img img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}
.product-detail h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}
.product-detail h2:first-child { margin-top: 0; }
.product-detail ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.product-detail .detail-note {
  font-size: .95rem;
  color: var(--ink-soft);
  margin-top: 1.5rem;
}
.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.product-gallery img {
  background: #fff;
  padding: .75rem;
  border-radius: 4px;
  object-fit: contain;
  aspect-ratio: 4 / 3;
  width: 100%;
}
.product-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: 1rem;
}
.product-keywords .pill { font-size: .78rem; }
.event-key-card-body {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.event-key-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  padding: .35rem .9rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  align-self: flex-start;
}
.event-key-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: var(--ink);
}
.event-key-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.event-key-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--paper-deep);
}
.event-key-price {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--gold-deep);
  font-style: italic;
}
.event-key-arrow {
  margin-left: auto;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .02em;
}

@media (max-width: 820px) {
  .event-key-card { grid-template-columns: 1fr; }
  .event-key-card .coming-soon-img { min-height: 240px; }
  .event-key-card-body { padding: 2rem 1.5rem; }
}

/* === Bild-Sicherheitsnetz === */
img { max-width: 100%; height: auto; }
.popular-card img,
.event-card-img img,
.bau-card-img img,
.hero-strip img,
.polaroid img {
  background-color: #fafaf7;
}
img[loading] {
  min-height: 1px;
}

