/* =========================================================
   Haus Kranichblick — modern single-page site
   ========================================================= */

:root {
  --moss:       #3d5a40;
  --moss-dark:  #2b3f2e;
  --moss-soft:  #6b8e71;
  --cream:      #f6f1e8;
  --cream-warm: #ede4d1;
  --sand:       #d9c9a8;
  --wood:       #6a4a2b;
  --ink:        #1b1f1b;
  --ink-soft:   #4a524a;
  --muted:      #8a8f86;
  --line:       #e6ddc9;
  --white:      #ffffff;
  --shadow-sm:  0 4px 16px rgba(27, 31, 27, .06);
  --shadow-md:  0 18px 40px rgba(27, 31, 27, .12);
  --shadow-lg:  0 30px 80px rgba(27, 31, 27, .25);
  --radius:     18px;
  --radius-lg:  28px;
  --ease:       cubic-bezier(.2,.7,.2,1);
  --serif:      "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans:       "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max:        1180px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--moss); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 .4em;
}
.italic { font-style: italic; color: var(--moss-soft); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: rgba(246, 241, 232, 0.75);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(246, 241, 232, 0.92);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--moss-dark); }
.brand__mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  color: var(--moss);
  background: var(--cream-warm);
  border-radius: 50%;
}
.brand__name { display: flex; flex-direction: column; line-height: 1; }
.brand__top {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-soft);
}
.brand__bot {
  font-family: var(--serif);
  font-size: 22px; font-weight: 600;
  color: var(--moss-dark);
  margin-top: 2px;
}

.nav__links {
  display: flex; align-items: center; gap: 4px;
}
.nav__links a {
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: 10px;
  color: var(--ink-soft);
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--moss-dark); background: rgba(255,255,255,.6); }
.nav__cta {
  background: var(--moss);
  color: var(--white) !important;
  margin-left: 8px;
}
.nav__cta:hover { background: var(--moss-dark) !important; }

.nav__burger {
  display: none;
  width: 42px; height: 42px;
  border: none; background: transparent;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--moss-dark);
  transition: transform .3s, opacity .3s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s, box-shadow .2s;
  cursor: pointer;
}
.btn--primary {
  background: var(--moss);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(61, 90, 64, .28);
}
.btn--primary:hover { background: var(--moss-dark); transform: translateY(-2px); color: var(--white); }
.btn--ghost {
  background: transparent;
  color: var(--moss-dark);
  border-color: var(--moss-dark);
}
.btn--ghost:hover { background: var(--moss-dark); color: var(--white); transform: translateY(-2px); }
.btn--full { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(43, 63, 46, .35), rgba(43, 63, 46, .6)),
    url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  transform: scale(1.06);
  animation: slowZoom 20s ease-out forwards;
  z-index: -2;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 20% 80%, rgba(246,241,232,.25), transparent 70%),
    linear-gradient(180deg, transparent 40%, rgba(27, 31, 27, .5));
  z-index: -1;
}
@keyframes slowZoom {
  to { transform: scale(1); }
}
.hero__content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  width: 100%;
  color: var(--white);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin: 0 0 20px;
}
.hero__title {
  font-size: clamp(48px, 8vw, 96px);
  color: var(--white);
  margin: 0 0 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,.2);
}
.hero__title .italic { color: var(--sand); }
.hero__lead {
  max-width: 560px;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,.92);
  margin: 0 0 36px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__ctas .btn--ghost { color: var(--white); border-color: rgba(255,255,255,.7); }
.hero__ctas .btn--ghost:hover { background: var(--white); color: var(--moss-dark); border-color: var(--white); }

