/* ---- design tokens ---- */
:root {
  --font-serif: 'Newsreader', serif;
  --font-sans: 'Hanken Grotesk', system-ui, sans-serif;

  --bg: #f6f2ea;
  --bg-alt: #efe9dd;
  --bg-dark: #22382c;
  --card: #fffdf9;

  --green: #2f4a3a;
  --green-dark: #22382c;

  --text: #23201b;
  --text-soft: #4a453c;
  --text-mute: #6f685c;
  --text-faint: #a99f8d;
  --olive: #7a6f3f;

  --gold: #e9d9b6;
  --gold-hover: #f0e3c4;
  --gold-dark: #c7b98a;

  --cream: #f4f1e8;
  --cream-2: #f3efe6;

  --border: rgba(35, 32, 27, .12);
  --border-soft: rgba(35, 32, 27, .1);

  --header-h: 88px;
}

/* ---- reset ---- */
[hidden] { display: none !important; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
::selection { background: var(--green); color: var(--bg); }
input, textarea, select, button { font-family: inherit; }
a { color: inherit; }
img { max-width: 100%; }

@keyframes sway {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(4deg); }
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: none; }
}
@keyframes menuIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: none; }
}

.wrap { max-width: 1180px; margin: 0 auto; }
.section { scroll-margin-top: var(--header-h); padding: clamp(64px, 10vw, 140px) clamp(22px, 5vw, 64px); }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: #eef0e6; }
.eyebrow { margin: 0 0 16px; font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: var(--olive); font-weight: 600; }
.eyebrow-on-dark { color: var(--gold-dark); }
.heading { margin: 0; font-family: var(--font-serif); font-weight: 500; font-size: clamp(30px, 4vw, 50px); line-height: 1.08; letter-spacing: -.015em; text-wrap: balance; }

