/* ===========================
   LOCAL FONTS
   =========================== */

/* Inter – Latin-Ext (ä, ö, ü, ß) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Inter – Latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Playfair Display – Latin-Ext */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('fonts/playfair-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Playfair Display – Latin */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('fonts/playfair-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* Sicherstellen, dass [hidden] immer Vorrang hat – auch gegen display:flex-Klassen */
[hidden] { display: none !important; }

/* Bot-Schutz: Honeypot-Feld – für Menschen unsichtbar, für Bots verlockend */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

:root {
  --red:        #c0392b;
  --red-dark:   #922b21;
  --red-light:  #e74c3c;
  --brown:      #8B5E3C;
  --brown-dark: #4a2c14;
  --cream:      #fdf8f3;
  --warm-gray:  #f5ede4;
  --text:       #1a1008;
  --text-muted: #6b5744;
  --border:     #e8d9cc;
  --white:      #ffffff;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 3px rgba(74,44,20,.08);
  --shadow-md: 0 4px 16px rgba(74,44,20,.10), 0 2px 6px rgba(74,44,20,.06);
  --shadow-lg: 0 12px 40px rgba(74,44,20,.14);

  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ===========================
   CONTAINER
   =========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); box-shadow: 0 4px 14px rgba(192,57,43,.35); }

.btn--secondary { background: transparent; color: var(--brown-dark); border-color: var(--border); }
.btn--secondary:hover { background: var(--warm-gray); border-color: var(--brown); }

.btn--light { background: var(--white); color: var(--brown-dark); border-color: transparent; }
.btn--light:hover { background: var(--warm-gray); }

.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn--outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn--sm { padding: 9px 18px; font-size: .875rem; }
.btn--full { width: 100%; }

/* ===========================
   NAVIGATION
   =========================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,16,8,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}
.nav__logo-text {
  font-size: .95rem;
  font-weight: 400;
  color: rgba(255,255,255,.8);
  letter-spacing: .02em;
}
.nav__logo-text strong { color: var(--white); font-weight: 700; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover, .nav__link--active { color: var(--white); background: rgba(255,255,255,.08); }

.nav__link--cta {
  background: var(--red);
  color: var(--white) !important;
  margin-left: 8px;
  padding: 8px 18px;
}
.nav__link--cta:hover { background: var(--red-dark) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,16,8,.88) 0%, rgba(74,44,20,.72) 50%, rgba(192,57,43,.35) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 760px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(192,57,43,.2);
  border: 1px solid rgba(192,57,43,.4);
  color: #f5a89a;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__tag svg { width: 12px; height: 12px; }

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.78);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

.hero__stats { display: flex; flex-wrap: wrap; gap: 40px; }
.hero__stat { display: flex; flex-direction: column; gap: 2px; }
.hero__stat-number {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero__stat-label { font-size: .8125rem; color: rgba(255,255,255,.55); }

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.45);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 1;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll-hint svg { width: 18px; height: 18px; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ===========================
   PAGE HERO (kontakt.html)
   =========================== */
.page-hero {
  position: relative;
  padding-top: 68px;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,16,8,.9) 0%, rgba(26,16,8,.5) 60%, transparent 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 40px 24px 48px;
  color: var(--white);
}
.page-hero__content .section__tag { color: #f5a89a; margin-bottom: 10px; }
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 10px;
}
.page-hero__content p {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
}

/* ===========================
   SECTIONS (shared)
   =========================== */
.section { padding: 96px 0; }

.section__header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 64px;
}
.section__tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section__subtitle {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===========================
   PRODUCTS
   =========================== */
.products { background: var(--white); }

.products__gallery {
  margin-bottom: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 360px;
}
.products__gallery-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 60%;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Product cards */
.product-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.product-card--featured {
  background: linear-gradient(160deg, #2c1a0e 0%, #4a2c14 100%);
  border-color: transparent;
  color: var(--white);
}
.product-card--featured .product-card__desc { color: rgba(255,255,255,.72); }
.product-card--featured .product-card__props li { color: rgba(255,255,255,.65); }
.product-card--featured .product-card__props li::before { background: #e74c3c; }
.product-card--featured .product-card__unit { color: rgba(255,255,255,.55); }

.product-card__badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--red);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  z-index: 2;
}

.product-card__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.04); }

