/* ===================================================
   Insel-Ferienhaus Rügen – Shared Stylesheet
   =================================================== */

:root {
  --linen:      oklch(96.5% 0.013 83);
  --linen-deep: oklch(92%   0.017 81);
  --linen-mid:  oklch(94%   0.015 82);
  --sage:       oklch(55%   0.062 149);
  --sage-pale:  oklch(93%   0.020 147);
  --amber:      oklch(71%   0.125 68);
  --amber-deep: oklch(62%   0.130 64);
  --amber-pale: oklch(95.5% 0.022 76);
  --ink:        oklch(23%   0.017 64);
  --text:       oklch(38%   0.015 67);
  --muted:      oklch(57%   0.011 70);
  --border:     oklch(89%   0.013 79);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--sans); background: var(--linen); color: var(--text); overflow-x: hidden; line-height: 1.7; }
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
button { font-family: var(--sans); cursor: pointer; }

/* PROGRESS */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 200;
  width: 100%; transform-origin: left; transform: scaleX(0);
  background: linear-gradient(90deg, var(--amber), var(--amber-deep));
  will-change: transform;
}

/* SHARED TYPOGRAPHY */
.eyebrow { font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--sage); font-weight: 400; margin-bottom: .7rem; }
.h2 { font-family: var(--serif); font-weight: 400; line-height: 1.07; font-size: clamp(2.4rem, 4.5vw, 3.6rem); color: var(--ink); letter-spacing: -.015em; }
.h2 em { font-style: italic; font-weight: 300; }
.lead { font-size: .94rem; line-height: 1.92; color: var(--muted); }

/* REVEALS */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--spring), transform .8s var(--spring); will-change: transform,opacity; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="left"].visible  { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="right"].visible { transform: translateX(0); }
[data-reveal="scale"] { transform: scale(.95); }
[data-reveal="scale"].visible { transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity:1; transform:none; transition:none; }
  .progress-bar { display:none; }
}

/* NAV */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.75rem 2.5rem;
  transition: background .45s var(--spring), padding .45s var(--spring), box-shadow .45s;
}
.nav.scrolled {
  background: oklch(96.5% 0.013 83 / .95);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  padding: 1rem 2.5rem;
  box-shadow: 0 1px 0 var(--border);
}
.nav--solid {
  background: oklch(96.5% 0.013 83 / .97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  padding: 1rem 2.5rem;
}
.nav__logo { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; letter-spacing: .04em; color: var(--linen); transition: color .4s; }
.nav.scrolled .nav__logo, .nav--solid .nav__logo { color: var(--ink); }
.nav__links { display: flex; gap: 2rem; list-style: none; }
.nav__links a { font-size: .74rem; letter-spacing: .13em; text-transform: uppercase; color: oklch(96% .01 82 / .72); transition: color .22s; }
.nav__links a:hover { color: oklch(96% .01 82); }
.nav.scrolled .nav__links a, .nav--solid .nav__links a { color: var(--muted); }
.nav.scrolled .nav__links a:hover, .nav--solid .nav__links a:hover { color: var(--sage); }
.nav__links a.active { color: var(--amber-deep) !important; }
.nav__burger { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--linen); transition: background .3s, transform .3s, opacity .3s; }
.nav.scrolled .nav__burger span, .nav--solid .nav__burger span { background: var(--ink); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE NAV */
.mnav {
  position: fixed; inset: 0; z-index: 99;
  background: oklch(96.5% 0.013 83 / .97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.75rem;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--spring);
}
.mnav.open { opacity: 1; pointer-events: all; }
.mnav a { font-family: var(--serif); font-size: 2.4rem; font-weight: 300; color: var(--ink); transition: color .2s; }
.mnav a:hover { color: var(--amber); }

/* HERO */
.hero {
  position: relative; height: 100dvh; min-height: 640px;
  overflow: hidden; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
}
/* Top gradient keeps nav legible over any image */
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 260px;
  z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom, oklch(14% .012 64 / .48) 0%, transparent 100%);
}
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 120%;
  object-fit: cover; object-position: center 35%;
  will-change: transform; z-index: 0;
  filter: brightness(.88) saturate(1.06);
}
.hero__vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 90% 85% at 50% 38%, transparent 45%, oklch(18% .014 64 / .18) 100%);
}
.hero__veil {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to bottom, transparent 0%, transparent 30%, oklch(23% .017 64 / .28) 62%, oklch(23% .017 64 / .74) 100%);
}
.hero__eyeline {
  position: relative; z-index: 3;
  width: 100%; text-align: center;
  padding: 0 1.5rem 3.5rem;
}
.hero__location { font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; color: oklch(96% .01 82 / .55); margin-bottom: 1.4rem; }
.hero__title {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(3rem, 9vw, 7.5rem); line-height: .98;
  color: var(--linen); letter-spacing: -.025em; margin-bottom: .75rem;
  text-shadow: 0 2px 24px oklch(12% .01 64 / .3);
}
.hero__sub { font-size: .92rem; font-weight: 300; color: oklch(96% .01 82 / .72); letter-spacing: .04em; margin-bottom: 3.5rem; }

