:root {
  --olive-950: #27301b;
  --olive-900: #344020;
  --olive-800: #44512b;
  --olive-700: #59683a;
  --olive-600: #6f7d4d;
  --olive-300: #aab58a;
  --cream: #f6f1e4;
  --cream-deep: #e9e0ca;
  --paper: #fffdf8;
  --ink: #253022;
  --muted: #687064;
  --gold: #b59d62;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(39, 48, 27, .13);
  --shadow-soft: 0 14px 38px rgba(39, 48, 27, .09);
  --radius: 24px;
  --shell: min(1180px, calc(100% - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --script: "Segoe Script", "Brush Script MT", cursive;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.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;
}
.skip-link {
  position: fixed; left: 20px; top: -80px; z-index: 9999; padding: 12px 18px;
  background: var(--paper); color: var(--olive-950); border-radius: 10px; font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus { top: 20px; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 110px 0; }
.section-tint { background: var(--cream); }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  color: var(--white); transition: background .3s ease, box-shadow .3s ease, color .3s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 253, 248, .96); color: var(--olive-950);
  box-shadow: 0 8px 30px rgba(39, 48, 27, .08); backdrop-filter: blur(14px);
}
.nav-wrap {
  width: var(--shell); min-height: 92px; margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
}
.brand { display: inline-flex; flex-direction: column; text-decoration: none; line-height: 1; }
.brand-kicker, .brand-place {
  font-size: .67rem; font-weight: 800; letter-spacing: .31em; text-transform: uppercase;
}
.brand-script { font-family: var(--script); font-size: 2rem; margin: .15rem 0 .2rem; }
.brand-place { font-size: .58rem; letter-spacing: .38em; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { text-decoration: none; font-size: .95rem; font-weight: 700; position: relative; }
.main-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px;
  background: currentColor; transition: right .25s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.nav-cta { border: 1px solid currentColor; border-radius: 999px; padding: 10px 18px; }
.nav-toggle { display: none; background: none; border: 0; padding: 10px; color: currentColor; }
.nav-toggle span:not(.sr-only) { display: block; width: 27px; height: 2px; background: currentColor; margin: 5px 0; transition: .25s ease; }

.hero {
  position: relative; min-height: 92vh; display: grid; align-items: center; overflow: hidden;
  color: var(--white); background: url('../images/kammerbach-panorama.jpg') center 48% / cover no-repeat;
}
.hero-backdrop {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 34, 18, .76) 0%, rgba(24, 34, 18, .42) 48%, rgba(24, 34, 18, .15) 100%),
    linear-gradient(0deg, rgba(24, 34, 18, .35), transparent 45%);
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0; height: 150px;
  background: linear-gradient(transparent, rgba(18, 26, 14, .28));
}
.hero-content { position: relative; z-index: 2; padding-top: 85px; }
.eyebrow {
  margin: 0 0 13px; font-size: .78rem; font-weight: 800; letter-spacing: .24em; text-transform: uppercase;
}
.eyebrow.olive { color: var(--olive-700); }
.eyebrow.light { color: #dbe3cb; }
.hero h1 {
  max-width: 820px; margin: 0; font-family: var(--serif); font-size: clamp(3rem, 7vw, 6.6rem);
  font-weight: 500; line-height: .98; letter-spacing: -.035em;
}
.hero-subline { font-family: var(--script); font-size: clamp(1.55rem, 3vw, 2.5rem); margin: 22px 0 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 23px;
  border-radius: 999px; border: 1px solid transparent; text-decoration: none; font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--olive-700); color: var(--white); box-shadow: 0 12px 26px rgba(32, 42, 20, .25); }