[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2, .7, .2, 1), transform .8s cubic-bezier(.2, .7, .2, 1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

.btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; border-radius: 999px; font-weight: 700; font-size: 16px; cursor: pointer; border: none; transition: transform .2s, background .2s; font-family: inherit; }
.btn-gold { padding: 15px 28px; background: var(--gold); color: var(--text); }
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-2px); }
.btn-outline { padding: 15px 28px; border: 1.5px solid rgba(244, 241, 232, .55); color: var(--cream); font-weight: 600; }
.btn-outline:hover { background: rgba(244, 241, 232, .12); }
.btn-green { padding: 14px 26px; background: var(--green); color: var(--cream-2); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ---- header ---- */
.header {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(246, 242, 234, 0);
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.header.is-scrolled {
  background: rgba(246, 242, 234, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
  padding: 10px clamp(18px, 5vw, 64px);
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; flex: none; }
.brand-icon { animation: sway 5s ease-in-out infinite; transform-origin: 50% 50%; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-eyebrow { font-size: 9.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--olive); font-weight: 600; }
.brand-name { font-family: var(--font-serif); font-size: 20px; font-weight: 600; letter-spacing: .01em; color: var(--green); }

.nav { display: flex; align-items: center; gap: clamp(12px, 1.8vw, 26px); }
.nav-link { text-decoration: none; font-weight: 500; font-size: 15px; transition: color .2s; }
.nav-link:hover { color: var(--green); }
.nav-cta { text-decoration: none; padding: 11px 20px; border-radius: 999px; background: var(--green); color: var(--cream-2); font-weight: 600; font-size: 15px; white-space: nowrap; transition: transform .2s, background .2s; }
.nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }

.lang-switch { display: flex; align-items: center; gap: 2px; padding: 4px; border: 1px solid rgba(35, 32, 27, .18); border-radius: 999px; margin-left: 2px; }
.lang-btn { border: none; background: transparent; color: #5c564c; font-weight: 600; font-size: 13px; padding: 6px 11px; border-radius: 999px; cursor: pointer; letter-spacing: .04em; }
.lang-btn.is-active { background: var(--green); color: var(--cream-2); }

.menu-toggle { display: none; flex: none; flex-direction: column; gap: 5px; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid rgba(35, 32, 27, .18); border-radius: 12px; background: rgba(255, 253, 249, .7); cursor: pointer; }
.menu-toggle-bar { width: 20px; height: 2px; background: var(--green); border-radius: 2px; display: block; }

.mobile-menu { position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-top: 1px solid var(--border-soft); box-shadow: 0 20px 40px -20px rgba(20, 30, 24, .4); padding: 14px clamp(18px, 5vw, 64px) 22px; display: none; flex-direction: column; gap: 4px; animation: menuIn .28s ease both; }
.mobile-menu.is-open { display: flex; }
.mobile-link { text-decoration: none; font-weight: 600; font-size: 18px; padding: 12px 0; border-bottom: 1px solid var(--border-soft); color: var(--text); }
.mobile-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; gap: 12px; }
.mobile-cta { text-decoration: none; padding: 13px 24px; border-radius: 999px; background: var(--green); color: var(--cream-2); font-weight: 600; font-size: 16px; }

@media (min-width: 1040px) {
  .menu-toggle, .mobile-menu { display: none !important; }
}
@media (max-width: 1039px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
}

/* ---- hero ---- */
.hero { position: relative; min-height: 94vh; display: flex; align-items: center; padding: clamp(90px, 12vh, 150px) clamp(22px, 5vw, 64px) clamp(110px, 16vh, 160px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20, 30, 24, .42) 0%, rgba(20, 30, 24, .14) 30%, rgba(20, 30, 24, .34) 62%, rgba(16, 24, 19, .8) 100%); }
.hero-content { position: relative; max-width: 920px; color: var(--cream); animation: heroIn 1s cubic-bezier(.2, .7, .2, 1) both; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 22px; font-size: 13px; letter-spacing: .24em; text-transform: uppercase; font-weight: 600; }
.hero-eyebrow-rule { width: 26px; height: 1px; background: var(--cream); opacity: .7; }
.hero-title { margin: 0; font-family: var(--font-serif); font-weight: 500; font-size: clamp(40px, 7vw, 92px); line-height: 1.02; letter-spacing: -.02em; text-wrap: balance; }
.hero-title-alt { font-style: italic; color: var(--gold); }
.hero-sub { max-width: 560px; margin: 26px 0 34px; font-size: clamp(16px, 1.5vw, 20px); line-height: 1.55; color: rgba(244, 241, 232, .92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

@media (max-width: 719px) {
  .hero { min-height: auto; flex-direction: column; justify-content: flex-end; gap: 26px; padding: 120px 22px 40px; }
}

/* ---- booking card (hero widget) ---- */
.booking-card {
  position: absolute; right: clamp(22px, 5vw, 64px); bottom: clamp(22px, 5vw, 64px);
  width: min(360px, calc(100vw - 44px)); max-width: calc(100vw - 44px); max-height: calc(100vh - 120px);
  display: flex; flex-direction: column;
  background: rgba(246, 242, 234, .96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .35); border-radius: 18px; overflow: hidden;
  box-shadow: 0 26px 60px -24px rgba(20, 30, 24, .6);
  animation: heroIn 1s .25s cubic-bezier(.2, .7, .2, 1) both;
  transition: width .3s ease;
}
.booking-card.is-open { width: min(680px, calc(100vw - 44px)); }
@media (max-width: 719px) {
  .booking-card { position: relative; right: auto; bottom: auto; width: 100%; max-width: 100%; background: rgba(246, 242, 234, .97); }
  .booking-card.is-open { position: fixed; inset: 0; z-index: 130; width: auto; max-width: none; max-height: none; border-radius: 0; background: var(--bg); overflow-y: auto; animation: menuIn .25s ease both; }
}

.booking-stats { display: flex; gap: 0; }
.booking-stat { flex: 1; padding: 16px 12px; text-align: center; }
.booking-stat-value { font-family: var(--font-serif); font-size: 27px; line-height: 1; color: var(--green); }
.booking-stat-label { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute); margin-top: 6px; }
.booking-stat-divider { width: 1px; background: var(--border); }
.booking-open-btn { display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; border: none; padding: 15px; background: var(--green); color: var(--cream-2); font-weight: 700; font-size: 15px; cursor: pointer; transition: background .2s; font-family: inherit; }
.booking-open-btn:hover { background: var(--green-dark); }

/* ---- calendar (shared: hero widget + belegung section) ---- */
.cal-head { flex: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; background: var(--green); color: var(--cream-2); }
.cal-head-eyebrow { margin: 0 0 3px; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; }
.cal-head-title { margin: 0; font-family: var(--font-serif); font-weight: 500; font-size: 22px; }
.cal-close { flex: none; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(243, 239, 230, .3); background: transparent; color: var(--cream-2); cursor: pointer; font-family: inherit; transition: background .2s; }
.cal-close:hover { background: rgba(243, 239, 230, .14); }
.cal-body { flex: 1; min-height: 0; overflow-y: auto; padding: 18px 20px; }
.cal-legend { display: flex; flex-wrap: wrap; gap: 10px 20px; align-items: center; margin-bottom: 18px; font-size: 12.5px; color: #4a453c; }
.cal-legend-item { display: flex; align-items: center; gap: 7px; }
.cal-swatch { width: 15px; height: 15px; border-radius: 5px; display: inline-block; }
.cal-swatch-free { background: var(--card); border: 1px solid rgba(35, 32, 27, .25); }
.cal-swatch-booked { background: #e7ded0; }
.cal-swatch-sel { background: var(--green); }
.cal-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.cal-nav-label { font-size: 12.5px; font-weight: 600; letter-spacing: .02em; color: var(--text-mute); text-align: center; }
.cal-nav-btn { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(35, 32, 27, .18); background: var(--card); color: var(--green); cursor: pointer; transition: background .2s; font-family: inherit; }
.cal-nav-btn:disabled { opacity: .32; pointer-events: none; cursor: default; }
.cal-months { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; }
.cal-month-name { text-align: center; font-family: var(--font-serif); font-size: 19px; color: var(--green); margin-bottom: 11px; }
.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-bottom: 5px; }
.cal-weekday { text-align: center; font-size: 11px; font-weight: 600; color: var(--text-faint); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-day { display: flex; align-items: center; justify-content: center; height: 40px; border-radius: 9px; font-size: 14.5px; font-weight: 500; transition: background .15s, color .15s; }
.cal-day--empty { visibility: hidden; }
.cal-day--past { color: #c9c2b4; }
.cal-day--booked { background: #e7ded0; color: var(--text-faint); text-decoration: line-through; cursor: not-allowed; }
.cal-day--free { background: var(--card); border: 1px solid rgba(35, 32, 27, .14); color: #2f3b31; cursor: pointer; }
.cal-day--inrange { background: #d3e0cd; color: var(--green); cursor: pointer; }
.cal-day--selend { background: var(--green); color: var(--cream-2); font-weight: 700; cursor: pointer; }
.cal-footer { flex: none; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; padding: 16px 20px; border-top: 1px solid var(--border); }
.cal-sel-text { font-family: var(--font-serif); font-size: 18px; color: var(--green); }
.cal-price-text { font-size: 13.5px; color: var(--text-mute); margin-top: 2px; }

/* full-section calendar (Belegung) variant */
.calendar-panel { background: var(--card); border: 1px solid var(--border); border-radius: 22px; padding: clamp(22px, 3vw, 40px); box-shadow: 0 24px 60px -40px rgba(20, 30, 24, .4); }
.calendar-panel .cal-legend { font-size: 14px; margin-bottom: 26px; }
.calendar-panel .cal-swatch { width: 18px; height: 18px; }
.calendar-panel .cal-nav { margin-bottom: 18px; }
.calendar-panel .cal-nav-label { font-size: 14px; }
.calendar-panel .cal-months { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(24px, 4vw, 48px); }
.calendar-panel .cal-month-name { font-size: 22px; margin-bottom: 14px; }
.calendar-panel .cal-weekday { font-size: 11.5px; letter-spacing: .06em; }
.calendar-panel .cal-footer { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--border); }
.calendar-panel .cal-sel-text { font-size: 20px; }
.calendar-panel .cal-price-text { font-size: 14px; }
.calendar-disclaimer { text-align: center; margin: 16px 0 0; font-size: 13px; color: var(--text-faint); }

/* ---- willkommen ---- */
.welcome-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(32px, 6vw, 90px); align-items: center; }
.welcome-p { margin: 0 0 20px; color: var(--text-soft); font-size: 18px; }
.welcome-sign { margin: 0; font-family: var(--font-serif); font-style: italic; font-size: 20px; color: var(--green); }
.welcome-photo-wrap { position: relative; }
.welcome-photo { aspect-ratio: 4 / 5; border-radius: 18px; overflow: hidden; box-shadow: 0 24px 60px -30px rgba(20, 30, 24, .5); }
.welcome-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; display: block; transition: transform 1.1s cubic-bezier(.2, .7, .2, 1); }
.welcome-photo:hover img { transform: scale(1.05); }
.welcome-badge { position: absolute; left: -18px; bottom: 34px; background: var(--green); color: var(--cream-2); padding: 18px 22px; border-radius: 14px; max-width: 210px; box-shadow: 0 16px 40px -18px rgba(20, 30, 24, .6); }
.welcome-badge-title { font-family: var(--font-serif); font-size: 22px; line-height: 1.1; }
.welcome-badge-sub { font-size: 13.5px; opacity: .85; margin-top: 4px; }

/* ---- ferienhaus ---- */
.house-head { display: flex; flex-wrap: wrap; gap: 20px; align-items: flex-end; justify-content: space-between; margin-bottom: clamp(32px, 5vw, 60px); }
.house-head-copy { max-width: 640px; }
.house-head-p { margin: 0; max-width: 360px; color: var(--text-soft); font-size: 16.5px; }

.carousel { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 16 / 9; background: #e2dbcc; box-shadow: 0 24px 60px -34px rgba(20, 30, 24, .5); }
.carousel-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0; transform: scale(1); transition: opacity 1s ease, transform 6s ease; }
.carousel-slide.is-active { opacity: 1; transform: scale(1.04); }
.carousel-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20, 30, 24, 0) 55%, rgba(20, 30, 24, .5) 100%); pointer-events: none; }
.carousel-caption { position: absolute; left: 20px; bottom: 18px; display: flex; align-items: center; gap: 10px; color: var(--cream); pointer-events: none; font-family: var(--font-serif); font-size: clamp(18px, 2.4vw, 24px); text-shadow: 0 2px 12px rgba(0, 0, 0, .4); }
.carousel-counter { position: absolute; right: 18px; top: 18px; padding: 6px 12px; border-radius: 999px; background: rgba(20, 30, 24, .42); color: var(--cream); font-size: 13px; font-weight: 600; letter-spacing: .03em; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; border: none; background: rgba(246, 242, 234, .9); color: var(--green); cursor: pointer; box-shadow: 0 6px 18px -6px rgba(0, 0, 0, .5); transition: background .2s, transform .2s; font-family: inherit; }
.carousel-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.carousel-arrow--prev { left: 16px; }
.carousel-arrow--next { right: 16px; }
.carousel-dots { position: absolute; right: 18px; bottom: 20px; display: flex; gap: 8px; }
.carousel-dot { width: 9px; height: 9px; border-radius: 999px; border: none; padding: 0; cursor: pointer; background: rgba(244, 241, 232, .5); box-shadow: 0 1px 4px rgba(0, 0, 0, .3); transition: width .3s ease, background .3s ease; }
.carousel-dot.is-active { width: 22px; background: var(--cream); }
.carousel-expand { position: absolute; left: 18px; top: 18px; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; border: none; background: rgba(20, 30, 24, .42); color: var(--cream); cursor: pointer; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); transition: background .2s; }
.carousel-expand:hover { background: rgba(20, 30, 24, .62); }

/* ---- lightbox ---- */
.lightbox { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; background: rgba(16, 22, 18, .96); animation: menuIn .22s ease both; touch-action: pinch-zoom; }
.lightbox-image { max-width: min(92vw, 1600px); max-height: 82vh; width: auto; height: auto; object-fit: contain; border-radius: 4px; box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .7); }
.lightbox-caption { position: absolute; left: 50%; bottom: clamp(18px, 4vh, 40px); transform: translateX(-50%); color: var(--cream); font-family: var(--font-serif); font-size: clamp(17px, 2vw, 22px); text-align: center; text-shadow: 0 2px 12px rgba(0, 0, 0, .5); }
.lightbox-counter { position: absolute; left: 50%; top: clamp(14px, 3vh, 28px); transform: translateX(-50%); padding: 6px 14px; border-radius: 999px; background: rgba(244, 241, 232, .12); color: var(--cream); font-size: 13px; font-weight: 600; letter-spacing: .03em; }
.lightbox-close { position: absolute; right: clamp(14px, 3vw, 28px); top: clamp(14px, 3vh, 28px); display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(244, 241, 232, .3); background: transparent; color: var(--cream); cursor: pointer; transition: background .2s; }
.lightbox-close:hover { background: rgba(244, 241, 232, .12); }
.lightbox-arrow { position: absolute; top: 50%; transform: translateY(-50%); display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(244, 241, 232, .25); background: rgba(244, 241, 232, .08); color: var(--cream); cursor: pointer; transition: background .2s, transform .2s; }
.lightbox-arrow:hover { background: rgba(244, 241, 232, .18); transform: translateY(-50%) scale(1.06); }
.lightbox-arrow--prev { left: clamp(10px, 3vw, 32px); }
.lightbox-arrow--next { right: clamp(10px, 3vw, 32px); }
@media (max-width: 640px) {
  .lightbox-arrow { width: 44px; height: 44px; }
  .lightbox-close { width: 38px; height: 38px; }
}

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: 16px; margin-top: 36px; }
.feature-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 30px 28px; transition: transform .35s cubic-bezier(.2, .7, .2, 1), box-shadow .35s ease, border-color .35s ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px -26px rgba(20, 30, 24, .4); border-color: rgba(47, 74, 58, .28); }
.feature-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: #eef2ea; color: var(--green); margin-bottom: 20px; }
.feature-title-row { display: flex; align-items: baseline; gap: 9px; }
.feature-number { font-family: var(--font-serif); font-size: 30px; line-height: 1; color: var(--green); }
.feature-title { font-weight: 600; font-size: 17px; }
.feature-desc { color: var(--text-mute); font-size: 15px; margin-top: 8px; }

