/* =========================================================
   Ferienhaus am Osterberg – Styles
   Warm, hell, mobile-first. Tannengrün + Terrakotta auf Creme.
   ========================================================= */

:root {
  --cream: #FBF7EF;
  --cream-2: #F4ECDD;
  --surface: #FFFFFF;
  --ink: #2A2822;
  --ink-soft: #5F594E;
  --fir: #2F5D45;
  --fir-dark: #24493699;
  --fir-deep: #244936;
  --terra: #C4622D;
  --terra-dark: #A44E20;
  --amber: #E0A458;
  --line: #E7DCC9;
  --shadow-sm: 0 2px 8px rgba(58, 46, 28, .07);
  --shadow-md: 0 10px 30px rgba(58, 46, 28, .12);
  --shadow-lg: 0 20px 50px rgba(58, 46, 28, .18);
  --radius: 18px;
  --radius-sm: 12px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --wrap: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
/* Kompensiere fixen Header beim Anker-Scroll */
section[id], [id="buchung"] { scroll-margin-top: 78px; }

html { overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; }

a { color: var(--fir-deep); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

.section-title { font-size: clamp(1.7rem, 5vw, 2.5rem); margin: 0 0 .4em; color: var(--fir-deep); }
.section-lead { color: var(--ink-soft); margin: 0 0 1.8em; font-size: 1.05rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700; color: var(--amber); margin: 0 0 .8em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--sans); font-weight: 700; font-size: 1rem;
  padding: .85em 1.5em; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .12s ease, background .2s ease, box-shadow .2s ease;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--terra); color: #fff; box-shadow: 0 6px 16px rgba(196, 98, 45, .3); }
.btn-primary:hover { background: var(--terra-dark); }
.btn-ghost { background: transparent; color: var(--fir-deep); border-color: currentColor; }
.btn-ghost:hover { background: rgba(47, 93, 69, .08); }
.btn-lg { padding: 1.05em 1.9em; font-size: 1.08rem; }
.btn-sm { padding: .55em 1em; font-size: .92rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 239, .9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.brand { display: flex; align-items: center; gap: .5em; text-decoration: none; color: var(--fir-deep); font-family: var(--serif); font-weight: 700; font-size: 1.05rem; }
.brand-mark { font-size: 1.3rem; }
.header-nav { display: flex; align-items: center; gap: 1.4rem; }
.header-nav a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem; }
.header-nav a:hover { color: var(--terra); }
.header-nav a:not(.btn) { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(36,73,54,.35) 0%, rgba(36,73,54,.15) 35%, rgba(30,40,30,.72) 100%); }
.hero-content { padding: clamp(3.5rem, 12vh, 8rem) 20px clamp(3rem, 9vh, 6rem); max-width: 780px; }
.hero h1 { font-size: clamp(2.6rem, 11vw, 5rem); margin: 0 0 .35em; text-shadow: 0 2px 20px rgba(0,0,0,.3); font-weight: 600; }
.hero-sub { font-size: clamp(1.05rem, 3.4vw, 1.3rem); max-width: min(40ch, 100%); margin: 0 0 1.8em; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.6em; }
.hero-cta .btn-ghost { color: #fff; }
.hero-cta .btn-ghost:hover { background: rgba(255,255,255,.15); }
.hero-trust { font-size: .92rem; font-weight: 600; opacity: .95; text-shadow: 0 1px 6px rgba(0,0,0,.4); }

/* ---------- Gaps (freie Termine) ---------- */
.gaps { background: var(--fir-deep); color: #fff; padding: 3rem 0; }
.gaps .section-title { color: #fff; }
.gaps .section-lead { color: rgba(255,255,255,.8); }
.gaps-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.gap-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius); padding: 1.4rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.gap-when { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; }
.gap-nights { display: block; font-family: var(--sans); font-size: .9rem; font-weight: 600; color: var(--amber); margin-top: .2em; }

/* ---------- Booking / Direktbuchung ---------- */
.booking { padding: clamp(3rem, 8vw, 5rem) 0; }
.booking-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }

.price-card, .form-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 1.6rem 1.5rem;
  min-width: 0; /* verhindert Grid-Overflow durch Datumsfelder */
}
.price-card h3, .form-card h3 { margin: 0 0 1rem; font-size: 1.35rem; color: var(--fir-deep); }

.price-list { list-style: none; margin: 0 0 1.1rem; padding: 0; }
.price-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .6em 0; border-bottom: 1px solid var(--line); }
.price-list li:last-child { border-bottom: 0; }
.price-list span { color: var(--ink-soft); }
.price-list strong { color: var(--fir-deep); font-size: 1.1rem; white-space: nowrap; font-variant-numeric: tabular-nums; }

