/* ===================================================================
   Landhof Liebsch – Design System
   Navy #09355c · Terracotta #ae745a · Text #1c1c1c
   Playfair Display / Open Sans / Old Standard TT
   =================================================================== */

/* --- Lokale Schriften (latin-Subset, kein Google-CDN-Request) ------ */
@font-face {
  font-family: 'Old Standard TT';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/old-standard-tt-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Old Standard TT';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/old-standard-tt-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('../assets/fonts/open-sans.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../assets/fonts/playfair-display.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/playfair-display-italic.woff2') format('woff2');
}

/* --- Reset -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* --- Tokens ------------------------------------------------------- */
:root {
  --navy:        #09355c;
  --terra:       #ae745a;
  --terra-h:     #8f5c45;
  --text:        #1c1c1c;
  --muted:       #858585;
  --light:       #a5a5a5;
  --bg:          #ffffff;
  --bg-off:      #f8f8f8;
  --border:      #dadada;

  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Open Sans', system-ui, sans-serif;
  --num:    'Old Standard TT', Georgia, serif;

  --px:    30px;
  --maxw:  1280px;
  --gap-s: 94px;
}

/* --- Base --------------------------------------------------------- */
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 26px;
  color: var(--text);
  background: var(--bg);
}
a { color: var(--terra); text-decoration: none; }
a:hover { color: var(--terra-h); }

/* --- Type --------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  text-wrap: pretty;
}
.kicker {
  font-size: 14px;
  line-height: 1.42;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 14px;
}
.kicker-sm {
  font-size: 11px;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  color: var(--terra);
}
.price-num { font-family: var(--num); font-weight: 700; }

/* --- Layout ------------------------------------------------------- */
.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--px);
}

/* --- Buttons ------------------------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 13px 26px;
  border: 1px solid transparent;
  transition: opacity .15s;
}
.btn:hover { opacity: .85; }
.btn-terra  { background: var(--terra); color: #fff; }
.btn-navy   { background: var(--navy);  color: #fff; }
.btn-outline-white { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline-terra { border-color: var(--terra); color: var(--terra); }


/* ═══════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
}

/* Top strip */
.nav-strip {
  background: var(--navy);
  padding: 0 var(--px);
}
.nav-strip-inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 14px;
  line-height: 24px;
  color: #a9bccc;
}

/* Main bar */
.nav-main {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--px);
}
.nav-main-inner {
  max-width: var(--maxw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}
.nav-logo img { height: 62px; width: auto; }

/* Desktop links */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.nav-desktop a {
  color: var(--text);
  white-space: nowrap;
}
.nav-desktop a:hover { color: var(--terra); }
.nav-desktop a.active { color: var(--terra); }
.nav-cta {
  background: var(--terra);
  color: #fff !important;
  padding: 10px clamp(12px, 1.6vw, 20px);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--terra-h); opacity: 1; }

/* Mobile row */
.nav-mobile-row {
  display: none;
  align-items: center;
  gap: 12px;
}
.nav-cta-sm {
  background: var(--terra);
  color: #fff;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 9px 14px;
}
.nav-cta-sm:hover { color: #fff; }
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 8px;
  background: transparent;
  border: none;
}
.nav-hamburger span { width: 22px; height: 2px; background: var(--text); display: block; }

/* Mobile menu */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  padding: 6px 0 16px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  color: var(--text);
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 13px var(--px);
  border-bottom: 1px solid #f0f0f0;
}
.nav-mobile-menu a:last-child { border-bottom: none; color: var(--terra); }

@media (max-width: 820px) {
  .nav-desktop { display: none; }
  .nav-mobile-row { display: flex; }
  .nav-logo img { height: 42px; }
}