/* ---- hof ---- */
.hof-head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 56px); }
.hof-head-p { margin: 0; color: var(--text-soft); font-size: 18px; }
.hof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.hof-card { border-radius: 18px; padding: 30px 26px; min-height: 230px; display: flex; flex-direction: column; justify-content: flex-end; }
.hof-card--dark { background: var(--green); color: #eef0e6; }
.hof-card--light { background: var(--bg); border: 1px solid var(--border); }
.hof-card--gold { background: var(--gold); }
.hof-mark { font-family: var(--font-serif); font-size: 40px; line-height: 1; margin-bottom: auto; }
.hof-card--light .hof-mark { color: var(--green); }
.hof-card--gold .hof-mark { color: var(--green); }
.hof-card-title { margin: 0 0 8px; font-family: var(--font-serif); font-weight: 500; font-size: 23px; }
.hof-card-desc { margin: 0; font-size: 15px; }
.hof-card--dark .hof-card-desc { opacity: .85; }
.hof-card--light .hof-card-desc { color: var(--text-mute); }
.hof-card--gold .hof-card-desc { color: #5c563f; }

/* ---- umgebung ---- */
.around-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(32px, 6vw, 80px); align-items: center; }
.around-photo { aspect-ratio: 5 / 6; border-radius: 18px; overflow: hidden; box-shadow: 0 24px 60px -30px rgba(0, 0, 0, .5); }
.around-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; display: block; transition: transform 1.1s cubic-bezier(.2, .7, .2, 1); }
.around-photo:hover img { transform: scale(1.05); }
.around-heading { color: var(--cream); }
.around-p { margin: 0 0 30px; color: rgba(238, 240, 230, .82); font-size: 18px; }
.around-list { display: flex; flex-direction: column; gap: 2px; }
.around-item { display: flex; align-items: baseline; gap: 18px; padding: 16px 0; border-top: 1px solid rgba(238, 240, 230, .16); }
.around-item:last-child { border-bottom: 1px solid rgba(238, 240, 230, .16); }
.around-num { font-family: var(--font-serif); font-size: 18px; color: var(--gold-dark); min-width: 56px; }
.around-item-title { font-weight: 600; }
.around-item-desc { color: rgba(238, 240, 230, .7); font-size: 15px; }

