:root {
  --forest-950: #102c24;
  --forest-900: #173e32;
  --forest-800: #235342;
  --forest-700: #34705a;
  --moss-500: #82956a;
  --cream-50: #fffdf7;
  --cream-100: #f7f1e4;
  --cream-200: #eee2cf;
  --ink: #1f2925;
  --muted: #66706b;
  --red: #b83e35;
  --red-dark: #913028;
  --white: #fff;
  --border: rgba(23, 62, 50, .14);
  --shadow-sm: 0 12px 34px rgba(16, 44, 36, .10);
  --shadow-lg: 0 30px 80px rgba(16, 44, 36, .18);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-tinted { background: var(--cream-100); }
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; color: var(--forest-950); line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3.2rem, 7vw, 6.7rem); font-weight: 800; }
h1 em { color: var(--red); font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
h2 { font-size: clamp(2.2rem, 4.4vw, 4.2rem); }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1em; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--forest-950);
  color: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 253, 247, .88);
  border-color: var(--border);
  box-shadow: 0 10px 30px rgba(16, 44, 36, .06);
  backdrop-filter: blur(18px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--forest-950); }
.brand-mark { width: 42px; height: 42px; color: var(--red); flex: 0 0 auto; }
.brand span { display: grid; line-height: 1.1; }
.brand strong { font-size: .98rem; }
.brand small { margin-top: 4px; color: var(--muted); font-size: .73rem; letter-spacing: .03em; }
.main-nav { display: flex; align-items: center; gap: 26px; font-size: .9rem; font-weight: 700; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--red); transition: right .2s ease; }
.main-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 12px 18px; border-radius: 999px; background: var(--forest-900); color: var(--white); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--forest-900); padding: 12px; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: white; border-radius: 10px; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 820px;
  padding: 150px 0 90px;
  background: linear-gradient(135deg, var(--cream-50) 0%, var(--cream-100) 55%, #e5eadf 100%);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
}
.hero::before { width: 620px; height: 620px; right: -240px; top: -160px; background: rgba(130, 149, 106, .24); }
.hero::after { width: 260px; height: 260px; left: -90px; bottom: 40px; background: rgba(184, 62, 53, .08); }
.hero-backdrop {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 48%;
  height: 24%;
  background: linear-gradient(150deg, transparent 0 48%, rgba(23, 62, 50, .06) 48% 52%, transparent 52% 62%, rgba(23, 62, 50, .04) 62% 66%, transparent 66%);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 70px; }
.hero-intro { max-width: 690px; margin: 30px 0 34px; color: #4f5d57; font-size: 1.16rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 14px 22px; border: 1px solid transparent; border-radius: 999px; font-size: .92rem; font-weight: 800; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: white; box-shadow: 0 12px 28px rgba(184, 62, 53, .22); }
.button-primary:hover { background: var(--red-dark); }
.button-ghost { border-color: var(--border); background: rgba(255,255,255,.55); color: var(--forest-900); }
.button-secondary { background: var(--forest-900); color: white; }
.button-full { width: 100%; }
.hero-facts { display: flex; gap: 34px; padding: 0; margin: 46px 0 0; list-style: none; }
.hero-facts li { display: grid; }
.hero-facts strong { color: var(--forest-900); font-size: 1.35rem; }
.hero-facts span { color: var(--muted); font-size: .78rem; }

.hero-visual { position: relative; min-height: 570px; }
.hero-card { position: absolute; margin: 0; overflow: hidden; border: 10px solid rgba(255,255,255,.88); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-lg); }
.hero-card img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.03); }
.hero-card figcaption { position: absolute; left: 20px; bottom: 18px; padding: 9px 13px; border-radius: 999px; background: rgba(16,44,36,.86); color: white; font-size: .78rem; font-weight: 800; backdrop-filter: blur(10px); }
.hero-card-main { inset: 20px 40px 92px 0; transform: rotate(-2.2deg); }
.hero-card-small { width: 46%; height: 38%; right: 0; bottom: 26px; transform: rotate(4deg); }
.hero-badge { position: absolute; top: 0; right: 2px; z-index: 3; display: grid; place-items: center; width: 122px; height: 122px; border-radius: 50%; background: var(--red); color: white; box-shadow: 0 18px 40px rgba(184,62,53,.25); transform: rotate(7deg); }
.hero-badge span { font-size: .67rem; text-transform: uppercase; letter-spacing: .1em; }
.hero-badge strong { margin-top: -26px; font-family: Georgia, serif; font-size: 1.12rem; font-style: italic; }