/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.footer {
  background: #1c1c1c;
  padding: 56px var(--px) 34px;
  margin-top: var(--gap-s);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 34px;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-logo img { height: 62px; width: auto; }
.footer-tagline {
  font-size: 10px;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  color: var(--terra);
  margin-top: 16px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  line-height: 24px;
  color: var(--light);
}
.footer-col-label {
  font-size: 11px;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  color: var(--terra);
}
.footer-col a { color: var(--light); }
.footer-col a:hover { color: #fff; }
.footer-bar {
  max-width: var(--maxw);
  margin-inline: auto;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  font-size: 14px;
  line-height: 24px;
  color: var(--muted);
}
.footer-bar a { color: var(--muted); }
.footer-bar a:hover { color: var(--light); }


/* ═══════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  min-height: 540px;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,28,28,.7) 0%, rgba(28,28,28,.28) 72%);
}
.hero-content {
  position: relative;
  padding: 76px var(--px) 116px;
  max-width: calc(660px + 2 * var(--px));
}
.hero-kicker {
  font-size: 14px;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  color: #fff;
  margin-bottom: 19px;
}
.hero-sub {
  font-size: 18px;
  line-height: 30px;
  color: #ececec;
  max-width: 500px;
}


/* ═══════════════════════════════════════════════════════════════════
   BOOKING WIDGET
   ═══════════════════════════════════════════════════════════════════ */
.booking-wrap {
  padding: 0 var(--px);
  margin-top: -60px;
  position: relative;
  z-index: 5;
}
.booking-widget {
  background: var(--bg);
  box-shadow: 0 10px 30px rgba(28,28,28,.1);
  border: 1px solid var(--border);
  max-width: var(--maxw);
  margin-inline: auto;
}
.booking-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border-bottom: 1px solid var(--border);
}
.booking-tab {
  text-align: left;
  border: none;
  border-bottom: 3px solid transparent;
  background: var(--bg-off);
  padding: 20px 24px;
  transition: all .15s;
}
.booking-tab.active {
  background: var(--bg);
  border-bottom-color: var(--terra);
}
.booking-tab-kicker {
  display: block;
  font-size: 12px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 6px;
}
.booking-tab.active .booking-tab-kicker { color: var(--terra); }
.booking-tab-label {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.2;
  color: var(--muted);
}
.booking-tab.active .booking-tab-label { color: var(--text); }

.booking-fields {
  padding: 28px 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  align-items: end;
}
.booking-field label {
  display: block;
  font-size: 12px;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 9px;
}
.booking-field input,
.booking-field select {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0 0 10px;
  font-size: 16px;
  color: var(--text);
  background: transparent;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.booking-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23858585' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px bottom 14px;
  padding-right: 20px;
  cursor: pointer;
}
.booking-cta-btn {
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 15px 20px;
  text-align: center;
  border: none;
  display: block;
  width: 100%;
  cursor: pointer;
}
.booking-cta-btn:hover { color: #fff; opacity: .88; }

.booking-status {
  margin: 0 30px 28px;
  padding-top: 20px;
  border-top: 1px solid #ececec;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  background: var(--bg-off);
  color: var(--muted);
  font-size: 14px;
  line-height: 24px;
  padding: 8px 16px;
}
.avail-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  background: var(--light);
}
.avail-hint { font-size: 13px; line-height: 22px; color: var(--light); }

.avail-green { background: #f2f6ec; border-color: #cbdcb6; color: #3f6127; }
.avail-green .avail-dot { background: #5c8a3a; }
.avail-amber { background: #fbf5e8; border-color: #e3d3ab; color: #7d5810; }
.avail-amber .avail-dot { background: #b07d1a; }
.avail-red   { background: #fbf0ee; border-color: #e3c3bd; color: #8f3b2e; }
.avail-red   .avail-dot { background: #c0392b; }


/* ═══════════════════════════════════════════════════════════════════
   TWO-UP FEATURE CARDS
   ═══════════════════════════════════════════════════════════════════ */
.feature-section {
  padding-top: 62px;
}
.two-up-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.two-up-card {
  position: relative;
  min-height: 360px;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.two-up-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,28,28,.1) 28%, rgba(28,28,28,.85) 100%);
}
.two-up-content { position: relative; padding: 32px 32px 34px; }
.two-up-badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text);
  background: #fff;
  padding: 6px 12px;
  margin-bottom: 14px;
  opacity: .8;
}
.two-up-content h2 { font-size: 30px; color: #fff; margin-bottom: 14px; }
.two-up-content p  { font-size: 16px; line-height: 26px; color: #ececec; margin-bottom: 22px; }


/* ═══════════════════════════════════════════════════════════════════
   ROOMS GRID
   ═══════════════════════════════════════════════════════════════════ */
.rooms-section {
  margin-top: var(--gap-s);
  padding: 0 var(--px);
  max-width: var(--maxw);
  margin-inline: auto;
}
.rooms-header {
  text-align: center;
  margin-bottom: 44px;
}
.rooms-header h2 { font-size: clamp(30px, 4vw, 48px); color: var(--text); margin-bottom: 19px; }
.rooms-header p  { font-size: 18px; line-height: 30px; color: var(--muted); max-width: 640px; margin-inline: auto; }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
}
.room-card { background: var(--bg); border: 1px solid var(--border); }
.room-img {
  aspect-ratio: 16/9;
  background-color: #ececec;
  background-size: cover;
  background-position: center;
}
.room-body  { padding: 26px 26px 28px; }
.room-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--terra);
  border: 1px solid var(--terra);
  padding: 4px 10px;
  margin-bottom: 16px;
}
.room-body h3 { font-size: 24px; color: var(--text); margin-bottom: 12px; }
.room-body p  { font-size: 16px; line-height: 26px; color: var(--muted); margin-bottom: 22px; }
.room-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.room-price { font-family: var(--num); font-size: 22px; font-weight: 700; color: var(--text); }
.room-cta   { font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; }

.rooms-more {
  text-align: center;
  margin-top: 38px;
}


/* ═══════════════════════════════════════════════════════════════════
   GRUPPEN DARK BAND
   ═══════════════════════════════════════════════════════════════════ */
.gruppen-dark {
  margin-top: var(--gap-s);
  background: var(--navy);
  padding: 60px var(--px);
}
.gruppen-dark-inner {
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}
.gruppen-dark .kicker { color: var(--terra); }
.gruppen-dark h2 { font-size: clamp(26px, 3.5vw, 40px); color: #fff; margin-bottom: 19px; }
.gruppen-dark p  { font-size: 18px; line-height: 30px; color: #a9bccc; }
.gruppen-dark-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }


/* ═══════════════════════════════════════════════════════════════════
   MAP
   ═══════════════════════════════════════════════════════════════════ */
.map-click-shield {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-click-shield.hidden { display: none; }
.map-shield-hint {
  background: rgba(9,53,92,.82);
  color: #fff;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 10px 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
}
.map-click-shield:hover .map-shield-hint { opacity: 1; }

.map-section {
  margin-top: var(--gap-s);
}
.map-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.map-header h2 { font-size: clamp(26px, 3.5vw, 40px); color: var(--text); }
.map-sub { font-size: 17px; line-height: 28px; color: var(--muted); margin-bottom: 26px; max-width: 700px; }
.map-container {
  position: relative;
  border: 1px solid var(--border);
  background: #ececec;
  overflow: hidden;
}
.map-container iframe { width: 100%; height: 460px; border: 0; display: block; }
.map-route-btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  background: var(--terra);
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 12px 22px;
  box-shadow: 0 4px 14px rgba(28,28,28,.28);
}
.map-route-btn:hover { color: #fff; }


/* ═══════════════════════════════════════════════════════════════════
   HOF TEASER
   ═══════════════════════════════════════════════════════════════════ */
.hof-section { margin-top: var(--gap-s); }
.hof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: center;
}
.hof-img {
  min-height: 380px;
  background-color: #ececec;
  background-size: cover;
  background-position: center;
}
.hof-content h2 { font-size: clamp(26px, 3.5vw, 40px); color: var(--text); margin-bottom: 19px; }
.hof-content p  { font-size: 18px; line-height: 30px; color: var(--muted); }
.hof-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 24px;
  margin: 32px 0 30px;
}
.hof-fact-n     { font-family: var(--num); font-size: 40px; font-weight: 700; color: var(--terra); line-height: 1; }
.hof-fact-label { font-size: 12px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--light); margin-top: 10px; }


/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════ */
.testimonials-section { margin-top: var(--gap-s); }
.testimonials-header  { text-align: center; margin-bottom: 44px; }
.testimonials-header h2 { font-size: clamp(26px, 3.5vw, 40px); color: var(--text); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.review { border-top: 2px solid var(--terra); padding-top: 22px; }
.review-text { font-family: var(--serif); font-size: 19px; line-height: 1.55; color: var(--text); margin-bottom: 16px; }
.review-who  { font-size: 14px; line-height: 24px; color: var(--light); }


/* ═══════════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════════ */
.contact-section {
  margin-top: var(--gap-s);
  background: var(--bg-off);
  padding: 70px var(--px);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 44px;
  align-items: start;
  max-width: var(--maxw);
  margin-inline: auto;
}
.contact-info h2 { font-size: clamp(22px, 3vw, 36px); color: var(--text); margin-bottom: 19px; }
.contact-info > p { font-size: 18px; line-height: 30px; color: var(--muted); margin-bottom: 26px; }
.contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  line-height: 26px;
  color: var(--text);
}
.contact-card a { color: var(--text); }
.contact-card a:hover { color: var(--terra); }

.contact-form-box {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 32px 30px 34px;
}
.contact-form-box h3 { font-size: 26px; color: var(--text); margin-bottom: 8px; }
.contact-form-box > p { font-size: 15px; line-height: 25px; color: var(--muted); margin-bottom: 24px; }

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}
.form-field label {
  display: block;
  font-size: 12px;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 9px;
}
.form-field input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0 0 10px;
  font-size: 16px;
  color: var(--text);
  background: transparent;
  outline: none;
}
.form-field input:focus { border-bottom-color: var(--terra); }
.form-topic-label {
  display: block;
  font-size: 12px;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 12px;
}
.topic-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.topic-btn {
  font-size: 14px;
  line-height: 24px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--muted);
  cursor: pointer;
  transition: all .12s;
}
.topic-btn.active  { background: var(--terra); color: #fff; border-color: var(--terra); }
.topic-btn:hover:not(.active) { border-color: var(--terra); color: var(--terra); }

.form-msg-label {
  display: block;
  font-size: 12px;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 9px;
}
.contact-form-box textarea {
  width: 100%;
  border: 1px solid var(--border);
  padding: 12px 14px;
  font-size: 16px;
  line-height: 26px;
  color: var(--text);
  background: transparent;
  outline: none;
  resize: vertical;
}
.contact-form-box textarea:focus { border-color: var(--terra); }
.form-submit {
  display: block;
  width: 100%;
  margin-top: 26px;
  background: var(--terra);
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 16px 20px;
  text-align: center;
  border: none;
  cursor: pointer;
}
.form-submit:hover   { background: var(--terra-h); }
.form-submit:disabled { opacity: .6; cursor: default; }
.form-note { font-size: 13px; line-height: 22px; color: var(--light); margin-top: 16px; }


/* ═══════════════════════════════════════════════════════════════════
   PAGE HEROES (non-home)
   ═══════════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 60px var(--px) 56px;
}
.page-hero-inner {
  max-width: var(--maxw);
  margin-inline: auto;
}
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); color: #fff; }
.page-hero p  { font-size: 18px; line-height: 30px; color: #a9bccc; max-width: 640px; margin-top: 14px; }


/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --px: 20px; --gap-s: 60px; }
  .hero-content { padding: 60px var(--px) 100px; }
  .booking-fields { padding: 20px var(--px); }
  .booking-status { margin: 0 var(--px) 22px; }
  .gruppen-dark { padding: 48px var(--px); }
  .gruppen-dark-actions { justify-content: flex-start; }
  .map-container iframe { height: 320px; }
  .footer { margin-top: 60px; }
}
@media (max-width: 480px) {
  .two-up-card { min-height: 300px; }
  .booking-tabs { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════════
   SHARED SECTION UTILITY
   ═══════════════════════════════════════════════════════════════════ */
.section { padding-top: var(--gap-s); padding-inline: var(--px); }
.section-inner { max-width: var(--maxw); margin-inline: auto; }

/* ═══════════════════════════════════════════════════════════════════
   IMAGE HERO (bottom-aligned text, used on sub-pages)
   ═══════════════════════════════════════════════════════════════════ */
.img-hero {
  position: relative;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
}
.img-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,28,28,.3) 0%, rgba(28,28,28,.82) 100%);
}
.img-hero-content {
  position: relative;
  padding: 90px var(--px) 54px;
  max-width: calc(720px + 2*var(--px));
  width: 100%;
}
.img-hero-content h1 { font-size: clamp(30px, 4vw, 50px); color: #fff; margin-bottom: 18px; }
.img-hero-content .hero-sub { font-size: 18px; line-height: 30px; color: #ececec; max-width: 560px; }
.img-hero-content .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
@media (max-width: 768px) {
  .img-hero { min-height: 360px; }
  .img-hero-content { padding: 60px var(--px) 40px; }
}

/* ═══════════════════════════════════════════════════════════════════
   STATS STRIP (navy bg with numbers)
   ═══════════════════════════════════════════════════════════════════ */
.stats-strip { background: var(--navy); padding: 34px var(--px); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 28px;
  max-width: var(--maxw);
  margin-inline: auto;
}
.stat-n { font-family: var(--num); font-size: 30px; font-weight: 700; color: #fff; line-height: 1.1; }
.stat-label { font-size: 12px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--terra); margin-top: 9px; }

/* ═══════════════════════════════════════════════════════════════════
   TWO-COL CONTENT (text + image)
   ═══════════════════════════════════════════════════════════════════ */
.two-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 48px; align-items: center; }
.two-col-img { min-height: 380px; background-size: cover; background-position: center; background-color: #ececec; }
.two-col-text h2 { font-size: clamp(24px, 3.5vw, 40px); color: var(--text); margin-bottom: 19px; }
.two-col-text p  { font-size: 18px; line-height: 30px; color: var(--muted); margin-bottom: 16px; }
.two-col-text .sub { font-size: 16px; line-height: 26px; color: var(--light); margin-bottom: 0; }
.two-col-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.two-col-list li { display: flex; gap: 14px; align-items: baseline; font-size: 16px; line-height: 26px; color: var(--muted); list-style: none; }
.two-col-list li::before { content: ''; width: 7px; height: 7px; background: var(--terra); display: block; flex-shrink: 0; margin-top: 9px; }
.pull-quote { border-left: 3px solid var(--terra); padding-left: 22px; }
.pull-quote p { font-family: var(--serif); font-size: 22px; line-height: 1.45; color: var(--text); margin: 0; }

/* ═══════════════════════════════════════════════════════════════════
   ROOM PANELS (zimmer.html — alternating image/text)
   ═══════════════════════════════════════════════════════════════════ */
.room-panels { display: flex; flex-direction: column; gap: 60px; }
.room-panel { display: grid; grid-template-columns: 1.05fr 1fr; border: 1px solid var(--border); }
.room-panel.flip { grid-template-columns: 1fr 1.05fr; }
.room-panel-img { min-height: 400px; background-size: cover; background-position: center; background-color: #ececec; }
.room-panel.flip .room-panel-img { order: 2; }
.room-panel-body { padding: 40px 38px 42px; display: flex; flex-direction: column; }
.room-panel-tags { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.room-cat { font-size: 11px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--terra); border: 1px solid var(--terra); padding: 4px 10px; }
.room-status-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; line-height: 22px; padding: 4px 12px;
  border: 1px solid var(--border); color: var(--muted); background: var(--bg-off);
}
.rsb-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--light); flex-shrink: 0; }
.rsb-green { background: #f2f6ec; border-color: #cbdcb6; color: #3f6127; }
.rsb-green .rsb-dot { background: #5c8a3a; }
.rsb-red   { background: #fbf0ee; border-color: #e3c3bd; color: #8f3b2e; }
.rsb-red   .rsb-dot { background: #c0392b; }
.room-panel-body h2 { font-size: clamp(24px, 3vw, 34px); color: var(--text); margin-bottom: 8px; font-weight: 400; }
.room-bed { font-size: 14px; line-height: 24px; color: var(--terra); margin-bottom: 18px; }
.room-panel-body > p.room-desc { font-size: 17px; line-height: 28px; color: var(--muted); margin-bottom: 22px; flex: 1; }
.room-features { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.room-feat-tag { font-size: 13px; line-height: 22px; color: var(--muted); background: var(--bg-off); border: 1px solid #ececec; padding: 5px 13px; }
.room-panel-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 24px; margin-top: auto; }
.room-panel-price .price-n { font-family: var(--num); font-size: 26px; font-weight: 700; color: var(--text); line-height: 1.1; }
.room-panel-price .price-note { font-size: 12px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--light); margin-top: 6px; }
@media (max-width: 820px) {
  .room-panel, .room-panel.flip { grid-template-columns: 1fr; }
  .room-panel.flip .room-panel-img { order: unset; }
  .room-panel-body { padding: 28px 24px 32px; }
  .room-panel-img { min-height: 260px; }
}

/* Mini booking (zimmer.html top widget) */
.mini-book { background: #fff; box-shadow: 0 10px 30px rgba(28,28,28,.1); border: 1px solid var(--border); padding: 26px 30px 28px; }
.mini-book-fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 24px; align-items: end; }
.mini-book-status { margin-top: 20px; padding-top: 18px; border-top: 1px solid #ececec; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════
   FRÜHSTÜCK (zimmer.html)
   ═══════════════════════════════════════════════════════════════════ */
.fruehstueck { background: var(--bg-off); padding: 76px var(--px); }
.fruehstueck-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 44px; align-items: center; max-width: var(--maxw); margin-inline: auto; }
.fruehstueck-text h2 { font-size: clamp(26px, 3.5vw, 38px); color: var(--text); margin-bottom: 19px; }
.fruehstueck-text p  { font-size: 18px; line-height: 30px; color: var(--muted); margin-bottom: 16px; }
.inkl-box { background: #fff; border: 1px solid var(--border); padding: 32px 30px; }
.inkl-box h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--text); margin-bottom: 20px; }
.inkl-item { display: flex; gap: 14px; align-items: baseline; padding: 9px 0; border-bottom: 1px solid #ececec; }
.inkl-item:last-child { border-bottom: none; }
.inkl-dot { width: 7px; height: 7px; background: var(--terra); display: block; flex-shrink: 0; margin-top: 9px; }
.inkl-text { font-size: 16px; line-height: 26px; color: var(--muted); }

/* FAQ snippet (zimmer.html) */
.faq-snippet-inner h2 { font-size: clamp(24px, 3.5vw, 38px); color: var(--text); margin-bottom: 32px; }
.faq-mini-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.faq-mini-cell { background: #fff; padding: 26px 28px 28px; }
.faq-mini-cell h3 { font-family: var(--serif); font-size: 21px; line-height: 1.3; font-weight: 400; color: var(--text); margin-bottom: 10px; }
.faq-mini-cell p  { font-size: 15px; line-height: 25px; color: var(--muted); margin: 0; }
.faq-callout { margin-top: 34px; background: var(--bg-off); border-left: 3px solid var(--terra); padding: 26px 28px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.faq-callout span { font-size: 17px; line-height: 28px; color: var(--text); flex: 1 1 240px; }

/* ═══════════════════════════════════════════════════════════════════
   FEATURE GRID (camping Ausstattung)
   ═══════════════════════════════════════════════════════════════════ */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.feat-cell { background: #fff; padding: 24px 26px 26px; }
.feat-tag { font-size: 11px; letter-spacing: 1.3px; text-transform: uppercase; margin-bottom: 12px; }
.tag-incl { color: #5c8a3a; }
.tag-info { color: var(--muted); }
.tag-req  { color: var(--terra); }
.tag-fee  { color: var(--light); }
.feat-cell h4 { font-family: var(--serif); font-size: 21px; line-height: 1.25; color: var(--text); margin-bottom: 8px; font-weight: 400; }
.feat-cell p  { font-size: 15px; line-height: 25px; color: var(--muted); margin: 0; }
@media (max-width: 768px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .feat-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════════
   PRICE TABLE (camping.html)
   ═══════════════════════════════════════════════════════════════════ */
.price-section { background: var(--bg-off); padding: var(--gap-s) var(--px); }
.price-section-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 44px; align-items: start; max-width: var(--maxw); margin-inline: auto; }
.price-intro h2 { font-size: clamp(26px, 3.5vw, 40px); color: var(--text); margin-bottom: 19px; }
.price-intro > p { font-size: 18px; line-height: 30px; color: var(--muted); margin-bottom: 24px; }
.price-example { background: var(--navy); color: #fff; padding: 26px 28px; }
.price-example .kicker-sm { display: block; color: var(--terra); margin-bottom: 12px; }
.price-example p { font-size: 17px; line-height: 28px; margin-bottom: 8px; }
.price-example .sub { font-size: 15px; line-height: 25px; color: #a9bccc; }
.price-box { background: #fff; border: 1px solid var(--border); padding: 32px 30px 34px; }
.price-box h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--text); margin-bottom: 22px; }
.ptbl-hdr { display: flex; align-items: flex-end; gap: 16px; padding: 0 0 10px; border-bottom: 2px solid var(--text); }
.ptbl-hdr .ph { flex: 1; }
.ptbl-hdr .pc { width: 84px; text-align: right; font-size: 11px; line-height: 16px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--light); }
.ptbl-hdr .pc.haupt { color: var(--terra); }
.price-row { display: flex; align-items: baseline; gap: 16px; padding: 11px 0; border-bottom: 1px solid #ececec; font-size: 16px; line-height: 26px; color: var(--muted); }
.price-row .pr-l { flex: 1; }
.price-row .pr-v { width: 84px; text-align: right; font-family: var(--num); font-size: 19px; font-weight: 700; color: #575757; white-space: nowrap; }
.price-row .pr-v.haupt { color: var(--text); }
.extra-hdr { font-size: 11px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--terra); margin: 28px 0 10px; }
.extra-row { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid #ececec; font-size: 16px; line-height: 26px; color: var(--muted); }
.extra-row .ev { font-family: var(--num); font-size: 19px; font-weight: 700; color: var(--text); white-space: nowrap; }
.price-fn { font-size: 14px; line-height: 24px; color: var(--light); margin: 22px 0 0; }

/* ═══════════════════════════════════════════════════════════════════
   GALLERY STRIP & UMGEBUNG CARDS
   ═══════════════════════════════════════════════════════════════════ */
.gallery-strip { display: flex; gap: 10px; overflow-x: auto; flex-wrap: nowrap; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 6px; }
.gallery-strip::-webkit-scrollbar { height: 4px; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.gallery-cell  { flex: 0 0 260px; height: 200px; background-size: cover; background-position: center; background-color: #ececec; scroll-snap-align: start; }
.umgebung-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; }
.umgebung-card { border: 1px solid var(--border); }
.umgebung-img  { height: 180px; background-size: cover; background-position: center; background-color: #ececec; }
.umgebung-body { padding: 22px 24px 26px; }
.umgebung-dist { font-size: 11px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--terra); margin-bottom: 10px; }
.umgebung-body h3 { font-family: var(--serif); font-size: 21px; line-height: 1.25; font-weight: 400; color: var(--text); margin-bottom: 8px; }
.umgebung-body p  { font-size: 15px; line-height: 25px; color: var(--muted); margin: 0; }

/* ═══════════════════════════════════════════════════════════════════
   CAMPING INQUIRY FORM
   ═══════════════════════════════════════════════════════════════════ */
.camp-form-section { background: var(--bg-off); padding: var(--gap-s) var(--px); }
.camp-form-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 44px; align-items: start; max-width: var(--maxw); margin-inline: auto; }
.camp-form-info h2 { font-size: clamp(26px, 3.5vw, 40px); color: var(--text); margin-bottom: 19px; }
.camp-form-info > p { font-size: 18px; line-height: 30px; color: var(--muted); margin-bottom: 16px; }
.camp-contact-card { background: #fff; border: 1px solid var(--border); padding: 24px 26px; display: flex; flex-direction: column; gap: 12px; font-size: 16px; line-height: 26px; }
.camp-contact-card a { color: var(--text); }
.camp-contact-card a:hover { color: var(--terra); }
.camp-form-box { background: #fff; border: 1px solid var(--border); padding: 32px 30px 34px; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 22px; margin-bottom: 22px; }
.form-group label { display: block; font-size: 12px; letter-spacing: 4.2px; text-transform: uppercase; color: var(--terra); margin-bottom: 9px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; border: none; border-bottom: 1px solid var(--border); padding: 0 0 10px; font-size: 16px; color: var(--text); background: transparent; outline: none; font-family: inherit; -webkit-appearance: none; appearance: none; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23858585' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px bottom 14px;
  padding-right: 20px;
  cursor: pointer;
}
.form-group input:focus, .form-group select:focus { border-bottom-color: var(--terra); outline: none; }
.form-group textarea { border: 1px solid var(--border); padding: 12px 14px; resize: vertical; font-size: 16px; line-height: 26px; }
.form-group textarea:focus { border-color: var(--terra); outline: none; }
.form-note { font-size: 13px; line-height: 22px; color: var(--light); margin: 16px 0 0; }

/* ═══════════════════════════════════════════════════════════════════
   GRUPPEN HERO
   ═══════════════════════════════════════════════════════════════════ */
.gruppen-hero {
  position: relative;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.gruppen-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,28,28,.76) 0%, rgba(28,28,28,.3) 74%);
}
.gruppen-hero-content {
  position: relative;
  padding: 76px var(--px);
  max-width: calc(700px + 2*var(--px));
}
.gruppen-hero-content h1 { font-size: clamp(28px, 4.5vw, 52px); color: #fff; margin-bottom: 19px; }
.gruppen-hero-content .hero-sub { font-size: 18px; line-height: 30px; color: #ececec; max-width: 540px; margin-bottom: 32px; }
.gruppen-price-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.28);
  padding: 18px 26px;
  margin-bottom: 30px;
}
.gruppen-price-big { font-family: var(--num); font-size: 40px; font-weight: 700; color: #fff; line-height: 1; }
.gruppen-price-info { font-size: 15px; line-height: 24px; color: #ececec; }
.gruppen-price-info strong { color: #fff; }
.gruppen-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 768px) {
  .gruppen-hero { min-height: 420px; }
  .gruppen-hero-content { padding: 48px var(--px); }
}

/* ═══════════════════════════════════════════════════════════════════
   KEY FACTS BAR (gruppen)
   ═══════════════════════════════════════════════════════════════════ */
.keyfacts { border-bottom: 1px solid var(--border); padding: 0 var(--px); }
.keyfacts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); max-width: var(--maxw); margin-inline: auto; }
.keyfact { padding: 30px 20px 30px 0; }
.keyfact-n { font-family: var(--num); font-size: 34px; font-weight: 700; color: var(--terra); line-height: 1; }
.keyfact-label { font-size: 12px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--light); margin-top: 10px; }

/* ═══════════════════════════════════════════════════════════════════
   INCLUDED GRID (gruppen)
   ═══════════════════════════════════════════════════════════════════ */
.included-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.included-cell { background: #fff; padding: 24px 22px; }
.included-cell h4 { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--text); margin-bottom: 8px; }
.included-cell p  { font-size: 15px; line-height: 25px; color: var(--muted); margin: 0; }

/* ═══════════════════════════════════════════════════════════════════
   GROUP ROOM CARDS
   ═══════════════════════════════════════════════════════════════════ */
.gruppe-rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.gruppe-room-card { background: #fff; border: 1px solid var(--border); }
.gruppe-room-img { padding-bottom: 56%; background-size: cover; background-position: center; background-color: #ececec; }
.gruppe-room-body { padding: 24px 24px 26px; }
.gruppe-room-hdr { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.gruppe-room-hdr h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--text); margin: 0; }
.gruppe-beds-tag { font-size: 11px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--terra); border: 1px solid var(--terra); padding: 4px 9px; white-space: nowrap; }
.gruppe-room-body p { font-size: 15px; line-height: 25px; color: var(--muted); margin: 0; }
.gruppe-sauna-card { background: var(--navy); padding: 30px; display: flex; flex-direction: column; justify-content: center; }
.gruppe-sauna-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; color: #fff; margin-bottom: 14px; }
.gruppe-sauna-card p  { font-size: 15px; line-height: 25px; color: #a9bccc; margin-bottom: 20px; }
.gruppe-suite-row { margin-top: 30px; background: #fff; border: 1px solid var(--border); display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: stretch; }
.gruppe-suite-img { min-height: 240px; background-size: cover; background-position: center; background-color: #ececec; }
.gruppe-suite-body { padding: 34px; }
.gruppe-suite-body h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--text); margin-bottom: 12px; }
.gruppe-suite-body p  { font-size: 16px; line-height: 26px; color: var(--muted); margin-bottom: 20px; }

/* ═══════════════════════════════════════════════════════════════════
   OCCASIONS (gruppen)
   ═══════════════════════════════════════════════════════════════════ */
.occasions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.occasion { border-top: 2px solid var(--terra); padding-top: 24px; }
.occasion h4 { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--text); margin-bottom: 12px; }
.occasion p  { font-size: 16px; line-height: 26px; color: var(--muted); margin: 0; }

/* ═══════════════════════════════════════════════════════════════════
   DARK INQUIRY FORM (gruppen)
   ═══════════════════════════════════════════════════════════════════ */
.inquiry-dark { background: var(--navy); padding: var(--gap-s) var(--px); }
.inquiry-dark-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 48px; align-items: start; max-width: var(--maxw); margin-inline: auto; }
.inquiry-dark h2 { font-size: clamp(26px, 3.5vw, 40px); color: #fff; margin-bottom: 19px; }
.inquiry-dark .sub { font-size: 18px; line-height: 30px; color: #a9bccc; margin-bottom: 26px; }
.assurances { display: flex; flex-direction: column; gap: 14px; }
.assurance { display: flex; gap: 12px; align-items: baseline; font-size: 16px; line-height: 26px; color: #ececec; }
.assurance::before { content: '—'; color: var(--terra); font-size: 18px; flex-shrink: 0; }
.inquiry-form-box { background: #fff; padding: 34px; }

/* ═══════════════════════════════════════════════════════════════════
   DER HOF — TIMELINE, VALUES, GALLERY MOSAIC, PLACES
   ═══════════════════════════════════════════════════════════════════ */
.timeline-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.timeline-cell { background: #fff; padding: 28px 26px 30px; }
.timeline-when { font-family: var(--num); font-size: 22px; font-weight: 700; color: var(--terra); margin-bottom: 14px; }
.timeline-cell h3 { font-family: var(--serif); font-size: 21px; font-weight: 400; color: var(--text); margin-bottom: 10px; }
.timeline-cell p  { font-size: 15px; line-height: 25px; color: var(--muted); margin: 0; }

.values-dark { background: var(--navy); padding: 66px var(--px); }
.values-dark-inner { max-width: var(--maxw); margin-inline: auto; }
.values-dark h2 { font-size: clamp(26px, 3.5vw, 38px); color: #fff; margin-bottom: 34px; max-width: 700px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 34px; }
.value-item { }
.value-bar { width: 40px; height: 2px; background: var(--terra); margin-bottom: 18px; }
.value-item h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; color: #fff; margin-bottom: 10px; }
.value-item p  { font-size: 15px; line-height: 25px; color: #a9bccc; margin: 0; }

.gallery-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 164px; gap: 12px; }
.gm-cell { background-size: cover; background-position: center; background-color: #ececec; }
.gm-big  { grid-column: span 2; grid-row: span 2; }
@media (max-width: 768px) {
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
}

.places-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.place-card { border: 1px solid var(--border); padding: 28px 26px 30px; }
.place-tag  { font-size: 11px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--terra); margin-bottom: 12px; }
.place-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--text); margin-bottom: 10px; }
.place-card p  { font-size: 15px; line-height: 25px; color: var(--muted); margin: 0; }

/* ═══════════════════════════════════════════════════════════════════
   CTA STRIP (generic)
   ═══════════════════════════════════════════════════════════════════ */
.cta-strip { background: var(--bg-off); padding: 60px var(--px); }
.cta-strip-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 36px; align-items: center; max-width: var(--maxw); margin-inline: auto; }
.cta-strip h2 { font-size: clamp(22px, 3vw, 34px); color: var(--text); margin-bottom: 16px; }
.cta-strip p  { font-size: 17px; line-height: 28px; color: var(--muted); margin: 0; }
.cta-strip-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

/* ═══════════════════════════════════════════════════════════════════
   FAQ PAGE
   ═══════════════════════════════════════════════════════════════════ */
.faq-hero { background: var(--navy); padding: 56px var(--px) 50px; background-blend-mode: multiply; }
.faq-hero-inner { max-width: var(--maxw); margin-inline: auto; }
.faq-hero h1 { font-size: clamp(28px, 4vw, 46px); color: #fff; margin-bottom: 18px; max-width: 780px; text-shadow: 0 1px 8px rgba(0,0,0,.45); }
.faq-hero p { font-size: 18px; line-height: 30px; color: rgba(255,255,255,.85); max-width: 640px; margin-bottom: 30px; }
.faq-jumps { display: flex; gap: 10px; flex-wrap: wrap; }
.faq-jump { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.28); color: #fff !important; font-size: 13px; line-height: 22px; letter-spacing: 1.2px; text-transform: uppercase; padding: 9px 17px; }
.faq-jump:hover { background: rgba(255,255,255,.15); }
.quick-facts { background: var(--bg-off); border-bottom: 1px solid var(--border); padding: 34px var(--px); }
.quick-facts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 26px; max-width: var(--maxw); margin-inline: auto; }
.qf-n { font-family: var(--num); font-size: 27px; font-weight: 700; color: var(--text); line-height: 1.15; }
.qf-label { font-size: 12px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--terra); margin-top: 9px; }
.faq-groups { padding: 62px var(--px) 0; display: flex; flex-direction: column; gap: 58px; max-width: var(--maxw); margin-inline: auto; }
.faq-group-hdr { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; border-bottom: 1px solid var(--border); padding-bottom: 16px; margin-bottom: 30px; }
.faq-group-hdr h2 { font-size: clamp(22px, 3vw, 32px); color: var(--text); margin: 0; }
.faq-count { font-size: 12px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--light); }
.faq-items { display: flex; flex-direction: column; gap: 26px; }
.faq-item { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 26px; align-items: start; }
.faq-item h3 { font-family: var(--serif); font-size: 21px; line-height: 1.35; font-weight: 400; color: var(--text); margin: 0; }
.faq-item p   { font-size: 17px; line-height: 29px; color: #575757; margin: 0; }
.faq-link { display: inline-block; margin-top: 12px; font-size: 13px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--terra); }
@media (max-width: 768px) { .faq-item { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════════
   RECHTLICHES
   ═══════════════════════════════════════════════════════════════════ */
.recht-nav { background: #fff; border-bottom: 1px solid var(--border); padding: 0 var(--px); position: sticky; top: 0; z-index: 50; }
.recht-nav-inner { max-width: var(--maxw); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0; }
.recht-nav-inner img { height: 62px; }
.recht-hero { background: var(--bg-off); border-bottom: 1px solid var(--border); padding: 44px var(--px) 0; }
.recht-hero-inner { max-width: var(--maxw); margin-inline: auto; }
.recht-hero h1 { font-size: clamp(26px, 4vw, 44px); color: var(--text); margin-bottom: 24px; }
.recht-tabs { display: flex; }
.recht-tab { font-family: inherit; cursor: pointer; border: none; background: transparent; border-bottom: 3px solid transparent; padding: 12px 22px 14px; font-size: 14px; line-height: 24px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted); }
.recht-tab.active { color: var(--text); border-bottom-color: var(--terra); }
.recht-section { display: none; padding: 60px var(--px) 80px; }
.recht-section.active { display: block; }
.recht-section-inner { max-width: 760px; }
.recht-anbieter { border: 1px solid var(--border); padding: 30px 32px; margin-bottom: 44px; }
.recht-anbieter h2 { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--text); margin-bottom: 6px; }
.recht-anbieter .sub-name { font-size: 16px; line-height: 26px; margin-bottom: 18px; color: var(--muted); }
.recht-details { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; font-size: 16px; line-height: 26px; color: var(--muted); }
.recht-detail-label { font-size: 11px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--light); margin-bottom: 6px; }
.recht-prose { margin-bottom: 40px; }
.recht-prose h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--text); margin-bottom: 14px; }
.recht-prose p  { font-size: 16px; line-height: 26px; color: var(--muted); margin-bottom: 16px; }
.recht-note { background: var(--bg-off); border-left: 3px solid var(--terra); padding: 22px 26px; margin-bottom: 44px; font-size: 15px; line-height: 25px; color: var(--muted); }
.recht-footer { background: #1c1c1c; padding: 46px var(--px) 34px; }
.recht-footer-inner { max-width: var(--maxw); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.12); }
.recht-footer-inner img { height: 56px; }
.recht-footer-addr { font-size: 15px; line-height: 24px; color: var(--light); }
.recht-footer-bar { max-width: var(--maxw); margin-inline: auto; display: flex; gap: 20px; flex-wrap: wrap; padding-top: 22px; font-size: 14px; line-height: 24px; color: var(--muted); }
.recht-footer-bar a { color: var(--muted); }

/* ═══════════════════════════════════════════════════════════════════
   BUCHEN PAGE
   ═══════════════════════════════════════════════════════════════════ */
.buchen-hero { background: var(--navy); padding: 44px var(--px) 40px; }
.buchen-hero-inner { max-width: var(--maxw); margin-inline: auto; }
.buchen-hero h1 { font-size: clamp(28px, 4vw, 42px); color: #fff; margin-bottom: 16px; }
.buchen-hero p { font-size: 17px; line-height: 28px; color: #a9bccc; max-width: 640px; }
.buchen-chips { margin-top: 24px; display: flex; gap: 10px; flex-wrap: wrap; }
.buchen-chip { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.28); color: #fff; font-size: 14px; line-height: 24px; padding: 7px 16px; }
.viato-section { padding: 34px var(--px) 0; max-width: var(--maxw); margin-inline: auto; }
.viato-fallback { border: 1px solid var(--border); background: var(--bg-off); padding: 34px 32px; }
.viato-fallback .kicker-sm { display: block; color: var(--terra); margin-bottom: 12px; }
.viato-fallback h2 { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--text); margin-bottom: 12px; line-height: 1.25; }
.viato-fallback p  { font-size: 16px; line-height: 26px; color: var(--muted); margin-bottom: 20px; max-width: 640px; }
.trust-section { padding: 40px var(--px) 0; max-width: var(--maxw); margin-inline: auto; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.trust-cell { background: #fff; padding: 24px 26px 26px; }
.trust-cell h3 { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--text); margin-bottom: 8px; }
.trust-cell p  { font-size: 15px; line-height: 25px; color: var(--muted); margin: 0; }
.buchen-slim-footer { background: #1c1c1c; padding: 46px var(--px) 34px; margin-top: 44px; }
.buchen-slim-footer-inner { max-width: var(--maxw); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 26px; border-bottom: 1px solid rgba(255,255,255,.12); }
.buchen-slim-footer-inner img { height: 56px; }
.buchen-slim-footer-inner span { font-size: 15px; line-height: 24px; color: var(--light); }
.buchen-slim-footer-bar { max-width: var(--maxw); margin-inline: auto; display: flex; gap: 20px; flex-wrap: wrap; padding-top: 22px; font-size: 14px; line-height: 24px; color: var(--muted); }
.buchen-slim-footer-bar a { color: var(--muted); }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--navy);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  z-index: 9999;
}
.skip-link:focus {
  left: 8px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
