/* ============================================================
 * Hauptseite — Non-Critical-CSS
 * ============================================================
 * Wurde aus dem Inline-<style>-Block in index.html ausgegliedert
 * (Performance-Optimierung 09.05.2026: First Paint schneller, weil
 * der kritische Above-the-fold-CSS inline klein bleibt und dieses
 * File asynchron via preload-Trick nachgeladen wird).
 *
 * Enthält: Editorial-Slider, 4-Schritte, Picker, Stoff-Marquee,
 * Über-mich, FAQ, Atelier, Pain-Points, Stimmen, Anfrage-Formular,
 * Footer, Cookie-Banner + Modal, Reduced-Motion.
 *
 * Lade-Pattern in index.html:
 *   <link rel="preload" href="assets/main.css" as="style"
 *         onload="this.onload=null;this.rel='stylesheet'">
 *   <noscript><link rel="stylesheet" href="assets/main.css"></noscript>
 * ============================================================ */

/* ====== Editorial-Slider (Aktuelle Kollektion 2026) ====== */
.editorial-section {
  padding: clamp(56px, 9vw, 100px) 0;
  margin: 0;
  max-width: none;
}
.editorial-head {
  max-width: 1240px;
  margin: 0 auto 36px;
  padding: 0 clamp(20px, 5vw, 56px);
}
.editorial-head .eyebrow { color: var(--gold); }
.editorial-head h2 { margin-bottom: 10px; }
.editorial-head p {
  color: var(--muted);
  max-width: 56ch;
  margin: 0;
}
.editorial-slider-wrap {
  position: relative;
  padding: 0 clamp(20px, 5vw, 56px);
}
.editorial-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: clamp(20px, 5vw, 56px);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 12px;
}
.editorial-slider::-webkit-scrollbar { display: none; }
.editorial-slide {
  position: relative;
  flex: 0 0 78%;
  max-width: 380px;
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
  background: var(--cream-2);
  text-decoration: none;
  color: var(--text);
  display: block;
  aspect-ratio: 4 / 5;
  box-shadow: 0 10px 30px rgba(28, 28, 25, 0.08);
  transition: transform .35s ease, box-shadow .35s ease;
}
@media (min-width: 600px) { .editorial-slide { flex-basis: 56%; } }
@media (min-width: 900px) { .editorial-slide { flex-basis: 38%; max-width: 420px; } }
@media (min-width: 1200px) { .editorial-slide { flex-basis: 30%; max-width: 440px; } }
.editorial-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  transition: transform .6s ease;
}
.editorial-slide:hover { box-shadow: 0 18px 48px rgba(28, 28, 25, 0.18); }
.editorial-slide:hover img { transform: scale(1.04); }
.editorial-slide-name {
  position: absolute;
  left: 16px; bottom: 14px;
  padding: 5px 12px;
  background: rgba(252, 249, 244, 0.92);
  color: var(--text);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  backdrop-filter: blur(6px);
}
.editorial-slide-arrow {
  position: absolute;
  right: 14px; bottom: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(252, 249, 244, 0.92);
  color: var(--gold);
  display: grid; place-items: center;
  font-size: 16px; font-weight: 600;
  backdrop-filter: blur(6px);
}
.editorial-slide.is-cta {
  background: var(--text);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 40px 28px;
}
.editorial-slide.is-cta:hover { background: var(--gold); }
.editorial-slide.is-cta .cta-inner {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.editorial-slide.is-cta .cta-num {
  font-family: 'Noto Serif', serif;
  font-style: italic;
  font-size: 38px;
  line-height: 1;
  color: var(--gold);
}
.editorial-slide.is-cta:hover .cta-num { color: var(--cream); }
.editorial-slide.is-cta .cta-text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
/* Pfeil-Buttons (nur Desktop) */
.editorial-nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
  font-size: 22px; line-height: 1;
  align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(28, 28, 25, 0.15);
  transition: background-color .25s ease;
}
.editorial-nav:hover { background: var(--gold); color: #fff; }
.editorial-nav.is-prev { left: 12px; }
.editorial-nav.is-next { right: 12px; }
@media (min-width: 900px) { .editorial-nav { display: flex; } }

/* ====== 02 — Vier Schritte ====== */
.steps-head { max-width: 720px; margin-bottom: 56px; }
.steps-head h2 {
  font-size: clamp(30px, 6vw, 56px);
  margin-bottom: 18px;
}
.steps-head p { color: var(--muted); font-size: 17px; max-width: 56ch; margin: 0; }
.steps {
  display: grid; gap: 14px;
}
@media (min-width: 720px) {
  .steps { grid-template-columns: 1fr 1fr; gap: 18px; }
}
.step {
  position: relative;
  padding: 28px 26px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.step-num {
  font-family: 'Noto Serif', serif; font-style: italic;
  font-size: 14px; color: var(--gold);
  letter-spacing: 0.12em;
}
.step h3 {
  margin: 8px 0 10px;
  font-size: clamp(22px, 3.4vw, 28px);
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}
.step::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 36%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 22px 0 0 0;
  opacity: 0;
  transition: opacity .9s ease, width .9s cubic-bezier(.2,.6,.2,1);
}
.step.is-in::before { opacity: 1; width: 60%; }

/* ====== 03 — Sticky Picker ====== */
.picker {
  position: relative;
  margin: clamp(40px, 8vw, 80px) 0;
}
.picker-grid {
  display: grid; gap: 24px;
}
@media (min-width: 900px) {
  .picker-grid { grid-template-columns: 240px 1fr; gap: 56px; align-items: start; }
}
.picker-tabs {
  display: flex; flex-direction: column; gap: 6px;
  position: sticky; top: 90px;
}
@media (max-width: 899px) {
  /* 2×2-Grid auf Mobile/Tablet — gleichmäßig, kein wrapping-Drama */
  .picker-tabs {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
    position: static;
  }
}
.picker-tab {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 14px; font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background-color .25s ease, border-color .25s ease, color .25s ease;
}
.picker-tab .num {
  font-family: 'Noto Serif', serif; font-style: italic;
  font-size: 12px; color: var(--gold); letter-spacing: 0.1em;
}
.picker-tab:hover { background: var(--gold-soft); border-color: var(--gold); }
.picker-tab.is-active {
  background: var(--text); color: var(--cream);
  border-color: var(--text);
}
.picker-tab.is-active .num { color: var(--cream-3); }

/* Variante A — Stage ohne min-height, Panels im normalen Flow.
   Container passt sich an Inhalt an, nichts läuft mehr unten raus. */
.picker-stage {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow);
}
@media (min-width: 720px) { .picker-stage { padding: 36px; } }
@media (min-width: 1024px) { .picker-stage { padding: 44px; } }
.picker-panel { display: none; }
.picker-panel.is-active { display: block; }
.picker-panel .label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  background: var(--gold-soft);
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase;
}
.picker-panel h3 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 14px;
}
.picker-panel p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 52ch;
}
.picker-panel ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  color: var(--text);
}
.picker-panel ul li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: baseline; gap: 12px;
  font-size: 15px;
}
.picker-panel ul li::before {
  content: "·";
  color: var(--gold);
  font-size: 22px; line-height: 0;
}
.picker-panel ul li:last-child { border-bottom: 0; }
/* CTA konsistent unten am Panel mit etwas Luft */
.picker-panel .cta { margin-top: 8px; }