.product-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-card__icon {
  width: 22px; height: 22px;
  color: var(--red);
  flex-shrink: 0;
}
.product-card--featured .product-card__icon { color: #f5a89a; }

.product-card__name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
}

.product-card__desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.product-card__props {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.product-card__props li {
  font-size: .8125rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 7px;
}
.product-card__props li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brown);
  flex-shrink: 0;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.07);
}
.product-card--featured .product-card__footer { border-top-color: rgba(255,255,255,.1); }

.product-card__price { display: flex; align-items: baseline; gap: 3px; }
.product-card__amount {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 700;
}
.product-card__unit { font-size: .8125rem; color: var(--text-muted); }

.products__note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 36px;
  background: var(--warm-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  color: var(--text-muted);
  font-size: .875rem;
  line-height: 1.6;
}
.products__note svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; color: var(--brown); }

/* ===========================
   QUALITY
   =========================== */
.quality { background: var(--cream); }

.quality__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.quality__cards { display: flex; flex-direction: column; gap: 2px; }

.quality__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.quality__card:last-child { margin-bottom: 0; }
.quality__card:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }

.quality__icon {
  width: 44px; height: 44px;
  background: var(--warm-gray);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.quality__icon svg { width: 22px; height: 22px; }

.quality__card h3 { font-size: .9375rem; font-weight: 700; margin-bottom: 4px; }
.quality__card p { font-size: .8125rem; color: var(--text-muted); line-height: 1.6; }

.quality__images {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 88px;
}
.quality__img {
  border-radius: var(--radius-md);
  overflow: hidden;
  object-fit: cover;
  width: 100%;
}
.quality__img--main { aspect-ratio: 3/4; }
.quality__img--secondary { aspect-ratio: 4/3; }

.quality__stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  background: linear-gradient(135deg, #2c1a0e 0%, #4a2c14 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.quality__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.quality__stat:last-child { border-right: none; }
.quality__stat-number {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.quality__stat-label {
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}

.quality__opening-hours {
  margin-top: 56px;
  background: linear-gradient(135deg, #2c1a0e 0%, #4a2c14 100%);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.quality__opening-hours > div:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}
.quality__opening-hours svg { width: 28px; height: 28px; color: #f5a89a; }
.quality__opening-hours h3 {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 700;
}
.quality__hours-grid { display: flex; gap: 40px; flex-wrap: wrap; }
.quality__hours-item { display: flex; flex-direction: column; gap: 4px; }
.quality__hours-day { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.quality__hours-time { font-size: 1.0625rem; font-weight: 600; }

/* ===========================
   ABOUT
   =========================== */
.about { background: var(--white); }

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.about__img {
  border-radius: var(--radius-md);
  object-fit: cover;
  width: 100%;
}
.about__img--main {
  grid-column: 1 / -1;
  aspect-ratio: 16/10;
}
.about__img--secondary {
  grid-column: 1 / 2;
  aspect-ratio: 3/4;
}

.about__img-badge {
  position: absolute;
  bottom: 16px; right: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 160px;
}
.about__img-badge span { font-size: .75rem; color: var(--text-muted); font-weight: 500; }
.about__img-badge strong { font-size: .9375rem; font-weight: 700; }

.about__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about__content .section__tag { display: inline-block; margin-bottom: 10px; }
.about__title { text-align: left; margin-bottom: 20px; }
.about__content p {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.about__facts {
  display: flex;
  gap: 28px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.about__fact { display: flex; flex-direction: column; gap: 3px; }
.about__fact strong { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; }
.about__fact span { font-size: .8125rem; color: var(--text-muted); }

/* ===========================
   CONTACT PAGE
   =========================== */
.kpage { background: var(--cream); padding: 64px 0 96px; }

.kpage__layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

/* Sidebar */
.kpage__sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kpage__info {
  background: linear-gradient(160deg, #2c1a0e 0%, #4a2c14 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: var(--white);
}
.kpage__info-title {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 14px;
}
.kpage__info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.kpage__info-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #f5a89a;
}
.kpage__info-icon svg { width: 16px; height: 16px; }
.kpage__info-item > div { display: flex; flex-direction: column; gap: 3px; }
.kpage__info-item strong {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
}
.kpage__info-item span,
.kpage__info-item a {
  font-size: .875rem; color: rgba(255,255,255,.9); line-height: 1.5;
}
.kpage__info-item a:hover { color: var(--white); }

/* Mobile Holzsorte Dropdown (Sichtbarkeit per JS gesteuert) */
.kpage__nav-select {
  display: none;
  width: calc(100% - 32px);
  margin: 12px 16px 14px;
  padding: 11px 36px 11px 13px;
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--text);
  background: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b5744' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  cursor: pointer;
  appearance: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.kpage__nav-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,.12);
  background-color: var(--white);
}
.kpage__nav-mobile-hint {
  display: none;
  font-size: .75rem;
  color: var(--text-muted);
  text-align: center;
  padding: 0 16px 12px;
}

/* Quick-nav – Bildauswahl */
.kpage__nav {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.kpage__nav h3 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px 18px 10px;
  border-bottom: 1px solid var(--border);
}
.kpage__nav ul { display: flex; flex-direction: column; }

.kpage__nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--transition);
  position: relative;
}
.kpage__nav li:last-child .kpage__nav-link { border-bottom: none; }
.kpage__nav-link:hover { background: var(--warm-gray); }

.kpage__nav-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: transform .3s ease;
}
.kpage__nav-link:hover .kpage__nav-img { transform: scale(1.05); }

.kpage__nav-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.kpage__nav-name {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kpage__nav-price {
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 400;
}

.kpage__nav-arrow {
  width: 16px; height: 16px;
  color: var(--border);
  flex-shrink: 0;
  transition: color var(--transition), transform var(--transition);
}
.kpage__nav-link:hover .kpage__nav-arrow { color: var(--brown); }

/* Active state */
/* Verfügbarkeits-Badge in der Sidebar */
.kpage__nav-avail {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 2px 7px;
  margin-top: 3px;
  width: fit-content;
}
.kpage__nav-avail::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.kpage__nav-avail--yes {
  color: #1a7a40;
  background: #eafaf1;
}
.kpage__nav-avail--yes::before { background: #27ae60; }

.kpage__nav-avail--no {
  color: #7f8c8d;
  background: #f2f2f2;
}
.kpage__nav-avail--no::before { background: #bdc3c7; }

/* Button ausgrauen wenn alles ausverkauft */
.kpage__nav-link--soldout { opacity: .55; }
.kpage__nav-link--soldout .kpage__nav-img { filter: grayscale(60%); }

.kpage__nav-link.is-active {
  background: var(--warm-gray);
}
.kpage__nav-link.is-active::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
  border-radius: 0 2px 2px 0;
}
.kpage__nav-link.is-active .kpage__nav-name { color: var(--red); font-weight: 700; }
.kpage__nav-link.is-active .kpage__nav-arrow { color: var(--red); transform: translateX(2px); }
.kpage__nav-link.is-active .kpage__nav-img {
  outline: 2px solid var(--red);
  outline-offset: 1px;
}

/* Main form area */
.kpage__main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.kform__header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
}
.kform__img {
  width: 140px;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  transition: opacity .2s ease;
}
.kform__header-text { display: flex; flex-direction: column; gap: 6px; }
.kform__badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  align-self: flex-start;
}
.kform__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
}
.kform__desc { font-size: .875rem; color: var(--text-muted); line-height: 1.5; }
.kform__price-row { display: flex; align-items: baseline; gap: 4px; margin-top: 4px; }
.kform__price { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--red); }
.kform__unit { font-size: .875rem; color: var(--text-muted); }

.kform__form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.kform__submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.kform__price-calc {
  font-size: .875rem;
  color: var(--text-muted);
}
.kform__price-calc strong {
  font-size: 1.0625rem;
  color: var(--red);
  font-weight: 700;
}

/* ===========================
   FORMS (shared)
   =========================== */
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__group label { font-size: .8125rem; font-weight: 600; color: var(--text); }

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 11px 13px;
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: #c4aa98; }
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,.12);
  background: var(--white);
}
.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b5744' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.form__group textarea { resize: vertical; min-height: 90px; }

