@import url("node_modules/@fontsource/manrope/400.css");
@import url("node_modules/@fontsource/manrope/500.css");
@import url("node_modules/@fontsource/manrope/600.css");
@import url("node_modules/@fontsource/manrope/700.css");

:root {
  --bg: #f4efe3;
  --bg-accent: #fcf8f1;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-soft: #f6eee3;
  --text: #1b221d;
  --muted: #667168;
  --primary: #456b49;
  --primary-dark: #2f4332;
  --accent: #b7d4af;
  --border: rgba(24, 34, 28, 0.08);
  --shadow: 0 24px 64px rgba(19, 31, 22, 0.12);
  --shadow-soft: 0 14px 38px rgba(19, 31, 22, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(183, 212, 175, 0.18), transparent 32%),
    linear-gradient(135deg, var(--bg-accent) 0%, var(--bg) 100%);
  line-height: 1.7;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: relative;
  color: white;
  background:
    linear-gradient(115deg, rgba(15, 26, 18, 0.95) 0%, rgba(15, 26, 18, 0.78) 45%, rgba(15, 26, 18, 0.62) 100%),
    url('assets/images/waldresidenz-aussen.jpg') center/cover no-repeat;
  overflow: hidden;
}

.site-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.08) 100%);
  pointer-events: none;
}

.hero-home {
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  position: relative;
  z-index: 2;
}

.brand,
.hero-copy h1,
.section-intro h2,
.page-title h1,
.footer h3,
.section-heading h2 {
  font-family: "Manrope", sans-serif;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 0.55rem 0.8rem;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,0.14);
  color: white;
}

.pill-link {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.24);
}

.menu-toggle {
  display: none;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0.25rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 4px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: end;
  padding: 4.5rem 0 5.5rem;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 700px;
}

