/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --off-white:   #FAFAF8;
  --warm-beige:  #F5F0E8;
  --sage-light:  #F0F4F0;
  --gold:        #C9A96E;
  --gold-dark:   #B8935A;
  --gold-pale:   #F7EDD8;
  --charcoal:    #1A1A1A;
  --gray:        #6B7280;
  --gray-light:  #9CA3AF;
  --white:       #FFFFFF;
  --border:      #E8E2D9;
  --shadow-soft: 0 4px 24px rgba(26,26,26,0.06);
  --shadow-card: 0 2px 16px rgba(26,26,26,0.08);
  --shadow-hover: 0 8px 32px rgba(26,26,26,0.12);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --transition:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--off-white);
  color: var(--charcoal);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.25;
  font-weight: normal;
}

img { max-width: 100%; }

a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

/* ============================================================
   UTILITIES
============================================================ */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 720px; }
.container--wide   { max-width: 1200px; }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--gray); }

.section {
  padding: 96px 0;
}
.section--beige  { background: var(--warm-beige); }
.section--sage   { background: var(--sage-light); }
.section--dark   { background: var(--charcoal); color: var(--off-white); }
.section--white  { background: var(--white); }

.label-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-pale);
  border: 1px solid rgba(201,169,110,0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.section-headline {
  font-size: clamp(26px, 4vw, 38px);
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-headline--light { color: var(--off-white); }

.section-subline {
  font-size: 17px;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 48px;
}
.section-subline--light { color: rgba(250,250,248,0.65); }

/* ============================================================
   FADE-IN ANIMATION (Intersection Observer)
============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }
.fade-up.delay-6 { transition-delay: 0.6s; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1.5px solid transparent;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

/* Shimmer sweep on hover */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.28) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn:hover::before {
  left: 135%;
}

/* Ripple element injected by JS */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: btn-ripple 0.55s linear;
  background: rgba(255,255,255,0.35);
  pointer-events: none;
}
@keyframes btn-ripple {
  to { transform: scale(4); opacity: 0; }
}

/* Arrow child that slides on hover */
.btn .btn-arrow {
  display: inline-block;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn:hover .btn-arrow {
  transform: translateX(5px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201,169,110,0.35), 0 1px 3px rgba(201,169,110,0.20);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #D4B87E 0%, var(--gold) 100%);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 10px 32px rgba(201,169,110,0.45), 0 4px 12px rgba(201,169,110,0.25);
}
.btn--primary:active {
  transform: translateY(0px) scale(0.98);
  box-shadow: 0 2px 8px rgba(201,169,110,0.30);
  transition: all 0.1s ease;
}

/* Pulse-Shadow — alle .btn--pulse — box-shadow Methode */
.btn--pulse {
  animation: shadow-pulse 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes shadow-pulse {
  0%   { box-shadow: 0 4px 16px rgba(201,169,110,0.35), 0 0 0 0px  rgba(201,169,110,0.70); }
  70%  { box-shadow: 0 4px 16px rgba(201,169,110,0.35), 0 0 0 22px rgba(201,169,110,0);    }
  100% { box-shadow: 0 4px 16px rgba(201,169,110,0.35), 0 0 0 22px rgba(201,169,110,0);    }
}
.btn--pulse:hover {
  animation-play-state: paused;
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--border);
  backdrop-filter: blur(4px);
}
.btn--outline::before {
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(201,169,110,0.12) 50%,
    transparent 100%
  );
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 6px 22px rgba(201,169,110,0.18);
  background: rgba(201,169,110,0.04);
}
.btn--outline:active {
  transform: translateY(0px) scale(0.98);
  transition: all 0.1s ease;
}

.btn--outline-light {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(250,250,248,0.35);
}
.btn--outline-light::before {
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.15) 50%,
    transparent 100%
  );
}
.btn--outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 6px 20px rgba(0,0,0,0.20);
}
.btn--outline-light:active {
  transform: translateY(0px) scale(0.98);
  transition: all 0.1s ease;
}

.btn--large {
  padding: 17px 38px;
  font-size: 16px;
  border-radius: 10px;
  letter-spacing: 0.03em;
}
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   NAV
============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(250, 250, 248, 0.82);
  border-bottom: 1px solid rgba(232,226,217,0.6);
  transition: box-shadow var(--transition);
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(26,26,26,0.07);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav__logo {
  font-family: Georgia, serif;
  font-size: 20px;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav__logo span { color: var(--charcoal); font-size: 11px; display: block; letter-spacing: 0.1em; text-transform: uppercase; font-family: system-ui, sans-serif; font-weight: 400; margin-top: -2px; }
.nav__cta { font-size: 14px; }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, #F5EDDB 0%, var(--off-white) 60%, #EEF2EE 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(201,169,110,0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(240,244,240,0.8) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,169,110,0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.5;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.hero__headline {
  font-size: clamp(32px, 5.5vw, 58px);
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.hero__exclusive {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(13px, 1.5vw, 14px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 6px;
  padding: 8px 14px;
  margin: 0 auto 16px;
}

.hero__subheadline {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.hero__badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--gray);
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__badge svg { color: var(--gold); flex-shrink: 0; }

.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__referrer {
  display: flex;
  justify-content: center;
}
.hero__referrer-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--gray);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: 340px;
  width: 100%;
}
.hero__referrer-field input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
  color: var(--charcoal);
  width: 100%;
  font-family: inherit;
}
.hero__referrer-field input::placeholder { color: var(--gray-light); }

