/* ============================================================
 * Brautkleid XXL · brautkleidxxl.de — Non-Critical-CSS
 * ============================================================
 * Wird async via <link rel="preload" onload> nachgeladen.
 * Above-the-fold-Critical-CSS (Header + Hero) ist inline in index.html.
 *
 * Enthält: Sektionen-Styles (Kollektion, Über, Curve-Expertise,
 * Leistungen, Expertise, Lookbook, Testimonials, FAQ, Kontakt),
 * Footer, Cookie-Banner + Modal, Mobile-Menu, Scroll-Top,
 * Animationen, Reduced-Motion-Override.
 * ============================================================ */

/* === Section-Basics === */
.section {
  padding: clamp(64px, 9vw, 112px) 0;
  position: relative;
}
.section-cream-soft { background: var(--cream-2); }
.section-cream { background: var(--cream); }
.container-narrow { max-width: 880px; }

.section-head { margin-bottom: clamp(40px, 6vw, 72px); }
.section-head-centered { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-head h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 20px;
}
.section-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.divider-gold {
  width: 80px; height: 3px; background: var(--gold);
  margin: 20px auto 24px;
  border-radius: 2px;
}

/* === Mobile-Menu (Burger) === */
.mobile-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--cream); border-top: 1px solid var(--gold-line);
  padding: 32px clamp(20px, 5vw, 48px);
  box-shadow: 0 16px 40px rgba(28, 28, 25, 0.10);
  display: none;
  flex-direction: column; gap: 20px;
}
.mobile-menu[aria-hidden="false"] { display: flex; }
.mobile-menu a {
  font-family: 'Noto Serif', Georgia, serif;
  font-style: italic; font-size: 1.6rem; color: var(--text);
  font-weight: 300;
  padding: 8px 0;
  min-height: 44px;
  display: flex; align-items: center;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-cta {
  background: var(--gold); color: #fff !important;
  font-family: 'Work Sans', system-ui, sans-serif !important;
  font-style: normal !important; font-size: 1rem !important; font-weight: 600 !important;
  padding: 16px 24px; border-radius: 16px; text-align: center;
  box-shadow: 0 12px 24px rgba(182, 145, 105, 0.25);
  margin-top: 8px;
}
@media (min-width: 768px) { .mobile-menu { display: none !important; } }

/* === Allegra-Strip (Marquee direkt nach Hero) === */
.allegra-section {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--text);
  color: #fff;
  overflow: hidden;
}
.allegra-section::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(182,145,105,0.18) 0%, transparent 60%),
    radial-gradient(700px 400px at 90% 100%, rgba(182,145,105,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.allegra-header {
  position: relative; z-index: 2;
  text-align: center; max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  padding: 0 clamp(20px, 5vw, 48px);
}
.allegra-eyebrow {
  display: inline-block;
  padding: 8px 18px; border-radius: var(--radius-pill);
  background: rgba(182, 145, 105, 0.18);
  color: var(--gold-light);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 18px;
}
.allegra-title {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300; line-height: 1.1; color: #fcf9f4;
  margin: 0;
}
/* Shimmer-Akzent für Brand-Headlines: Gold-Gradient-Animation auf <em>-Tags.
   Bewusst sparsam: Allegra-Strip (Premium-Sektion-Title), Hero-H1 (Brand-Versprechen),
   About-H2 (emotionaler Anker). Andere Gold-Italic-Headlines bleiben statisch
   für klare Hierarchie. */
.allegra-title em,
.hero-title em,
.shimmer {
  font-style: italic;
  background: linear-gradient(90deg, var(--gold) 0%, #f0d5a8 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: -200% center; }
}
@media (prefers-reduced-motion: reduce) {
  .allegra-title em,
  .hero-title em,
  .shimmer { animation: none; }
}
.allegra-sub {
  font-size: 1rem; color: rgba(255,255,255,0.6);
  margin-top: 14px; line-height: 1.6;
}
.allegra-strip-wrap {
  position: relative; z-index: 2;
  overflow: hidden;
}
.allegra-strip {
  display: flex; flex-wrap: nowrap;
  gap: 20px; padding: 0 20px;
  animation: allegra-scroll 32s linear infinite;
  width: max-content;
  align-items: flex-start;
}
.allegra-strip-wrap:hover .allegra-strip,
.allegra-strip:hover,
.allegra-strip-wrap.is-paused .allegra-strip {
  animation-play-state: paused;
}
@keyframes allegra-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.allegra-img {
  position: relative;
  flex-shrink: 0;
  width: clamp(220px, 22vw, 320px);
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
}
.allegra-img img {
  width: 100%; height: 100%;
  aspect-ratio: 3 / 4;  /* CLS-Fix: Browser reserviert Höhe vor Bild-Load */
  object-fit: cover; object-position: top;
  display: block;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1), filter 0.4s;
  filter: brightness(0.86) saturate(0.9);
}
.allegra-img:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.08);
}
@media (prefers-reduced-motion: reduce) {
  .allegra-strip { animation: none; flex-wrap: wrap; justify-content: center; }
  .allegra-title em { animation: none; }
}