/* Inline validation errors */
.form__group input.field-invalid,
.form__group select.field-invalid,
.form__group textarea.field-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.15);
}
.form__group input.field-invalid:focus,
.form__group select.field-invalid:focus,
.form__group textarea.field-invalid:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(239,68,68,.22);
}
.form__group--error .form__radio-group {
  outline: 2px solid #ef4444;
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}
.field-error {
  display: block;
  color: #b91c1c;
  font-size: .8rem;
  font-weight: 500;
  margin-top: 5px;
  line-height: 1.4;
}

.form__hint {
  font-size: .8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 6px;
  padding: 10px 12px;
  background: var(--warm-gray);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

/* Radio buttons */
.form__radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.form__radio {
  display: flex;
  cursor: pointer;
  flex: 1;
  min-width: 140px;
}
.form__radio input[type="radio"] { display: none; }
.form__radio span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  width: 100%;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  background: var(--cream);
}
.form__radio span svg { width: 16px; height: 16px; flex-shrink: 0; }
/* 3-line trocknungsgrad radio layout */
.form__radio span.radio-trocknung {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.radio-label__name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
}
.radio-label__feuchte {
  font-size: .78rem;
  font-weight: 400;
  color: var(--text-muted);
  font-style: normal;
}
.radio-label__price {
  font-size: .85rem;
  font-weight: 600;
  color: var(--brown);
  font-style: normal;
  margin-top: 4px;
}
/* Nicht verfügbare Trocknungsgrad-Option */
.form__radio--unavailable { opacity: .5; cursor: not-allowed; }
.form__radio--unavailable span { border-style: dashed; background: var(--warm-gray); }
.radio-label__unavail {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  color: #8B5E3C;
  background: #f5ede4;
  border-radius: 4px;
  padding: 1px 7px;
  margin-top: 4px;
  letter-spacing: .03em;
}

