/* ============================================================
   VOURÉME BRIDAL CONCIERGE — Eigenständiges Stylesheet
   Gekapselte Design-Tokens, beeinflusst styles.css nicht.
   Schrift-Familien werden von styles.css übernommen (--font-heading / --font-body).
   Mobile-first, Breakpoints bei 600 / 768 / 1024px passend zum Rest des Projekts.
   ============================================================ */

.bc-page {
  --bc-ivory:        #FAF6EF;
  --bc-warm-white:   #FFFDF9;
  --bc-espresso:     #241C16;
  --bc-espresso-70:  rgba(36, 28, 22, 0.7);
  --bc-espresso-45:  rgba(36, 28, 22, 0.45);
  --bc-gold:         #AD8A55;
  --bc-gold-deep:    #8C6E3F;
  --bc-gold-light:   #E7D3AC;
  --bc-taupe:        #C7B9A9;
  --bc-taupe-line:   rgba(173, 138, 85, 0.28);
  --bc-shadow:       0 18px 50px rgba(76, 58, 33, 0.10);
  --bc-shadow-soft:  0 6px 20px rgba(76, 58, 33, 0.07);
  --bc-radius:       20px;
  --bc-radius-sm:    12px;
  --bc-ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);

  background: var(--bc-ivory);
  min-height: 100vh;
  padding: 132px 0 80px;
  color: var(--bc-espresso);
  font-family: var(--font-body, 'Manrope', sans-serif);
  overflow-x: hidden;
}

.bc-page * { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

.bc-shell {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   TYPOGRAFIE-GRUNDLAGEN
   ============================================================ */
.bc-eyebrow,
.bc-step-eyebrow {
  display: inline-block;
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bc-gold-deep);
  margin-bottom: 14px;
}

.bc-intro-title,
.bc-step-title {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-weight: 400;
  color: var(--bc-espresso);
  line-height: 1.15;
}

.bc-intro-title { font-size: clamp(2.1rem, 6vw, 3.1rem); margin: 0 0 18px; }
.bc-step-title { font-size: clamp(1.5rem, 4.4vw, 2.1rem); margin: 0 0 10px; }

.bc-intro-sub,
.bc-step-sub {
  font-size: 1rem;
  color: var(--bc-espresso-70);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   INTRO-SCREEN — Video-Hero (cinematisch, nur dieser Screen)
   ============================================================ */
.bc-intro[hidden] {
  display: none;
}

.bc-intro {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: -132px;
  margin-bottom: -80px;
  height: 100vh;
  height: 100dvh;
  display: flex;
  overflow: hidden;
  text-align: center;
}

.bc-intro-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bc-espresso);
}
.bc-intro-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-intro-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 70% at 50% 30%, transparent 25%, rgba(18, 12, 8, 0.5) 100%),
    linear-gradient(to bottom, rgba(18, 12, 8, 0.35) 0%, rgba(18, 12, 8, 0.15) 26%, rgba(18, 12, 8, 0.4) 62%, rgba(18, 12, 8, 0.88) 100%);
}

.bc-intro-content {
  position: relative;
  z-index: 2;
  flex: 1;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding: 84px 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  animation: bcFadeUp 0.9s var(--bc-ease) both;
}

.bc-intro .bc-eyebrow { color: var(--bc-gold-light); }
.bc-intro .bc-intro-title { color: var(--bc-warm-white); margin: 0 0 12px; }
.bc-intro .bc-intro-sub { color: rgba(255, 253, 249, 0.82); }
.bc-intro-sub { max-width: 420px; margin: 0 auto; }
.bc-intro-cta { flex: none; }

.bc-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
  text-align: center;
}

.bc-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 6px;
  background: rgba(255, 253, 249, 0.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 253, 249, 0.18);
  border-radius: var(--bc-radius-sm);
}

.bc-benefit-icon {
  flex: none;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.14);
  color: var(--bc-gold-light);
}
.bc-benefit-icon svg { width: 18px; height: 18px; }