/* HERO — subpage variant */
.hero--sub { height: clamp(480px, 60vw, 680px); min-height: 480px; }
.hero--sub .hero__title { font-size: clamp(2.8rem, 7vw, 5.5rem); }
.hero--sub .hero__eyeline { padding-bottom: 3.5rem; }
.hero--sub .hero__veil {
  background: linear-gradient(to bottom, transparent 0%, oklch(23% .017 64 / .18) 38%, oklch(23% .017 64 / .80) 100%);
}

/* Hero single CTA */
.hero__cta {
  display: inline-block; padding: .92rem 2.8rem;
  background: var(--amber); color: var(--linen);
  font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 500; border-radius: 2px; transition: background .22s, transform .12s;
  margin-top: .5rem;
}
.hero__cta:hover { background: var(--amber-deep); }
.hero__cta:active { transform: translateY(1px); }

/* Hero cards (index) */
.hero__cards { display: flex; gap: 1.25rem; width: 100%; max-width: 740px; margin: 0 auto; }
.hero__card {
  flex: 1; padding: 2rem 2.1rem 2.1rem;
  background: oklch(96.5% .013 83 / .1);
  backdrop-filter: blur(22px) saturate(1.4); -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border: 1px solid oklch(96% .01 82 / .16);
  border-radius: 4px; display: flex; flex-direction: column; gap: .5rem;
  transition: background .32s var(--spring), border-color .32s, transform .28s var(--spring);
}
.hero__card:hover { background: oklch(96.5% .013 83 / .2); border-color: oklch(96% .01 82 / .3); transform: translateY(-3px); }
.hero__card:active { transform: translateY(-1px); }
.hero__card__name { font-family: var(--serif); font-size: 2rem; font-weight: 400; color: var(--linen); line-height: 1; letter-spacing: -.01em; }
.hero__card__tags { font-size: .78rem; color: oklch(96% .01 82 / .6); line-height: 1.65; margin-bottom: .3rem; }
.hero__card__btn {
  display: inline-block; margin-top: .5rem; padding: .72rem 1.6rem;
  background: var(--amber); color: var(--linen);
  font-size: .73rem; letter-spacing: .17em; text-transform: uppercase;
  font-weight: 500; border-radius: 2px; transition: background .22s; align-self: flex-start;
}
.hero__card__btn:hover { background: var(--amber-deep); }

/* INTRO */
.intro { background: var(--amber-pale); padding: 5rem 2.5rem; text-align: center; }
.intro__inner { max-width: 680px; margin: 0 auto; }
.intro__title { font-family: var(--serif); font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 300; font-style: italic; color: var(--ink); margin: .75rem 0 1.4rem; line-height: 1.2; }
.intro__body { font-size: .94rem; line-height: 1.95; color: var(--muted); }