.price-calc__onrequest {
  display: block;
  font-size: .85rem;
  color: var(--brown-dark);
  line-height: 1.6;
}
.price-calc__onrequest strong { color: var(--red); }

.price-calc__savings {
  display: block;
  margin-top: 6px;
  font-size: .82rem;
  color: #1e8449;
  background: #eafaf1;
  border-left: 3px solid #27ae60;
  border-radius: 0 6px 6px 0;
  padding: 6px 10px;
}
.form__radio input:checked + span.radio-trocknung .radio-label__name { color: var(--red); }
.form__radio input:checked + span.radio-trocknung .radio-label__price { color: var(--red); }

.form__radio input:checked + span {
  border-color: var(--red);
  background: rgba(192,57,43,.06);
  color: var(--red);
}

.form__note {
  font-size: .78125rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: -4px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #120d07;
  color: rgba(255,255,255,.65);
}

.footer__layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px 48px;
}

.footer__logo-img { filter: brightness(1.2); }

.footer__brand .nav__logo-text { color: rgba(255,255,255,.7); }
.footer__brand .nav__logo-text strong { color: var(--white); }
.footer__brand p {
  margin-top: 12px;
  font-size: .875rem;
  line-height: 1.6;
  max-width: 280px;
  color: rgba(255,255,255,.4);
}

.footer__links h4, .footer__contact h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 16px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: .875rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }

.footer__contact address { font-size: .875rem; line-height: 1.8; }
.footer__contact a { transition: color var(--transition); }
.footer__contact a:hover { color: var(--white); }

.footer__hours {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 10px;
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
}

.footer__bottom { border-top: 1px solid rgba(255,255,255,.06); }
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: .8125rem;
  color: rgba(255,255,255,.28);
  flex-wrap: wrap;
  gap: 8px;
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a:hover { color: rgba(255,255,255,.65); }