.bc-benefit h3 {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-weight: 500;
  font-size: 0.86rem;
  line-height: 1.25;
  margin: 0;
  color: var(--bc-warm-white);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.bc-cta-primary,
.bc-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 18px 28px;
  min-height: 56px;
  background: var(--bc-espresso);
  color: var(--bc-warm-white);
  border: none;
  border-radius: 999px;
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.3s var(--bc-ease), box-shadow 0.3s var(--bc-ease), background 0.3s var(--bc-ease);
  box-shadow: 0 10px 30px rgba(36, 28, 22, 0.18);
}
.bc-cta-primary:hover,
.bc-btn-primary:hover {
  background: #38291d;
  box-shadow: 0 14px 36px rgba(36, 28, 22, 0.24);
}
@media (hover: hover) {
  .bc-cta-primary:hover, .bc-btn-primary:hover { transform: translateY(-2px); }
}
.bc-cta-primary:active,
.bc-btn-primary:active { transform: translateY(0); }
.bc-cta-primary:focus-visible,
.bc-btn-primary:focus-visible { outline: 2px solid var(--bc-gold); outline-offset: 3px; }

.bc-link-btn {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 18px;
  background: none;
  border: none;
  color: var(--bc-espresso-70);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 8px;
}
.bc-link-btn:hover { color: var(--bc-espresso); }

/* ============================================================
   WIZARD-SHELL / PROGRESS
   ============================================================ */
.bc-wizard {
  animation: bcFadeUp 0.6s var(--bc-ease) both;
  /* Sorgt dafür, dass scrollIntoView() die fixierte Nav nicht überdeckt */
  scroll-margin-top: 76px;
}

.bc-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}

.bc-back {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--bc-taupe-line);
  background: var(--bc-warm-white);
  color: var(--bc-espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s var(--bc-ease), border-color 0.25s var(--bc-ease);
}
.bc-back svg { width: 18px; height: 18px; }
.bc-back:hover { background: var(--bc-ivory); border-color: var(--bc-gold); }
.bc-back:focus-visible { outline: 2px solid var(--bc-gold); outline-offset: 2px; }

.bc-progress-track {
  flex: 1;
  height: 3px;
  background: var(--bc-taupe-line);
  border-radius: 999px;
  overflow: hidden;
}
.bc-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--bc-gold-deep), var(--bc-gold));
  border-radius: 999px;
  transition: width 0.5s var(--bc-ease);
}

.bc-progress-label {
  flex: none;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--bc-espresso-45);
  white-space: nowrap;
}

.bc-step-container { min-height: 220px; }

.bc-step-enter { animation: bcStepIn 0.5s var(--bc-ease) both; }
@keyframes bcStepIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bcFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bc-step-head { margin-bottom: 20px; }

.bc-step-note {
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--bc-warm-white);
  border-left: 2px solid var(--bc-gold);
  border-radius: 4px;
  font-size: 0.86rem;
  color: var(--bc-espresso-70);
  line-height: 1.6;
}

.bc-step-error {
  margin-top: 18px;
  padding: 12px 16px;
  background: rgba(180, 70, 50, 0.06);
  border: 1px solid rgba(180, 70, 50, 0.25);
  border-radius: var(--bc-radius-sm);
  color: #8a3f2c;
  font-size: 0.86rem;
}

.bc-nav {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--bc-taupe-line);
}

/* ============================================================
   KARTEN-GRID & KARTE
   ============================================================ */