/* === Kollektion — 3D-Flipcards === */
.collection-grid {
  display: grid; gap: clamp(24px, 3.5vw, 40px);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .collection-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .collection-grid { grid-template-columns: repeat(3, 1fr); } }
.dress-card {
  perspective: 1200px;
  cursor: pointer;
  height: clamp(440px, 62vh, 540px);
  position: relative;
}
@media (min-width: 768px) {
  .dress-card { height: 540px; }
}
.dress-card-inner {
  position: relative; width: 100%; height: 100%;
  transition: transform 0.7s cubic-bezier(.4,0,.2,1);
  transform-style: preserve-3d;
}
.dress-card.flipped .dress-card-inner {
  transform: rotateY(180deg);
}
/* Hover-Flip NUR auf Devices mit echtem Hover (Desktop mit Maus).
   Touch-Devices haben „sticky hover" — der Hover-State bleibt nach dem
   Tap aktiv und blockiert das Zurück-Flippen via .flipped-Class. */
@media (hover: hover) {
  .dress-card:hover .dress-card-inner { transform: rotateY(180deg); }
}
.dress-card-front,
.dress-card-back {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gold-line);
  box-shadow: 0 4px 22px rgba(28, 28, 25, 0.06);
  display: flex; flex-direction: column;
}
.dress-card-back {
  transform: rotateY(180deg);
  box-shadow: var(--shadow-lg);
}
.dress-front-image {
  flex: 1; min-height: 0;
  overflow: hidden;
}
.dress-front-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
}
.dress-front-body {
  padding: 18px 22px;
  background: #fff;
}
.dress-front-body h3 {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 1.35rem; font-weight: 400;
  letter-spacing: 0.03em;
  margin: 0 0 4px;
}
.dress-front-style {
  font-size: 0.82rem; color: var(--muted);
  margin: 0; line-height: 1.5;
}
.dress-back-image {
  height: 250px;
  overflow: hidden;
  flex-shrink: 0;
}
.dress-back-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
}
.dress-back-body {
  padding: 22px 24px;
  display: flex; flex-direction: column;
  gap: 10px;
  flex: 1;
}
.dress-back-body h3 {
  font-family: 'Noto Serif', Georgia, serif;
  font-style: italic; color: var(--gold);
  font-size: 1.2rem; font-weight: 400;
  margin: 0;
}
.dress-back-body p {
  font-size: 0.85rem; color: var(--text);
  line-height: 1.5; margin: 0;
}
.dress-back-meta {
  font-size: 0.75rem; color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: auto;
}
.dress-back-meta strong { color: var(--text); font-weight: 600; }
.dress-back-cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  background: var(--gold); color: #fff;
  padding: 10px 18px; border-radius: var(--radius-pill);
  font-size: 0.82rem; font-weight: 500;
  text-decoration: none;
  margin-top: 8px;
  transition: background-color .2s ease;
}
.dress-back-cta:hover { background: var(--gold-light); }
.dress-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--text); color: var(--gold-light);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-pill);
}
.flip-hint {
  position: absolute; bottom: 12px; right: 12px; z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 0; border-radius: var(--radius-pill);
  padding: 5px 12px;
  font: inherit; font-size: 11px; color: var(--gold);
  font-weight: 600;
  cursor: pointer;
  opacity: 0; transition: opacity .3s ease;
}
.flip-hint:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.dress-card:focus-within .flip-hint,
.dress-card.flipped .flip-hint { opacity: 1; }
@media (hover: hover) {
  .dress-card:hover .flip-hint { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .dress-card-inner { transition: none; }
}

/* === Atelier-Spread (Annett mit ihren Bräuten, full-width) === */
.atelier-spread {
  padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 48px);
  background: var(--cream);
}
.atelier-spread-frame {
  max-width: 1400px;
  margin: 0 auto;
  border-radius: clamp(20px, 3vw, 40px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.atelier-spread-frame img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.atelier-spread-caption {
  max-width: 1400px;
  margin: 24px auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 clamp(20px, 5vw, 48px);
}
.atelier-spread-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.atelier-spread-title {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.01em;
}
.atelier-spread-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

/* === Process-Steps („Dein Weg zum Traumkleid") === */
.process-section { padding-bottom: clamp(72px, 9vw, 112px); }
.process-grid {
  position: relative;
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
  margin-top: clamp(40px, 5vw, 56px);
}
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .process-grid::before {
    content: '';
    position: absolute; top: 26px;
    left: 12%; right: 12%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 0;
  }
}
.process-step { text-align: center; padding: 0 6px; position: relative; z-index: 1; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: #fff;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 1.3rem; font-weight: 400;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 8px 20px rgba(182, 145, 105, 0.30);
  border: 4px solid var(--cream);
}
.process-step h3 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
  color: var(--text);
}
.process-step p {
  font-size: 0.92rem; color: var(--muted);
  line-height: 1.6; margin: 0;
}