/* ===========================
   LOCATION CARDS (Kontakt page)
   =========================== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
.location-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.location-card__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 24px 16px;
}
.location-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
}
.location-card__icon svg { width: 22px; height: 22px; }
.location-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--brown-dark);
  margin: 0 0 6px;
}
.location-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.location-card__badge--green { background: #d4edda; color: #155724; }
.location-card__badge--grey  { background: #e2e3e5; color: #383d41; }

.location-card__map { padding: 0 16px; }
.location-card__map iframe { display: block; width: 100%; border-radius: 8px; }

.location-card__info {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.location-card__info p { margin: 0; font-size: 0.93rem; line-height: 1.6; }
.location-card__info strong { color: var(--brown-dark); }

.location-card__note {
  font-size: 0.85rem !important;
  color: var(--text-muted);
  background: var(--cream);
  border-radius: 6px;
  padding: 10px 12px;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.location-card__note--warning {
  background: #fff3cd;
  color: #856404 !important;
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.82rem;
  align-self: flex-start;
}

.contact-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* ===========================
   LEGAL PAGES (Impressum / Datenschutz)
   =========================== */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--text);
}
.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--brown-dark);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--cream-dark, #ecdfc9);
}
.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown);
  margin: 1.5rem 0 0.4rem;
}
.legal-content p,
.legal-content ul {
  margin-bottom: 1rem;
}
.legal-content ul {
  padding-left: 1.5rem;
}
.legal-content ul li {
  margin-bottom: 0.3rem;
}
.legal-content a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover { color: var(--red-dark); }
.legal-source {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--cream-dark, #ecdfc9);
  padding-top: 1rem;
}

/* ===========================
   BACK TO TOP
   =========================== */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 900;
  pointer-events: none;
}
.back-to-top svg { width: 18px; height: 18px; }
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--red-dark); }

/* ===========================
   RESPONSIVE
   =========================== */