.bc-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 560px) {
  .bc-cards-grid { grid-template-columns: 1fr 1fr; }
  .bc-cards-grid--experience { grid-template-columns: 1fr; }
  .bc-cards-grid--compact { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .bc-cards-grid--experience { grid-template-columns: repeat(2, 1fr); }
}

/* Anlass-Schritt: 6 Optionen — von Anfang an 2-spaltig, kompakte Karten mit
   Icon neben statt über dem Text, damit möglichst viel ohne Scrollen passt. */
.bc-cards-grid--anlass {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.bc-cards-grid--anlass .bc-card-visual {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  min-height: 0;
  padding: 12px 14px;
}
.bc-cards-grid--anlass .bc-card-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 0;
  flex: none;
}
.bc-cards-grid--anlass .bc-card-icon svg { width: 46%; height: 46%; }
.bc-cards-grid--anlass .bc-card-title {
  font-size: 0.86rem;
  line-height: 1.25;
}
.bc-cards-grid--anlass .bc-card-check {
  top: 8px;
  right: 8px;
  width: 18px;
  height: 18px;
}
.bc-cards-grid--anlass .bc-card-check svg { width: 9px; height: 9px; }

@media (min-width: 560px) {
  .bc-cards-grid--anlass { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

.bc-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.bc-card-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.bc-card-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-height: 44px;
  padding: 20px 20px 22px;
  background: var(--bc-warm-white);
  border: 1px solid var(--bc-taupe-line);
  border-radius: var(--bc-radius-sm);
  transition: border-color 0.25s var(--bc-ease), box-shadow 0.25s var(--bc-ease), transform 0.25s var(--bc-ease);
}

@media (hover: hover) {
  .bc-card:hover .bc-card-visual {
    border-color: var(--bc-gold);
    box-shadow: var(--bc-shadow-soft);
    transform: translateY(-2px);
  }
}

.bc-card:focus-within .bc-card-visual {
  outline: 2px solid var(--bc-gold);
  outline-offset: 2px;
}

.bc-card-input:checked + .bc-card-visual {
  border-color: var(--bc-gold);
  background: linear-gradient(165deg, var(--bc-warm-white), #FBF3E4);
  box-shadow: 0 10px 28px rgba(173, 138, 85, 0.18);
}

.bc-card-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--bc-gold-deep);
  background: radial-gradient(circle at 34% 28%, #FBF3E1, var(--bc-warm-white) 72%);
  box-shadow:
    inset 0 0 0 1px rgba(173, 138, 85, 0.35),
    inset 0 0 0 4px var(--bc-warm-white),
    inset 0 0 0 5px rgba(173, 138, 85, 0.16),
    0 3px 10px rgba(76, 58, 33, 0.10);
  margin-bottom: 6px;
  transition: box-shadow 0.25s var(--bc-ease);
}
.bc-card-icon svg { width: 46%; height: 46%; }

.bc-card-input:checked + .bc-card-visual .bc-card-icon {
  box-shadow:
    inset 0 0 0 1px var(--bc-gold),
    inset 0 0 0 4px var(--bc-warm-white),
    inset 0 0 0 5px rgba(173, 138, 85, 0.32),
    0 4px 12px rgba(173, 138, 85, 0.22);
}

.bc-card-title {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--bc-espresso);
  line-height: 1.3;
}

.bc-card-sub {
  font-size: 0.82rem;
  color: var(--bc-espresso-70);
}

.bc-card-bullets {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.bc-card-bullets li {
  font-size: 0.82rem;
  color: var(--bc-espresso-70);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.bc-card-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 1px;
  background: var(--bc-gold);
}

.bc-card-badge {
  position: absolute;
  top: -10px;
  left: 18px;
  padding: 5px 12px;
  background: var(--bc-espresso);
  color: var(--bc-gold-light);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(36, 28, 22, 0.2);
}
.bc-card-badge[data-badge="Limitiert"] { background: var(--bc-taupe); color: var(--bc-espresso); }
.bc-card-badge[data-badge="Auf Anfrage"] { background: var(--bc-gold); color: var(--bc-warm-white); }

.bc-card-check {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bc-gold);
  color: var(--bc-warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.25s var(--bc-ease), transform 0.25s var(--bc-ease);
}
.bc-card-check svg { width: 12px; height: 12px; }
.bc-card-input:checked ~ .bc-card-visual .bc-card-check,
.bc-card-input:checked + .bc-card-visual .bc-card-check { opacity: 1; transform: scale(1); }

.bc-card--featured .bc-card-visual {
  border-color: var(--bc-taupe-line);
  background: linear-gradient(165deg, #FEFBF5, var(--bc-warm-white));
}

/* Kompakte Chip-Karten (Leistung, Zeitfenster, Anzahl) */
.bc-cards-grid--compact .bc-card-visual {
  padding: 14px 16px;
  min-height: 0;
  align-items: center;
  text-align: center;
}
.bc-cards-grid--compact .bc-card-title { font-size: 0.92rem; }

/* ============================================================
   MENGEN-ZÄHLER (Leistungen der Begleitungen)
   ============================================================ */
.bc-qty-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bc-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  background: var(--bc-warm-white);
  border: 1px solid var(--bc-taupe-line);
  border-radius: var(--bc-radius-sm);
}
.bc-qty-label {
  font-size: 0.92rem;
  color: var(--bc-espresso);
}
.bc-qty-control {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.bc-qty-btn {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--bc-taupe-line);
  background: var(--bc-ivory);
  color: var(--bc-espresso);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s var(--bc-ease), background 0.2s var(--bc-ease);
}
.bc-qty-btn:hover:not(:disabled) { border-color: var(--bc-gold); }
.bc-qty-btn:focus-visible { outline: 2px solid var(--bc-gold); outline-offset: 2px; }
.bc-qty-btn:active:not(:disabled) { background: var(--bc-gold-light); }
.bc-qty-btn:disabled { opacity: 0.3; cursor: default; }
.bc-qty-value {
  min-width: 20px;
  text-align: center;
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: 1.15rem;
  color: var(--bc-espresso);
}
.bc-qty-hint {
  margin-top: 12px;
  text-align: center;
}

/* Invalid-State */
.bc-invalid .bc-card-visual { border-color: #8a3f2c; }

/* ============================================================
   DATUM- & ZEITPLAN-SCHRITT — Kalender, Uhr & zelebrierte Anzeige
   ============================================================ */
.bc-datum-body { display: flex; flex-direction: column; gap: 16px; }

.bc-highlight-reveal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  background: linear-gradient(155deg, #FBF3E4, var(--bc-warm-white));
  border: 1px solid var(--bc-taupe-line);
  border-radius: var(--bc-radius-sm);
  animation: bcStepIn 0.5s var(--bc-ease) both;
}
.bc-highlight-reveal-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bc-gold-deep);
}
.bc-highlight-reveal-value {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  font-weight: 500;
  color: var(--bc-espresso);
}

.bc-calendar {
  padding: 14px;
  background: var(--bc-warm-white);
  border: 1px solid var(--bc-taupe-line);
  border-radius: var(--bc-radius);
}

.bc-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.bc-cal-title {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--bc-espresso);
}
.bc-cal-nav {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--bc-taupe-line);
  background: var(--bc-ivory);
  color: var(--bc-espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s var(--bc-ease), background 0.25s var(--bc-ease);
}
.bc-cal-nav svg { width: 16px; height: 16px; }
.bc-cal-nav--next svg { transform: rotate(180deg); }
.bc-cal-nav:hover:not(:disabled) { border-color: var(--bc-gold); background: var(--bc-warm-white); }
.bc-cal-nav:disabled { opacity: 0.3; cursor: default; }
.bc-cal-nav:focus-visible { outline: 2px solid var(--bc-gold); outline-offset: 2px; }