/* === Größentabelle + Maßanleitung === */
.size-grid {
  display: grid; gap: clamp(32px, 5vw, 56px);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 980px) {
  .size-grid { grid-template-columns: 1.3fr 1fr; }
}
.size-chart-wrap {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid var(--gold-line);
  box-shadow: 0 4px 18px rgba(28, 28, 25, 0.04);
  overflow: hidden;
}
.size-chart-toggle-row {
  display: flex; flex-direction: column; gap: 12px;
  padding: 18px 22px;
  background: var(--cream-2);
  border-bottom: 1px solid var(--gold-line);
}
@media (min-width: 640px) {
  .size-chart-toggle-row { flex-direction: row; align-items: center; justify-content: space-between; gap: 18px; }
}
.size-chart-hint {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}
.size-chart-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  min-height: 44px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--gold-line);
  font-size: 0.9rem; font-weight: 500;
  color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color .2s ease, border-color .2s ease;
}
.size-chart-toggle:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
}
.size-chart-toggle-icon {
  width: 14px; height: 14px;
  transition: transform .25s ease;
}
.size-chart-wrap[data-show-small="true"] .size-chart-toggle-icon {
  transform: rotate(180deg);
}
.size-chart-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
/* Kleine Größen sind default ausgeblendet — Plus-Size-Fokus */
.size-chart .size-small { display: none; }
.size-chart-wrap[data-show-small="true"] .size-chart .size-small { display: table-row; }
.size-chart {
  width: 100%; min-width: 720px;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.size-chart thead th {
  background: var(--cream-2);
  font-family: 'Work Sans', sans-serif;
  font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold);
  padding: 14px 12px;
  text-align: center;
  border-bottom: 2px solid var(--gold-line);
}
.size-chart thead th:first-child {
  text-align: left; padding-left: 22px;
  /* Sticky-Header-Cell oben-links: bleibt beim horizontalen Scroll sichtbar */
  position: sticky; left: 0; z-index: 3;
  box-shadow: 4px 0 6px -4px rgba(28, 28, 25, 0.08);
}
.size-chart tbody td {
  padding: 12px 12px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.size-chart tbody td:first-child {
  text-align: left; padding-left: 22px;
  font-weight: 600;
  background: var(--cream);
  color: var(--gold);
  /* Sticky-Größe-Spalte: bleibt beim horizontalen Scroll sichtbar */
  position: sticky; left: 0; z-index: 2;
  box-shadow: 4px 0 6px -4px rgba(28, 28, 25, 0.08);
}
.size-chart tbody tr:last-child td { border-bottom: 0; }
.size-chart tbody tr:hover td { background: var(--cream-2); }
.size-chart tbody tr:hover td:first-child { background: var(--cream-3); }
.size-chart-foot {
  padding: 14px 22px;
  background: var(--cream-2);
  font-size: 0.78rem; color: var(--muted);
  border-top: 1px solid var(--line);
}
.size-chart-foot a { color: var(--gold); font-weight: 500; }
.size-chart-foot a:hover { text-decoration: underline; }

.size-guide {
  display: flex; flex-direction: column; gap: 24px;
}
.size-guide-img {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid var(--gold-line);
  padding: clamp(16px, 2.5vw, 24px);
  box-shadow: 0 4px 18px rgba(28, 28, 25, 0.04);
}
.size-guide-img img {
  width: 100%; height: auto;
  display: block;
}
.size-guide-note {
  background: var(--gold-soft);
  border-radius: 16px;
  padding: 18px 22px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
}
.size-guide-note strong { color: var(--gold); }

/* Cross-Promotion-Box zur Hauptsite (Standard-Größen) */
.size-crossref {
  background: #fff;
  border: 1px solid var(--gold-line);
  border-left: 3px solid var(--gold);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 4px 14px rgba(28, 28, 25, 0.04);
}
.size-crossref-head {
  font-family: 'Noto Serif', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  margin: 0;
}
.size-crossref-body {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.size-crossref-link {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  font-size: 0.9rem; font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  margin-top: 4px;
  transition: gap .2s ease, color .2s ease;
}
.size-crossref-link:hover {
  color: var(--gold-light);
  gap: 12px;
}
.size-crossref-link svg {
  width: 16px; height: 16px;
  transition: transform .2s ease;
}
.size-crossref-link:hover svg { transform: translateX(2px); }

.size-promises {
  margin-top: clamp(40px, 5vw, 56px);
  background: var(--cream-2);
  border-radius: var(--radius-card);
  border: 1px solid var(--gold-line);
  padding: clamp(28px, 4vw, 40px);
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .size-promises { grid-template-columns: repeat(3, 1fr); } }
.size-promise {
  display: flex; gap: 16px;
  align-items: flex-start;
}
.size-promise-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif', Georgia, serif;
  font-style: italic; font-size: 1.1rem;
}
.size-promise p {
  margin: 0; color: var(--text);
  font-size: 0.95rem; line-height: 1.55;
}
.size-promise strong { color: var(--gold); }
.size-cta-row {
  margin-top: clamp(36px, 5vw, 48px);
  text-align: center;
}

/* === About === */
.about-grid {
  display: grid; gap: clamp(40px, 6vw, 72px); align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1.05fr; } }