/* ── Tablet (≤ 1024px) ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .quality__layout { grid-template-columns: 1fr; }
  .quality__images { display: grid; grid-template-columns: 1fr 1fr; position: static; }
  .quality__img--main { grid-column: 1 / -1; aspect-ratio: 16/7; }
  .quality__img--secondary { aspect-ratio: 4/3; }
  .kpage__layout { grid-template-columns: 280px 1fr; gap: 32px; }
}

/* ── Schmales Tablet / großes Phone (≤ 900px) ─────────────────────────────── */
@media (max-width: 900px) {
  .about__layout { grid-template-columns: 1fr; gap: 40px; }
  .about__images { max-width: 560px; margin: 0 auto; }
  .footer__layout { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  /* Bestellseite: 1-spaltig */
  .kpage__layout { grid-template-columns: 1fr; gap: 24px; }
  .kpage__sidebar { position: static; }
  .kpage__info { display: none; }
  .kform__header { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }

  /* Formulare: 2-spaltige Zeilen früher umbrechen */
  .form__row { grid-template-columns: 1fr; gap: 12px; }

  /* Produktauswahl → horizontale Scroll-Leiste (Tablet) */
  .kpage__nav ul {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }
  .kpage__nav ul::-webkit-scrollbar { display: none; }
  .kpage__nav li { flex-shrink: 0; }
  .kpage__nav-link {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 12px;
    min-width: 88px;
    max-width: 108px;
    border-bottom: none;
    border-right: 1px solid var(--border);
    gap: 6px;
  }
  .kpage__nav li:last-child .kpage__nav-link { border-right: none; }
  .kpage__nav-img { width: 44px; height: 44px; }
  .kpage__nav-arrow { display: none; }
  .kpage__nav-info { align-items: center; }
  .kpage__nav-name { font-size: .78rem; white-space: normal; line-height: 1.2; }
  .kpage__nav-price { font-size: .68rem; }

  /* Aktiv-Indikator: unten statt links */
  .kpage__nav-link.is-active::before {
    left: 0; right: 0;
    top: auto; bottom: 0;
    width: 100%; height: 3px;
    border-radius: 2px 2px 0 0;
  }
}

/* ── Phone (≤ 700px) ──────────────────────────────────────────────────────── */
@media (max-width: 700px) {
  /* Navigation */
  .nav__menu {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(18,13,7,.97);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 4px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav__menu.open { transform: translateY(0); opacity: 1; }
  .nav__link { padding: 12px 16px; font-size: .9375rem; min-height: 44px; display: flex; align-items: center; }
  .nav__link--cta { margin-left: 0; margin-top: 8px; text-align: center; justify-content: center; }
  .nav__toggle { display: flex; }

  /* Abschnitte */
  .section { padding: 48px 0; }
  .section__header { margin-bottom: 36px; }

  /* Hero */
  .hero__content { padding: 48px 20px 56px; }
  .hero__subtitle { font-size: .9375rem; margin-bottom: 28px; }
  .hero__stats { gap: 20px; }
  .hero__stat-number { font-size: 1.5rem; }
  .hero__scroll-hint { display: none; }

  /* Page-Hero (Unterseiten) */
  .page-hero { min-height: 200px; }
  .page-hero__title { font-size: 1.75rem; }
  .page-hero__content { padding: 0 0 24px; }

  /* Produkte */
  .products__gallery { max-height: 220px; }
  .products__gallery-img { height: 220px; }
  .products__grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card__body { padding: 18px; }

  /* Qualität */
  .quality__images { grid-template-columns: 1fr; }
  .quality__img--secondary { display: none; }
  .quality__opening-hours { padding: 20px 22px; flex-direction: column; gap: 16px; }
  .quality__hours-grid { gap: 20px; }
  .quality__stat { padding: 22px 12px; }
  .quality__stat-number { font-size: 1.75rem; }

  /* Über uns */
  .about__layout { gap: 32px; }

  /* Footer */
  .footer__layout { grid-template-columns: 1fr; gap: 24px; padding: 32px 20px; }

  /* iOS: verhindert Zoom beim Antippen von Inputs */
  input, select, textarea { font-size: 1rem !important; }

  /* Formulare */
  .form__group label { font-size: .85rem; }
  .form__group input,
  .form__group select,
  .form__group textarea { padding: 12px; }

  /* Bestellformular */
  .kpage { padding: 24px 0 56px; }
  .kform__form { padding: 18px 16px; gap: 16px; }
  .kform__header { flex-direction: column; padding: 16px; gap: 12px; }
  .kform__img { width: 100%; height: 150px; border-radius: var(--radius-md); }
  .kform__title { font-size: 1.2rem; }
  .kform__price-row { margin-top: 4px; }
  .kform__submit-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .kform__submit-row .btn { width: 100%; text-align: center; }

  /* Radio-Buttons Trocknungsgrad */
  .form__radio-group { flex-direction: column; gap: 8px; }
  .radio-trocknung { gap: 2px; }
  .form__radio span,
  .form__radio .radio-trocknung { width: 100%; }

  /* Add-on-Karte */
  .addon-card__toggle { gap: 10px; padding: 12px; }
  .addon-card__img { width: 48px; height: 48px; }
  .addon-card__desc { display: none; }
  .addon-card__qty { flex-wrap: wrap; gap: 8px; }
  .addon-card__qty select { width: 100%; }

  /* Validierungs-Fehlermeldungen */
  .form__error-msg { font-size: .78rem; }
}

/* ── Kleines Phone (≤ 480px) ──────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; }

  .kform__submit-row { flex-direction: column; align-items: stretch; }
  .kform__submit-row .btn { width: 100%; }

  .danke-actions { flex-direction: column; }
  .danke-actions .btn { width: 100%; }

  .form__note { font-size: .73rem; }
  .kpage__nav-link { min-width: 76px; padding: 8px 8px; }
  .kpage__nav-img { width: 38px; height: 38px; }
}

/* ===========================
   COOKIE BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--brown-dark);
  color: var(--white);
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  transform: translateY(100%);
  transition: transform .35s ease;
}
.cookie-banner--visible { transform: translateY(0); }

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 12px 32px;
  align-items: start;
}
.cookie-banner__text { grid-column: 1; grid-row: 1; }
.cookie-banner__text strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.cookie-banner__text p { font-size: .83rem; margin: 0; opacity: .85; line-height: 1.5; }
.cookie-banner__text a { color: rgba(255,255,255,.75); text-decoration: underline; }
.cookie-banner__text a:hover { color: var(--white); }

.cookie-banner__cats {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: .78rem;
}
.cookie-cat--always { background: rgba(255,255,255,.14); }
.cookie-cat__label { font-weight: 600; }
.cookie-cat__badge {
  font-size: .7rem;
  background: #27ae60;
  color: #fff;
  border-radius: 20px;
  padding: 1px 8px;
  font-weight: 600;
}
.cookie-cat__note { opacity: .65; font-size: .72rem; }

.cookie-banner__actions {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: center;
  min-width: 180px;
}
.cookie-banner__actions .btn {
  width: 100%;
  text-align: center;
  white-space: nowrap;
}
.cookie-banner__actions .btn--outline {
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}
.cookie-banner__actions .btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

@media (max-width: 700px) {
  .cookie-banner__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .cookie-banner__text,
  .cookie-banner__cats,
  .cookie-banner__actions { grid-column: 1; grid-row: auto; }
  .cookie-banner__actions { flex-direction: row; }
  .cookie-banner__actions .btn { width: auto; flex: 1; }
}

/* ===========================
   MAPS CONSENT PLACEHOLDER
   =========================== */
.maps-consent-wrap { position: relative; }
.maps-consent-placeholder {
  width: 100%;
  height: 300px;
  background: var(--cream);
  border-radius: 8px;
  border: 1.5px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 28px;
  box-sizing: border-box;
}
.maps-consent-placeholder p {
  font-size: .83rem;
  color: var(--text-muted);
  max-width: 300px;
  margin: 0;
  line-height: 1.5;
}

/* ── Sorglos-Paket Add-on ─────────────────────────────────────────────────── */
.addon-section__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.addon-section__badge {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--red);
  background: #fdecea;
  border-radius: 20px;
  padding: 2px 9px;
  flex-shrink: 0;
}
.addon-section__title {
  font-size: .88rem;
  font-weight: 600;
  color: var(--brown-dark);
}
.addon-card {
  border: 2px solid #e8ddd0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .2s, background .2s;
}
.addon-card:has(input:checked) {
  border-color: var(--red);
  background: #fff8f6;
}
.addon-card__toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  cursor: pointer;
  user-select: none;
}
.addon-card__toggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.addon-card__img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.addon-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.addon-card__name {
  font-size: .92rem;
  color: var(--brown-dark);
}
.addon-card__desc {
  font-size: .76rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.addon-card__price {
  font-size: .85rem;
  font-weight: 700;
  color: var(--red);
}
.addon-card__checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid #ccc;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s, border-color .15s;
  margin-left: auto;
}
.addon-card:has(input:checked) .addon-card__checkbox {
  background: var(--red);
  border-color: var(--red);
}
.addon-card__checkbox svg {
  width: 13px;
  height: 13px;
  color: #fff;
  opacity: 0;
  transition: opacity .15s;
}
.addon-card:has(input:checked) .addon-card__checkbox svg {
  opacity: 1;
}
.addon-card__qty {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-top: 1px solid #f0e8e0;
  background: rgba(255,255,255,.6);
}
.addon-card__qty-label {
  font-size: .83rem;
  font-weight: 600;
  color: var(--brown);
  white-space: nowrap;
}
.addon-card__qty select {
  flex: 1;
  max-width: 220px;
}