/* Saison-Hinweis-Karte (nur im Maßanfertigungs-Panel) */
.picker-note {
  display: flex; align-items: flex-start; gap: 14px;
  margin: 0 0 22px;
  padding: 14px 16px;
  background: rgba(112, 87, 66, 0.06);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
}
.picker-note-icon {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 22px; line-height: 1;
  margin-top: 2px;
}
.picker-note-text { font-size: 14px; line-height: 1.6; color: var(--text); }
.picker-note-text strong { color: var(--gold); font-weight: 600; }

/* ====== 04 — Stoff-Marquee ====== */
.craft {
  background: var(--text);
  color: var(--cream);
  padding: clamp(80px, 14vw, 160px) 0;
  margin: 0;
  max-width: none;
  border-radius: 0;
}
.craft .craft-head {
  max-width: 1180px;
  margin: 0 auto 48px;
  padding: 0 clamp(20px, 5vw, 56px);
}
.craft .eyebrow { color: var(--cream-3); }
.craft .chapter-num { color: var(--cream-3); }
.craft h2 {
  font-size: clamp(34px, 6.5vw, 64px);
  color: var(--cream);
  margin-bottom: 18px;
  max-width: 16ch;
}
.craft h2 em { color: var(--cream-3); }
.craft .craft-sub {
  color: rgba(252, 249, 244, 0.7);
  max-width: 52ch;
  font-size: 17px;
}