.about-frame {
  aspect-ratio: 1 / 1; border-radius: 48px;
  overflow: hidden; box-shadow: var(--shadow);
  position: relative;
}
.about-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 28px;
}
.about-text p {
  font-size: 1.1rem; color: var(--muted);
  line-height: 1.75; margin: 0 0 18px;
}
.about-text .about-emphasis { color: var(--text); font-weight: 500; }
.signature {
  margin-top: 36px; display: flex; align-items: center; gap: 20px;
}
.signature-logo {
  width: 56px; height: 56px; opacity: 0.85;
  object-fit: contain;
}
.signature-line {
  width: 48px; height: 1px; background: var(--gold);
  margin-bottom: 6px;
}
.signature-name {
  font-family: 'Noto Serif', Georgia, serif;
  font-style: italic; font-size: 1.2rem; color: var(--gold);
}

/* === Features (Curve Expertise) === */
.features-grid {
  display: grid; gap: clamp(24px, 3vw, 40px);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card {
  background: #fff; padding: 36px 32px;
  border-radius: 28px; border: 1px solid var(--gold-line);
  box-shadow: 0 4px 16px rgba(28, 28, 25, 0.03);
  transition: box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.feature-card:hover { box-shadow: var(--shadow); }
.feature-icon {
  width: 64px; height: 64px;
  background: var(--gold-soft); color: var(--gold);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.feature-icon svg { width: 32px; height: 32px; }
.feature-card h3 {
  font-style: italic; font-size: 1.45rem;
  color: var(--gold); margin-bottom: 14px;
}
.feature-card p { color: var(--muted); margin: 0; line-height: 1.65; }

/* === Services === */
.services-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
  margin-bottom: 56px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card {
  background: #fff; padding: 32px;
  border-radius: 28px;
  border: 1px solid var(--gold-soft);
  box-shadow: 0 4px 16px rgba(28, 28, 25, 0.03);
  transition: box-shadow .3s ease;
}
.service-card:hover { box-shadow: var(--shadow); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--gold-soft); color: var(--gold);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700; font-size: 1.2rem;
  letter-spacing: 0; line-height: 1.3;
  margin-bottom: 14px;
}
.service-card p { color: var(--muted); margin: 0; line-height: 1.6; }

.highlight-box {
  background: #fff; padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-card);
  border: 2px solid var(--gold-line);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 24px;
  align-items: center;
}
@media (min-width: 768px) {
  .highlight-box { flex-direction: row; align-items: flex-start; gap: 32px; }
}
.highlight-icon {
  width: 80px; height: 80px;
  background: var(--gold-soft); color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.highlight-icon svg { width: 40px; height: 40px; }
.highlight-box h3 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700; font-size: 1.4rem; line-height: 1.3;
  margin-bottom: 12px;
}
.highlight-box p { color: var(--muted); margin: 0; font-size: 1.05rem; line-height: 1.65; }
.highlight-box strong { color: var(--text); font-weight: 600; }

/* === Expertise === */
.expertise-card {
  background: var(--gold-soft);
  border-radius: 48px;
  padding: clamp(28px, 5vw, 64px);
  position: relative; overflow: hidden;
}
.expertise-card::before {
  content: ""; position: absolute; top: -120px; right: -120px;
  width: 280px; height: 280px;
  background: var(--gold-soft); border-radius: 50%;
}
.expertise-grid {
  display: grid; gap: clamp(32px, 5vw, 56px);
  align-items: center; position: relative; z-index: 1;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .expertise-grid { grid-template-columns: 1fr 1fr; } }
.expertise-text h2 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin-bottom: 22px;
}
.expertise-text .section-lead { margin-bottom: 32px; }
.expertise-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 18px;
}
.expertise-list li {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--gold-line);
  border-radius: 18px;
  padding: 18px 22px;
  display: flex; gap: 18px; align-items: flex-start;
}
.expertise-list li svg {
  width: 26px; height: 26px;
  color: var(--gold); flex-shrink: 0; margin-top: 4px;
}
.expertise-list h4 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  margin: 0 0 6px;
}
.expertise-list p { color: var(--muted); margin: 0; line-height: 1.55; }