.button-primary:hover { background: var(--olive-800); }
.button-secondary { background: var(--olive-900); color: var(--white); }
.button-ghost { border-color: rgba(255,255,255,.65); color: var(--white); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.button-ghost:hover { background: rgba(255,255,255,.17); }
.button-full { width: 100%; }
.hero-facts {
  margin-top: 42px; display: flex; flex-wrap: wrap; gap: 12px 34px; font-size: .92rem;
}
.hero-facts span { display: flex; flex-direction: column; padding-left: 15px; border-left: 2px solid rgba(255,255,255,.45); }
.hero-facts strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.scroll-hint { position: absolute; z-index: 3; bottom: 22px; left: 50%; width: 28px; height: 44px; border: 1px solid rgba(255,255,255,.65); border-radius: 20px; transform: translateX(-50%); }
.scroll-hint span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 4px; background: white; transform: translateX(-50%); animation: scroll 1.8s infinite; }
@keyframes scroll { 0% { opacity: 0; transform: translate(-50%,0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,16px); } }

.split-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.section-heading { max-width: 720px; }
.section-heading.centered { margin: 0 auto 52px; text-align: center; }
.section-heading h2, .region h2, .contact-panel h2, .flyer-copy h2 {
  margin: 0 0 18px; font-family: var(--serif); font-weight: 500; line-height: 1.1;
  font-size: clamp(2.3rem, 4.2vw, 4.25rem); letter-spacing: -.028em;
}
.section-heading p:not(.eyebrow) { color: var(--muted); }
.leaf-mark { display: block; color: var(--gold); font-size: 2.4rem; margin-bottom: 10px; }
.intro-copy { border-left: 1px solid var(--cream-deep); padding-left: 38px; }
.lead { font-family: var(--serif); font-size: clamp(1.35rem, 2.1vw, 1.75rem); line-height: 1.45; color: var(--olive-900); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: rgba(255,255,255,.72); border: 1px solid rgba(89,104,58,.12); border-radius: var(--radius);
  padding: 34px; min-height: 250px; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-card .icon {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%;
  background: var(--olive-700); color: white; font-family: var(--serif); font-size: 1.5rem; margin-bottom: 24px;
}
.feature-card h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 1.45rem; font-weight: 600; }
.feature-card p { margin: 0; color: var(--muted); }

.gallery-section .section-heading { margin-bottom: 42px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 285px; gap: 16px; }
.gallery-item {
  position: relative; border: 0; padding: 0; border-radius: 20px; overflow: hidden; background: var(--olive-900); color: white;
  box-shadow: var(--shadow-soft); text-align: left;
}
.gallery-item-wide { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .35s ease; }
.gallery-item:not(.gallery-item-wide) img { filter: saturate(.78) contrast(.96); }
.gallery-item::after { content: ""; position: absolute; inset: 42% 0 0; background: linear-gradient(transparent, rgba(26,35,20,.8)); }
.gallery-item span { position: absolute; z-index: 2; left: 22px; bottom: 18px; font-family: var(--serif); font-size: 1.25rem; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.045); filter: saturate(1) contrast(1); }
.gallery-item:focus-visible { outline: 4px solid var(--gold); outline-offset: 3px; }

