/* ============================================================
   Reservierung — DISH iframe + fallback channels
   ============================================================ */

.res-hero {
  padding-block: var(--space-2xl) var(--space-lg);
}
.res-hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: 500;
  line-height: 1.05;
}
.res-hero h1 em {
  font-style: italic;
  color: var(--color-mustard);
}

/* ============================================================
   DISH-Overture — Editorial header above the DISH widget.
   "Letzter Schritt" framing — sets expectations that the system
   below is the external booking tool, not the brand voice.
   ============================================================ */
.res-dish {
  padding-block: var(--space-xl) var(--space-2xl);
  /* Sand-soft surface to clearly separate from the editorial picker above */
  background: var(--color-sand-soft, #E6DCCC);
}
.dish-overture {
  max-width: 64ch;
  margin: 0 auto var(--space-lg);
  text-align: left;
}
.dish-overture__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-size: var(--fs-xsmall);
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--text-muted, var(--color-text-soft));
}
.dish-overture__kicker::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent, var(--color-mustard));
}
.dish-overture__headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.8vw + 0.8rem, 2.25rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-espresso);
  margin: var(--space-2xs) 0 var(--space-2xs);
  text-wrap: balance;
}
.dish-overture__headline em {
  font-style: italic;
  color: var(--color-mustard);
}
.dish-overture__note {
  font-size: var(--fs-body);
  color: var(--text-muted, var(--color-text-soft));
  line-height: var(--lh-relaxed);
  margin: 0;
  max-width: 48ch;
}

/* Reveal animation when [hidden] is removed */
.res-dish:not([hidden]) {
  animation: cf-dish-fade-in 280ms var(--ease-soft) both;
}
@keyframes cf-dish-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .res-dish:not([hidden]) { animation: none; }
}

/* CTA row in the groups/catering box — primary + ghost button side by side */
.res-groups__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.res-frame {
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2vw, 1.5rem);
  margin: 0;
  display: grid;
  gap: var(--space-md);
  box-shadow: var(--shadow-soft);
}
.res-frame__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.res-frame__iframe-wrap {
  position: relative;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 560px;
}
.res-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
}
.res-frame__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl);
  color: var(--color-text-soft);
}
.res-frame__placeholder svg { width: 48px; height: 48px; opacity: 0.5; margin-bottom: var(--space-md); }

.res-alt {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
  padding-block: var(--space-lg) 0;
  max-width: 64ch;
}
@media (min-width: 700px) {
  .res-alt { grid-template-columns: repeat(2, 1fr); max-width: none; }
}
.res-alt__card {
  background: transparent;
  border-left: 2px solid var(--color-mustard);
  padding: var(--space-2xs) var(--space-md);
  display: grid;
  gap: var(--space-3xs);
  transition: padding-left var(--dur-fast) var(--ease-soft);
}
.res-alt__card:hover { padding-left: calc(var(--space-md) + 4px); }
.res-alt__channel {
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-espresso-soft);
}
.res-alt__value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.4vw + 1rem, 1.875rem);
  font-weight: 500;
}

.res-groups {
  background: var(--color-espresso);
  color: var(--color-creme);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  margin-block: var(--space-2xl) var(--space-3xl);
  display: grid;
  gap: var(--space-md);
}
.res-groups h2 {
  color: var(--color-creme);
  font-size: clamp(1.625rem, 1.5vw + 1rem, 2.25rem);
  font-weight: 500;
}
.res-groups .btn {
  justify-self: start;
  background: var(--color-mustard);
  color: var(--color-espresso);
}
.res-groups .btn:hover {
  background: var(--color-creme);
  color: var(--color-espresso);
}