/* HOUSE SECTIONS */
.house { padding: 0; }
.house__cinema { position: relative; height: clamp(380px, 55vw, 640px); overflow: hidden; }
.house__cinema img {
  display: block; width: 100%; height: 115%;
  object-fit: cover; object-position: center 45%;
  will-change: transform;
}
.house__cinema::before {
  content: ''; pointer-events: none;
  position: absolute; bottom: 0; left: 0; right: 0; height: 18%; z-index: 1;
  background: linear-gradient(to top, oklch(96.5% .013 83 / .55) 0%, oklch(96.5% .013 83 / .0) 100%);
}
.house--alt .house__cinema::before {
  background: linear-gradient(to top, oklch(92% .017 81 / .55) 0%, oklch(92% .017 81 / .0) 100%);
}
.house__nameplate {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 2.5rem 2.5rem 1.6rem;
  display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  background: linear-gradient(to top, oklch(96.5% .013 83 / 1) 0%, oklch(96.5% .013 83 / .95) 55%, oklch(96.5% .013 83 / 0) 100%);
}
.house--alt .house__nameplate {
  background: linear-gradient(to top, oklch(92% .017 81 / 1) 0%, oklch(92% .017 81 / .95) 55%, oklch(92% .017 81 / 0) 100%);
}
.house__nameplate .eyebrow { margin-bottom: .3rem; color: oklch(100% 0 0); }
.house__nameplate-name {
  font-family: var(--serif); font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 400; color: var(--ink); line-height: 1; letter-spacing: -.02em;
}
.house__nameplate-name em { font-style: italic; font-weight: 300; }
.house__nameplate-tagline { font-family: var(--serif); font-style: italic; font-size: 1.02rem; color: var(--amber-deep); font-weight: 300; margin-top: .3rem; }
.house__nameplate-cta {
  display: inline-block; padding: .88rem 2.3rem;
  background: var(--ink); color: var(--linen);
  font-size: .72rem; letter-spacing: .17em; text-transform: uppercase;
  font-weight: 400; border-radius: 2px; align-self: flex-end; flex-shrink: 0;
  transition: background .22s, transform .12s;
}
.house__nameplate-cta:hover { background: oklch(32% .018 64); }
.house__nameplate-cta:active { transform: translateY(1px); }
.house__body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; padding: 3.5rem 2.5rem 5.5rem;
  max-width: 1200px; margin: 0 auto;
}
.house--alt .house__body { direction: rtl; }
.house--alt .house__body > * { direction: ltr; }
.house__desc-col { display: flex; flex-direction: column; gap: 1.4rem; }
.house__desc { font-size: .93rem; line-height: 1.95; color: var(--muted); }
.house__tags { display: flex; flex-wrap: wrap; gap: .55rem; }
.house__tag {
  font-size: .76rem; padding: .4rem .92rem;
  background: oklch(93% .020 147 / .5);
  border: 1px solid oklch(55% .062 149 / .14);
  border-radius: 99px; color: oklch(36% .05 149); letter-spacing: .03em;
}
.house__tag--amber { background: oklch(95.5% .022 76 / .7); border-color: oklch(71% .125 68 / .2); color: var(--amber-deep); }
.house__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.house__gallery-item { overflow: hidden; border-radius: 3px; height: 200px; }
.house__gallery-item:first-child { grid-column: 1 / -1; height: 280px; }
.house__gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--spring), filter .35s; will-change: transform; }
.house__gallery-item:hover img { transform: scale(1.05); filter: brightness(1.04); }

/* NATURE */
.nature {
  position: relative; overflow: hidden;
  height: clamp(520px, 62vw, 740px); display: flex; align-items: center;
}
.nature__bg { position: absolute; inset: 0; width: 100%; height: 120%; object-fit: cover; object-position: center 40%; will-change: transform; filter: saturate(.88) brightness(.83); }
.nature__panel { position: relative; z-index: 1; max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 2.5rem; }
.nature__glass {
  max-width: 490px;
  background: oklch(96.5% .013 83 / .85);
  backdrop-filter: blur(28px) saturate(1.3); -webkit-backdrop-filter: blur(28px) saturate(1.3);
  border: 1px solid oklch(96% .01 82 / .42); border-radius: 6px; padding: 2.75rem 3rem;
}
.nature__quote { font-family: var(--serif); font-size: clamp(1.55rem, 2.6vw, 2.1rem); font-style: italic; font-weight: 300; color: var(--ink); line-height: 1.35; letter-spacing: -.01em; margin: .55rem 0 1.4rem; }
.nature__body { font-size: .91rem; line-height: 1.92; color: var(--muted); }
.nature__detail { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--border); font-size: .81rem; line-height: 1.88; color: oklch(57% .011 70 / .8); }