/* ── Galerie ──────────────────────────────────────────────────────────────── */
.gallery-section { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-grid__item {
  overflow: hidden;
  border-radius: 10px;
  line-height: 0;
}
.gallery-grid__item--wide {
  grid-column: span 2;
}
.gallery-grid__item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform .4s ease, filter .4s ease;
}
.gallery-grid__item--wide img {
  height: 280px;
}
.gallery-grid__item:hover img {
  transform: scale(1.04);
  filter: brightness(1.06);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid__item--wide {
    grid-column: span 2;
  }
  .gallery-grid__item img { height: 180px; }
  .gallery-grid__item--wide img { height: 210px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid__item--wide { grid-column: span 1; }
  .gallery-grid__item img,
  .gallery-grid__item--wide img { height: 220px; }
}

/* ── Danke-Seite ──────────────────────────────────────────────────────────── */
.danke-wrap {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0 60px;
}
.danke-icon {
  width: 80px;
  height: 80px;
  background: #eafaf1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.danke-icon svg {
  width: 44px;
  height: 44px;
  color: #27ae60;
}
.danke-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text);
  margin-bottom: 16px;
}
.danke-wrap p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.danke-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 28px 0 36px;
  padding: 24px;
  background: var(--cream);
  border-radius: 12px;
  border: 1.5px solid var(--border);
}
.danke-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
}
.danke-phone svg {
  width: 22px;
  height: 22px;
}
.danke-phone:hover { color: var(--red-dark); }
.danke-hours {
  font-size: .8rem;
  color: var(--text-muted);
}
.danke-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   FAQ-SEITE
   =========================== */