.bc-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}
.bc-cal-weekdays span {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--bc-espresso-45);
  padding-bottom: 6px;
}

.bc-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.bc-cal-blank { aspect-ratio: 1; }

.bc-cal-day {
  aspect-ratio: 1;
  min-height: 44px;
  border-radius: 50%;
  border: 1px solid transparent;
  background: none;
  color: var(--bc-espresso);
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s var(--bc-ease), border-color 0.2s var(--bc-ease), color 0.2s var(--bc-ease);
}
.bc-cal-day:hover:not(:disabled) { border-color: var(--bc-gold); }
.bc-cal-day:focus-visible { outline: 2px solid var(--bc-gold); outline-offset: 2px; }
.bc-cal-day:disabled { color: var(--bc-taupe); cursor: default; }
.bc-cal-day--today { border-color: var(--bc-taupe); }
.bc-cal-day--selected,
.bc-cal-day--selected:hover {
  background: var(--bc-espresso);
  border-color: var(--bc-espresso);
  color: var(--bc-gold-light);
}

.bc-date-alt-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  justify-content: center;
}

.bc-text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  background: none;
  border: none;
  padding: 8px 4px;
  font-size: 0.8rem;
  color: var(--bc-espresso-45);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.bc-text-link:hover { color: var(--bc-espresso); }