/* STATS */
.stats { padding: 5rem 2.5rem; background: var(--linen-deep); }
.stats__grid { max-width: 880px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat__num { font-family: var(--serif); font-size: 3.2rem; font-weight: 300; color: var(--ink); line-height: 1; letter-spacing: -.03em; }
.stat__num em { font-style: normal; font-size: 1.9rem; }
.stat__label { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: .45rem; }

/* CALENDAR */
.cal-sec { padding: 5rem 2.5rem; background: var(--linen); }
.cal-inner { max-width: 1200px; margin: 0 auto; }
.cal-header { text-align: center; margin-bottom: 2.5rem; }
.cal-header .h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: .85rem; }
.cal-switcher { display: flex; gap: .5rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }
.cal-switch { padding: .52rem 1.7rem; border-radius: 2px; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; background: none; border: 1.5px solid var(--border); color: var(--muted); cursor: pointer; transition: all .2s; min-height: 44px; }
.cal-switch.active { background: var(--ink); color: var(--linen); border-color: var(--ink); }
.cal-months-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem 2rem; }
.cal-month__title { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; color: var(--ink); text-align: center; margin-bottom: .9rem; letter-spacing: -.01em; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-weekday { font-size: .6rem; letter-spacing: .06em; text-transform: uppercase; color: oklch(57% .011 70 / .55); text-align: center; padding: .2rem 0 .5rem; }
.cal-day { aspect-ratio: 1; min-height: 32px; display: flex; align-items: center; justify-content: center; font-size: .75rem; border-radius: 2px; position: relative; line-height: 1; }
.cal-day--free   { background: var(--linen-deep); color: var(--text); }
.cal-day--booked { background: oklch(93% .020 147 / .4); color: oklch(55% .062 149 / .45); text-decoration: line-through; text-decoration-color: oklch(55% .062 149 / .3); }
.cal-day--past   { background: transparent; color: var(--border); }
.cal-day--today  { background: var(--amber-pale); color: var(--amber-deep); font-weight: 500; }
.cal-day--today::after { content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); width: 3px; height: 3px; background: var(--amber); border-radius: 50%; }
.cal-legend { display: flex; gap: 1.75rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.cal-leg { display: flex; align-items: center; gap: .55rem; font-size: .76rem; color: var(--muted); }
.cal-leg::before { content: ''; width: 13px; height: 13px; border-radius: 2px; flex-shrink: 0; }
.cal-leg--free::before   { background: var(--linen-deep); border: 1px solid var(--border); }
.cal-leg--booked::before { background: oklch(93% .020 147 / .4); border: 1px solid oklch(55% .062 149 / .18); }
.cal-leg--today::before  { background: var(--amber-pale); border: 1px solid var(--amber); }

/* BOOKING / FORM */
.booking { padding: 5rem 2.5rem; background: var(--linen-deep); }
.booking__inner { max-width: 720px; margin: 0 auto; }
.booking__header { text-align: center; margin-bottom: 2.75rem; }
.booking__header .h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: .85rem; }
.booking__form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  padding: .78rem .95rem; background: var(--linen);
  border: 1px solid var(--border); border-radius: 2px;
  font-family: var(--sans); font-size: .88rem; color: var(--ink);
  transition: border-color .2s, background .2s; outline: none;
  min-height: 44px;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sage); background: oklch(93% .020 147 / .1); }
.field textarea { resize: vertical; min-height: 100px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9rem center;
  padding-right: 2.25rem; background-color: var(--linen);
}
.booking__submit {
  padding: .9rem 2.6rem; background: var(--sage); color: var(--linen);
  font-size: .73rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 500; border: none; border-radius: 2px; align-self: flex-start;
  transition: background .22s, transform .12s; min-height: 44px;
}
.booking__submit:hover  { background: oklch(46% .068 149); }
.booking__submit:active { transform: translateY(1px); }
.booking__note { font-size: .78rem; color: var(--muted); background: var(--amber-pale); padding: .85rem 1.05rem; border-radius: 2px; }

/* MAP */
.map-sec { height: 380px; overflow: hidden; }
.map-sec iframe { width: 100%; height: 100%; border: 0; filter: saturate(.65) sepia(.25) brightness(.97); }

/* FOOTER */
.footer {
  background: var(--ink); padding: 3rem 2.5rem;
  display: flex; flex-wrap: wrap; gap: 1.2rem 1.75rem;
  align-items: center; justify-content: space-between;
}
.footer__brand { font-family: var(--serif); font-size: 1.1rem; color: var(--linen); letter-spacing: .04em; }
.footer__contact { font-size: .8rem; color: oklch(72% .009 72 / .65); transition: color .2s; }
.footer__contact:hover { color: var(--amber); }
.footer__copy  { font-size: .76rem; color: oklch(72% .009 72 / .48); }
.footer__links { display: flex; gap: 1.75rem; list-style: none; flex-wrap: wrap; }
.footer__links a { font-size: .73rem; letter-spacing: .12em; text-transform: uppercase; color: oklch(72% .009 72 / .48); transition: color .2s; }
.footer__links a:hover { color: var(--amber); }