.expertise-media { position: relative; }
.expertise-image-frame {
  aspect-ratio: 4 / 3;
  border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold-line);
}
.expertise-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.expertise-badge {
  position: absolute; bottom: -24px; right: -16px;
  background: var(--gold); color: #fff;
  padding: 24px 28px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: none;
}
@media (min-width: 640px) { .expertise-badge { display: block; } }
.expertise-badge p {
  font-family: 'Noto Serif', Georgia, serif;
  font-style: italic; font-size: 2.3rem;
  margin: 0 0 4px; line-height: 1;
}
.expertise-badge span {
  font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 700;
}

/* === Lookbook — 4-Video-Grid === */
.lookbook-grid {
  display: grid; gap: clamp(20px, 3vw, 32px);
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .lookbook-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .lookbook-grid { grid-template-columns: repeat(4, 1fr); }
}
.lookbook-frame {
  aspect-ratio: 9 / 16;
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.lookbook-frame:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.lookbook-frame video {
  width: 100%; height: 100%; object-fit: cover;
}
.lookbook-label {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--gold);
  font-family: 'Noto Serif', Georgia, serif;
  font-style: italic; font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  pointer-events: none;
}

/* === Testimonials === */
.stars-row {
  display: inline-flex; gap: 4px;
  color: var(--gold);
  margin-bottom: 16px;
}
.stars-row svg { width: 22px; height: 22px; }
.section-head-centered .stars-row { justify-content: center; margin-top: 8px; }
.stars-small svg { width: 16px; height: 16px; }