.bc-text-link--back { align-self: flex-start; }

.bc-date-alt-active { animation: bcStepIn 0.4s var(--bc-ease) both; }

/* ============================================================
   DREH-REGLER (Zeitplan-Schritt)
   ============================================================ */
.bc-dial-card {
  padding: 32px 24px 28px;
  background: var(--bc-warm-white);
  border: 1px solid var(--bc-taupe-line);
  border-radius: var(--bc-radius);
  animation: bcStepIn 0.4s var(--bc-ease) both;
}

.bc-dial-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.bc-dial-face {
  position: relative;
  width: min(240px, 62vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #FBF3E1, var(--bc-warm-white) 72%);
  box-shadow:
    inset 0 0 0 1px rgba(173, 138, 85, 0.3),
    inset 0 0 0 9px var(--bc-warm-white),
    inset 0 0 0 10px rgba(173, 138, 85, 0.16),
    0 8px 26px rgba(76, 58, 33, 0.10);
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}
.bc-dial-face--dragging { cursor: grabbing; }

.bc-dial-tick {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bc-taupe);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.bc-dial-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68%;
  text-align: center;
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(1rem, 4.2vw, 1.25rem);
  font-weight: 500;
  color: var(--bc-espresso);
  pointer-events: none;
  line-height: 1.3;
}

.bc-dial-handle {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bc-gold);
  border: 2px solid var(--bc-warm-white);
  box-shadow: 0 3px 10px rgba(76, 58, 33, 0.25);
  transform: translate(-50%, -50%);
  cursor: grab;
  transition: left 0.15s var(--bc-ease), top 0.15s var(--bc-ease);
}
.bc-dial-face--dragging .bc-dial-handle { cursor: grabbing; transition: none; }
.bc-dial-handle:focus-visible { outline: 2px solid var(--bc-gold-deep); outline-offset: 3px; }

.bc-dial-range-labels {
  display: flex;
  justify-content: space-between;
  width: min(240px, 62vw);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--bc-espresso-45);
}

/* ============================================================
   INLINE-REVEAL (Weitere-Anzahl, Uhrzeit)
   ============================================================ */
.bc-inline-reveal {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--bc-ease), opacity 0.35s var(--bc-ease);
}
.bc-inline-reveal--visible {
  max-height: 400px;
  opacity: 1;
  margin-top: 18px;
}

.bc-field-label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--bc-espresso-70);
  margin-bottom: 8px;
}
.bc-field-label--spaced { margin-top: 30px; }

/* ============================================================
   FORMFELDER (Kontakt-Schritt)
   ============================================================ */
.bc-form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bc-form-fields--spaced { margin-top: 26px; }