/* GALLERY */
.gallery-sec { padding: 5rem 2.5rem; background: var(--linen); }
.gallery-inner { max-width: 1200px; margin: 0 auto; }
.gallery-header { text-align: center; margin-bottom: 2.5rem; }
.gallery-header .h2 { margin-bottom: .85rem; }
.gallery-switcher { display: flex; gap: .5rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }
.gallery-switch { padding: .52rem 1.7rem; border-radius: 2px; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; background: none; border: 1.5px solid var(--border); color: var(--muted); cursor: pointer; transition: all .2s; min-height: 44px; }
.gallery-switch.active { background: var(--ink); color: var(--linen); border-color: var(--ink); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem; }
.gallery-item { overflow: hidden; border-radius: 3px; cursor: pointer; aspect-ratio: 1; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--spring), filter .35s; will-change: transform; }
.gallery-item:hover img { transform: scale(1.07); filter: brightness(1.04); }
.gallery-item.hidden { display: none; }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: var(--ink); opacity: 0; transition: opacity .3s; pointer-events: none; }
.gallery-item:hover::after { opacity: .1; }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; z-index: 300; background: oklch(10% .01 64 / .95); display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.lightbox.open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 3px; }
.lightbox__close {
  position: absolute; top: 1rem; right: 1rem;
  background: oklch(96.5% .013 83 / .15); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid oklch(96% .01 82 / .2); border-radius: 2px;
  color: oklch(90% .01 82); font-size: 1.8rem; cursor: pointer;
  padding: .4rem .7rem; line-height: 1; transition: color .2s, background .2s;
  min-width: 48px; min-height: 48px; display: flex; align-items: center; justify-content: center;
}
.lightbox__close:hover { color: var(--amber); background: oklch(96.5% .013 83 / .25); }
.lightbox__prev, .lightbox__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: oklch(96.5% .013 83 / .15); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid oklch(96% .01 82 / .2); border-radius: 2px;
  color: var(--linen); font-size: 1.4rem;
  padding: .9rem 1.1rem; cursor: pointer; transition: background .2s;
  min-width: 52px; min-height: 52px; display: flex; align-items: center; justify-content: center;
}
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }
.lightbox__prev:hover, .lightbox__next:hover { background: oklch(96.5% .013 83 / .3); }

/* REVIEWS */
.reviews-sec { padding: 5rem 2.5rem; }
.reviews-inner { max-width: 1200px; margin: 0 auto; }
.reviews-header { text-align: center; margin-bottom: 3rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.review-card { background: var(--linen); border-radius: 4px; overflow: hidden; border: 1px solid var(--border); display: flex; flex-direction: column; transition: transform .28s var(--spring), box-shadow .28s; }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px oklch(23% .017 64 / .09); }
.review-card__photo { height: 200px; overflow: hidden; background: var(--linen-deep); }
.review-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--spring); }
.review-card:hover .review-card__photo img { transform: scale(1.04); }
/* Initials avatar */
.review-card__avatar {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem;
  background: linear-gradient(135deg, var(--linen-mid) 0%, var(--linen-deep) 100%);
}
.review-card__avatar-initials {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 300;
  color: var(--muted); letter-spacing: .06em; line-height: 1;
}
.review-card__avatar-tag {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: oklch(57% .011 70 / .55); padding: .28rem .85rem;
  border: 1px solid var(--border); border-radius: 99px;
}
.review-card__body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.review-stars { color: var(--amber); font-size: 1rem; letter-spacing: .12em; }
.review-text { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--ink); line-height: 1.65; flex: 1; }
.review-meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .4rem; margin-top: .25rem; }
.review-author { font-size: .78rem; color: var(--muted); }
.review-tag { font-size: .68rem; padding: .25rem .75rem; background: oklch(93% .020 147 / .5); border: 1px solid oklch(55% .062 149 / .18); border-radius: 99px; color: oklch(36% .05 149); letter-spacing: .04em; }

