/* ── Base overrides for page layouts (book, confirm) ── */
html {
  background: var(--c-dark);
  height: auto;
  overflow: auto;
}
body {
  background: var(--c-dark);
  color: var(--c-text-muted);
  overflow: auto;
  height: auto;
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.75;
}

/* ── book.twig ── */
/* ── Header ── */
.page-header {
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--c-border-subtle);
}

.header-logo {
  display: block;
  height: 22px;
  width: auto;
  opacity: 0.82;
}

.back-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(168, 196, 173, 0.78);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.back-link:hover { color: rgba(168, 196, 173, 0.65); }
.back-link svg { width: 12px; height: 12px; flex-shrink: 0; }

/* ── Layout ── */
.page {
  max-width: 1060px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg) calc(var(--space-xl) * 1.5);
}

/* ── Booking embed — etwas breiter als Content (callout-Effekt) ── */
.booking-wrap {
  position: relative;
  margin-left: clamp(-48px, -4vw, -24px);
  margin-right: clamp(-48px, -4vw, -24px);
  margin-bottom: var(--space-md);
  overflow: visible;
  opacity: 0;
  animation: fadeUp 0.9s 0.1s var(--ease-cine) forwards;
}
.booking-wrap iframe {
  display: block;
  width: 100%;
  min-height: inherit;
  height: 100%;
}

/* Loading state */
.booking-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}
.booking-loader__spinner {
  width: 28px;
  height: 28px;
  border: 2px solid var(--c-border);
  border-top-color: var(--c-accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.booking-loader__text {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--c-text-muted);
  letter-spacing: 0.04em;
}

/* ── Divider ── */
.divider {
  height: 1px;
  background: var(--c-border-subtle);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeUp 0.5s 0.55s var(--ease-cine) forwards;
}

/* ── Info grid ── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  opacity: 0;
  animation: fadeUp 0.9s 0.65s var(--ease-cine) forwards;
}

@media (min-width: 640px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .info-grid {
    grid-template-columns: 2fr 1.4fr;
    align-items: start;
  }
  .col-notice {
    grid-column: 1 / -1;
  }
}

/* ── Col 1: intro ── */
.section-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-sm);
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: rgba(241, 237, 227, 0.95);
  margin-bottom: var(--space-sm);
}
.page-title em {
  font-style: italic;
  color: var(--c-gold-light);
}

.page-sub {
  font-size: var(--text-sm);
  line-height: 1.75;
  color: var(--c-text-muted);
}

/* ── Col 2: benefits ── */
.col-benefits {
  padding-top: 4px;
}

.col-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(168, 196, 173, 0.78);
  margin-bottom: var(--space-sm);
}

.benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.55;
}

.benefit-icon {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 3px;
  color: var(--c-gold);
}

/* ── Col 3: notice ── */
.col-notice {
  padding-top: 4px;
}

.notice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  font-size: var(--text-sm);
  color: rgba(168, 196, 173, 0.90);
  line-height: 1.6;
}

.notice-icon {
  width: 15px;
  height: 15px;
  color: var(--c-gold);
  opacity: 0.65;
  flex-shrink: 0;
}

/* ── Animation ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── confirm.twig ── */
/* ── Header ── */
.page-header {
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--c-border-subtle);
}
.header-logo {
  display: block;
  height: 22px;
  width: auto;
  opacity: 0.82;
}
.back-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(168, 196, 173, 0.78);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.back-link:hover { color: rgba(168, 196, 173, 0.65); }
.back-link svg { width: 12px; height: 12px; flex-shrink: 0; }

/* ── Main ── */
.confirm-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-lg);
}

.confirm-main .legal-trigger {
  max-width: 520px;
  margin-top: var(--space-xl);
}

.confirm-card {
  max-width: 520px;
  width: 100%;
  text-align: center;
  opacity: 0;
  animation: fadeUp 1s 0.1s var(--ease-cine) forwards;
}

/* ── Check icon ── */
.check-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: rgba(156, 126, 81, 0.10);
  border: 1px solid rgba(156, 126, 81, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--c-gold);
}

/* ── Text ── */
.confirm-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-sm);
}

.confirm-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: rgba(241, 237, 227, 0.95);
  margin-bottom: var(--space-sm);
}
.confirm-title em {
  font-style: italic;
  color: var(--c-gold-light);
}

.confirm-name {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--c-gold-light);
}

.confirm-sub {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

/* ── Email note ── */
.email-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  font-size: var(--text-xs);
  color: rgba(168, 196, 173, 0.90);
  margin-bottom: var(--space-lg);
}
.email-note svg {
  width: 13px;
  height: 13px;
  color: var(--c-gold);
  opacity: 0.7;
  flex-shrink: 0;
}

/* ── Divider ── */
.confirm-divider {
  height: 1px;
  background: var(--c-border-subtle);
  margin: 0 auto var(--space-lg);
  max-width: 120px;
}

/* ── Footer link ── */
.home-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: var(--text-sm);
  color: rgba(168, 196, 173, 0.78);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.home-link:hover { color: rgba(168, 196, 173, 0.72); }
.home-link svg { width: 13px; height: 13px; }

/* ── Animation ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