/* ---- belegung section ---- */
.cal-section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(34px, 4vw, 52px); }
.cal-section-head-p { margin: 0; color: var(--text-mute); font-size: 17px; }

/* ---- preise ---- */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; align-items: stretch; }
.price-card { border-radius: 22px; padding: clamp(30px, 4vw, 46px); }
.price-card--main { background: var(--green); color: var(--cream-2); display: flex; flex-direction: column; }
.price-card--side { background: var(--bg); border: 1px solid var(--border); }
.price-label { margin: 0; font-size: 14px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-dark); }
.price-value-row { display: flex; align-items: baseline; gap: 10px; margin: 10px 0 6px; }
.price-value { font-family: var(--font-serif); font-size: clamp(52px, 8vw, 84px); line-height: .9; }
.price-unit { font-size: 16px; opacity: .8; }
.price-note { margin: 0 0 26px; font-size: 15px; opacity: .8; }
.price-rule { height: 1px; background: rgba(243, 239, 230, .2); margin-bottom: 22px; }
.price-incl-title { margin: 0 0 14px; font-weight: 600; }
.price-incl-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; font-size: 15.5px; }
.price-incl-list li { display: flex; gap: 12px; }
.price-incl-list li::before { content: '✓'; color: var(--gold-dark); }
.price-card-cta { text-align: center; margin-top: 30px; }
.price-extra-title { margin: 0 0 20px; font-weight: 600; font-size: 17px; }
.price-extra-row { display: flex; justify-content: space-between; gap: 16px; padding: 16px 0; border-top: 1px solid var(--border); }
.price-extra-row:last-of-type { border-bottom: 1px solid var(--border); }
.price-extra-amount { font-weight: 600; white-space: nowrap; }
.price-side-note { margin: 24px 0 0; color: var(--text-mute); font-size: 14.5px; }