/* PRICES */
.price-sec { padding: 5rem 2.5rem; background: var(--linen); }
.price-sec--alt { background: var(--linen-deep); }
.price-inner { max-width: 1000px; margin: 0 auto; }
.price-header { text-align: center; margin-bottom: 3rem; }
.price-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; margin-bottom: 2rem; }
.price-card { background: var(--linen-deep); border: 1px solid var(--border); border-radius: 4px; padding: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.price-card--peak { background: var(--ink); border-color: var(--ink); }
.price-season { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sage); }
.price-card--peak .price-season { color: var(--amber); }
.price-amount { font-family: var(--serif); font-size: 3rem; color: var(--ink); line-height: 1.05; letter-spacing: -.03em; }
.price-amount em { font-family: var(--sans); font-size: 1rem; font-style: normal; font-weight: 300; color: var(--muted); letter-spacing: 0; vertical-align: middle; }
.price-card--peak .price-amount { color: var(--linen); }
.price-card--peak .price-amount em { color: oklch(90% .01 82 / .5); }
.price-divider { height: 1px; background: var(--border); }
.price-card--peak .price-divider { background: oklch(96% .01 82 / .1); }
.price-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.price-list li { font-size: .87rem; line-height: 1.55; color: var(--text); display: flex; align-items: flex-start; gap: .6rem; }
.price-list li::before { content: '—'; color: var(--amber-deep); flex-shrink: 0; }
.price-card--peak .price-list li { color: oklch(90% .01 82 / .82); }
.price-card--peak .price-list li::before { color: var(--amber); }
.price-footnote { font-size: .78rem; line-height: 1.65; color: var(--muted); font-style: italic; padding: .85rem 1rem; background: oklch(96.5% .013 83 / .7); border-radius: 3px; border: 1px solid var(--border); }
.price-card--peak .price-footnote { background: oklch(96.5% .013 83 / .07); border-color: oklch(96% .01 82 / .08); color: oklch(90% .01 82 / .5); }
.price-extras { background: var(--amber-pale); border: 1px solid oklch(71% .125 68 / .18); border-radius: 4px; padding: 2.25rem 2.5rem; }
.price-extras__title { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--ink); margin-bottom: 1.5rem; }
.price-extras-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem 2.5rem; }
.price-extra-item { font-size: .86rem; line-height: 1.6; color: var(--text); display: flex; align-items: flex-start; gap: .55rem; }
.price-extra-item::before { content: '·'; color: var(--amber-deep); flex-shrink: 0; font-size: 1.2rem; line-height: 1.4; }

/* FEATURES GRID */
.features-sec { padding: 5rem 2.5rem; background: var(--linen-deep); }
.features-inner { max-width: 1000px; margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 3rem; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card { padding: 1.75rem 2rem; background: var(--linen); border-radius: 4px; border: 1px solid var(--border); }
.feature-icon { font-size: 1.5rem; margin-bottom: .9rem; }
.feature-title { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: var(--ink); margin-bottom: .5rem; }
.feature-desc { font-size: .86rem; line-height: 1.7; color: var(--muted); }

/* DETAIL DESCRIPTION */
.detail-desc { padding: 5rem 2.5rem; }
.detail-desc__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.detail-desc__quote { font-family: var(--serif); font-size: clamp(1.6rem, 2.8vw, 2.3rem); font-style: italic; font-weight: 300; color: var(--ink); line-height: 1.35; margin-bottom: 1.75rem; letter-spacing: -.01em; }
.detail-desc__body p { font-size: .93rem; line-height: 1.95; color: var(--muted); }
.detail-desc__body p + p { margin-top: 1rem; }

/* SIMPLE PAGE CONTENT (impressum / datenschutz) */
.page-sec { padding: 5rem 2.5rem; }
.page-inner { max-width: 760px; margin: 0 auto; }
.page-inner h1 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; color: var(--ink); margin-bottom: 2rem; letter-spacing: -.015em; }
.page-inner h2 { font-family: var(--serif); font-size: 1.45rem; font-weight: 400; color: var(--ink); margin: 2.5rem 0 .8rem; }
.page-inner p { font-size: .92rem; line-height: 1.9; color: var(--text); margin-bottom: .9rem; }
.page-inner address { font-style: normal; font-size: .92rem; line-height: 1.9; color: var(--text); margin-bottom: .9rem; }
.page-inner a { color: var(--sage); text-decoration: underline; text-underline-offset: 3px; }
.page-inner ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.page-inner ul li { font-size: .92rem; line-height: 1.85; color: var(--text); margin-bottom: .3rem; }