.testimonials-grid {
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: #fff; padding: 32px;
  border-radius: var(--radius-card);
  box-shadow: 0 4px 18px rgba(28, 28, 25, 0.04);
  margin: 0; position: relative;
}
.testimonial-card p {
  font-style: italic; color: var(--text);
  margin: 0 0 20px; line-height: 1.65;
}
.testimonial-card cite {
  font-style: normal; font-weight: 700;
  color: var(--gold);
}

/* === FAQ === */
.faq-list {
  display: flex; flex-direction: column; gap: 14px;
}
.faq-item {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--gold-line);
  box-shadow: 0 2px 12px rgba(28, 28, 25, 0.03);
  overflow: hidden;
  transition: box-shadow .3s ease;
}
.faq-item[open] { box-shadow: var(--shadow); }
.faq-item summary {
  list-style: none;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 700; font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex-shrink: 0;
  width: 24px; height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b69169' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  transition: transform .3s ease;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-body {
  padding: 0 26px 26px;
  color: var(--muted); line-height: 1.7;
}

.faq-cta {
  text-align: center;
  margin-top: clamp(48px, 7vw, 72px);
}
.faq-cta p { color: var(--muted); margin: 0 0 24px; }
.faq-cta .small {
  font-size: 0.88rem; color: var(--muted);
  margin-top: 24px; max-width: 460px;
  margin-left: auto; margin-right: auto;
}

/* === Kontakt === */
.contact-grid {
  display: grid; gap: clamp(40px, 6vw, 64px);
  align-items: start;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-text { display: flex; flex-direction: column; gap: clamp(28px, 4vw, 48px); }
.contact-text h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 22px;
}
.contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 28px; }
.contact-list li { display: flex; gap: 22px; align-items: flex-start; }
.contact-icon {
  width: 52px; height: 52px;
  background: var(--gold-soft); color: var(--gold);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 24px; height: 24px; }
.contact-list h4 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700; font-size: 1.05rem;
  margin: 0 0 4px;
}
.contact-list p { color: var(--muted); margin: 0 0 6px; }
.contact-link {
  color: var(--gold); font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
}
.contact-link:hover { text-decoration: underline; }
a.contact-link { color: var(--gold); }
a.contact-link:hover { text-decoration: underline; }

.booking-box {
  background: var(--cream-2);
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-card);
  border: 1px solid var(--gold-line);
  position: relative; overflow: hidden;
}
.booking-box::before {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: var(--gold-soft); border-radius: 50%;
}
.booking-head {
  display: flex; gap: 22px; align-items: flex-start;
  margin-bottom: 28px; position: relative;
}
.booking-icon {
  width: 56px; height: 56px;
  background: var(--gold); color: #fff;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(182, 145, 105, 0.30);
}
.booking-icon svg { width: 28px; height: 28px; }
.booking-head h3 {
  font-family: 'Noto Serif', Georgia, serif;
  font-style: italic; font-size: 1.5rem;
  color: var(--gold); margin: 0 0 10px;
}
.booking-head p { color: var(--muted); margin: 0; line-height: 1.6; }
.btn-block { width: 100%; justify-content: center; }
.center { text-align: center; }
.small { font-size: 0.85rem; color: var(--muted); }

.contact-map {
  height: 100%; min-height: 400px;
  border-radius: 36px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold-line);
  position: relative;
}
@media (min-width: 1024px) { .contact-map { min-height: 600px; } }
.contact-map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}
/* Click-to-Load Map-Placeholder (DSGVO) */
.map-placeholder {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background: var(--cream-2);
  border: 0; padding: 24px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; text-align: center;
  transition: background-color .2s ease;
}
.map-placeholder:hover, .map-placeholder:focus-visible {
  background: var(--cream-3);
  outline: none;
}
.map-placeholder-inner { max-width: 360px; }
.map-placeholder .map-pin { display: inline-flex; color: var(--gold); margin-bottom: 12px; }
.map-placeholder .map-pin svg { width: 40px; height: 40px; }
.map-placeholder strong { display: block; font-family: 'Noto Serif', Georgia, serif; font-weight: 400; font-size: 20px; color: var(--text); margin-bottom: 6px; }
.map-placeholder p { font-size: 14px; color: var(--muted); margin: 0 0 14px; }
.map-placeholder small { font-size: 11.5px; color: var(--muted); line-height: 1.5; display: block; }
.map-placeholder small a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