.marquee {
  position: relative;
  overflow: hidden;
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee.slow .marquee-track { animation-duration: 60s; }
.marquee.reverse .marquee-track { animation-direction: reverse; }
.marquee-track > * {
  flex: 0 0 auto;
  padding: 18px 36px;
  font-family: 'Noto Serif', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4.5vw, 56px);
  color: var(--cream);
  white-space: nowrap;
}
.marquee-track > *::after {
  content: "·";
  margin-left: 36px;
  color: var(--gold);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ====== 02 — Über mich ====== */
.about {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 800px) {
  .about { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 56px; }
}
.about-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream-2);
  aspect-ratio: 4 / 5;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-text h2 {
  font-size: clamp(30px, 6vw, 54px);
  margin-bottom: 18px;
}
.about-text p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.about-text p strong { color: var(--text); font-weight: 500; }
.about-card {
  margin-top: 28px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.about-card .eyebrow { margin-bottom: 8px; }
.about-card p {
  margin: 0;
  font-family: 'Noto Serif', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
}

/* ====== 07 — FAQ-Akkordeon ====== */
.faq-list {
  display: grid;
  gap: 8px;
  max-width: 820px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: 'Noto Serif', serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.4;
  color: var(--text);
  transition: background-color .2s ease;
}
.faq-q:hover { background: var(--gold-soft); }
.faq-q::after {
  content: "+";
  flex: 0 0 auto;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  font-family: 'Work Sans', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  transition: transform .35s ease;
  margin-top: -2px;
}
.faq-item.is-open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.2,.7,.2,1);
}
.faq-item.is-open .faq-a { max-height: 800px; }
.faq-a-inner {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

/* ====== 08 — Atelier & Anfahrt ====== */
.atelier {
  display: grid;
  gap: 28px;
  align-items: center;
}
@media (min-width: 800px) {
  .atelier { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 56px; }
}
.atelier-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream-2);
  aspect-ratio: 4 / 5;
}
.atelier-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.atelier-info h2 { font-size: clamp(28px, 5vw, 44px); margin-bottom: 14px; }
.atelier-info p { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 0 0 14px; }
.atelier-data {
  margin-top: 22px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid; gap: 14px;
  box-shadow: var(--shadow);
}
.atelier-data dl {
  margin: 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 18px;
  font-size: 14.5px;
}
.atelier-data dt {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-self: center;
}
.atelier-data dd {
  margin: 0;
  color: var(--text);
}
.atelier-data dd a { color: var(--gold); text-decoration: none; }
.atelier-data dd a:hover { color: var(--gold-2); text-decoration: underline; }