/* ============================================================
   KONTEXT SECTION
============================================================ */
.kontext__content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.kontext__content p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
}
.kontext__content p strong { color: var(--charcoal); font-weight: 500; }

.quote-callout {
  margin: 48px auto 0;
  padding: 32px 40px;
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  text-align: left;
  max-width: 480px;
  box-shadow: var(--shadow-soft);
}
.quote-callout p {
  font-family: Georgia, serif;
  font-size: 20px;
  color: var(--charcoal);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}
.quote-callout cite {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-style: normal;
  font-family: system-ui, sans-serif;
}

/* ============================================================
   VIDEO SECTION
============================================================ */
.video-placeholder {
  position: relative;
  max-width: 640px;
  margin: 0 auto 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(26,26,26,0.14);
  cursor: pointer;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2C2620 0%, #1A1A1A 40%, #2A2420 70%, #3A3020 100%);
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-placeholder:hover { transform: translateY(-3px); box-shadow: 0 24px 64px rgba(26,26,26,0.18); }

.video-placeholder__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(201,169,110,0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 40%, rgba(201,169,110,0.10) 0%, transparent 50%);
}
.video-placeholder__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.video-placeholder:hover .video-placeholder__play {
  background: rgba(201,169,110,0.25);
  border-color: var(--gold);
  transform: translate(-50%, -50%) scale(1.08);
}
.video-placeholder__play svg { color: white; margin-left: 4px; }
.video-placeholder__label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.45);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
}

.video-caption {
  text-align: center;
  font-size: 14px;
  color: var(--gray);
  letter-spacing: 0.04em;
  font-style: italic;
}

/* ============================================================
   BENEFIT CARDS
============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .cards-grid { grid-template-columns: 1fr; }
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.benefit-card__icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-dark);
}
.benefit-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
  font-family: system-ui, sans-serif;
}
.benefit-card__text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}

/* ============================================================
   QUICK CHECK
============================================================ */
.quickcheck {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.quickcheck::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.quickcheck__box {
  max-width: 660px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 48px;
  box-shadow: 0 4px 40px rgba(26,26,26,0.08);
  border: 1px solid rgba(201,169,110,0.18);
  position: relative;
}
@media (max-width: 600px) {
  .quickcheck__box { padding: 32px 24px; }
}

.qc-intro { margin-bottom: 48px; }

.progress-bar-wrap {
  height: 4px;
  background: var(--border);
  border-radius: 100px;
  margin-bottom: 28px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 100px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

.qc-counter {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  font-weight: 500;
}

.qc-question {
  display: none;
  animation: questionFadeIn 0.4s ease forwards;
}
.qc-question.active { display: block; }

@keyframes questionFadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes questionFadeOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-20px); }
}
.qc-question.leaving {
  display: block;
  animation: questionFadeOut 0.3s ease forwards;
}

.qc-question__text {
  font-family: Georgia, serif;
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 28px;
  line-height: 1.4;
}

.qc-options { display: flex; flex-direction: column; gap: 12px; }

.qc-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--off-white);
  text-align: left;
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.5;
}
.qc-option:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateX(2px);
}
.qc-option.selected {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--charcoal);
}
.qc-option__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--transition);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qc-option:hover .qc-option__dot,
.qc-option.selected .qc-option__dot {
  border-color: var(--gold);
  background: var(--gold);
}
.qc-option.selected .qc-option__dot::after {
  content: '';
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

/* Result */
.qc-result {
  display: none;
  text-align: center;
  animation: questionFadeIn 0.5s ease forwards;
}
.qc-result.active { display: block; }

.qc-result__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold-dark);
}
.qc-result__title {
  font-family: Georgia, serif;
  font-size: 26px;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.qc-result__text {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.qc-result__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.qc-restart-wrap { text-align: center; }
.qc-restart {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 13px;
  cursor: pointer;
  margin-top: 20px;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.qc-restart:hover { color: var(--charcoal); }

/* ============================================================
   ROLE CARDS
============================================================ */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .roles-grid { grid-template-columns: 1fr; }
}

.role-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.role-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.role-card__icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-dark);
}
.role-card__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
  font-family: system-ui, sans-serif;
}
.role-card__text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 20px;
}
.role-card__link {
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition), color var(--transition);
}
.role-card__link:hover { gap: 8px; color: var(--gold); }

/* ============================================================
   FIT SECTION
============================================================ */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 640px) {
  .fit-grid { grid-template-columns: 1fr; }
}