.bc-input {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  background: var(--bc-warm-white);
  border: 1px solid var(--bc-taupe-line);
  border-radius: var(--bc-radius-sm);
  color: var(--bc-espresso);
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: 0.95rem;
  transition: border-color 0.25s var(--bc-ease), box-shadow 0.25s var(--bc-ease);
}
.bc-input:focus {
  outline: none;
  border-color: var(--bc-gold);
  box-shadow: 0 0 0 3px rgba(173, 138, 85, 0.15);
}
.bc-textarea { min-height: 96px; resize: vertical; line-height: 1.6; }

.bc-field-hint {
  margin: 8px 0 0;
  font-size: 0.78rem;
  color: var(--bc-espresso-45);
}

.bc-privacy { margin-top: 26px; }

.bc-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.bc-checkbox input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.bc-checkbox-box {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 6px;
  border: 1px solid var(--bc-taupe);
  background: var(--bc-warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: background 0.2s var(--bc-ease), border-color 0.2s var(--bc-ease), color 0.2s var(--bc-ease);
}
.bc-checkbox-box svg { width: 12px; height: 12px; }
.bc-checkbox input:checked + .bc-checkbox-box {
  background: var(--bc-espresso);
  border-color: var(--bc-espresso);
  color: var(--bc-gold-light);
}
.bc-checkbox input:focus-visible + .bc-checkbox-box {
  outline: 2px solid var(--bc-gold);
  outline-offset: 2px;
}
.bc-checkbox-text {
  font-size: 0.85rem;
  color: var(--bc-espresso-70);
  line-height: 1.6;
}
.bc-checkbox-text a { color: var(--bc-gold-deep); }

.bc-privacy-note {
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: var(--bc-espresso-45);
  line-height: 1.6;
}

/* ============================================================
   ZUSAMMENFASSUNG
   ============================================================ */
.bc-summary-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bc-summary-item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "label edit" "value edit";
  align-items: center;
  gap: 2px 14px;
  padding: 16px 18px;
  background: var(--bc-warm-white);
  border: 1px solid var(--bc-taupe-line);
  border-radius: var(--bc-radius-sm);
}
.bc-summary-label {
  grid-area: label;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bc-gold-deep);
}
.bc-summary-value {
  grid-area: value;
  font-size: 0.95rem;
  color: var(--bc-espresso);
}
.bc-summary-edit {
  grid-area: edit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  background: none;
  border: none;
  color: var(--bc-espresso-45);
  font-size: 0.78rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 6px;
}
.bc-summary-edit:hover { color: var(--bc-espresso); }

/* ============================================================
   ABSCHLUSS-SCREEN
   ============================================================ */
.bc-final {
  text-align: center;
  padding: 30px 0;
  animation: bcFadeUp 0.7s var(--bc-ease) both;
}
.bc-final-icon {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  color: var(--bc-gold-deep);
}
.bc-final-icon svg { width: 100%; height: 100%; }
.bc-final h2 {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  font-weight: 400;
  margin: 0 0 14px;
}
.bc-final p {
  color: var(--bc-espresso-70);
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto 30px;
}
.bc-legal {
  margin-top: 20px;
  font-size: 0.76rem;
  color: var(--bc-espresso-45);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   DESKTOP-VERFEINERUNG
   ============================================================ */
@media (min-width: 768px) {
  .bc-page { padding: 168px 0 110px; }
  .bc-shell { max-width: 860px; }
  .bc-cta-primary, .bc-btn-primary { width: auto; padding-left: 44px; padding-right: 44px; }
  .bc-card-visual { padding: 26px 24px 28px; }
  .bc-intro { margin-top: -168px; margin-bottom: -110px; }
  .bc-intro-content { max-width: 620px; padding: 108px 20px 40px; }
  .bc-benefit { padding: 18px 12px; }
  .bc-benefit h3 { font-size: 0.98rem; }
}

@media (min-width: 1024px) {
  .bc-shell { max-width: 920px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .bc-intro-content, .bc-wizard, .bc-final, .bc-step-enter {
    animation: none !important;
  }
  .bc-card-visual, .bc-cta-primary, .bc-btn-primary, .bc-back {
    transition: none !important;
  }
}