/* === Google-Bewertungs-Header über der Karte (sichtbar ohne Klick) === */
.atelier-rating {
  margin-top: 24px;
}
.atelier-rating-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(28, 28, 25, 0.05);
  text-decoration: none;
  color: var(--text);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.atelier-rating-link:hover, .atelier-rating-link:focus-visible {
  transform: translateY(-1px);
  border-color: var(--gold);
  box-shadow: 0 8px 22px rgba(112, 87, 66, 0.15);
}
.atelier-rating-stars {
  color: #f5b400;  /* Google's Sterne-Gold */
  font-size: 20px;
  letter-spacing: 1px;
  text-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.atelier-rating-meta {
  font-size: 15px;
  color: var(--text);
}
.atelier-rating-meta strong {
  font-size: 18px;
  font-weight: 600;
}
.atelier-rating-cta {
  margin-left: auto;
  color: var(--gold);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (max-width: 600px) {
  .atelier-rating-link { gap: 8px; padding: 12px 14px; }
  .atelier-rating-meta { font-size: 14px; flex: 1 1 auto; }
  .atelier-rating-cta { margin-left: 0; flex: 1 0 100%; }
}

/* === Karten-Block (Click-to-Load) === */
.atelier-map {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--cream-2);
  position: relative;
  aspect-ratio: 16 / 10;
}
.map-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(135deg, rgba(112, 87, 66, 0.03) 0 12px, transparent 12px 24px),
    radial-gradient(ellipse at center, var(--cream-2) 0%, var(--cream-3) 100%);
  cursor: pointer;
  border: 0;
  padding: 0;
  font-family: inherit;
  color: var(--text);
  position: relative;
}
.map-placeholder:hover { background-color: var(--cream-3); }
.map-placeholder-inner {
  text-align: center;
  padding: 24px 28px;
  max-width: 360px;
}
.map-pin {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  background: var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 8px 22px rgba(112, 87, 66, 0.30);
}
.map-pin svg { width: 26px; height: 26px; }
.map-placeholder strong {
  display: block;
  font-family: 'Noto Serif', serif;
  font-weight: 400;
  font-size: 20px;
  margin: 0 0 6px;
  color: var(--text);
}
.map-placeholder p {
  margin: 0 0 10px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}
.map-placeholder small {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.55;
}
.map-loaded { width: 100%; height: 100%; border: 0; }

.map-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.map-actions a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease;
}
.map-actions a:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--gold);
}
.map-actions svg { width: 14px; height: 14px; }

/* ====== Pain Points / Sorgen ====== */
.pains {
  margin-top: 28px;
  padding: 28px 26px;
  background: var(--cream-2);
  border-radius: 18px;
}
.pains h3 {
  font-family: 'Noto Serif', serif;
  font-weight: 400;
  font-size: clamp(22px, 4vw, 28px);
  margin: 0 0 12px;
}
.pains h3 em { color: var(--gold); font-style: italic; }
.pains ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 6px;
}
.pains ul li {
  font-family: 'Noto Serif', serif;
  font-style: italic;
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}
.pains ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-style: normal;
}
.pains-resolve {
  margin-top: 16px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ====== 05 — Stimmen ====== */
.voices-head { margin-bottom: 48px; max-width: 720px; }
.voices-head h2 { font-size: clamp(30px, 6vw, 56px); margin-bottom: 18px; }
.voices-head p { color: var(--muted); font-size: 17px; }

.review-rail {
  position: relative;
  overflow: hidden;
  padding: 6px 0 14px;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.review-track {
  display: flex; gap: 18px;
  width: max-content;
  animation: marquee 80s linear infinite;
}
.review-track:hover { animation-play-state: paused; }
.review {
  flex: 0 0 360px;
  padding: 26px 26px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.review .stars {
  display: inline-block;
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 13px;
  margin-bottom: 10px;
}
.review p {
  font-family: 'Noto Serif', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 16px;
}
.review .who {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--muted);
}
.review .who::before {
  content: "";
  display: inline-block;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--line);
}

/* ====== 06 — Mini-Form (CTA) ====== */
.cta-final {
  background: var(--cream-2);
  border-radius: 28px;
  padding: clamp(40px, 7vw, 80px);
  margin: clamp(40px, 8vw, 100px) clamp(20px, 5vw, 56px) 80px;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(420px 280px at 80% 20%, rgba(112, 87, 66, 0.1), transparent 70%);
  pointer-events: none;
}
.cta-final .inner { position: relative; max-width: 720px; }
.cta-final h2 {
  font-size: clamp(34px, 7vw, 68px);
  margin-bottom: 14px;
}
.cta-final p {
  font-size: 17px;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 0 32px;
}

/* CTA-Header (mit Icon) */
.cta-head {
  display: flex; align-items: flex-start; gap: 18px;
  margin-bottom: 28px;
}
.cta-icon {
  flex: 0 0 auto;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 22px rgba(112, 87, 66, 0.22);
}
.cta-icon svg { width: 26px; height: 26px; stroke-width: 1.5; }
.cta-head .head-text { flex: 1; min-width: 0; }
.cta-head .head-text h2 { margin: 4px 0 8px; }
.cta-head .head-text .cta-sub {
  font-size: 16px; color: var(--muted);
  max-width: 56ch; margin: 0;
}

.miniform {
  display: grid; gap: 18px;
  max-width: 640px;
}
.miniform fieldset {
  border: 0; padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.miniform legend {
  font-size: 11px; font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.14em; text-transform: uppercase;
}
.miniform legend .req { color: var(--gold); margin-left: 2px; }

/* Pills für Grund */
.miniform .opts {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.miniform .opt {
  padding: 9px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px; font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.miniform .opt:hover { background: var(--gold-soft); border-color: var(--gold); }
.miniform .opt.is-selected {
  background: var(--text); color: var(--cream);
  border-color: var(--text);
}

/* Form-Row mit zwei Spalten ab Tablet */
.form-row { display: grid; gap: 12px; }
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; gap: 14px; }
}

.field { display: grid; gap: 6px; }
.field-label {
  font-size: 13px; font-weight: 600;
  color: var(--text);
  letter-spacing: 0.005em;
}
.field-label .req { color: var(--gold); margin-left: 1px; }
.field-label .hint {
  margin-left: 4px;
  font-size: 12px; font-weight: 400;
  color: var(--muted);
}

/* Inputs / Textarea */
.miniform input[type="text"],
.miniform input[type="email"],
.miniform input[type="tel"],
.miniform input[type="date"],
.miniform textarea {
  width: 100%;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit; font-size: 15px;
  color: var(--text);
  font-family: 'Work Sans', system-ui, sans-serif;
}
.miniform textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.5;
}
.miniform input:focus-visible,
.miniform textarea:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 1px;
  border-color: transparent;
}
.miniform input.is-error,
.miniform textarea.is-error {
  border-color: #b94a3a;
  background: #fff5f3;
}