/* === Footer === */
.site-footer {
  background: var(--text); color: #fff;
  padding: clamp(48px, 7vw, 72px) 0 32px;
}
.footer-grid {
  display: grid; gap: clamp(32px, 5vw, 56px);
  grid-template-columns: 1fr;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-logo { width: 200px; height: auto; opacity: 0.95; margin-bottom: 20px; }
.footer-brand p { color: rgba(255, 255, 255, 0.6); margin: 0 0 14px; line-height: 1.6; max-width: 320px; }
.footer-sub { font-size: 0.85rem; color: rgba(255, 255, 255, 0.4) !important; }
.footer-sub a { color: rgba(255, 255, 255, 0.6); text-decoration: underline; }
.footer-sub a:hover { color: #fff; }
.footer-col h4 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.16em;
  margin: 0 0 22px; color: #fff;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-col a, .footer-link-btn {
  color: rgba(255, 255, 255, 0.6);
  font: inherit;
  background: none; border: 0; padding: 0; cursor: pointer;
  text-align: left;
  transition: color .2s ease;
}
.footer-col a:hover, .footer-link-btn:hover { color: #fff; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between;
  font-size: 0.85rem; color: rgba(255, 255, 255, 0.40);
}

/* === Cookie-Banner (analog Hauptsite) === */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
  padding: 22px clamp(20px, 5vw, 48px);
  display: flex; flex-direction: column; gap: 20px;
}
@media (min-width: 980px) { .cookie-banner { flex-direction: row; align-items: center; justify-content: space-between; gap: 32px; } }
.cookie-banner[hidden] { display: none; }
.cookie-banner h3 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  margin: 0 0 8px;
}
.cookie-banner p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.55; max-width: 720px; }
.cookie-banner > div { flex: 1; min-width: 0; }
.cookie-actions {
  display: flex; flex-wrap: wrap; gap: 10px;
  flex-shrink: 0;
  width: 100%;
}
@media (min-width: 640px) {
  .cookie-actions { width: auto; }
}
.cookie-actions button {
  padding: 12px 22px; border-radius: 14px;
  min-height: 44px;
  font-size: 0.92rem; font-weight: 500;
  flex: 1 1 auto;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
@media (min-width: 640px) {
  .cookie-actions button { flex: 0 0 auto; }
}
.text-btn { background: transparent; color: var(--text); border: 1px solid transparent; }
.text-btn:hover { color: var(--gold); }
.ghost-btn { background: var(--cream-2); color: var(--text); border: 1px solid var(--gold-line); }
.ghost-btn:hover { background: var(--cream-3); }
.primary-btn { background: var(--gold); color: #fff; border: 1px solid var(--gold); box-shadow: 0 6px 18px rgba(182, 145, 105, 0.25); }
.primary-btn:hover { background: var(--gold-light); border-color: var(--gold-light); }

.cookie-modal {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(0, 0, 0, 0.5);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.cookie-modal[hidden] { display: none; }
.cookie-modal-card {
  background: #fff;
  border-radius: 24px;
  width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.cookie-modal-head {
  position: sticky; top: 0;
  background: #fff;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  border-radius: 24px 24px 0 0;
  z-index: 1;
}
.cookie-modal-head h3 {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 1.4rem; margin: 0;
}
.cookie-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream-2);
  font-size: 1.4rem;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: background-color .2s ease, color .2s ease;
}
.cookie-close:hover { background: var(--cream-3); color: var(--text); }
.cookie-modal-intro {
  padding: 22px 28px 0;
  color: var(--muted); margin: 0;
  font-size: 0.95rem; line-height: 1.6;
}
.cookie-cat {
  margin: 18px 28px 0;
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: flex; align-items: flex-start; gap: 18px;
}
.cookie-cat.is-essential { background: var(--cream-2); border-color: var(--gold-line); }
.cookie-cat > div { flex: 1; }
.cookie-cat-label { font-weight: 700; margin: 0 0 6px; font-size: 0.95rem; }
.cookie-cat-sub { font-weight: 400; color: var(--muted); font-size: 0.78rem; margin-left: 6px; }
.cookie-cat-desc { font-size: 0.85rem; color: var(--muted); margin: 0; line-height: 1.5; }

.toggle {
  position: relative;
  width: 44px; height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
.toggle input {
  position: absolute; opacity: 0;
  width: 100%; height: 100%;
  cursor: pointer; z-index: 1;
}
.toggle input:disabled { cursor: not-allowed; }
.toggle .slider {
  position: absolute; inset: 0;
  background: #d0d0cc;
  border-radius: 999px;
  transition: background-color .25s ease;
}
.toggle .slider::before {
  content: ""; position: absolute;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: transform .25s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.toggle input:checked + .slider { background: var(--gold); }
.toggle input:checked + .slider::before { transform: translateX(20px); }
.toggle input:disabled + .slider { opacity: 0.7; }

.cookie-modal-actions {
  padding: 24px 28px 28px;
  display: flex; flex-direction: column; gap: 12px;
  border-top: 1px solid var(--line);
  margin-top: 24px;
  background: var(--cream-2);
  border-radius: 0 0 24px 24px;
}
@media (min-width: 640px) {
  .cookie-modal-actions { flex-direction: row; justify-content: flex-end; }
}

/* === Scroll-to-Top === */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px;
  z-index: 90;
  width: 48px; height: 48px;
  background: var(--gold); color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(182, 145, 105, 0.40);
  transition: opacity .3s ease, transform .3s ease, background-color .2s ease;
}
.scroll-top[hidden] { display: none; }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-2px); }
.scroll-top svg { width: 22px; height: 22px; }
@media (max-width: 640px) { .scroll-top { bottom: 20px; right: 20px; width: 44px; height: 44px; } }

/* === Lightbox-Galerie (alle 4 Ansichten pro Modell) === */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(15, 15, 13, 0.94);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  animation: lightbox-fade-in 0.25s ease;
}
.lightbox[hidden] { display: none; }
@keyframes lightbox-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lightbox-stage {
  position: relative;
  flex: 1;
  width: 100%;
  max-width: 1000px;
  display: flex; align-items: center; justify-content: center;
  min-height: 0;
}
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  transition: opacity 0.3s ease;
}
.lightbox.is-loading .lightbox-img { opacity: 0.4; }