.fit-col {
  border-radius: var(--radius-md);
  padding: 36px 32px;
}
.fit-col--yes {
  background: #EFF6EF;
  border: 1px solid rgba(74,155,74,0.15);
}
.fit-col--no {
  background: #F8F7F5;
  border: 1px solid var(--border);
}
.fit-col__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: system-ui, sans-serif;
}
.fit-col--yes .fit-col__title { color: #2D7D2D; }
.fit-col--no  .fit-col__title { color: var(--gray); }

.fit-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.fit-list li svg { flex-shrink: 0; margin-top: 2px; }
.fit-col--yes .fit-list li { color: #2A5C2A; }
.fit-col--no  .fit-list li { color: var(--gray); }

/* ============================================================
   POSITIONING SECTION
============================================================ */
.positioning__headline {
  font-size: clamp(28px, 4.5vw, 44px);
  color: var(--gold);
  margin-bottom: 24px;
  line-height: 1.2;
}
.positioning__text {
  font-size: 18px;
  color: rgba(250,250,248,0.7);
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.8;
}

.positioning__stats {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius-md);
  max-width: 560px;
  margin: 0 auto;
  overflow: hidden;
}
.stat-item {
  flex: 1;
  min-width: 160px;
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(201,169,110,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-item__value {
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: normal;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  line-height: 1.3;
}
.stat-item__label {
  font-size: 11px;
  color: rgba(250,250,248,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   FORM SECTION
============================================================ */
.form-wrap {
  max-width: 600px;
  margin: 0 auto;
}

.booking-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-field {
  margin-bottom: 20px;
}
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--charcoal);
  background: var(--off-white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
  background: var(--white);
}
.form-field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}
.form-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.label-optional {
  color: var(--gray-light);
  font-weight: 400;
}

.form-submit-wrap { margin-top: 8px; }

.form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
  animation: questionFadeIn 0.5s ease forwards;
}
.form-success.active { display: block; }
.form-success__icon {
  width: 72px;
  height: 72px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold-dark);
}
.form-success__title {
  font-family: Georgia, serif;
  font-size: 28px;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.form-success__text {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
}

.form-bottom-note {
  margin-top: 20px;
  text-align: center;
}
.form-bottom-note a {
  font-size: 15px;
  color: var(--gold-dark);
  font-weight: 500;
}
.form-privacy {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--gray-light);
  line-height: 1.6;
}
.form-privacy svg { vertical-align: middle; margin-right: 4px; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--charcoal);
  padding: 40px 24px;
  text-align: center;
}
.footer__logo {
  font-family: Georgia, serif;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 8px;
}
.footer__copy {
  font-size: 13px;
  color: rgba(250,250,248,0.35);
  margin-bottom: 12px;
}
.footer__links {
  font-size: 13px;
  color: rgba(250,250,248,0.35);
}
.footer__links a {
  color: rgba(250,250,248,0.4);
  margin: 0 8px;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }

/* ============================================================
   MODAL (Impressum / Datenschutz)
============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  padding: 24px 16px;
  overflow-y: auto;
  animation: modal-fade-in 0.22s ease;
}
.modal-overlay.active { display: flex; align-items: flex-start; justify-content: center; }
@keyframes modal-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 780px;
  width: 100%;
  margin: auto;
  box-shadow: 0 24px 80px rgba(26,26,26,0.22);
  animation: modal-slide-up 0.26s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modal-slide-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 36px 20px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 1;
}
.modal__title {
  font-family: Georgia, serif;
  font-size: 22px;
  color: var(--charcoal);
}
.modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all var(--transition);
  flex-shrink: 0;
}
.modal__close:hover {
  background: var(--warm-beige);
  border-color: var(--gold);
  color: var(--gold-dark);
}
.modal__body {
  padding: 32px 36px 40px;
  color: var(--charcoal);
  line-height: 1.75;
  font-size: 14.5px;
}
.modal__body h2 {
  font-family: Georgia, serif;
  font-size: 20px;
  margin: 28px 0 10px;
  color: var(--charcoal);
}
.modal__body h2:first-child { margin-top: 0; }
.modal__body h3 {
  font-family: Georgia, serif;
  font-size: 16px;
  margin: 22px 0 8px;
  color: var(--charcoal);
}
.modal__body h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 18px 0 6px;
  color: var(--charcoal);
}
.modal__body p { margin-bottom: 12px; color: var(--gray); }
.modal__body ul {
  margin: 8px 0 14px 20px;
  color: var(--gray);
}
.modal__body li { margin-bottom: 4px; }
.modal__body strong { color: var(--charcoal); font-weight: 600; }
.modal__body a { color: var(--gold-dark); word-break: break-all; }
.modal__divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}
.modal__contact-box {
  background: var(--warm-beige);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.7;
}
@media (max-width: 600px) {
  .modal__header { padding: 20px 20px 16px; }
  .modal__body   { padding: 24px 20px 32px; }
}

/* ============================================================
   SCROLL TO TOP
============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(201,169,110,0.35);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 50;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-dark); }