.hero__facts {
  list-style: none; padding: 0;
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 680px;
  border-top: 1px solid rgba(255,255,255,.25);
  padding-top: 28px;
}
.hero__facts li {
  display: flex; flex-direction: column;
  color: var(--white);
}
.hero__facts strong {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  line-height: 1;
}
.hero__facts span {
  font-size: 13px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.75);
  margin-top: 6px;
}

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 46px;
  border: 1.5px solid rgba(255,255,255,.7);
  border-radius: 20px;
  display: grid; place-items: center;
}
.hero__scroll span {
  display: block;
  width: 3px; height: 8px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(-8px); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

/* ---------- Section shells ---------- */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.section--muted { background: var(--cream-warm); }
.section--dark {
  background: var(--moss-dark);
  color: var(--cream);
}
.section--dark .section__title,
.section--dark h3 { color: var(--white); }
.section--dark .section__eyebrow { color: var(--sand); }
.section--dark .lead { color: rgba(246,241,232,.82); }

.section__head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}
.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 600;
  color: var(--moss);
  margin: 0 0 14px;
}
.section__title {
  font-size: clamp(36px, 5vw, 58px);
  color: var(--moss-dark);
}
.section__lead {
  font-size: 17.5px;
  color: var(--ink-soft);
  margin-top: 16px;
}