.price-notes { list-style: none; margin: 0 0 1.1rem; padding: 0; font-size: .95rem; color: var(--ink-soft); }
.price-notes li { padding: .2em 0; }
.price-pay { margin: 0; padding: 1rem 1.1rem; background: var(--cream-2); border-radius: var(--radius-sm); font-size: .95rem; color: var(--ink); }

/* Formular */
.anfrage-form { display: flex; flex-direction: column; gap: .9rem; }
.form-row { display: grid; gap: .9rem; }
.form-row.two { grid-template-columns: 1fr; } /* mobil gestapelt, ab 620px zweispaltig */
.anfrage-form label { display: flex; flex-direction: column; gap: .35em; font-weight: 600; font-size: .9rem; color: var(--ink); }
.anfrage-form .field-label [aria-hidden], .consent-check [aria-hidden] { color: var(--terra); font-weight: 700; }
.anfrage-form input[type="text"],
.anfrage-form input[type="email"],
.anfrage-form input[type="tel"],
.anfrage-form input[type="date"],
.anfrage-form input[type="number"],
.anfrage-form textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink); font-weight: 400;
  min-height: 46px; padding: .65em .85em; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; width: 100%; transition: border-color .15s ease, box-shadow .15s ease;
}
.anfrage-form input::placeholder, .anfrage-form textarea::placeholder { color: #a89f8e; }
.anfrage-form input:focus, .anfrage-form textarea:focus { outline: none; border-color: var(--fir); box-shadow: 0 0 0 3px rgba(47,93,69,.14); }
.anfrage-form textarea { min-height: 88px; resize: vertical; }
.anfrage-form .field-personen input { max-width: 170px; }
.anfrage-form label.check { flex-direction: row; align-items: center; gap: .55em; font-weight: 400; font-size: .95rem; color: var(--ink); }
.anfrage-form label.check.standalone { padding: .15rem 0; }
.anfrage-form label.check input { flex: 0 0 auto; width: 1.15em; height: 1.15em; min-height: 0; accent-color: var(--fir); }
.anfrage-form label.check em { color: var(--ink-soft); font-style: normal; }
.consent-check { align-items: flex-start !important; font-size: .84rem; color: var(--ink-soft); line-height: 1.45; }
.consent-check input { margin-top: .15em; }
.form-submit { margin-top: .6rem; width: 100%; }
.form-note { margin: 0; font-size: .84rem; color: var(--ink-soft); text-align: center; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Live-Preissumme */
.price-summary { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .9rem 1.1rem; }
.price-summary .ps-row, .price-summary .ps-total { display: flex; justify-content: space-between; gap: 1rem; font-size: .95rem; }
.price-summary .ps-row { color: var(--ink-soft); padding: .18em 0; }
.price-summary .ps-row strong { color: var(--ink); font-variant-numeric: tabular-nums; }
.price-summary .ps-total { margin-top: .4em; padding-top: .5em; border-top: 1px solid var(--line); font-size: 1.05rem; }
.price-summary .ps-total span { font-weight: 700; color: var(--fir-deep); }
.price-summary .ps-total strong { color: var(--fir-deep); font-variant-numeric: tabular-nums; }
.price-summary .ps-note { margin-top: .3em; font-size: .82rem; color: var(--ink-soft); }

/* Verfügbarkeits-Kalender */
.cal-field { display: flex; flex-direction: column; gap: .45em; }
.cal-selected {
  font-weight: 600; font-size: .95rem; color: var(--fir-deep);
  background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .6em .8em;
}
.cal-selected.is-set { background: #eaf3ec; border-color: #b9dcc2; }
.calendar { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .7rem .8rem; background: #fff; }
.cal-loading { text-align: center; color: var(--ink-soft); padding: 1.5rem 0; font-size: .9rem; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .5rem; }
.cal-title { font-weight: 700; color: var(--fir-deep); font-size: 1rem; }
.cal-nav {
  width: 34px; height: 34px; border: 1px solid var(--line); background: #fff; border-radius: 9px;
  cursor: pointer; font-size: 1.1rem; line-height: 1; color: var(--fir-deep); display: flex; align-items: center; justify-content: center;
}
.cal-nav:disabled { opacity: .35; cursor: default; }
.cal-nav:not(:disabled):hover { background: var(--cream-2); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-dow { text-align: center; font-size: .72rem; font-weight: 700; color: var(--ink-soft); padding: .3em 0; }
.cal-day {
  aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
  font-size: .9rem; border-radius: 8px; border: 0; background: transparent; color: var(--ink);
  font-family: var(--sans); font-variant-numeric: tabular-nums;
}
.cal-day.blank { visibility: hidden; }
.cal-day.free { cursor: pointer; background: #eef4ee; color: var(--fir-deep); font-weight: 600; }
.cal-day.free:hover { background: #d8e8dc; }
.cal-day.past, .cal-day.occupied { color: #c3bcae; cursor: not-allowed; }
.cal-day.occupied { background: repeating-linear-gradient(135deg, #f6efe3, #f6efe3 4px, #efe6d4 4px, #efe6d4 8px); text-decoration: line-through; }
.cal-day.in-range { background: #cfe4d5; border-radius: 0; color: var(--fir-deep); }
.cal-day.selected { background: var(--terra); color: #fff; font-weight: 700; }
.cal-day.range-start { border-radius: 8px 0 0 8px; }
.cal-day.range-end { border-radius: 0 8px 8px 0; }
.cal-legend { display: flex; gap: 1rem; flex-wrap: wrap; font-size: .8rem; color: var(--ink-soft); margin-top: .1em; }
.cal-legend span { display: inline-flex; align-items: center; gap: .35em; }
.cal-legend i { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
.cal-legend .lg-free { background: #eef4ee; border: 1px solid #cfe0d3; }
.cal-legend .lg-sel { background: var(--terra); }
.cal-legend .lg-occ { background: repeating-linear-gradient(135deg, #f6efe3, #f6efe3 3px, #e6dcc7 3px, #e6dcc7 6px); border: 1px solid var(--line); }

/* Buchungs-Ergebnis */
.booking-result { border-radius: var(--radius-sm); padding: 1rem 1.1rem; font-size: .96rem; line-height: 1.5; }
.booking-result.is-error { background: #fdeceb; border: 1px solid #f3c3bd; color: #8a2b1e; }
.booking-result.is-success { background: #eaf3ec; border: 1px solid #b9dcc2; color: #1e5233; }

.booking-fallback { margin-top: 1.4rem; color: var(--ink-soft); font-size: .98rem; text-align: center; }
.booking-fallback a { font-weight: 700; white-space: nowrap; }

/* ---------- USP ---------- */
.usp { padding: clamp(3rem, 8vw, 5rem) 0; background: var(--cream-2); }
.usp-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.usp-tile {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm);
}
.usp-icon { font-size: 2rem; display: block; margin-bottom: .5rem; }
.usp-tile h3 { margin: 0 0 .4em; font-size: 1.25rem; color: var(--fir-deep); }
.usp-tile p { margin: 0; color: var(--ink-soft); font-size: .98rem; }

/* ---------- Gallery ---------- */
.gallery { padding: clamp(3rem, 8vw, 5rem) 0; }
.gallery-grid { display: grid; gap: .8rem; grid-template-columns: repeat(2, 1fr); grid-auto-flow: dense; }
.gallery-item {
  padding: 0; border: 0; margin: 0; cursor: zoom-in; background: var(--cream-2);
  border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 3 / 2; box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.is-wide { grid-column: span 2; aspect-ratio: 16 / 9; }
.gallery-item.is-portrait { aspect-ratio: 2 / 3; }

/* ---------- About ---------- */
.about { padding: clamp(3rem, 8vw, 5rem) 0; }
.about-inner { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.about-text p { color: var(--ink-soft); margin: 0 0 1.1em; }
.about-facts {
  background: var(--fir-deep); color: #fff; border-radius: var(--radius); padding: 1.6rem 1.6rem;
  align-self: start; box-shadow: var(--shadow-md);
}
.about-facts h3 { margin: 0 0 1rem; color: #fff; font-size: 1.3rem; }
.about-facts ul { list-style: none; margin: 0; padding: 0; }
.about-facts li { display: flex; justify-content: space-between; gap: 1rem; padding: .6em 0; border-bottom: 1px solid rgba(255,255,255,.16); font-size: .95rem; }
.about-facts li:last-child { border-bottom: 0; }
.about-facts span { color: rgba(255,255,255,.72); }
.about-facts strong { text-align: right; }

/* ---------- Reviews ---------- */
.reviews { padding: clamp(3rem, 8vw, 5rem) 0; background: var(--cream-2); }
.reviews-head { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.reviews-head .section-lead { margin: 0; }
.rating-badge {
  background: var(--amber); color: #3a2a12; font-weight: 800; font-size: 1.3rem;
  padding: .5em .8em; border-radius: 14px; white-space: nowrap; box-shadow: var(--shadow-sm);
}
.reviews-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.review-card { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.review-card blockquote { margin: 0 0 .8em; font-family: var(--serif); font-size: 1.1rem; line-height: 1.5; color: var(--ink); }
.review-card blockquote::before { content: "\201C"; color: var(--amber); font-size: 1.4em; margin-right: .05em; }
.review-card figcaption { color: var(--ink-soft); font-weight: 700; font-size: .9rem; }
.reviews-source { margin: 1.4rem 0 0; font-size: .85rem; color: var(--ink-soft); font-style: italic; }

/* ---------- Location ---------- */
.location { padding: clamp(3rem, 8vw, 5rem) 0; }
.location-inner { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.location-text p { color: var(--ink-soft); margin: 0; }
.distance-list { list-style: none; margin: 0; padding: 0; align-self: start;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.distance-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .85em 1.3em; border-bottom: 1px solid var(--line); }
.distance-list li:last-child { border-bottom: 0; }
.distance-list span { color: var(--ink-soft); }
.distance-list strong { color: var(--fir-deep); }

/* ---------- FAQ ---------- */
.faq { padding: clamp(3rem, 8vw, 5rem) 0; background: var(--cream-2); }
.faq-list { max-width: 780px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: .8rem; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary { cursor: pointer; padding: 1.1em 1.3em; font-weight: 700; font-size: 1.05rem; color: var(--fir-deep); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--terra); font-weight: 400; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 1.3em 1.2em; }
.faq-body p { margin: 0; color: var(--ink-soft); }

/* ---------- Final CTA ---------- */
.final-cta { padding: clamp(3.5rem, 9vw, 6rem) 0; text-align: center; background: var(--fir-deep); color: #fff; }
.final-cta h2 { font-size: clamp(1.8rem, 6vw, 2.8rem); margin: 0 0 .3em; color: #fff; }
.final-cta p { margin: 0 0 1.6em; color: rgba(255,255,255,.85); font-size: 1.1rem; }

/* ---------- Footer ---------- */
.site-footer { background: #20180f; color: rgba(255,255,255,.8); padding: 2.4rem 0; }
.footer-inner { display: flex; flex-direction: column; gap: 1.2rem; }
.footer-brand { font-family: var(--serif); font-weight: 700; color: #fff; font-size: 1.15rem; margin: 0 0 .2em; }
.site-footer p { margin: 0; font-size: .92rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-nav a { color: rgba(255,255,255,.85); text-decoration: none; font-weight: 600; font-size: .92rem; }
.footer-nav a:hover { color: var(--amber); }

/* ---------- Sticky CTA (mobil) ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(251, 247, 239, .96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); box-shadow: 0 -4px 20px rgba(58,46,28,.12);
  transform: translateY(120%); transition: transform .3s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta-text { font-weight: 700; color: var(--fir-deep); font-size: .95rem; }
.sticky-cta .btn { flex-shrink: 0; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(20, 16, 10, .93);
  display: flex; align-items: center; justify-content: center; padding: 3vh 3vw; }
.lightbox[hidden] { display: none; }
.lb-figure { margin: 0; max-width: 100%; max-height: 100%; display: flex; flex-direction: column; align-items: center; }
.lb-figure img { max-width: 100%; max-height: 82vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lb-figure figcaption { color: rgba(255,255,255,.9); margin-top: .8rem; font-size: .95rem; text-align: center; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,.14); color: #fff; border: 0; cursor: pointer;
  width: 48px; height: 48px; border-radius: 50%; font-size: 1.6rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.28); }
.lb-close { top: 3vh; right: 3vw; }
.lb-prev { left: 2vw; top: 50%; transform: translateY(-50%); }
.lb-next { right: 2vw; top: 50%; transform: translateY(-50%); }

/* ---------- Consent ---------- */
.consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; padding: 1rem; }
.consent[hidden] { display: none; }
.consent-inner {
  max-width: 920px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 1.3rem 1.4rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.consent-text { margin: 0; font-size: .93rem; color: var(--ink-soft); }
.consent-actions { display: flex; gap: .7rem; }
.consent-actions .btn { flex: 1; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* =========================================================
   Breakpoints
   ========================================================= */
@media (min-width: 620px) {
  .gaps-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row.two { grid-template-columns: 1fr 1fr; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .consent-inner { flex-direction: row; align-items: center; }
  .consent-text { flex: 1; }
  .consent-actions { flex: 0 0 auto; }
  .consent-actions .btn { flex: 0 0 auto; }
}

@media (min-width: 800px) {
  .header-nav a:not(.btn) { display: inline; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .gallery-item.is-wide { grid-column: span 2; aspect-ratio: 3 / 2; }
  .about-inner { grid-template-columns: 1.7fr 1fr; gap: 3rem; }
  .location-inner { grid-template-columns: 1.5fr 1fr; gap: 3rem; }
  .booking-grid { grid-template-columns: 1fr 1.1fr; gap: 1.6rem; align-items: start; }
  .usp-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: flex-end; }
  /* Sticky-CTA nur auf Mobil sinnvoll */
  .sticky-cta { display: none; }
}

@media (min-width: 1000px) {
  .gallery-item.is-wide { grid-column: span 2; }
}