/* ---- kontakt ---- */
.contact-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(32px, 6vw, 80px); }
.contact-p { margin: 0 0 34px; color: var(--text-soft); font-size: 18px; max-width: 420px; }
.contact-list { display: flex; flex-direction: column; gap: 22px; }
.contact-row { display: flex; gap: 16px; align-items: center; text-decoration: none; color: inherit; }
.contact-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--green); color: var(--cream-2); font-size: 18px; flex: none; }
.contact-label { display: block; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--olive); }
.contact-value { font-family: var(--font-serif); font-size: 21px; }
.contact-value--wrap { word-break: break-all; }
.contact-sub { display: block; color: var(--text-mute); font-size: 15px; }

.contact-success { background: var(--green); color: var(--cream-2); border-radius: 20px; padding: 48px 40px; height: 100%; display: flex; flex-direction: column; justify-content: center; text-align: center; }
.contact-success-mark { font-family: var(--font-serif); font-size: 48px; margin-bottom: 12px; }
.contact-success-title { margin: 0 0 10px; font-family: var(--font-serif); font-weight: 500; font-size: 28px; }
.contact-success-body { margin: 0; opacity: .85; font-size: 16px; }

.contact-form { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: clamp(24px, 3vw, 38px); display: flex; flex-direction: column; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--text-soft); }
.form-field input, .form-field textarea { padding: 13px 15px; border: 1px solid rgba(35, 32, 27, .2); border-radius: 11px; background: var(--card); font-size: 16px; font-weight: 400; }
.form-field textarea { resize: vertical; }
.form-row { display: flex; gap: 14px; flex-wrap: wrap; }
.form-row .form-field { flex: 1; min-width: 130px; }
.form-submit { margin-top: 4px; padding: 15px 24px; border: none; border-radius: 999px; background: var(--green); color: var(--cream-2); font-weight: 700; font-size: 16px; cursor: pointer; transition: transform .2s, background .2s; }
.form-submit:hover { background: var(--green-dark); transform: translateY(-1px); }
.form-hint { margin: 0; text-align: center; color: var(--text-mute); font-size: 13px; }

/* ---- footer ---- */
.footer { background: var(--bg-dark); color: rgba(238, 240, 230, .72); padding: clamp(48px, 6vw, 72px) clamp(22px, 5vw, 64px) 40px; }
.footer-top { max-width: 1180px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-start; }
.footer-brand { max-width: 340px; }
.footer-brand-row { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer-brand-name { font-family: var(--font-serif); font-size: 20px; color: var(--cream); }
.footer-tag { margin: 0; font-size: 14.5px; line-height: 1.6; }
.footer-cols { display: flex; gap: clamp(32px, 6vw, 56px); flex-wrap: wrap; }
.footer-col-title { margin: 0 0 12px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-dark); }
.footer-col-links { display: flex; flex-direction: column; gap: 9px; font-size: 15px; }
.footer-col-links a { text-decoration: none; }
.footer-bottom { max-width: 1180px; margin: 40px auto 0; padding-top: 22px; border-top: 1px solid rgba(238, 240, 230, .14); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: 13px; }