.faq-section { background: var(--cream); }

.faq-container { max-width: 860px; margin: 0 auto; }

.faq-intro {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--border);
}
.faq-intro a { color: var(--red); font-weight: 600; }
.faq-intro a:hover { color: var(--red-dark); }

/* Kategorie-Block */
.faq-category {
  margin-bottom: 56px;
}
.faq-category:last-of-type { margin-bottom: 0; }

.faq-category__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.faq-category__title svg {
  width: 22px; height: 22px;
  color: var(--red);
  flex-shrink: 0;
}

/* FAQ Accordion (details/summary) */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:last-child { margin-bottom: 0; }
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  user-select: none;
  transition: background var(--transition), color var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: var(--warm-gray); color: var(--red); }
.faq-item[open] > .faq-question { color: var(--red); background: rgba(192,57,43,.04); border-bottom: 1px solid var(--border); }

.faq-chevron {
  width: 18px; height: 18px;
  color: var(--red);
  flex-shrink: 0;
  transition: transform .25s ease;
}

.faq-answer {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-answer p {
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.75;
}
.faq-answer a { color: var(--red); font-weight: 500; }
.faq-answer a:hover { color: var(--red-dark); text-decoration: underline; }

/* Listen */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.faq-list li {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}
.faq-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
}
.faq-list--ordered { counter-reset: faq-counter; }
.faq-list--ordered li { counter-increment: faq-counter; padding-left: 28px; }
.faq-list--ordered li::before {
  content: counter(faq-counter);
  width: 20px; height: 20px;
  top: 2px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Info-Box */
.faq-info-box {
  background: rgba(192,57,43,.06);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  font-size: .875rem;
  color: var(--text);
  line-height: 1.6;
}
.faq-info-box strong { color: var(--red); }

/* Tabelle */
.faq-table-wrap { overflow-x: auto; }
.faq-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
.faq-table th {
  background: var(--warm-gray);
  color: var(--brown-dark);
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  font-size: .8rem;
  letter-spacing: .03em;
  border-bottom: 2px solid var(--border);
}
.faq-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  line-height: 1.5;
}
.faq-table tr:last-child td { border-bottom: none; }
.faq-table tr:hover td { background: var(--cream); }

/* CTA-Block */
.faq-cta {
  margin-top: 64px;
  background: linear-gradient(135deg, #2c1a0e 0%, #4a2c14 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  color: var(--white);
}
.faq-cta h3 {
  font-family: var(--font-head);
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.faq-cta p {
  color: rgba(255,255,255,.72);
  margin-bottom: 28px;
  font-size: .9375rem;
}
.faq-cta__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .faq-question { padding: 14px 16px; font-size: .875rem; }
  .faq-answer { padding: 16px 16px 20px; }
  .faq-cta { padding: 32px 20px; }
  .faq-cta h3 { font-size: 1.25rem; }
  .faq-cta__actions { flex-direction: column; }
  .faq-cta__actions .btn { width: 100%; }
}