/* Wishlist im Anfrageformular */
.wl-hint {
  margin: -4px 0 4px;
  padding: 14px 16px;
  background: rgba(112, 87, 66, 0.05);
  border: 1px solid rgba(112, 87, 66, 0.20);
  border-radius: 14px;
}
.wl-hint-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; margin-bottom: 10px; flex-wrap: wrap;
}
.wl-hint-head strong {
  color: var(--gold);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.01em;
}
.wl-clear-link {
  background: none; border: 0; padding: 0;
  color: var(--muted); font-size: 12.5px;
  text-decoration: underline; text-underline-offset: 3px;
  cursor: pointer;
}
.wl-clear-link:hover { color: var(--gold); }
.wl-chips {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.wl-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 6px 6px 12px;
  background: #fff;
  border: 1px solid rgba(112, 87, 66, 0.25);
  border-radius: 999px;
  font-size: 13px; line-height: 1.2;
  color: var(--text);
}
.wl-chip-cat {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}
.wl-chip-name { font-weight: 500; }
.wl-chip-rm {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-soft); color: var(--gold);
  border: 0; border-radius: 50%;
  cursor: pointer; font-size: 20px; line-height: 1;
  padding: 0;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.wl-chip-rm:hover { background: var(--gold); color: #fff; transform: scale(1.08); }
.wl-hint-meta {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* DSGVO-Konsens */
.consent {
  display: flex; gap: 12px;
  align-items: flex-start;
  font-size: 13.5px; line-height: 1.55;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
}
.consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 20px; height: 20px;
  margin: 1px 0 0;
  accent-color: var(--gold);
  cursor: pointer;
}
.consent a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent.is-error span { color: #b94a3a; }
.consent.is-error input { outline: 2px solid #b94a3a; outline-offset: 2px; border-radius: 4px; }

/* Submit + Trust */
.miniform .submit {
  width: 100%;
  margin-top: 4px;
  padding: 14px 24px;
  font-size: 15px;
  min-height: 52px;
  font-weight: 600;
}
.trust-line {
  display: inline-flex;
  align-items: center; gap: 10px;
  margin: 6px auto 0;
  padding: 8px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  align-self: center;
}
.trust-line .stars {
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 13px;
}
.trust-line .stars-text {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
}
.trust-disclaimer {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  margin: 4px auto 0;
  max-width: 50ch;
}

@media (max-width: 599px) {
  .cta-head { gap: 14px; margin-bottom: 22px; }
  .cta-icon { width: 48px; height: 48px; }
  .cta-icon svg { width: 22px; height: 22px; }
}

/* ====== Footer (dunkel, 3 Spalten) ====== */
.footer {
  margin: clamp(48px, 10vw, 110px) 0 0;
  padding: 56px clamp(20px, 5vw, 72px) 32px;
  background: var(--text);
  color: rgba(252, 249, 244, 0.72);
  font-size: 14px;
  line-height: 1.7;
}
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
  }
}
.footer-brand img {
  width: 96px; height: auto;
  margin-bottom: 18px;
  opacity: 0.92;
}
.footer-desc {
  margin: 0 0 18px;
  color: rgba(252, 249, 244, 0.62);
  font-size: 13.5px;
  max-width: 36ch;
}
.footer-credit {
  font-size: 12.5px;
  color: rgba(252, 249, 244, 0.42);
}
.footer-credit a {
  color: rgba(252, 249, 244, 0.72);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  color: rgba(252, 249, 244, 0.52);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.footer-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid; gap: 10px;
}
.footer-list a, .footer-list button {
  color: var(--cream);
  text-decoration: none;
  font-size: 14.5px;
  background: none; border: 0; padding: 0;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: color .2s ease;
}
.footer-list a:hover, .footer-list button:hover { color: var(--gold-2); }

.footer-bottom {
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 24px;
  border-top: 1px solid rgba(252, 249, 244, 0.14);
  font-size: 12.5px;
  color: rgba(252, 249, 244, 0.42);
}
@media (min-width: 720px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom em {
  font-style: italic;
  color: rgba(252, 249, 244, 0.55);
}

/* Social-Icons im Footer */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(252, 249, 244, 0.20);
  border-radius: 50%;
  color: rgba(252, 249, 244, 0.78);
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.footer-social a:hover {
  background: rgba(252, 249, 244, 0.08);
  color: var(--cream);
  border-color: rgba(252, 249, 244, 0.45);
  transform: translateY(-1px);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-col-social { display: grid; gap: 0; }
.footer-col-social .footer-col-title { margin-bottom: 14px; }
.footer-col-social p {
  margin: 0;
  font-size: 13px;
  color: rgba(252, 249, 244, 0.58);
  line-height: 1.5;
}

/* ====== Cookie-Banner (unten als Card) ====== */
.cookie-banner {
  position: fixed;
  bottom: 14px; left: 14px; right: 14px;
  z-index: 60;
  max-width: 540px;
  margin: 0 auto;
  padding: 22px 24px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(28, 28, 25, 0.20), 0 4px 12px rgba(28, 28, 25, 0.08);
  transform: translateY(120%);
  opacity: 0;
  transition: transform .55s cubic-bezier(.2,.7,.2,1), opacity .4s ease;
  pointer-events: none;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner h3 {
  font-family: 'Noto Serif', serif;
  font-weight: 400;
  font-size: 19px;
  margin: 0 0 8px;
  color: var(--text);
}
.cookie-banner p {
  margin: 0 0 16px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}
.cookie-actions {
  display: flex; flex-wrap: wrap; gap: 8px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-actions .text-btn {
  background: none; border: 0;
  font: inherit; font-size: 13.5px; font-weight: 500;
  color: var(--muted);
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 10px;
  transition: color .2s ease, background-color .2s ease;
}
.cookie-actions .text-btn:hover { color: var(--text); background: var(--gold-soft); }
.cookie-actions .ghost-btn {
  font: inherit; font-size: 13.5px; font-weight: 500;
  background: #fff; color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease;
}
.cookie-actions .ghost-btn:hover { background: var(--gold-soft); border-color: var(--gold); }
.cookie-actions .primary-btn {
  font: inherit; font-size: 13.5px; font-weight: 600;
  background: var(--gold); color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 10px 18px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(112, 87, 66, 0.22);
  transition: background-color .2s ease;
}
.cookie-actions .primary-btn:hover { background: var(--gold-2); }

/* ====== Cookie-Settings-Modal ====== */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(28, 28, 25, 0.50);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .35s ease;
}
.cookie-modal.is-open { display: flex; opacity: 1; }
.cookie-modal-card {
  background: #fff;
  border-radius: 22px;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 28px 28px 22px;
  box-shadow: 0 30px 80px rgba(28, 28, 25, 0.30);
  transform: translateY(12px) scale(0.98);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.cookie-modal.is-open .cookie-modal-card {
  transform: translateY(0) scale(1);
}
.cookie-modal-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-modal-head h3 {
  font-family: 'Noto Serif', serif;
  font-weight: 400;
  font-size: 22px;
  margin: 0;
  color: var(--text);
}
.cookie-close {
  background: none; border: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--muted);
  display: grid; place-items: center;
  font-size: 22px;
  transition: background-color .2s ease, color .2s ease;
}
.cookie-close:hover { background: var(--gold-soft); color: var(--text); }
.cookie-modal-intro {
  margin: 0 0 18px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}
.cookie-cat {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: flex-start;
}
.cookie-cat.is-essential {
  background: #faf6ee;
  opacity: 0.85;
}
.cookie-cat-label {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px;
}
.cookie-cat-desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}
/* Toggle */
.toggle {
  flex: 0 0 auto;
  position: relative;
  display: inline-block;
  width: 42px; height: 24px;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle .slider {
  position: absolute; inset: 0;
  background: #d3cabb;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color .25s ease;
}
.toggle .slider::before {
  content: "";
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform .25s ease;
  box-shadow: 0 2px 4px rgba(28, 28, 25, 0.2);
}
.toggle input:checked + .slider { background: var(--gold); }
.toggle input:checked + .slider::before { transform: translateX(18px); }
.toggle input:disabled + .slider { background: var(--gold); opacity: 0.6; cursor: not-allowed; }

.cookie-modal-actions {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: flex-end;
  margin-top: 22px;
}

/* ====== Reduced motion ====== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .marquee-track, .review-track { animation: none; }
}

/* ============================================================
   Phase 5 · Cross-Promotion zu brautkleidxxl.de
   ============================================================ */

/* Schnellwahl-Karte: Wrapper + Sekundär-Link unter der Plus-Size-Karte */
.choice-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.choice-card-secondary {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  text-align: center;
  line-height: 1.5;
}
.choice-card-secondary a {
  color: var(--gold);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(112, 87, 66, 0.35);
  text-underline-offset: 3px;
  transition: color .25s ease, text-decoration-color .25s ease;
}
.choice-card-secondary a:hover {
  color: var(--gold-2);
  text-decoration-color: var(--gold);
}

/* Anfrage-Form-Hint bei Plus-Size-Pill-Auswahl (animiert ein/aus) */
.opt-hint {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  background: var(--cream-2);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  transition: max-height .35s ease, opacity .3s ease, padding .3s ease, margin .3s ease;
}
.opt-hint.is-visible {
  max-height: 200px;
  opacity: 1;
  padding: 12px 14px;
  margin: 8px 0 4px;
}
.opt-hint strong { color: var(--text); font-weight: 600; }
.opt-hint a {
  color: var(--gold);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Sticky-Picker Plus-Panel — Cross-Hint zwischen Liste und Termin-CTA */
.picker-cross-hint {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  background: var(--cream-2);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 12px 14px;
  margin: 14px 0 18px;
}
.picker-cross-hint a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Site-Search — Cross-Hint bei Auswahl der Pills ab50/52/54 */
.search-cross-hint {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  padding: 0;
  transition: max-height .35s ease, opacity .3s ease, padding .3s ease, margin .3s ease;
  font-size: 14px;
  color: var(--muted);
  background: var(--cream-2);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
}
.search-cross-hint.is-visible {
  max-height: 180px;
  opacity: 1;
  padding: 12px 14px;
  margin: 8px 0 4px;
}
.search-cross-hint p { margin: 0; line-height: 1.55; }
.search-cross-hint strong { color: var(--text); font-weight: 600; }
.search-cross-hint a {
  color: var(--gold);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