/* SUBPAGE HEADER (solid bg, no hero) */
.page-header { padding: 7rem 2.5rem 3.5rem; background: var(--linen-deep); text-align: center; border-bottom: 1px solid var(--border); }
.page-header .eyebrow { margin-bottom: 1rem; }
.page-header .h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .cal-months-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .house__body { grid-template-columns: 1fr; gap: 2.25rem; padding: 3rem 2rem 4.5rem; }
  .house--alt .house__body { direction: ltr; }
  .nature { height: clamp(560px, 78vw, 700px); }
  .nature__glass { max-width: 100%; padding: 2.25rem 1.75rem; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .cal-months-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .detail-desc__inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .price-cards { grid-template-columns: 1fr; }
  .price-extras-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav { padding: 1.4rem 1.25rem; }
  .nav.scrolled, .nav--solid { padding: .85rem 1.25rem; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  /* Hero cards: side-by-side, compact — don't cover the house */
  .hero__cards { flex-direction: row; max-width: 100%; gap: .75rem; }
  .hero__card { padding: .9rem 1rem 1rem; gap: .3rem; }
  .hero__card__name { font-size: 1.45rem; }
  .hero__card__tags { font-size: .7rem; line-height: 1.5; margin-bottom: 0; }
  .hero__card__btn { padding: .55rem 1.1rem; font-size: .65rem; margin-top: .3rem; }
  .hero__sub { margin-bottom: 1.25rem; }
  /* Stronger overlay on mobile for text legibility */
  .hero__veil {
    background: linear-gradient(to bottom, transparent 0%, transparent 20%, oklch(23% .017 64 / .32) 52%, oklch(23% .017 64 / .84) 100%);
  }
  .hero--sub .hero__veil {
    background: linear-gradient(to bottom, transparent 0%, oklch(23% .017 64 / .2) 32%, oklch(23% .017 64 / .88) 100%);
  }
  .form-row { grid-template-columns: 1fr; }
  .house__gallery { grid-template-columns: 1fr; }
  .house__gallery-item:first-child { height: 220px; }
  .house__gallery-item { height: 180px; }
  .house__nameplate {
    padding: 3rem 1.25rem 1.4rem;
    flex-direction: column;
    align-items: flex-start;
    gap: .85rem;
    background: linear-gradient(to top, oklch(96.5% .013 83 / 1) 0%, oklch(96.5% .013 83 / .97) 65%, oklch(96.5% .013 83 / 0) 100%);
  }
  .house--alt .house__nameplate {
    background: linear-gradient(to top, oklch(92% .017 81 / 1) 0%, oklch(92% .017 81 / .97) 65%, oklch(92% .017 81 / 0) 100%);
  }
  .house__nameplate-name { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .house__nameplate-cta { padding: .72rem 1.5rem; font-size: .68rem; align-self: auto; }
  .footer { flex-direction: column; text-align: center; gap: 1rem; }
  .footer__links { justify-content: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .4rem; }
  .booking__submit { width: 100%; text-align: center; align-self: stretch; }
  .features-grid { grid-template-columns: 1fr; }
  .mnav a { font-size: 2rem; }
  /* Lightbox bigger touch targets */
  .lightbox__prev, .lightbox__next { padding: 1rem 1.25rem; font-size: 1.6rem; }
  .lightbox__close { font-size: 2rem; }
}
@media (max-width: 480px) {
  /* Single column — each month gets full width, no overflow */
  .cal-months-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cal-day { min-height: 36px; }
  .cal-sec { padding: 3.5rem 1.5rem; }
  .hero__title { font-size: clamp(2.6rem, 10vw, 4rem); }
  .lightbox__prev { left: .3rem; }
  .lightbox__next { right: .3rem; }
  .page-header { padding: 8rem 1.5rem 2.5rem; }
}
@media (max-width: 420px) {
  .intro, .booking, .stats, .cal-sec, .nature__panel,
  .gallery-sec, .reviews-sec, .price-sec, .features-sec,
  .detail-desc, .page-sec, .page-header,
  .house__body { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero__eyeline { padding-left: 1.25rem; padding-right: 1.25rem; }
  .price-extras { padding: 1.5rem 1.25rem; }
  .nature__glass { padding: 1.75rem 1.25rem; }
}
@media (max-width: 380px) {
  .gallery-grid { grid-template-columns: 1fr; gap: .4rem; }
}