.region { padding: 0; display: grid; grid-template-columns: 1.1fr .9fr; min-height: 720px; background: var(--olive-900); color: white; }
.region-image { background: url('../images/kammerbach-panorama.jpg') center / cover no-repeat; min-height: 620px; }
.region-panel { display: grid; place-items: center; padding: 80px 8vw; position: relative; overflow: hidden; }
.region-panel::before, .region-panel::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.region-panel::before { width: 420px; height: 420px; right: -250px; top: -190px; }
.region-panel::after { width: 300px; height: 300px; left: -210px; bottom: -140px; }
.region-inner { position: relative; z-index: 2; max-width: 560px; }
.region-inner > p:not(.eyebrow) { color: #dce3d2; }
.check-list { list-style: none; margin: 30px 0; padding: 0; }
.check-list li { position: relative; padding: 10px 0 10px 32px; border-bottom: 1px solid rgba(255,255,255,.11); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #c7d2aa; font-weight: 900; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; text-decoration: none; border-bottom: 1px solid currentColor; }
.light-link { color: #f1f4e9; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  position: relative; background: white; border: 1px solid rgba(89,104,58,.13); border-radius: var(--radius); padding: 40px 30px;
  text-align: center; box-shadow: var(--shadow-soft);
}
.price-card-featured { background: var(--olive-900); color: white; transform: translateY(-12px); }
.price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--olive-950); border-radius: 999px; padding: 5px 13px; font-size: .75rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.price-label { margin: 0 0 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .77rem; }
.price { margin: 0; font-family: var(--serif); line-height: 1; }
.price span { font-size: 4.3rem; }
.price-card > p:last-child { color: var(--muted); }
.price-card-featured > p:last-child { color: #dce4d1; }
.price-notes { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 34px; margin-top: 38px; color: var(--muted); }
.price-notes p { margin: 0; }

.booking { background: var(--olive-900); color: white; }
.booking-grid { display: grid; grid-template-columns: .83fr 1.17fr; gap: 70px; align-items: start; }
.contact-panel > p:not(.eyebrow) { color: #dce4d1; }
.contact-list { display: grid; gap: 12px; margin: 32px 0; }
.contact-list a, .contact-list-static div { display: flex; align-items: center; gap: 15px; color: white; text-decoration: none; }
.contact-list a > span:first-child, .contact-list-static div > span:first-child { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); }
.contact-list small { display: block; color: #bbc7aa; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.address-box { margin-top: 35px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.16); }
.booking-grid-single { grid-template-columns: minmax(0, 760px); justify-content: center; }
.address-box h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 1.35rem; }
.inquiry-form { background: var(--paper); color: var(--ink); border-radius: 28px; padding: 42px; box-shadow: 0 28px 80px rgba(15,20,10,.28); }
.form-heading h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 2rem; }
.form-heading p:last-child { color: var(--muted); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.inquiry-form label { display: grid; gap: 7px; margin-bottom: 16px; font-size: .84rem; font-weight: 800; color: var(--olive-900); }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
  width: 100%; border: 1px solid #d8d6cd; border-radius: 12px; background: white; color: var(--ink); padding: 12px 13px; outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--olive-600); box-shadow: 0 0 0 4px rgba(89,104,58,.12); }
.inquiry-form textarea { resize: vertical; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .76rem; text-align: center; }

.flyer-grid { display: grid; grid-template-columns: 1fr .75fr; gap: 80px; align-items: center; }
.flyer-copy p:not(.eyebrow) { color: var(--muted); margin-bottom: 28px; }
.flyer-preview { display: block; max-width: 420px; margin-left: auto; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); transform: rotate(1.3deg); transition: transform .25s ease; }
.flyer-preview:hover { transform: rotate(0) translateY(-4px); }

.site-footer { background: #1e2516; color: #dfe5d5; padding: 70px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr .7fr; gap: 42px; }
.footer-brand { color: white; margin-bottom: 18px; }
.footer-grid h2 { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: white; }
.footer-grid p { font-size: .92rem; color: #bbc6ad; }
.footer-grid a { color: inherit; }
.footer-bottom { margin-top: 45px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; font-size: .82rem; color: #9ca98e; }
.footer-bottom p { margin: 0; }

.lightbox { width: min(1100px, calc(100% - 32px)); border: 0; border-radius: 18px; padding: 12px; background: #11150f; color: white; box-shadow: 0 40px 120px rgba(0,0,0,.5); }
.lightbox::backdrop { background: rgba(15,18,12,.86); backdrop-filter: blur(6px); }
.lightbox img { width: 100%; max-height: 75vh; object-fit: contain; border-radius: 12px; }
.lightbox p { margin: 10px 8px 3px; text-align: center; }
.lightbox-close { position: absolute; right: 18px; top: 18px; z-index: 2; width: 42px; height: 42px; border-radius: 50%; border: 0; background: rgba(0,0,0,.62); color: white; font-size: 1.8rem; line-height: 1; }

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

.legal-page { background: var(--cream); min-height: 100vh; }
.legal-header { background: var(--olive-900); color: white; padding: 26px 0; }
.legal-main { padding: 80px 0 110px; }
.legal-card { max-width: 900px; background: white; border-radius: var(--radius); padding: clamp(28px, 6vw, 70px); box-shadow: var(--shadow); }
.legal-card h1 { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 500; margin-top: 0; }
.legal-card h2 { font-family: var(--serif); margin-top: 38px; }
.legal-card .notice { background: #fff6d8; border-left: 4px solid #c79f33; padding: 16px 18px; border-radius: 8px; }
.legal-back { display: inline-flex; margin-top: 30px; font-weight: 800; color: var(--olive-800); }

@media (max-width: 980px) {
  :root { --shell: min(100% - 32px, 760px); }
  .section { padding: 86px 0; }
  .nav-wrap { min-height: 76px; }
  .nav-toggle { display: block; z-index: 3; }
  .main-nav {
    position: fixed; inset: 0; background: var(--paper); color: var(--olive-950); display: grid; place-content: center; gap: 24px;
    text-align: center; font-size: 1.4rem; transform: translateY(-105%); transition: transform .3s ease;
  }
  .main-nav.is-open { transform: translateY(0); }
  .main-nav a { font-size: 1.25rem; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .split-intro, .booking-grid, .contact-layout, .flyer-grid { grid-template-columns: 1fr; gap: 45px; }
  .intro-copy { padding-left: 0; border-left: 0; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .region { grid-template-columns: 1fr; }
  .region-image { min-height: 440px; }
  .region-panel { padding: 80px max(32px, 8vw); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .flyer-preview { margin: 0 auto; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 26px); }
  .section { padding: 72px 0; }
  .brand-script { font-size: 1.65rem; }
  .hero { min-height: 88vh; background-position: 56% 50%; }
  .hero-backdrop { background: linear-gradient(90deg, rgba(24,34,18,.78), rgba(24,34,18,.35)); }
  .hero-content { padding-top: 74px; }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 4.4rem); }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 330px; }
  .hero-facts { gap: 16px; }
  .feature-grid, .price-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-item-wide { grid-column: auto; grid-row: auto; }
  .price-card-featured { transform: none; }
  .price-notes { display: grid; gap: 8px; justify-content: start; }
  .inquiry-form { padding: 28px 20px; }
  .footer-bottom { flex-direction: column; }
  .region-image { min-height: 330px; }
}

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


.gallery-grid-expanded { grid-auto-flow: dense; }
.gallery-grid-expanded .gallery-item-portrait { grid-row: span 2; }
.contact-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
.contact-details-card { background: var(--paper); color: var(--ink); border-radius: 28px; padding: 42px; box-shadow: 0 28px 80px rgba(15,20,10,.28); }
.contact-detail { display: flex; align-items: center; gap: 16px; padding: 13px 0; border-bottom: 1px solid rgba(83,98,55,.16); }
.contact-icon { flex: 0 0 46px; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--olive-100); color: var(--olive-900); font-weight: 800; }
.contact-detail small { display: block; color: var(--olive-600); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.contact-detail a, .email-text { color: var(--ink); font-size: 1.08rem; font-weight: 800; text-decoration: none; overflow-wrap: anywhere; }
.contact-detail a:hover { color: var(--olive-600); }
.contact-addresses { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
.contact-addresses h3 { margin: 0 0 9px; font-size: 1rem; color: var(--olive-900); }
.contact-addresses p { margin: 0 0 12px; }
.contact-note { margin: 30px 0 0; padding: 18px 20px; border-radius: 14px; background: var(--olive-100); color: var(--olive-900); font-size: .88rem; }

@media (max-width: 680px) {
  .gallery-grid-expanded .gallery-item-portrait { grid-row: auto; }
  .contact-details-card { padding: 28px 20px; }
  .contact-addresses { grid-template-columns: 1fr; gap: 22px; }
}

/* Aufenthalt und Reservierung */
.stay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stay-card {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(89,104,58,.12);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.stay-card .icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--olive-800);
  font-size: 1.35rem;
}
.stay-card h3 { margin: 0 0 12px; color: var(--olive-900); }
.stay-card p { margin: 0; color: var(--muted); }
.stay-card-featured { background: var(--olive-900); color: var(--white); }
.stay-card-featured .icon { background: rgba(255,255,255,.14); color: var(--white); }
.stay-card-featured h3, .stay-card-featured p { color: var(--white); }
.reservation-action { margin-top: 34px; text-align: center; }

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