/* ---------- Split layouts ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.split--reverse .split__media { order: -1; }
.split__text h2 { margin-top: 8px; }
.lead { font-size: 18.5px; color: var(--ink-soft); }
.welcome__note {
  padding: 16px 20px;
  margin-top: 8px;
  border-left: 3px solid var(--moss);
  background: var(--cream-warm);
  border-radius: 0 10px 10px 0;
  font-size: 15.5px;
  color: var(--ink-soft);
}
.welcome__note a { color: var(--moss-dark); font-weight: 600; border-bottom: 1px solid var(--moss-soft); }
.welcome__note a:hover { color: var(--moss); }

.welcome__closing {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--moss-dark);
  margin: 28px 0 8px;
}

.signature {
  display: flex;
  flex-direction: column;
  margin: 4px 0 0;
  line-height: 1.2;
}
.signature span {
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: .02em;
}
.signature strong {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 36px;
  color: var(--moss-dark);
  margin-top: 2px;
  letter-spacing: 0.005em;
}

.tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 28px;
}
.tags span {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--ink-soft);
  background: var(--white);
}

.checklist {
  list-style: none; padding: 0; margin: 24px 0 0;
}
.checklist li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px dashed var(--line);
  font-size: 16px;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 18px; height: 10px;
  border-left: 2px solid var(--moss);
  border-bottom: 2px solid var(--moss);
  transform: rotate(-45deg);
}

/* ---------- Photo compositions ---------- */
.split__media {
  position: relative;
  min-height: 460px;
}
.photo {
  position: absolute;
  background: var(--sand) center/cover no-repeat;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.photo--primary {
  inset: 0 0 50px 60px;
}
.photo--accent {
  width: 55%;
  aspect-ratio: 4/5;
  bottom: 0; left: 0;
  border: 8px solid var(--cream);
  box-shadow: var(--shadow-lg);
}
.section--muted .photo--accent { border-color: var(--cream-warm); }
.photo--accent-left { left: 0; right: auto; }
.photo__badge {
  position: absolute;
  top: 24px; right: 24px;
  width: 110px; height: 110px;
  background: var(--moss);
  color: var(--cream);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  animation: spinSlow 22s linear infinite;
}
.photo__badge strong {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: 0;
  text-transform: none;
  margin: 2px 0;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* ---------- Features grid ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--cream-warm);
  border-radius: 14px;
  margin-bottom: 18px;
  color: var(--moss);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 {
  font-size: 22px;
  color: var(--moss-dark);
  margin-bottom: 8px;
}
.feature p { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery__item {
  position: relative;
  background: var(--moss) center/cover no-repeat;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .5s var(--ease);
}
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55));
}
.gallery__item:hover { transform: scale(1.02); }
.gallery__item figcaption {
  position: absolute;
  left: 20px; bottom: 16px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  z-index: 1;
}
.gallery__item--large { grid-column: span 2; grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ---------- Prices ---------- */
.prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.price {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price__season {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11.5px;
  color: var(--moss);
  margin: 0 0 8px;
  font-weight: 600;
}
.price h3 {
  font-size: 28px;
  color: var(--moss-dark);
  margin-bottom: 20px;
}
.price__amount {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin: 0 0 20px;
}
.price__from {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  margin-right: 6px;
  font-family: var(--sans);
}
.price__unit {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 6px;
  font-family: var(--sans);
}
.price ul {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.price ul li {
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 15px;
}
.price ul li.price__hint {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  padding-top: 12px;
  margin-top: 6px;
  border-top: 1px dashed var(--line);
}
.price--featured ul li.price__hint { color: rgba(255,255,255,.6); border-top-color: rgba(255,255,255,.15); }
.price--featured {
  background: var(--moss-dark);
  color: var(--cream);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}
.price--featured h3 { color: var(--white); }
.price--featured .price__season { color: var(--sand); }
.price--featured .price__amount { color: var(--white); }
.price--featured .price__from,
.price--featured .price__unit { color: rgba(255,255,255,.65); }
.price--featured ul { border-top-color: rgba(255,255,255,.15); }
.price--featured ul li { color: rgba(255,255,255,.85); }
.price__badge {
  position: absolute;
  top: -14px; right: 24px;
  background: var(--sand);
  color: var(--wood);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.prices__note {
  margin-top: 30px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- Places (surroundings) ---------- */
.places {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}
.place {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.place:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.place__img {
  height: 200px;
  background: var(--sand) center/cover no-repeat;
  transition: transform .5s var(--ease);
}
.place:hover .place__img { transform: scale(1.05); }
.place__body { padding: 22px 24px 26px; }
.place__meta {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--moss);
  margin: 0 0 6px;
  font-weight: 600;
}
.place h3 {
  font-size: 24px;
  color: var(--moss-dark);
  margin-bottom: 8px;
}
.place p { color: var(--ink-soft); margin: 0; font-size: 15px; }

/* ---------- Calendar ---------- */
.calendar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
}
.calendar__head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.calendar__head span {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 600;
}
.calendar__head strong {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--moss-dark);
}
.calendar__months {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cal-month {
  padding: 10px;
  border-radius: 12px;
  background: var(--cream);
}
.cal-month__title {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  color: var(--moss-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.cal-month__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day {
  aspect-ratio: 1;
  display: grid; place-items: center;
  font-size: 10px;
  border-radius: 4px;
  color: var(--ink-soft);
  background: var(--white);
}
.cal-day--empty { background: transparent; }
.cal-day--busy { background: var(--moss-dark); color: var(--white); }
.cal-day--req  { background: var(--sand); color: var(--wood); }

.calendar__legend {
  display: flex; flex-wrap: wrap; gap: 18px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
}
.calendar__legend span { display: inline-flex; align-items: center; gap: 6px; }
.dot {
  width: 10px; height: 10px;
  border-radius: 3px;
  display: inline-block;
}
.dot--free { background: var(--white); border: 1px solid var(--line); }
.dot--req  { background: var(--sand); }
.dot--busy { background: var(--moss-dark); }

/* ---------- Route / Anfahrt ---------- */
.route { list-style: none; padding: 0; margin: 20px 0 0; }
.route li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.route li strong {
  display: block;
  color: var(--moss-dark);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.map {
  position: relative;
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map__link {
  position: absolute;
  bottom: 14px; left: 14px;
  background: var(--white);
  color: var(--moss-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* ---------- Contact ---------- */
.split--contact { grid-template-columns: 1fr 1fr; }
.contact { margin-top: 28px; }
.contact__person {
  font-family: var(--serif);
  font-size: 26px;
  margin: 0 0 4px;
  color: var(--white);
}
.contact address {
  font-style: normal;
  margin-bottom: 18px;
  color: rgba(246,241,232,.8);
}
.contact__line {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 0;
  color: var(--cream);
  font-weight: 500;
}
.contact__line:hover { color: var(--sand); }

.form {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.form h3 {
  font-size: 26px;
  color: var(--moss-dark);
  margin-bottom: 20px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(61, 90, 64, .15);
}
.form textarea { resize: vertical; }
.form__hint {
  font-size: 13.5px;
  color: var(--moss-dark);
  margin: 14px 0 0;
  min-height: 20px;
  text-align: center;
}

.form__recipient {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px;
  margin: 0 0 22px;
  background: var(--cream-warm);
  border-left: 3px solid var(--moss);
  border-radius: 0 10px 10px 0;
}
.form__recipient span {
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form__recipient strong {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  color: var(--moss-dark);
  letter-spacing: .01em;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--moss-dark);
  color: rgba(246,241,232,.75);
  padding: 50px 0 30px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 30px;
  align-items: start;
}
.footer__brand {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--white);
  margin: 0 0 8px;
  font-weight: 600;
}
.footer__nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__nav a { font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.footer__pdf {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--sand);
  color: var(--wood);
  line-height: 1.2;
}
.footer__copy {
  grid-column: 1 / -1;
  margin: 30px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  color: rgba(246,241,232,.55);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav__links {
    position: fixed;
    inset: 70px 0 auto 0;
    flex-direction: column;
    background: var(--cream);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform .35s var(--ease);
    box-shadow: var(--shadow-md);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { width: 100%; padding: 14px 16px; font-size: 16px; }
  .nav__cta { text-align: center; margin: 8px 0 0; }
  .nav__burger { display: flex; }

  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media { min-height: 380px; }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery__item--large { grid-column: span 2; grid-row: span 2; }
  .gallery__item--wide { grid-column: span 2; }

  .prices { grid-template-columns: 1fr; }
  .price--featured { transform: none; }

  .form__row { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; }

  .hero__facts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .section { padding: 80px 0; }
  .calendar__months { grid-template-columns: repeat(2, 1fr); }
  .photo__badge { width: 90px; height: 90px; font-size: 10px; }
  .photo__badge strong { font-size: 22px; }
}

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

/* =========================================================
   SUBPAGE: Das Haus
   ========================================================= */
.subpage { padding-top: 70px; }
.nav__links a.is-active {
  color: var(--moss-dark);
  background: var(--cream-warm);
}

/* Page hero */
.pagehero {
  position: relative;
  padding: clamp(90px, 14vw, 160px) 0 clamp(70px, 10vw, 120px);
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}
.pagehero__bg {
  position: absolute; inset: 0;
  background: #2b3f2e center/cover no-repeat;
  transform: scale(1.05);
  z-index: -2;
}
.pagehero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(43, 63, 46, .55), rgba(27, 31, 27, .75));
  z-index: -1;
}
.pagehero__content { max-width: 780px; }
.pagehero h1 {
  font-size: clamp(42px, 6.5vw, 78px);
  color: var(--white);
  margin: 12px 0 20px;
  line-height: 1.1;
}
.pagehero__lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255,255,255,.92);
  max-width: 620px;
  margin: 0 0 28px;
  line-height: 1.6;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,.75);
  letter-spacing: .04em;
}
.breadcrumb a { color: rgba(255,255,255,.9); border-bottom: 1px solid rgba(255,255,255,.3); }
.breadcrumb a:hover { color: var(--sand); border-color: var(--sand); }

/* Intro / narrow */
.container.narrow { max-width: 820px; }
.section--intro { padding: clamp(80px, 10vw, 120px) 0; text-align: center; }
.section--intro .section__title,
.section--intro .section__eyebrow { text-align: center; }
.section--intro .lead,
.section--intro p { text-align: left; }

.quickfacts {
  list-style: none; padding: 0;
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.quickfacts li {
  display: flex; flex-direction: column;
  text-align: center;
}
.quickfacts strong {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 600;
  color: var(--moss-dark);
  line-height: 1;
}
.quickfacts span {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Room section tuning */
.roomsec .split__media { min-height: 440px; }

/* Rooms grid */
.rooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 16px;
}
.room {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.room:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.room__img {
  height: 240px;
  background: var(--sand) center/cover no-repeat;
  transition: transform .5s var(--ease);
}
.room:hover .room__img { transform: scale(1.04); }
.room__body { padding: 22px 24px 26px; }
.room h3 {
  font-size: 24px;
  color: var(--moss-dark);
  margin-bottom: 4px;
}
.room__size {
  font-size: 12.5px;
  color: var(--moss);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  margin: 0 0 10px;
}
.room p:last-child { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* Equipment grid */
.equip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.equip__group h3 {
  font-size: 20px;
  color: var(--sand);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.equip__group ul { list-style: none; padding: 0; margin: 0; }
.equip__group li {
  padding: 7px 0 7px 22px;
  position: relative;
  color: rgba(246,241,232,.85);
  font-size: 15px;
}
.equip__group li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 10px; height: 6px;
  border-left: 2px solid var(--moss-soft);
  border-bottom: 2px solid var(--moss-soft);
  transform: rotate(-45deg);
}

/* Extras */
.extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.extra {
  background: var(--cream-warm);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.extra:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.extra__img {
  height: 220px;
  background: var(--sand) center/cover no-repeat;
}
.extra__body { padding: 24px 26px 28px; }
.extra h3 {
  font-size: 22px;
  color: var(--moss-dark);
  margin-bottom: 8px;
}
.extra p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* Grundriss */
.grundriss {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.grundriss img {
  max-height: 640px;
  margin: 0 auto;
  width: auto;
  display: inline-block;
}

/* Masonry */
.masonry {
  column-count: 4;
  column-gap: 14px;
}
.masonry__item {
  display: block;
  margin: 0 0 14px;
  break-inside: avoid;
  border-radius: 12px;
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.masonry__item:hover { transform: translateY(-2px) scale(1.01); box-shadow: var(--shadow-md); }
.masonry__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity .3s;
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--moss-dark), var(--moss));
  color: var(--cream);
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  color: var(--white);
  margin: 0 0 8px;
}
.cta-band p { margin: 0; color: rgba(246,241,232,.85); max-width: 520px; }
.cta-band__btns { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn--ghost { color: var(--white); border-color: rgba(255,255,255,.7); }
.cta-band .btn--ghost:hover { background: var(--white); color: var(--moss-dark); border-color: var(--white); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 10, .94);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  display: grid; place-items: center;
  transition: background .2s, transform .2s;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,.24); transform: scale(1.06); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__next:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__counter {
  position: absolute;
  bottom: 20px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  letter-spacing: .1em;
}

/* =========================================================
   HOME: Hero Slider
   ========================================================= */
.slider {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
}
.slider__track { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0;
  background: #2b3f2e center/cover no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s var(--ease), transform 6s var(--ease);
  display: flex;
  align-items: center;
}
.slide::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(43, 63, 46, .35), rgba(27, 31, 27, .55)),
    linear-gradient(180deg, transparent 55%, rgba(0,0,0,.5));
  z-index: 0;
}
.slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.slide__caption {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(20px, 4vw, 40px);
  color: var(--white);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity .9s .3s var(--ease), transform .9s .3s var(--ease);
}
.slide.is-active .slide__caption {
  opacity: 1;
  transform: none;
}
.slide__caption .eyebrow { color: rgba(255,255,255,.85); }
.slide__caption h1 {
  font-size: clamp(44px, 7.5vw, 92px);
  color: var(--white);
  margin: 0 0 22px;
  line-height: 1.05;
  text-shadow: 0 4px 30px rgba(0,0,0,.25);
}
.slide__caption .italic { color: var(--sand); }
.slide__caption p {
  max-width: 560px;
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255,255,255,.92);
  margin: 0;
}

.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: grid; place-items: center;
  transition: background .2s, transform .2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.slider__arrow:hover { background: rgba(255,255,255,.25); transform: translateY(-50%) scale(1.06); }
.slider__arrow--prev { left: 28px; }
.slider__arrow--next { right: 28px; }

.slider__dots {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.slider__dots button {
  width: 36px; height: 4px;
  background: rgba(255,255,255,.4);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s, width .3s;
  padding: 0;
}
.slider__dots button.is-active {
  background: var(--white);
  width: 56px;
}

.slider__cta {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 5;
  flex-wrap: wrap;
  justify-content: center;
}
.slider__cta .btn--ghost { color: var(--white); border-color: rgba(255,255,255,.7); background: rgba(0,0,0,.2); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.slider__cta .btn--ghost:hover { background: var(--white); color: var(--moss-dark); border-color: var(--white); }

/* =========================================================
   HOME: Welcome
   ========================================================= */
.welcome { padding: clamp(80px, 12vw, 140px) 0; text-align: center; }
.welcome__head { text-align: center; margin-bottom: 40px; }
.welcome__body {
  text-align: left;
  background: var(--white);
  padding: clamp(32px, 5vw, 60px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.welcome__body > p:first-of-type { margin-top: 0; }
.welcome__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* =========================================================
   Info cards (used on preise, anfahrt)
   ========================================================= */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.info-card {
  background: var(--white);
  padding: 30px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.info-card h3 {
  font-size: 22px;
  color: var(--moss-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.info-card ul { list-style: none; padding: 0; margin: 0; }
.info-card li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: var(--ink-soft);
  font-size: 15px;
}
.info-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 12px; height: 7px;
  border-left: 2px solid var(--moss);
  border-bottom: 2px solid var(--moss);
  transform: rotate(-45deg);
}
.info-card p { margin: 0 0 8px; color: var(--ink); font-size: 17px; }
.info-card p strong { font-family: var(--serif); font-size: 30px; color: var(--moss-dark); font-weight: 600; }
.info-card__hint { color: var(--muted) !important; font-size: 14px !important; margin-top: 6px !important; }

.info-card--accent {
  background: var(--cream-warm);
  border-color: var(--sand);
}
.info-card--accent h3 { color: var(--moss-dark); }
.info-card__list li {
  padding: 14px 0 14px 0 !important;
  border-bottom: 1px dashed var(--line);
  color: var(--ink) !important;
  font-size: 15.5px !important;
}
.info-card__list li:last-child { border-bottom: 0; }
.info-card__list li::before { display: none; }
.info-card__list .surcharge__price {
  display: inline-block;
  background: var(--moss);
  color: var(--white);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 14px;
  margin-right: 10px;
  letter-spacing: .01em;
}
.info-card__list em {
  display: block;
  margin-top: 6px;
  font-style: italic;
  color: var(--muted);
  font-size: 13.5px;
}

/* =========================================================
   LEGAL PAGES (Impressum, Datenschutz)
   ========================================================= */
.pagehero--compact {
  padding: clamp(80px, 10vw, 120px) 0 clamp(50px, 6vw, 80px);
}
.pagehero--compact h1 { margin-bottom: 16px; }

.legal h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--moss-dark);
  margin: 44px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.legal h2:first-of-type { margin-top: 0; }
.legal h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--moss);
  margin: 24px 0 10px;
}
.legal p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0 0 14px;
}
.legal a {
  color: var(--moss);
  border-bottom: 1px solid var(--moss-soft);
  transition: color .2s, border-color .2s;
}
.legal a:hover { color: var(--moss-dark); border-color: var(--moss-dark); }

.legal__address {
  font-style: normal;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--moss-dark);
  line-height: 1.6;
  padding: 18px 22px;
  background: var(--cream-warm);
  border-left: 3px solid var(--moss);
  border-radius: 0 10px 10px 0;
  margin: 0 0 20px;
}
.legal__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.legal__list li {
  padding: 6px 0;
  color: var(--ink-soft);
  font-size: 15.5px;
}
.legal__footer {
  margin-top: 50px !important;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted) !important;
  font-size: 13.5px !important;
  text-align: center;
}

/* Slider responsive */
@media (max-width: 720px) {
  .slider { height: auto; min-height: 560px; padding: 120px 0 140px; }
  .slider__dots { bottom: 100px; }
  .slider__cta { bottom: 30px; }
  .slider__arrow { width: 44px; height: 44px; font-size: 24px; }
  .slider__arrow--prev { left: 10px; }
  .slider__arrow--next { right: 10px; }
}

/* Subpage responsive */
@media (max-width: 960px) {
  .quickfacts { grid-template-columns: repeat(3, 1fr); }
  .rooms, .extras { grid-template-columns: 1fr; }
  .equip { grid-template-columns: repeat(2, 1fr); }
  .masonry { column-count: 2; }
}
@media (max-width: 540px) {
  .quickfacts { grid-template-columns: repeat(2, 1fr); }
  .equip { grid-template-columns: 1fr; }
  .masonry { column-count: 1; }
  .lightbox { padding: 20px; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
}