.lightbox-close {
  position: absolute;
  top: clamp(12px, 2.5vw, 24px);
  right: clamp(12px, 2.5vw, 24px);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  z-index: 2;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox-close svg { width: 22px; height: 22px; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.lightbox-prev { left: clamp(12px, 2.5vw, 28px); }
.lightbox-next { right: clamp(12px, 2.5vw, 28px); }
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox-prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(2px); }
.lightbox-nav svg { width: 24px; height: 24px; }
@media (max-width: 640px) {
  .lightbox-nav { width: 44px; height: 44px; }
  .lightbox-nav svg { width: 20px; height: 20px; }
}

.lightbox-footer {
  width: 100%;
  max-width: 1000px;
  padding-top: 20px;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
}
.lightbox-caption {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-style: italic;
  text-align: center;
  line-height: 1.4;
}
.lightbox-caption strong {
  font-style: normal;
  font-weight: 400;
  color: var(--gold-light);
  margin-right: 6px;
}
.lightbox-dots {
  display: inline-flex; gap: 6px;
}
.lightbox-dot {
  /* Visuell 12px Punkt, aber Touch-Target via padding 44×44 */
  width: 44px; height: 44px;
  padding: 16px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.lightbox-dot::before {
  content: ""; display: block;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.lightbox-dot:hover::before { background: rgba(255, 255, 255, 0.55); transform: scale(1.2); }
.lightbox-dot.is-active::before {
  background: var(--gold);
  transform: scale(1.3);
}

/* === Flipcard-Galerie-Trigger („Alle 4 Ansichten ansehen") === */
.dress-back-gallery {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  margin-top: 4px;
  padding: 10px 14px;
  min-height: 44px;
  font-size: 0.88rem; font-weight: 500;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.dress-back-gallery:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.dress-back-gallery svg { width: 16px; height: 16px; }

/* === Reduced-Motion === */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}