.hero-side-panel {
  display: grid;
  gap: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #dce9d8;
  margin-bottom: 0.75rem;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 4.2vw, 3.95rem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.lead {
  font-size: 1.05rem;
  max-width: 660px;
  color: rgba(255,255,255,0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin: 1.45rem 0 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #5f8960 100%);
  color: white;
  box-shadow: 0 16px 34px rgba(79, 119, 81, 0.3);
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1px solid rgba(255,255,255,0.22);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.8rem;
}

.hero-highlights li {
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
}

.hero-panel,
.info-card,
.card,
.feature-card,
.cta-card,
.page-card,
.hero-card,
.intro-panel,
.side-card {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.hero-panel,
.hero-card,
.intro-panel,
.side-card {
  padding: 1.4rem;
}

.section {
  padding: 5.5rem 0;
}

.section-muted {
  background: rgba(255,255,255,0.28);
  border-top: 1px solid rgba(24, 34, 28, 0.05);
  border-bottom: 1px solid rgba(24, 34, 28, 0.05);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-intro h2,
.page-title h1 {
  font-size: clamp(1.95rem, 3vw, 2.7rem);
  margin: 0 0 0.7rem;
  line-height: 1.12;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
  align-items: start;
}

.intro-panel {
  padding: 2rem;
}

.intro-panel p,
.side-card p,
.card p,
.feature-card p,
.page-card p {
  color: var(--muted);
}

.highlights-grid,
.feature-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}

.feature-card,
.card {
  padding: 1.35rem;
}

.feature-card h3,
.card h3,
.side-card h3,
.intro-panel h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.cta-section {
  padding-top: 0;
}

.cta-card {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.page-hero {
  padding: 3.2rem 0 2rem;
}

.page-title {
  max-width: 800px;
}

.page-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.page-card {
  padding: 1.5rem;
}

.page-card ul {
  padding-left: 1rem;
  margin: 0;
}

.activity-section {
  margin-top: 2rem;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.activity-card {
  padding: 0;
  border-radius: 1rem;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.activity-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.activity-card-body {
  display: grid;
  gap: 0.7rem;
  padding: 1.2rem;
}

.activity-card h3 {
  margin: 0;
}

.activity-card p {
  margin: 0;
}

.activity-highlights {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  display: grid;
  gap: 0.35rem;
}

.activity-card a {
  display: inline-block;
  margin-top: 0.2rem;
  color: var(--primary);
  font-weight: 600;
}

.section-intro {
  margin-top: 0.5rem;
  color: var(--muted);
  max-width: 70ch;
}

.footer {
  background: #16231a;
  color: rgba(255,255,255,0.85);
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.footer a {
  color: rgba(255,255,255,0.96);
}

.footer-bottom {
  margin-top: 1.75rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-heading h2 {
  margin: 0;
  font-size: 1.3rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field-grid label,
.room-field,
.option-card {
  display: block;
  font-weight: 600;
}

.field-grid input,
.field-grid textarea,
.room-field input,
.option-card input,
.field-grid select {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  font: inherit;
  background: #fcfaf7;
}

.full-span {
  grid-column: 1 / -1;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.room-field {
  padding: 1rem;
  border-radius: 1rem;
  background: var(--surface-soft);
}

.summary-field {
  background: #e8f0e7;
}

.helper-text {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.notice {
  margin-top: 0.8rem;
  padding: 0.95rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid transparent;
}

.notice-warning {
  background: #fff6e8;
  color: #8f5b00;
  border-color: #f2d39b;
}

.notice-success {
  background: #eef8ef;
  color: #2f5a33;
  border-color: #b8e0bb;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.option-card {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface-soft);
}

.option-card legend {
  padding: 0 0.25rem;
}

.option-options {
  display: flex;
  gap: 1rem;
  margin-top: 0.7rem;
  font-weight: 500;
}

.booking-summary {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 1rem;
}

.summary-card {
  padding: 1.4rem;
  border-radius: 1.2rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.summary-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #f3f8f1, #e7f0e5);
}

.summary-price strong {
  font-size: 1.45rem;
  color: var(--primary-dark);
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.summary-footnote {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-note {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.calendar-card {
  margin-top: 1.5rem;
}

.calendar-embed {
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--surface-soft);
}

.calendar-embed iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  height: 760px;
  border: 0;
}

@media (max-width: 900px) {
  .hero-content,
  .split-layout,
  .page-grid,
  .feature-grid,
  .card-grid,
  .footer-grid,
  .form-grid,
  .booking-layout,
  .intro-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content,
  .split-layout,
  .page-grid,
  .booking-layout,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .card-grid,
  .option-grid,
  .room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 4.5rem;
    right: 1rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(8, 18, 12, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-content {
    padding-top: 2.5rem;
  }

  .feature-grid,
  .card-grid,
  .footer-grid,
  .form-grid,
  .activity-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .calendar-embed iframe {
    min-height: 620px;
    height: 720px;
  }
}

.panel-label {
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--primary);
  font-weight: 700;
}

.hero-panel h2 {
  margin: 0;
  font-size: 1.45rem;
}

.stats-grid {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.25rem;
}

.stats-grid div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}

.stats-grid strong {
  font-size: 1.2rem;
  color: var(--primary-dark);
}

.section {
  padding: 5rem 0;
}

.section-muted {
  background: rgba(255,255,255,0.45);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-intro h2,
.page-title h1 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 0 0 0.6rem;
}

.feature-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-card,
.card {
  padding: 1.4rem;
}

.feature-card h3,
.card h3 {
  margin-top: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.info-card {
  padding: 1.4rem 1.5rem;
}

.check-list {
  padding-left: 1rem;
  margin: 0;
}

.cta-section {
  padding-top: 0;
}

.cta-card {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.page-hero {
  padding: 3.2rem 0 2rem;
}

.page-title {
  max-width: 800px;
}

.page-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.page-card {
  padding: 1.5rem;
}

.page-card ul {
  padding-left: 1rem;
  margin: 0;
}

.activity-section {
  margin-top: 2rem;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.activity-card {
  padding: 0;
  border-radius: 1rem;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.activity-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.activity-card-body {
  display: grid;
  gap: 0.7rem;
  padding: 1.2rem;
}

.activity-card h3 {
  margin: 0;
}

.activity-card p {
  margin: 0;
}

.activity-highlights {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  display: grid;
  gap: 0.35rem;
}

.activity-card a {
  display: inline-block;
  margin-top: 0.2rem;
  color: var(--primary);
  font-weight: 600;
}

.section-intro {
  margin-top: 0.5rem;
  color: var(--muted);
  max-width: 70ch;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  padding: 0.8rem 0.95rem;
  font: inherit;
  margin-top: 0.35rem;
  background: #fcfaf7;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.footer {
  background: #16231a;
  color: rgba(255,255,255,0.85);
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.footer a {
  color: rgba(255,255,255,0.96);
}

.footer-bottom {
  margin-top: 1.75rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
}

/* Booking form */
.booking-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-heading h2 {
  margin: 0;
  font-size: 1.3rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field-grid label,
.room-field,
.option-card {
  display: block;
  font-weight: 600;
}

.field-grid input,
.field-grid textarea,
.room-field input,
.option-card input,
.field-grid select {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  font: inherit;
  background: #fcfaf7;
}

.full-span {
  grid-column: 1 / -1;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.room-field {
  padding: 1rem;
  border-radius: 1rem;
  background: var(--surface-soft);
}

.summary-field {
  background: #e8f0e7;
}

.helper-text {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.notice {
  margin-top: 0.8rem;
  padding: 0.95rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid transparent;
}

.notice-warning {
  background: #fff6e8;
  color: #8f5b00;
  border-color: #f2d39b;
}

.notice-success {
  background: #eef8ef;
  color: #2f5a33;
  border-color: #b8e0bb;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.option-card {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface-soft);
}

.option-card legend {
  padding: 0 0.25rem;
}

.option-options {
  display: flex;
  gap: 1rem;
  margin-top: 0.7rem;
  font-weight: 500;
}

.booking-summary {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 1rem;
}

.summary-card {
  padding: 1.4rem;
  border-radius: 1.2rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.summary-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #f3f8f1, #e7f0e5);
}

.summary-price strong {
  font-size: 1.45rem;
  color: var(--primary-dark);
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.summary-footnote {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-note {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.calendar-card {
  margin-top: 1.5rem;
}

.calendar-embed {
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--surface-soft);
}

.calendar-embed iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  height: 760px;
  border: 0;
}

@media (max-width: 900px) {
  .hero-content,
  .split-layout,
  .page-grid,
  .feature-grid,
  .card-grid,
  .footer-grid,
  .form-grid,
  .booking-layout {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content,
  .split-layout,
  .page-grid,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .card-grid,
  .option-grid,
  .room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 4.5rem;
    right: 1rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(8, 18, 12, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-content {
    padding-top: 2.5rem;
  }

  .feature-grid,
  .card-grid,
  .footer-grid,
  .form-grid,
  .activity-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .calendar-embed iframe {
    min-height: 620px;
    height: 720px;
  }
}


/* Waldresidenz Design System — layered on local Bulma */
:root {
  --bg: #f2f4ef;
  --bg-accent: #fbfcf8;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --surface-soft: #eef2eb;
  --text: #172019;
  --muted: #647068;
  --primary: #285b3b;
  --primary-dark: #163c27;
  --accent: #d5e692;
  --accent-warm: #e7c98c;
  --border: rgba(23, 32, 25, 0.1);
  --shadow: 0 28px 70px rgba(22, 60, 39, 0.14);
  --shadow-soft: 0 14px 40px rgba(22, 60, 39, 0.09);
}

body,
button,
input,
select,
textarea {
  font-family: "Manrope", sans-serif;
}

body {
  font-size: 1rem;
  background:
    radial-gradient(circle at 8% 12%, rgba(213, 230, 146, 0.25), transparent 28rem),
    linear-gradient(180deg, var(--bg-accent), var(--bg));
}

.brand,
.hero-copy h1,
.section-intro h2,
.page-title h1,
.footer h3,
.section-heading h2,
.intro-panel h2,
.cta-card h2,
.summary-card h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
}

.site-header {
  background:
    linear-gradient(108deg, rgba(10, 30, 19, 0.96) 0%, rgba(16, 47, 30, 0.85) 48%, rgba(13, 35, 23, 0.48) 100%),
    url("assets/images/waldresidenz-aussen.jpg") center/cover no-repeat;
}

.site-header::before {
  content: "";
  position: absolute;
  width: 34rem;
  height: 34rem;
  right: -10rem;
  bottom: -19rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255,255,255,.025), 0 0 0 10rem rgba(255,255,255,.02);
}

.nav {
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.brand {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.nav-links a {
  font-size: .91rem;
  font-weight: 600;
  letter-spacing: .01em;
}

.pill-link,
.nav-links .pill-link.active {
  color: var(--primary-dark);
  background: var(--accent);
  border-color: transparent;
}

.hero-content {
  min-height: calc(100vh - 88px);
  align-items: center;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  padding: 5rem 0;
}

.hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(3.1rem, 6.2vw, 6.2rem);
  line-height: .96;
  letter-spacing: -.035em;
}

.hero-copy .lead {
  max-width: 58ch;
  font-size: 1.12rem;
}

.eyebrow {
  color: var(--primary);
  font-size: .72rem;
  letter-spacing: .2em;
}

.site-header .eyebrow,
.hero-card .eyebrow {
  color: var(--accent);
}

.hero-card {
  padding: 1.65rem;
  background: rgba(248, 251, 246, .11);
  color: #fff;
  border-color: rgba(255,255,255,.18);
  box-shadow: none;
}

.hero-card p {
  color: rgba(255,255,255,.76);
  margin-bottom: 0;
}

.hero-card h3 { color: #fff; font-size: 1.35rem; }
.card-meta { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: .75rem; }
.card-label { font-weight: 700; }
.status-badge { padding: .35rem .7rem; border-radius: 999px; color: var(--primary-dark); background: var(--accent); font-size: .76rem; font-weight: 700; }

.btn {
  min-height: 3.15rem;
  padding-inline: 1.4rem;
  border-radius: .75rem;
  font-weight: 700;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  box-shadow: 0 16px 34px rgba(10, 30, 19, .25);
}

.btn-primary:hover { background: #e1efaa; color: var(--primary-dark); }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.intro-grid { grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr); gap: 1.5rem; }
.compact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 1.5rem; }
.four-column-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.intro-panel,
.side-card,
.card,
.feature-card,
.page-card,
.summary-card,
.cta-card {
  border-radius: 1.15rem;
  border: 1px solid rgba(23, 32, 25, .09);
  box-shadow: var(--shadow-soft);
}

.intro-panel { padding: clamp(1.75rem, 4vw, 3.25rem); }
.intro-panel h2 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.05; max-width: 18ch; }
.side-card { padding: 2rem; background: var(--primary-dark); color: #fff; }
.side-card h3 { color: #fff; font-size: 1.4rem; }
.side-card p, .side-card li { color: rgba(255,255,255,.72); }
.side-card .eyebrow { color: var(--accent); }

.feature-card,
.card { height: 100%; transition: transform .2s ease, box-shadow .2s ease; }
.feature-card:hover,
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card { border-top: 3px solid var(--accent); }

.check-list { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: .75rem; }
.check-list li { position: relative; padding-left: 1.65rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

.section-muted { background: #e9eee7; }
.cta-card { color: #fff; background: var(--primary-dark); border: 0; }
.cta-card h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.3rem); }
.cta-card p { color: rgba(255,255,255,.72); }
.cta-card .eyebrow { color: var(--accent); }

.page-hero { padding: 5rem 0 4.5rem; }
.page-title h1 { max-width: 16ch; font-size: clamp(2.8rem, 6vw, 5.4rem); line-height: 1; }
.page-card { padding: clamp(1.5rem, 3vw, 2.5rem); }
.page-card h2 { font-family: "Manrope", sans-serif; font-size: 2rem; font-weight: 700; }
.activity-card { border-radius: 1rem; background: #fff; box-shadow: 0 10px 30px rgba(22,60,39,.08); }
.activity-card img { height: 260px; transition: transform .5s ease; }
.activity-card:hover img { transform: scale(1.025); }
.activity-card a { color: var(--primary); font-weight: 700; }

.field-grid input,
.field-grid textarea,
.room-field input,
.option-card input,
.field-grid select {
  border: 1px solid #ccd5ce;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field-grid input:focus,
.field-grid textarea:focus,
.room-field input:focus,
.field-grid select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(40,91,59,.13);
}

.footer { background: #0d2417; }
.footer h3 { color: #fff; font-size: 1.25rem; }

@media (max-width: 1000px) {
  .four-column-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 700px) {
  .hero-copy h1 { font-size: clamp(2.75rem, 14vw, 4.2rem); }
  .hero-content { min-height: auto; padding: 3.5rem 0 4.5rem; }
  .compact-grid,
  .four-column-grid { grid-template-columns: 1fr; }
  .nav-links { left: 1rem; right: 1rem; top: 4.8rem; }
  .page-title h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .field-grid,
  .room-grid,
  .option-grid { grid-template-columns: 1fr; }
}



/* Ruhigeres Layout: weniger Karten, kleinere Radien, gleiche Höhen */
:root {
  --radius-small: 0.25rem;
  --radius-medium: 0.5rem;
  --radius-large: 0.75rem;
}

.intro-grid,
.feature-grid,
.card-grid,
.page-grid,
.activity-grid,
.booking-layout,
.room-grid,
.option-grid,
.footer-grid {
  align-items: stretch;
}

.intro-grid > *,
.feature-grid > *,
.card-grid > *,
.page-grid > *,
.activity-grid > *,
.room-grid > *,
.option-grid > * {
  min-width: 0;
  height: 100%;
}

.intro-panel,
.side-card,
.card,
.feature-card,
.page-card,
.summary-card,
.cta-card,
.hero-card,
.activity-card,
.room-field,
.option-card,
.notice,
.calendar-embed,
.summary-price,
.field-grid input,
.field-grid textarea,
.room-field input,
.field-grid select {
  border-radius: var(--radius-medium);
}

/* Startseiten-Einleitung als offene Editorial-Fläche */
.intro-grid {
  gap: clamp(2.5rem, 6vw, 6.5rem);
}

.intro-panel {
  height: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.compact-grid {
  gap: 0;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.compact-grid > div + div {
  border-left: 1px solid var(--border);
}

.feature-card {
  padding: 1.5rem 1.75rem 1.5rem 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.compact-grid > div + div .feature-card {
  padding-left: 1.75rem;
}

.feature-card:hover {
  transform: none;
  box-shadow: none;
}

.side-card {
  height: 100%;
  border-radius: var(--radius-large);
  box-shadow: 0 22px 55px rgba(22, 60, 39, 0.14);
}

/* Leistungen als Raster mit Linien statt einzelner Boxen */
.four-column-grid {
  gap: 0;
  border-top: 1px solid rgba(23, 32, 25, 0.16);
  border-bottom: 1px solid rgba(23, 32, 25, 0.16);
}

.four-column-grid > div + div {
  border-left: 1px solid rgba(23, 32, 25, 0.16);
}

.four-column-grid .card {
  min-height: 100%;
  padding: 2rem clamp(1.25rem, 2.4vw, 2.25rem);
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.four-column-grid .card::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 0.22rem;
  margin-bottom: 1.5rem;
  background: var(--primary);
}

.four-column-grid .card:hover {
  transform: none;
  box-shadow: none;
  background: rgba(255,255,255,.28);
}

/* Gleich hohe Inhalts- und Medienbereiche */
.page-grid > .page-card,
.activity-card,
.room-field,
.option-card {
  height: 100%;
}

.activity-card-body {
  flex: 1;
}

.page-card {
  border-radius: var(--radius-medium);
}

.cta-card {
  border-radius: var(--radius-large);
}

@media (max-width: 1000px) {
  .four-column-grid > div:nth-child(3) {
    border-left: 0;
  }
  .four-column-grid > div:nth-child(n + 3) {
    border-top: 1px solid rgba(23, 32, 25, 0.16);
  }
}

@media (max-width: 700px) {
  .intro-grid { gap: 2.5rem; }
  .compact-grid > div + div,
  .four-column-grid > div + div {
    border-left: 0;
  }
  .compact-grid > div + div {
    border-top: 1px solid var(--border);
  }
  .compact-grid > div + div .feature-card {
    padding-left: 0;
  }
  .four-column-grid > div:nth-child(n + 2) {
    border-top: 1px solid rgba(23, 32, 25, 0.16);
  }
}

/* Unterseiten: Inhalte durch Rhythmus und Trennlinien statt Karten gliedern */
main > .page-grid {
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

main > .page-grid > .page-card {
  padding: clamp(1.75rem, 4vw, 3rem);
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

main > .page-grid > .page-card + .page-card {
  border-left: 1px solid var(--border);
}

.activity-section {
  padding-inline: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.booking-form > .page-card {
  padding: 0 0 2.5rem;
  margin-bottom: 1.5rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  box-shadow: none;
  backdrop-filter: none;
}

.booking-summary .summary-card + .summary-card {
  border-top: 3px solid var(--accent);
}

@media (max-width: 700px) {
  main > .page-grid > .page-card + .page-card {
    border-left: 0;
    border-top: 1px solid var(--border);
  }
}

/* Rechtliche Seiten */
.legal-hero { padding-block: 4rem 3.5rem; }
.legal-hero .page-title h1 { max-width: none; }
.legal-layout { display: grid; grid-template-columns: minmax(0, 820px); justify-content: center; }
.legal-content { color: var(--text); }
.legal-content > section, .legal-content > h2 { margin-top: 3.5rem; }
.legal-content > section:first-child, .legal-content > h2:first-child { margin-top: 0; }
.legal-content section + section, .legal-content > h2 { padding-top: 2.25rem; border-top: 1px solid var(--border); }
.legal-content h2 { margin-bottom: 1.25rem; font-size: clamp(1.6rem, 3vw, 2.15rem); line-height: 1.2; font-weight: 700; }
.legal-content h3 { margin: 2rem 0 .65rem; font-size: 1.18rem; line-height: 1.35; font-weight: 700; }
.legal-content h4 { margin: 1.4rem 0 .45rem; font-size: 1rem; line-height: 1.45; font-weight: 700; }
.legal-content p, .legal-content li, .legal-content dd { color: var(--muted); }
.legal-content p { margin-bottom: 1rem; }
.legal-content ul { margin: 1rem 0 1.5rem; padding-left: 1.25rem; }
.legal-content li + li { margin-top: .55rem; }
.legal-content a { color: var(--primary); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(40,91,59,.28); text-underline-offset: .18em; }
.legal-data { margin-top: 1.5rem; border-top: 1px solid var(--border); }
.legal-data > div { display: grid; grid-template-columns: minmax(150px,.65fr) 1.35fr; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--border); }
.legal-data dt { font-weight: 700; }
.legal-data dd { margin: 0; }
.legal-source { margin-top: 2rem; font-size: .88rem; }
@media (max-width: 700px) { .legal-data > div { grid-template-columns: 1fr; gap: .2rem; } .legal-content h2 { overflow-wrap: anywhere; } }

/* Standort und seitenweiter Scroll-to-top */
.location-section {
  padding: 0 0 clamp(4rem, 8vw, 7rem);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  align-items: stretch;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.location-copy {
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 4rem) clamp(2rem, 5vw, 4.5rem) 0;
}

.location-copy h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -.035em;
}

.location-copy p,
.location-copy address {
  max-width: 46ch;
  color: var(--muted);
}

.location-copy address {
  margin: 1.75rem 0;
  padding-left: 1.15rem;
  border-left: 3px solid var(--accent);
  font-style: normal;
}

.location-link {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  color: var(--primary);
  font-weight: 700;
  border-bottom: 1px solid rgba(40,91,59,.3);
}

.map-frame {
  min-height: 480px;
  border-left: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface-soft);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  filter: saturate(.78) contrast(.96);
}

.scroll-top {
  position: fixed;
  z-index: 50;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  place-items: center;
  color: #fff;
  background: var(--primary-dark);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-medium);
  box-shadow: 0 12px 30px rgba(13,36,23,.24);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(.75rem);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background-color .2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
  background: var(--primary);
}

.scroll-top:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.scroll-top svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 800px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-copy { padding-right: 0; }
  .map-frame { min-height: 390px; border-top: 1px solid var(--border); border-left: 0; }
  .map-frame iframe { min-height: 390px; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top { transition: none; }
}

/* Virtueller Matterport-Rundgang */
.tour-section {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
}

.tour-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .75fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: 2rem;
}

.tour-intro h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 700;
}

.tour-intro > p {
  margin: 0;
  color: var(--muted);
}

.tour-embed {
  position: relative;
  min-height: clamp(440px, 65vw, 700px);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(12,37,23,.96), rgba(27,70,44,.78)),
    url("assets/images/waldresidenz-aussen.jpg") center/cover;
  border-radius: var(--radius-medium);
}

.tour-consent {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: #fff;
  text-align: center;
}

.tour-consent[hidden] { display: none; }

.tour-consent h3 {
  margin: 1rem 0 .75rem;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
}

.tour-consent p {
  max-width: 58ch;
  margin: 0 0 1.5rem;
  color: rgba(255,255,255,.72);
}

.tour-consent > a {
  margin-top: 1rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: .2em;
}

.tour-icon {
  display: grid;
  width: 4.25rem;
  height: 4.25rem;
  place-items: center;
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: 50%;
}

.tour-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: currentColor;
}

.tour-embed iframe {
  display: block;
  width: 100%;
  height: clamp(440px, 65vw, 700px);
  border: 0;
  background: #111;
}

.tour-embed iframe[hidden] { display: none; }

@media (max-width: 700px) {
  .tour-intro { grid-template-columns: 1fr; gap: 1.25rem; }
  .tour-embed, .tour-embed iframe { min-height: 500px; height: 500px; }
}

/* Einwilligungsverwaltung und blockierte externe Medien */
.external-placeholder {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, rgba(13,36,23,.97), rgba(40,91,59,.9));
}

.external-placeholder[hidden],
.map-frame iframe[hidden] { display: none; }
.external-placeholder h3 { margin: .85rem 0 .5rem; color: #fff; font-size: 1.5rem; font-weight: 700; }
.external-placeholder p { max-width: 42ch; margin: 0 0 1.25rem; color: rgba(255,255,255,.75); }
.external-placeholder > a { margin-top: .9rem; color: rgba(255,255,255,.85); font-size: .88rem; font-weight: 600; text-decoration: underline; text-underline-offset: .2em; }
.external-icon { display: grid; width: 3.5rem; height: 3.5rem; place-items: center; color: var(--primary-dark); background: var(--accent); border-radius: 50%; font-size: 1.75rem; font-weight: 700; }
.map-frame { position: relative; }

.consent-banner {
  position: fixed;
  z-index: 1000;
  inset: auto 1rem 1rem;
  color: var(--text);
}

.consent-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255,255,255,.98);
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  box-shadow: 0 24px 80px rgba(13,36,23,.28);
}

.consent-copy { max-width: 75ch; }
.consent-copy .eyebrow { margin-bottom: .4rem; }
.consent-copy h2 { margin: 0 0 .65rem; font-size: clamp(1.35rem, 3vw, 2rem); line-height: 1.15; font-weight: 700; }
.consent-copy > p { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.6; }
.consent-links { margin-top: .55rem !important; }
.consent-links a { color: var(--primary); font-weight: 600; text-decoration: underline; text-underline-offset: .18em; }

.consent-settings { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 1.25rem; background: var(--border); border: 1px solid var(--border); }
.consent-settings[hidden] { display: none; }
.consent-option { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem; background: #fff; cursor: pointer; }
.consent-option span { display: grid; gap: .2rem; }
.consent-option small { color: var(--muted); font-size: .78rem; }
.consent-option input { width: 1.15rem; height: 1.15rem; accent-color: var(--primary); }
.consent-option.is-required { cursor: default; }

.consent-actions { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.25rem; }
.consent-button { min-height: 2.8rem; padding: .7rem 1.05rem; border: 1px solid var(--primary-dark); border-radius: var(--radius-small); font: inherit; font-size: .88rem; font-weight: 700; cursor: pointer; }
.consent-accept { color: #fff; background: var(--primary-dark); }
.consent-reject { color: var(--primary-dark); background: #fff; }
.consent-customize { color: var(--primary); background: transparent; border-color: transparent; }
.consent-button:hover, .consent-button:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.consent-settings-link { padding: 0; color: rgba(255,255,255,.78); background: transparent; border: 0; font: inherit; font-size: .9rem; text-decoration: underline; text-underline-offset: .18em; cursor: pointer; }
.consent-settings-link:hover, .consent-settings-link:focus-visible { color: #fff; }

@media (max-width: 700px) {
  .consent-banner { inset: auto .5rem .5rem; }
  .consent-inner { max-height: calc(100vh - 1rem); overflow-y: auto; }
  .consent-settings { grid-template-columns: 1fr; }
  .consent-actions { display: grid; }
  .consent-button { width: 100%; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}


.external-embed { position: relative; }
.calendar-embed iframe[hidden] { display: none; }


/* Sicheres Buchungsformular */
.honeypot-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.privacy-confirmation {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}

.privacy-confirmation input {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: .18rem;
  accent-color: var(--primary);
}

.privacy-confirmation a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: .18em;
}

.booking-form button:disabled {
  cursor: wait;
  opacity: .65;
  transform: none;
}

/* Buchungsanfrage — vollständiges Redesign */
.booking-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(2.5rem, 6vw, 6rem);
}

.booking-form-redesign {
  display: block;
}

.booking-form-intro {
  padding: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  background: var(--primary-dark);
  border-radius: var(--radius-large);
}

.booking-form-intro .eyebrow { color: var(--accent); }
.booking-form-intro h2 { max-width: 14ch; margin: 0; color: #fff; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.03; letter-spacing: -.035em; font-weight: 700; }
.booking-form-intro > p:not(.eyebrow) { max-width: 58ch; margin: 1rem 0 0; color: rgba(255,255,255,.7); }

.booking-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 2.5rem 0 0;
  padding: 1.25rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.18);
}

.booking-progress li { display: grid; gap: .2rem; color: rgba(255,255,255,.62); font-size: .78rem; font-weight: 600; }
.booking-progress li span { color: var(--accent); font-size: .72rem; letter-spacing: .1em; }

.booking-step {
  padding: clamp(2.75rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--border);
}

.booking-step-header {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 2rem;
}

.step-number {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  color: var(--primary-dark);
  background: var(--accent);
  border-radius: var(--radius-small);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.step-kicker { margin: 0 0 .2rem; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.booking-step-header h2 { margin: 0; font-size: clamp(1.55rem, 3vw, 2.15rem); line-height: 1.15; font-weight: 700; }

.field-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.form-control { display: grid; gap: .55rem; color: var(--text); font-weight: 600; }
.form-control > span { font-size: .86rem; }
.form-control em { color: #a04c38; font-style: normal; }

.booking-form-redesign .form-control input,
.booking-form-redesign .form-control textarea,
.booking-form-redesign .room-selector input,
.booking-form-redesign .pet-option input {
  width: 100%;
  min-height: 3.35rem;
  margin: 0;
  padding: .82rem 1rem;
  color: var(--text);
  background: #fff;
  border: 1px solid #cbd4cd;
  border-radius: var(--radius-small);
  font: inherit;
  font-weight: 500;
}

.booking-form-redesign textarea { resize: vertical; }
.booking-form-redesign input:hover,
.booking-form-redesign textarea:hover { border-color: #9eaca2; }
.booking-form-redesign input:focus,
.booking-form-redesign textarea:focus { outline: 3px solid rgba(40,91,59,.13); outline-offset: 0; border-color: var(--primary); }

.room-selector-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; padding: 1px; background: var(--border); }
.booking-form-redesign .room-selector { display: grid; grid-template-columns: 1fr 6.5rem; gap: .3rem 1rem; align-items: center; padding: 1.4rem; background: var(--bg-accent); border: 0; border-radius: 0; }
.room-selector .room-title { align-self: end; font-weight: 700; }
.room-selector > small { grid-column: 1; color: var(--muted); font-size: .76rem; }
.booking-form-redesign .room-selector input { grid-column: 2; grid-row: 1 / span 2; text-align: center; font-size: 1.05rem; }
.room-selector .helper-text { grid-column: 1 / -1; margin-top: .4rem; color: var(--primary); }
.booking-form-redesign .room-total { color: #fff; background: var(--primary-dark); }
.room-total > small, .room-total .helper-text { color: rgba(255,255,255,.65); }
.room-total input { color: #fff !important; background: rgba(255,255,255,.1) !important; border-color: rgba(255,255,255,.18) !important; }
.inline-notice { margin-top: 1rem; border-radius: var(--radius-small); }

.option-selector-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.booking-form-redesign .option-card { min-width: 0; padding: 1.15rem; background: transparent; border: 1px solid var(--border); border-radius: var(--radius-small); }
.booking-form-redesign .option-card legend,
.booking-form-redesign .pet-option .room-title { padding: 0; color: var(--text); font-weight: 700; }
.booking-form-redesign .option-options { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem; margin-top: .8rem; padding: .25rem; background: var(--surface-soft); }
.booking-form-redesign .option-options label { cursor: pointer; }
.booking-form-redesign .option-options input { position: absolute; opacity: 0; pointer-events: none; }
.booking-form-redesign .option-options span { display: grid; min-height: 2.4rem; place-items: center; color: var(--muted); border-radius: var(--radius-small); font-size: .82rem; font-weight: 700; transition: background-color .15s ease, color .15s ease, box-shadow .15s ease; }
.booking-form-redesign .option-options input:checked + span { color: #fff; background: var(--primary); box-shadow: 0 4px 12px rgba(40,91,59,.16); }
.booking-form-redesign .option-options input:focus-visible + span { outline: 3px solid var(--accent); }
.booking-form-redesign .pet-option { display: block; }
.booking-form-redesign .pet-count { display: grid; grid-template-columns: 1fr 6rem; gap: 1rem; align-items: center; margin-top: .8rem; color: var(--muted); font-size: .82rem; font-weight: 700; }
.booking-form-redesign .pet-option input { min-height: 2.9rem; text-align: center; }

.booking-submit-area { padding-top: 2.5rem; }
.submit-row { display: flex; align-items: center; gap: 1.25rem; margin-top: 1.5rem; }
.booking-submit { flex: 0 0 auto; gap: 1rem; min-height: 3.5rem; padding-inline: 1.4rem; }
.submit-row > p { max-width: 34ch; margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.5; }

.booking-summary { gap: 1.5rem; top: 1.5rem; }
.booking-price-card { overflow: hidden; padding: 1.65rem; border: 0; border-radius: var(--radius-large); background: #fff; box-shadow: 0 18px 55px rgba(22,60,39,.12); }
.summary-topline { display: flex; justify-content: space-between; align-items: center; }
.summary-topline .eyebrow { margin: 0; }
.summary-topline > span { padding: .25rem .5rem; color: var(--primary); background: var(--surface-soft); border-radius: var(--radius-small); font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.booking-price-card h2 { margin: .75rem 0 .25rem; font-size: 1.7rem; }
.summary-intro { margin: 0; color: var(--muted); font-size: .86rem; }
.booking-price-card .summary-price { display: grid; gap: .3rem; margin: 1.5rem -1.65rem 1.25rem; padding: 1.4rem 1.65rem; border-radius: 0; background: var(--primary-dark); }
.booking-price-card .summary-price span { color: rgba(255,255,255,.62); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.booking-price-card .summary-price strong { color: #fff; font-size: clamp(1.8rem, 4vw, 2.45rem); line-height: 1; }
.booking-price-card .price-list { gap: 0; }
.booking-price-card .price-list li { padding: .65rem 0; border-bottom: 1px solid var(--border); font-size: .8rem; line-height: 1.45; }
.booking-price-card .summary-footnote { margin: 1.25rem 0 0; font-size: .75rem; }

.booking-help { padding: 1.5rem 0 0 1.5rem; border-left: 3px solid var(--accent); }
.booking-help .eyebrow { margin-bottom: .5rem; }
.booking-help h3 { margin: 0 0 .6rem; font-size: 1.15rem; }
.booking-help p { color: var(--muted); font-size: .85rem; }
.booking-help a { display: block; margin-top: .35rem; color: var(--primary); font-size: .86rem; font-weight: 700; }

@media (max-width: 1050px) {
  .booking-layout { grid-template-columns: 1fr; }
  .booking-summary { position: static; grid-template-columns: minmax(0,1fr) minmax(260px,.55fr); align-items: start; }
}

@media (max-width: 700px) {
  .booking-form-intro { padding: 1.5rem; }
  .booking-progress { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .booking-step-header { grid-template-columns: 2.6rem 1fr; }
  .field-grid-three, .room-selector-grid, .option-selector-grid { grid-template-columns: 1fr; }
  .booking-form-redesign .room-selector { grid-template-columns: 1fr 5.5rem; }
  .submit-row { align-items: stretch; flex-direction: column; }
  .booking-submit { width: 100%; }
  .booking-summary { grid-template-columns: 1fr; }
}

/* Buchungszeiträume und Datumsprüfung */
.booking-period-feedback { margin-top: 1.25rem; }
.period-status { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 1.1rem; background: var(--surface-soft); border-left: 3px solid var(--primary); }
.period-status strong { color: var(--primary-dark); font-size: .88rem; }
.period-status span { color: var(--muted); font-size: .8rem; text-align: right; }
.booking-period-feedback .notice { margin-top: .75rem; margin-bottom: 0; border-radius: var(--radius-small); font-size: .86rem; }
@media (max-width: 600px) { .period-status { align-items: flex-start; flex-direction: column; } .period-status span { text-align: left; } }

/* Erklärung der Buchungszeiträume */
.booking-period-explanation { margin-top: 1.25rem; padding: clamp(1.5rem, 4vw, 2.25rem); background: #edf2e9; border-left: 4px solid var(--primary); }
.period-explanation-heading { display: flex; align-items: center; gap: 1rem; }
.period-explanation-heading .eyebrow { margin: 0 0 .2rem; }
.period-explanation-heading h2 { margin: 0; font-size: clamp(1.3rem, 2.5vw, 1.75rem); line-height: 1.2; font-weight: 700; }
.period-info-icon { display: grid; flex: 0 0 auto; width: 2.5rem; height: 2.5rem; place-items: center; color: #fff; background: var(--primary); border-radius: 50%; font-weight: 800; }
.period-explanation-content { margin: 1.25rem 0 0 3.5rem; }
.period-explanation-content > p { max-width: 75ch; margin: 0; color: var(--muted); }
.period-explanation-content > p + p { margin-top: 1rem; }
.period-examples { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; max-width: 620px; margin: 1.25rem 0; }
.period-examples > div { display: grid; grid-template-columns: auto 1fr auto; gap: .7rem; align-items: center; padding: .8rem 1rem; background: rgba(255,255,255,.75); }
.period-examples span { color: var(--primary-dark); font-size: .78rem; font-weight: 800; }
.period-examples strong { grid-column: 1 / -1; color: var(--muted); font-size: .72rem; font-weight: 700; }
.period-line { height: 1px; background: var(--primary); }
.period-price-note { padding: 1rem 1.1rem; color: var(--primary-dark) !important; background: rgba(213,230,146,.38); }
@media (max-width: 700px) { .period-explanation-content { margin-left: 0; } .period-examples { grid-template-columns: 1fr; } }

/* Verbesserte Lesbarkeit und höhere Textkontraste */
:root {
  --muted: #4f5d54;
}

p,
li,
small,
.helper-text,
.form-note,
.summary-footnote,
.summary-intro,
.booking-help p,
.period-explanation-content > p,
.period-status span,
.submit-row > p,
.option-card small,
.room-selector > small,
.pet-option small {
  color: #4f5d54;
}

.intro-panel p,
.card p,
.feature-card p,
.page-card p,
.activity-card p {
  color: #4f5d54;
}

.side-card p,
.side-card li,
.hero-card p,
.site-header .lead,
.booking-form-intro > p:not(.eyebrow),
.tour-consent p,
.external-placeholder p {
  color: rgba(255, 255, 255, .88);
}

.footer,
.footer p,
.footer-bottom,
.footer a,
.consent-settings-link {
  color: rgba(255, 255, 255, .9);
}

.room-total > small,
.room-total .helper-text,
.booking-price-card .summary-price span {
  color: rgba(255, 255, 255, .86);
}

.booking-price-card .price-list li,
.booking-price-card .summary-footnote,
.booking-help p,
.privacy-confirmation,
.consent-copy > p,
.consent-option small {
  color: #4a584f;
}

.field-grid label,
.room-title,
.option-card legend,
.form-control > span {
  color: #172019;
}

.notice-warning {
  color: #704600;
  background: #fff1d6;
  border-color: #d6a74f;
}

.notice-success {
  color: #1c4a29;
  background: #e4f4e7;
  border-color: #82b98b;
}

.location-copy p,
.location-copy address,
.legal-content p,
.legal-content li,
.legal-content dd {
  color: #4f5d54;
}

.hero-highlights li { color: rgba(255, 255, 255, .94); }
.cta-card p { color: rgba(255, 255, 255, .88); }
.tour-consent > a, .external-placeholder > a { color: rgba(255, 255, 255, .94); }


/* Kontrastkorrektur für hervorgehobene Texte der Buchungszeiträume */
.booking-period-explanation strong,
.period-explanation-content strong,
.period-price-note strong {
  color: #172019 !important;
  font-weight: 800;
}

.period-price-note,
.period-price-note p {
  color: #263d2d !important;
}

/* Gemeinsame Adresszeile im Kontaktformular */
.address-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(90px, .55fr) minmax(0, 1.2fr);
  gap: 1rem;
}

@media (max-width: 700px) {
  .address-row {
    grid-template-columns: 1fr;
  }
}

/* Highlight-Liste auf der Hausseite */
.detail-highlight-list {
  margin: 1.25rem 0 0 !important;
  padding: 0 !important;
  list-style: none;
  border-top: 1px solid var(--border);
}

.detail-highlight-list li {
  position: relative;
  margin: 0;
  padding: 1rem 0 1rem 2.25rem;
  color: #26352b;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}

.detail-highlight-list li::before {
  content: "✓";
  position: absolute;
  top: 1rem;
  left: 0;
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 800;
}


/* Unterhaltungsangebote auf der Hausseite */
.entertainment-section {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
}

.entertainment-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: 2.5rem;
}

.entertainment-intro h2 {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  line-height: 1.03;
  letter-spacing: -.035em;
  font-weight: 700;
}

.entertainment-intro > p {
  margin: 0;
  color: #4f5d54;
}

.entertainment-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.entertainment-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 5.5rem;
  padding: 1rem 1.25rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.entertainment-list li:not(:nth-child(3n + 1)) {
  border-left: 1px solid var(--border);
}

.entertainment-list li:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.entertainment-list li span {
  color: var(--primary);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.entertainment-list li strong {
  color: #172019;
  font-size: 1.05rem;
  font-weight: 700;
}

.pool-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1.35rem 1.5rem;
  color: #fff;
  background: var(--primary-dark);
  border-radius: var(--radius-medium);
}

.pool-note-icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  color: var(--primary-dark);
  background: var(--accent);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
}

.pool-note strong { color: #fff; }
.pool-note p { margin: .2rem 0 0; color: rgba(255,255,255,.84); font-size: .86rem; }
.pool-note a { color: var(--accent); font-size: .84rem; font-weight: 700; white-space: nowrap; }

@media (max-width: 800px) {
  .entertainment-intro { grid-template-columns: 1fr; gap: 1.25rem; }
  .entertainment-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .entertainment-list li:not(:nth-child(3n + 1)) { border-left: 0; }
  .entertainment-list li:nth-child(even) { border-left: 1px solid var(--border); }
  .entertainment-list li:nth-last-child(-n + 3) { border-bottom: 1px solid var(--border); }
  .entertainment-list li:nth-last-child(-n + 2) { border-bottom: 0; }
  .pool-note { grid-template-columns: auto 1fr; }
  .pool-note a { grid-column: 2; }
}

@media (max-width: 520px) {
  .entertainment-list { grid-template-columns: 1fr; }
  .entertainment-list li:nth-child(even) { border-left: 0; }
  .entertainment-list li:nth-last-child(2) { border-bottom: 1px solid var(--border); }
  .pool-note { grid-template-columns: 1fr; }
  .pool-note a { grid-column: 1; }
}

/* Regionaler Freizeitführer */
.excursion-guide {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--border);
}

.excursion-guide-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
}

.excursion-guide-intro h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: .98;
  letter-spacing: -.04em;
  font-weight: 700;
}

.excursion-guide-intro > p {
  margin: 0;
  color: #4f5d54;
}

.excursion-nav {
  position: sticky;
  z-index: 5;
  top: 0;
  display: flex;
  gap: .5rem;
  margin: 3rem 0 0;
  padding: .75rem 0;
  overflow-x: auto;
  background: rgba(242,244,239,.94);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  scrollbar-width: thin;
}

.excursion-nav a {
  flex: 0 0 auto;
  padding: .65rem .9rem;
  color: var(--primary-dark);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  font-size: .8rem;
  font-weight: 700;
}

.excursion-nav a:hover,
.excursion-nav a:focus-visible {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.excursion-category {
  padding-top: clamp(4rem, 8vw, 6.5rem);
  scroll-margin-top: 5rem;
}

.excursion-category > header {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.excursion-category > header > span {
  color: var(--primary);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.excursion-category > header .eyebrow { margin: 0 0 .25rem; }
.excursion-category > header h3 { margin: 0; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.05; font-weight: 700; }

.excursion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.excursion-card {
  display: flex;
  min-width: 0;
  min-height: 24rem;
  padding: 1.5rem;
  flex-direction: column;
  background: rgba(255,255,255,.48);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background-color .2s ease, transform .2s ease;
}

.excursion-card:hover {
  z-index: 1;
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(22,60,39,.08);
}

.excursion-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.25rem;
  color: var(--primary);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.excursion-meta span:last-child {
  color: #69766d;
  text-align: right;
}

.excursion-card h4 {
  margin: 0 0 .85rem;
  color: #172019;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 700;
}

.excursion-card > p {
  margin: 0 0 1.5rem;
  color: #4f5d54;
  font-size: .9rem;
  line-height: 1.72;
}

.excursion-card footer {
  display: grid;
  gap: .65rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.excursion-card footer > span {
  color: #69766d;
  font-size: .72rem;
  font-weight: 600;
}

.excursion-card footer a {
  width: fit-content;
  color: var(--primary);
  font-size: .8rem;
  font-weight: 800;
  border-bottom: 1px solid rgba(40,91,59,.28);
}

.excursion-disclaimer {
  margin: 2rem 0 0;
  padding: 1rem 0;
  color: #5d695f;
  border-top: 1px solid var(--border);
  font-size: .78rem;
}

@media (max-width: 1000px) {
  .excursion-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .excursion-guide-intro { grid-template-columns: 1fr; gap: 1.25rem; }
  .excursion-nav { margin-top: 2rem; }
  .excursion-category > header { grid-template-columns: 2.5rem 1fr; }
  .excursion-grid { grid-template-columns: 1fr; }
  .excursion-card { min-height: 0; }
}

/* Verpflegungsseite und Partnerrestaurant */
.catering-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .72fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
}

.catering-lead h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: .98;
  letter-spacing: -.04em;
  font-weight: 700;
}

.catering-lead > p { margin: 0; color: #4f5d54; }

.catering-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.catering-paths article { min-height: 16rem; padding: 1.75rem; }
.catering-paths article + article { border-left: 1px solid var(--border); }
.catering-paths article > span { color: var(--primary); font-size: .7rem; font-weight: 800; letter-spacing: .14em; }
.catering-paths h3 { margin: 2.5rem 0 .7rem; color: #172019; font-size: 1.2rem; font-weight: 700; }
.catering-paths p { margin: 0; color: #4f5d54; font-size: .88rem; line-height: 1.7; }

.kitchen-section { padding: clamp(4rem, 8vw, 7rem) 0; background: #e9eee7; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.kitchen-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.kitchen-copy h2 { max-width: 14ch; margin: 0 0 1.25rem; font-size: clamp(2.2rem, 4.5vw, 4rem); line-height: 1.02; letter-spacing: -.035em; font-weight: 700; }
.kitchen-copy > p:last-child { max-width: 55ch; color: #4f5d54; }
.kitchen-equipment h3 { margin: 0 0 .75rem; color: #172019; font-size: 1.3rem; font-weight: 700; }

.partner-restaurant-panel { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); overflow: hidden; color: #fff; background: var(--primary-dark); border-radius: var(--radius-large); }
.partner-restaurant-main { padding: clamp(2rem, 5vw, 4rem); }
.partner-restaurant-main .eyebrow { color: var(--accent); }
.partner-restaurant-main h2 { max-width: 13ch; margin: 0; color: #fff; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1; letter-spacing: -.04em; font-weight: 700; }
.partner-claim { margin: 1rem 0 1.5rem !important; color: var(--accent) !important; font-size: 1.15rem; font-weight: 700; }
.partner-restaurant-main > p:not(.eyebrow):not(.partner-claim) { max-width: 62ch; color: rgba(255,255,255,.86); }
.partner-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-top: 2rem; }
.partner-actions .btn { gap: .65rem; }
.partner-secondary-link { color: #fff; font-size: .88rem; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.45); }
.partner-restaurant-details { display: flex; padding: clamp(2rem, 4vw, 3rem); flex-direction: column; justify-content: center; background: rgba(255,255,255,.07); border-left: 1px solid rgba(255,255,255,.15); }
.partner-restaurant-details > div { display: grid; gap: .35rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.partner-restaurant-details > div > span { color: var(--accent); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.partner-restaurant-details strong, .partner-restaurant-details a { color: #fff; font-size: .9rem; font-weight: 700; }
.partner-restaurant-details > p { margin: 1.5rem 0 0; color: rgba(255,255,255,.72); font-size: .75rem; line-height: 1.6; }

.catering-cta { display: flex; justify-content: space-between; align-items: center; gap: 2rem; margin-bottom: clamp(4rem, 8vw, 7rem); padding: 2.25rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.catering-cta .eyebrow { margin-bottom: .35rem; }
.catering-cta h2 { margin: 0; font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 700; }
.catering-cta p:last-child { margin: .5rem 0 0; color: #4f5d54; }

@media (max-width: 850px) {
  .catering-lead, .kitchen-layout, .partner-restaurant-panel { grid-template-columns: 1fr; }
  .partner-restaurant-details { border-top: 1px solid rgba(255,255,255,.15); border-left: 0; }
  .catering-paths { grid-template-columns: 1fr; }
  .catering-paths article { min-height: 0; }
  .catering-paths article + article { border-top: 1px solid var(--border); border-left: 0; }
}

@media (max-width: 650px) {
  .catering-cta { align-items: stretch; flex-direction: column; }
  .catering-cta .btn { width: 100%; }
}

/* Mitwandernde Kalkulation auf der Buchungsseite */
.booking-layout {
  align-items: start;
}

.booking-summary {
  align-self: start;
}

@media (min-width: 901px) {
  .booking-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  }

  .booking-summary {
    position: sticky;
    top: 1.25rem;
    max-height: calc(100vh - 2.5rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(40, 91, 59, .35) transparent;
  }

  .booking-summary::-webkit-scrollbar {
    width: 6px;
  }

  .booking-summary::-webkit-scrollbar-thumb {
    background: rgba(40, 91, 59, .35);
    border-radius: 3px;
  }
}

@media (max-width: 900px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
    max-height: none;
    overflow: visible;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr);
  }
}

@media (max-width: 700px) {
  .booking-summary {
    grid-template-columns: 1fr;
  }
}

/* Mobile Breitenkorrektur */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

main,
section,
header,
footer,
nav,
.container,
.booking-layout,
.booking-form,
.booking-summary,
.page-grid,
.intro-grid,
.location-grid,
.kitchen-layout,
.partner-restaurant-panel,
.excursion-guide,
.excursion-grid {
  min-width: 0;
  max-width: 100%;
}

input,
textarea,
select,
button,
iframe {
  max-width: 100%;
}

@media (max-width: 700px) {
  .container {
    width: calc(100% - 1rem);
    max-width: calc(100% - 1rem);
  }

  .booking-layout,
  .booking-form,
  .booking-step,
  .booking-summary,
  .field-grid,
  .address-row,
  .room-selector-grid,
  .option-selector-grid,
  .page-grid,
  .intro-grid {
    width: 100%;
    min-width: 0;
  }

  .booking-form-redesign .form-control,
  .booking-form-redesign .room-selector,
  .booking-form-redesign .option-card,
  .booking-form-redesign .pet-option {
    min-width: 0;
    max-width: 100%;
  }
}

/* Kompakte Sticky-Kalkulation auf Mobilgeräten */
@media (max-width: 900px) {
  main.container.section {
    overflow: visible;
  }

  .booking-layout {
    overflow: visible;
  }

  .booking-summary {
    position: sticky;
    z-index: 30;
    top: 0;
    order: -1;
    display: block;
    width: 100%;
    max-height: none;
    overflow: visible;
    padding: .45rem 0;
    background: rgba(242, 244, 239, .94);
    backdrop-filter: blur(12px);
  }

  .booking-help,
  .booking-price-card > h2,
  .booking-price-card .summary-intro,
  .booking-price-card .price-list,
  .booking-price-card .summary-footnote,
  .summary-topline > span {
    display: none;
  }

  .booking-price-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: .7rem .85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    box-shadow: 0 8px 24px rgba(22, 60, 39, .12);
  }

  .booking-price-card .summary-topline {
    display: block;
  }

  .booking-price-card .summary-topline .eyebrow {
    margin: 0;
    color: var(--primary);
    font-size: .65rem;
  }

  .booking-price-card .summary-price {
    display: grid;
    gap: .1rem;
    min-width: 8.5rem;
    margin: 0;
    padding: .55rem .75rem;
    border-radius: var(--radius-small);
    text-align: right;
  }

  .booking-price-card .summary-price span {
    font-size: .58rem;
  }

  .booking-price-card .summary-price strong {
    font-size: 1.25rem;
  }
}

@media (max-width: 420px) {
  .booking-price-card {
    gap: .5rem;
  }

  .booking-price-card .summary-price {
    min-width: 7.5rem;
  }
}

/* Verlässliches Responsive-Layout für Smartphones im Hochformat */
@media (max-width: 700px) {
  body {
    font-size: .96rem;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    overflow: visible;
  }

  .nav {
    min-height: 4.5rem;
    padding: .65rem 0;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 3.5rem);
    font-size: clamp(.92rem, 4vw, 1.1rem);
    line-height: 1.2;
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: grid;
    flex: 0 0 2.75rem;
    width: 2.75rem;
    height: 2.75rem;
    padding: .6rem;
    place-content: center;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: var(--radius-medium);
    background: rgba(8,18,12,.35);
  }

  .menu-toggle span {
    width: 1.4rem;
    margin: 3px 0;
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links,
  .nav-links.open {
    position: fixed;
    z-index: 1001;
    inset: 4.75rem .5rem auto;
    width: auto;
    max-height: calc(100dvh - 5.25rem);
    margin: 0;
    padding: .6rem;
    overflow-y: auto;
    align-items: stretch;
    gap: .2rem;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius-medium);
    background: #10281a;
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .nav-links .pill-link {
    display: flex;
    width: 100%;
    min-height: 2.9rem;
    padding: .72rem .85rem;
    align-items: center;
    border-radius: var(--radius-small);
    font-size: 1rem;
  }

  .hero-content {
    gap: 1.5rem;
    padding: 2.25rem 0 3rem;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.05rem, 9.5vw, 2.85rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .hero-copy .lead,
  .lead {
    font-size: 1rem;
    line-height: 1.6;
  }

  .page-hero,
  .legal-hero {
    padding: 2.5rem 0 2.25rem;
  }

  .page-title h1 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .section {
    padding: 3rem 0;
  }

  .section-intro h2,
  .intro-panel h2,
  .cta-card h2,
  .entertainment-intro h2,
  .excursion-guide-intro h2,
  .catering-lead h2,
  .kitchen-copy h2,
  .partner-restaurant-main h2 {
    max-width: none;
    font-size: clamp(1.75rem, 7.5vw, 2.35rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .page-card h2 {
    font-size: 1.55rem;
  }

  .hero-actions,
  .partner-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .partner-actions .btn {
    width: 100%;
  }

  .intro-panel,
  .side-card,
  .page-card,
  .summary-card,
  .booking-form-intro,
  .booking-step,
  .partner-restaurant-main,
  .partner-restaurant-details {
    padding: 1.25rem;
  }

  .booking-progress {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    z-index: 40;
  }

  .booking-price-card {
    min-width: 0;
  }
}

@media (max-width: 380px) {
  .container {
    width: calc(100% - .75rem);
    max-width: calc(100% - .75rem);
  }

  .brand {
    font-size: .88rem;
  }

  .hero-copy h1,
  .page-title h1 {
    font-size: 1.95rem;
  }

  .booking-price-card {
    grid-template-columns: minmax(0, 1fr) minmax(6.8rem, auto);
    padding: .55rem;
  }

  .booking-price-card .summary-price {
    min-width: 0;
    padding: .5rem;
  }
}
/* Finale Mobile-Kaskade: spätere Desktop-Regeln dürfen das Hochformat nicht überschreiben */
@media (max-width: 700px) {
  body.menu-open .site-header {
    position: relative;
    z-index: 2000;
  }

  body.menu-open .nav {
    z-index: 2002;
  }

  body.menu-open .nav-links {
    z-index: 2003;
  }

  body.menu-open .menu-toggle {
    z-index: 2004;
  }

  .hero-home {
    min-height: 0;
  }

  .hero-content,
  .intro-grid,
  .page-grid,
  .feature-grid,
  .card-grid,
  .footer-grid,
  .location-grid,
  .tour-intro,
  .entertainment-intro,
  .excursion-guide-intro,
  .catering-lead,
  .kitchen-layout,
  .partner-restaurant-panel,
  .booking-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-content {
    min-height: 0;
    align-items: start;
  }

  .hero-copy,
  .hero-side-panel,
  .intro-grid > *,
  .page-grid > *,
  .footer-grid > * {
    width: 100%;
    min-width: 0;
  }

  .hero-highlights {
    align-items: flex-start;
    flex-direction: column;
    gap: .45rem;
  }

  .hero-side-panel {
    gap: .75rem;
  }

  .hero-card {
    padding: 1.1rem;
  }

  .hero-card h3 {
    font-size: 1.15rem;
  }

  .card-meta {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  main > .page-grid > .page-card + .page-card {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .map-frame,
  .map-frame iframe,
  .calendar-embed iframe,
  .tour-embed {
    min-height: 360px;
    height: min(70vh, 520px);
  }
}
/* Kontrast der dunklen Zimmer-Zusammenfassung */
.booking-form-redesign .room-total .room-title {
  color: #ffffff;
}
/* Zentrale Kontrastregel für hervorgehobene Texte */
body strong {
  color: #172019;
}

.site-header strong,
.hero-card strong,
.side-card strong,
.cta-card strong,
.booking-form-intro strong,
.room-total strong,
.booking-price-card .summary-price strong,
.tour-consent strong,
.external-placeholder strong,
.pool-note strong,
.partner-restaurant-panel strong,
.footer strong {
  color: inherit;
}
/* Lesbarer Buchungsbutton in der Navigation */
.nav-links .pill-link,
.nav-links .pill-link:hover,
.nav-links .pill-link:focus-visible,
.nav-links .pill-link.active {
  color: #163c27;
  background: var(--accent);
  border-color: transparent;
}
/* Heller Text auf der dunklen Preisfläche */
.booking-price-card .summary-price,
.booking-price-card .summary-price span,
.booking-price-card .summary-price strong {
  color: #ffffff;
}
/* Aktualitätshinweis zum virtuellen Rundgang */
.tour-age-notice {
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  color: #435047;
  background: #eef2e9;
  border-left: 3px solid var(--primary);
  font-size: .9rem;
  line-height: 1.65;
}

.tour-age-notice strong {
  color: #172019;
}
/* Bilder der Freizeitangebote und vollständige Lizenznachweise */
.excursion-card {
  --excursion-card-padding: clamp(1.4rem, 3vw, 2.1rem);
  padding: 0;
  overflow: hidden;
}

.excursion-card-media {
  position: relative;
  width: 100%;
  height: 13rem;
  margin: 0;
  overflow: hidden;
  background: var(--surface-soft);
}

.excursion-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(13, 36, 23, .16));
  pointer-events: none;
}

.excursion-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.excursion-card:hover .excursion-card-media img {
  transform: scale(1.025);
}

.excursion-card > .excursion-meta {
  margin: var(--excursion-card-padding) var(--excursion-card-padding) 2rem;
}

.excursion-card > h4 {
  margin: 0 var(--excursion-card-padding) .85rem;
}

.excursion-card > p {
  margin: 0 var(--excursion-card-padding) 1.5rem;
}

.excursion-card > footer {
  width: auto;
  margin: auto var(--excursion-card-padding) 0;
  padding-bottom: var(--excursion-card-padding);
}

.image-credits {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  color: #59665d;
  border-top: 1px solid var(--border);
  font-size: .68rem;
  line-height: 1.55;
}

.image-credits h2 {
  margin: 0 0 .4rem;
  color: #39463d;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.image-credits > p {
  max-width: 95ch;
  margin: 0 0 .8rem;
}

.image-credits ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .28rem 1.5rem;
  margin: 0;
  padding-left: 1rem;
}

.image-credits li {
  min-width: 0;
  overflow-wrap: anywhere;
}

.image-credits a {
  color: #315e40;
  text-decoration: underline;
  text-underline-offset: .12em;
}

.image-credits .credit-title {
  color: #39463d;
  font-weight: 700;
}

@media (max-width: 700px) {
  .excursion-card-media {
    height: 11.5rem;
  }

  .image-credits ul {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .excursion-card-media img {
    transition: none;
  }
}