.trust-strip { background: var(--forest-950); color: #eaf2ec; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid span { position: relative; padding: 19px 26px; text-align: center; font-size: .86rem; font-weight: 700; }
.trust-grid span + span::before { content: ""; position: absolute; left: 0; top: 25%; bottom: 25%; width: 1px; background: rgba(255,255,255,.16); }

.section-heading { display: grid; grid-template-columns: 1fr .7fr; gap: 70px; align-items: end; margin-bottom: 54px; }
.section-heading > p { max-width: 520px; margin: 0; color: var(--muted); }
.house-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.house-card { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.house-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.house-image { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #d7dfd4; }
.house-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.house-card:hover .house-image img { transform: scale(1.05); }
.house-label { position: absolute; top: 18px; left: 18px; padding: 8px 12px; border-radius: 999px; background: rgba(255,253,247,.88); color: var(--forest-900); font-size: .75rem; font-weight: 800; backdrop-filter: blur(10px); }
.house-body { padding: 30px; }
.house-title-row { display: flex; justify-content: space-between; align-items: start; gap: 20px; }
.house-kicker { margin: 0 0 3px; color: var(--muted); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.house-title-row h3 { font-size: 2.1rem; }
.capacity { flex: 0 0 auto; padding: 9px 12px; border-radius: 999px; background: var(--cream-100); color: var(--forest-900); font-size: .76rem; font-weight: 800; }
.house-body > p { margin: 22px 0; color: var(--muted); }
.feature-list { display: grid; gap: 9px; padding: 0; margin: 0 0 26px; list-style: none; }
.feature-list li { position: relative; padding-left: 25px; font-size: .9rem; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 900; }
.text-link { color: var(--forest-900); font-weight: 900; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.feature-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: center; }
.feature-copy p:not(.eyebrow) { max-width: 520px; margin: 24px 0 30px; color: var(--muted); }
.feature-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.mini-card { padding: 28px; border: 1px solid rgba(23,62,50,.1); border-radius: var(--radius); background: rgba(255,255,255,.72); box-shadow: 0 10px 30px rgba(16,44,36,.06); }
.mini-card:nth-child(2), .mini-card:nth-child(4) { transform: translateY(28px); }
.mini-card .icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 22px; border-radius: 14px; background: var(--forest-900); color: white; font-size: 1.4rem; }
.mini-card h3 { font-size: 1.2rem; }
.mini-card p { margin: 12px 0 0; color: var(--muted); font-size: .9rem; }

.nature-section { background: var(--forest-950); color: white; }
.nature-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 76px; align-items: center; }
.nature-image { position: relative; min-height: 540px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: 0 30px 80px rgba(0,0,0,.26); }
.nature-image img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; filter: saturate(.9) contrast(1.03); }
.nature-note { position: absolute; left: 22px; right: 22px; bottom: 22px; display: grid; padding: 18px 20px; border: 1px solid rgba(255,255,255,.2); border-radius: 18px; background: rgba(16,44,36,.78); backdrop-filter: blur(14px); }
.nature-note strong { font-size: 1rem; }
.nature-note span { color: #c9d8ce; font-size: .82rem; }
.nature-copy h2 { color: white; }
.nature-copy > p:not(.eyebrow) { margin: 26px 0 38px; color: #c9d8ce; }
.distance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.distance-grid div { display: grid; padding: 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.04); }
.distance-grid strong { color: white; font-size: 1.1rem; }
.distance-grid span { color: #aebfb5; font-size: .78rem; }

.gallery-section { overflow: hidden; }
.gallery-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-auto-rows: 230px; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border: 0; border-radius: 20px; padding: 0; cursor: zoom-in; background: #d8dfd4; }
.gallery-item::after { content: "+"; position: absolute; right: 16px; bottom: 16px; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(16,44,36,.78); color: white; font-size: 1.2rem; opacity: 0; transform: translateY(8px); transition: .22s ease; }
.gallery-item:hover::after { opacity: 1; transform: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-wide { grid-row: span 2; }

.booking-section { background: linear-gradient(135deg, var(--cream-100), #e7ebdf); }
.booking-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.booking-copy > p:not(.eyebrow, .price-note) { margin: 26px 0; color: var(--muted); }
.booking-contact { display: grid; margin: 38px 0 20px; }
.booking-contact span { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.booking-contact a { color: var(--forest-950); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 850; letter-spacing: -.04em; }
.price-note { max-width: 490px; padding: 15px 17px; border-left: 3px solid var(--red); background: rgba(255,255,255,.52); color: #5e675f; font-size: .78rem; }
.booking-form { display: grid; gap: 16px; padding: 34px; border: 1px solid rgba(23,62,50,.10); border-radius: var(--radius); background: rgba(255,255,255,.86); box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.booking-form label { display: grid; gap: 7px; color: var(--forest-950); font-size: .79rem; font-weight: 800; }
.booking-form input, .booking-form select, .booking-form textarea { width: 100%; border: 1px solid rgba(23,62,50,.18); border-radius: 12px; background: white; padding: 12px 13px; color: var(--ink); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.booking-form textarea { resize: vertical; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--forest-700); box-shadow: 0 0 0 4px rgba(52,112,90,.12); }
.booking-form input[aria-invalid="true"], .booking-form select[aria-invalid="true"] { border-color: var(--red); }
.checkbox { grid-template-columns: 20px 1fr !important; align-items: start; gap: 10px !important; color: var(--muted) !important; font-weight: 500 !important; }
.checkbox input { margin-top: 3px; }
.form-status { min-height: 24px; margin: 0; color: var(--forest-700); font-size: .82rem; font-weight: 700; }

.site-footer { padding: 72px 0 26px; background: #0b211b; color: #cbd8d0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 54px; }
.brand-footer { color: white; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid p { max-width: 320px; margin: 8px 0 0; color: #92a79b; font-size: .86rem; }
.footer-grid h3 { margin-bottom: 7px; color: white; font-size: .92rem; letter-spacing: 0; }
.footer-grid a, .footer-grid span { color: #9eb0a5; font-size: .82rem; }
.footer-grid a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #7f9689; font-size: .76rem; }

.lightbox { width: min(92vw, 1000px); max-width: none; border: 0; border-radius: 24px; padding: 12px; background: #102c24; box-shadow: 0 30px 100px rgba(0,0,0,.55); }
.lightbox::backdrop { background: rgba(6,18,14,.84); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: 82vh; object-fit: contain; border-radius: 16px; }
.lightbox-close { position: absolute; top: 21px; right: 21px; z-index: 2; width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--forest-950); font-size: 1.5rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .section { padding: 88px 0; }
  .main-nav { position: fixed; left: 20px; right: 20px; top: 76px; display: grid; gap: 4px; padding: 18px; border: 1px solid var(--border); border-radius: 20px; background: rgba(255,253,247,.98); box-shadow: var(--shadow-lg); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .2s ease; }
  .main-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 11px 12px; }
  .nav-toggle { display: block; }
  .hero { min-height: auto; }
  .hero-grid, .feature-layout, .nature-grid, .booking-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; }
  .feature-layout, .nature-grid, .booking-grid { gap: 54px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 72px; }
  .brand small { display: none; }
  .hero { padding-top: 118px; }
  h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .hero-grid { gap: 30px; }
  .hero-intro { font-size: 1rem; }
  .hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hero-facts li { padding: 12px; border: 1px solid var(--border); border-radius: 14px; background: rgba(255,255,255,.52); }
  .hero-facts strong { font-size: 1rem; }
  .hero-facts span { font-size: .67rem; }
  .hero-visual { min-height: 410px; }
  .hero-card-main { inset: 15px 30px 80px 0; }
  .hero-card-small { width: 50%; height: 35%; }
  .hero-badge { width: 92px; height: 92px; }
  .hero-badge strong { margin-top: -20px; font-size: .87rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid span + span::before { display: none; }
  .trust-grid span { border-bottom: 1px solid rgba(255,255,255,.1); }
  .house-grid, .feature-cards, .form-row { grid-template-columns: 1fr; }
  .mini-card:nth-child(2), .mini-card:nth-child(4) { transform: none; }
  .nature-image, .nature-image img { min-height: 390px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .gallery-wide { grid-column: span 2; grid-row: span 1; }
  .booking-form { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Rechtliche Unterseiten */
.legal-page { background: var(--cream-50); }
.legal-main { padding-top: 84px; }
.legal-hero { position: relative; overflow: hidden; padding: 92px 0 68px; background: linear-gradient(135deg, var(--cream-100), #e8ecdf); border-bottom: 1px solid var(--border); }
.legal-hero::after { content: ""; position: absolute; width: 360px; height: 360px; right: -130px; top: -160px; border-radius: 50%; background: rgba(130,149,106,.20); }
.legal-hero-inner { position: relative; z-index: 1; }
.legal-hero h1 { max-width: 900px; font-size: clamp(3rem, 6vw, 5.6rem); }
.legal-hero-inner > p:last-child { max-width: 720px; margin: 24px 0 0; color: #56645d; font-size: 1.08rem; }
.legal-section { padding: 72px 0 110px; }
.legal-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 54px; align-items: start; }
.legal-card { padding: clamp(26px, 5vw, 58px); border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.legal-card h2 { margin: 2.4em 0 .7em; font-size: clamp(1.45rem, 2.3vw, 2rem); letter-spacing: -.025em; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p { color: #4e5a54; }
.legal-card a { color: var(--forest-800); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-contact-block { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin: 18px 0 8px; }
.legal-contact-block p { margin: 0; padding: 20px; border-radius: 16px; background: var(--cream-100); }
.legal-source-note { margin-top: 42px !important; padding: 18px 20px; border-left: 3px solid var(--red); background: var(--cream-100); font-size: .84rem; }
.legal-aside { position: sticky; top: 112px; display: grid; gap: 16px; }
.legal-aside-card { display: grid; gap: 6px; padding: 24px; border-radius: 20px; background: var(--forest-950); color: #d7e2db; box-shadow: var(--shadow-sm); }
.legal-aside-card strong { color: white; font-size: 1.08rem; }
.legal-aside-card span, .legal-aside-card a { color: #a9bdb2; font-size: .86rem; }
.legal-aside-card a:hover { color: white; }
.legal-aside-kicker { margin-bottom: 6px; color: #f1b5ac !important; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .7rem !important; }
.legal-back { padding: 13px 16px; border: 1px solid var(--border); border-radius: 14px; color: var(--forest-900); background: rgba(255,255,255,.6); font-size: .84rem; font-weight: 800; }
.legal-footer { margin-top: 0; }
.checkbox a { color: var(--forest-800); text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-aside { position: static; grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .legal-main { padding-top: 76px; }
  .legal-hero { padding: 64px 0 48px; }
  .legal-section { padding: 42px 0 76px; }
  .legal-contact-block { grid-template-columns: 1fr; }
  .legal-card { border-radius: 20px; }
}
