/* ============================================================
   Gästehaus Am Hafen — Main Stylesheet
   Typography: EB Garamond (display) + Nunito (body)
   Colors: OKLCH — warm cream / Bodensee blue
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ── Reset & Box Model ────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Colors */
  --bg:             oklch(96.5% 0.013 85);
  --bg-surface:     oklch(93%   0.016 82);
  --bg-deep:        oklch(89%   0.022 80);
  --text:           oklch(17%   0.022 70);
  --text-mid:       oklch(38%   0.028 72);
  --text-soft:      oklch(47%   0.025 73);
  --lake:           oklch(37%   0.155 241);
  --lake-mid:       oklch(52%   0.115 241);
  --lake-pale:      oklch(82%   0.055 241);
  --lake-wash:      oklch(93%   0.025 241);
  --timber:         oklch(60%   0.100 62);
  --timber-deep:    oklch(43%   0.095 55);
  --timber-pale:    oklch(91%   0.030 75);
  --border:         oklch(87%   0.022 80);
  --border-mid:     oklch(80%   0.030 80);
  --white:          oklch(99%   0.006 85);

  /* Typography */
  --font-display: 'EB Garamond', Georgia, serif;
  --font-body:    'Nunito', system-ui, -apple-system, sans-serif;

  /* Type Scale (fluid) */
  --text-xs:   clamp(0.72rem, 0.68rem + 0.2vw,  0.8rem);
  --text-sm:   clamp(0.85rem, 0.82rem + 0.15vw, 0.9rem);
  --text-base: clamp(1rem,    0.97rem + 0.15vw,  1.0625rem);
  --text-lg:   clamp(1.15rem, 1.05rem + 0.5vw,   1.35rem);
  --text-xl:   clamp(1.35rem, 1.1rem  + 1.1vw,   1.75rem);
  --text-2xl:  clamp(1.7rem,  1.3rem  + 2vw,     2.5rem);
  --text-3xl:  clamp(2.2rem,  1.6rem  + 3vw,     3.5rem);
  --text-4xl:  clamp(3rem,    2rem    + 5vw,      5.5rem);
  --text-hero: clamp(3.5rem,  2rem    + 7.5vw,   8.5rem);

  /* Spacing (4pt scale) */
  --s1:  0.25rem;
  --s2:  0.5rem;
  --s3:  0.75rem;
  --s4:  1rem;
  --s6:  1.5rem;
  --s8:  2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --s24: 6rem;
  --s32: 8rem;

  /* Easing */
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --max-content: 1380px;
  --max-prose:   70ch;
  --nav-h:       72px;
}

/* ── Base ─────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

h1 em, h2 em, h3 em, h4 em {
  font-style: italic;
  font-weight: inherit;
}

.display {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lake);
}

.lead {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-mid);
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--s8);
  transition: background 0.4s var(--ease-out-quart),
              box-shadow 0.4s var(--ease-out-quart);
}

/* Scrim behind nav on transparent (over-hero) state for legibility */
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  bottom: auto;
  height: calc(var(--nav-h) * 2.4);
  background: linear-gradient(
    to bottom,
    oklch(15% 0.02 70 / 0.55) 0%,
    oklch(15% 0.02 70 / 0.28) 45%,
    oklch(15% 0.02 70 / 0) 100%
  );
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s var(--ease-out-quart);
  z-index: -1;
}

.nav--scrolled::before,
.nav--light::before {
  opacity: 0;
}

.nav--scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s6);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: color 0.3s;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav--scrolled .nav__logo,
.nav--light .nav__logo {
  color: var(--text);
}

.nav__logo span {
  font-style: italic;
  font-weight: 400;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s8);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: oklch(98% 0.008 85 / 0.85);
  transition: color 0.2s, opacity 0.2s;
  position: relative;
}

.nav--scrolled .nav__link,
.nav--light .nav__link {
  color: var(--text-mid);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--lake);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out-quart);
}

.nav__link:hover::after,
.nav__link--active::after {
  transform: scaleX(1);
}

.nav__link:hover,
.nav__link--active {
  color: var(--white);
  opacity: 1;
}

.nav--scrolled .nav__link:hover,
.nav--scrolled .nav__link--active,
.nav--light .nav__link:hover,
.nav--light .nav__link--active {
  color: var(--lake);
}

.nav__cta {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: var(--s2) var(--s6);
  background: var(--lake);
  color: var(--white) !important;
  border-radius: 4px;
  transition: background 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--lake-mid) !important;
}

.nav__cta::after { display: none !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s2);
  color: var(--white);
}

.nav--scrolled .nav__hamburger,
.nav--light .nav__hamburger {
  color: var(--text);
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Mobile Nav ────────────────────────────────────────────── */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--white);
  padding: calc(var(--nav-h) + var(--s8)) var(--s8) var(--s8);
  flex-direction: column;
  gap: var(--s6);
}

.nav__mobile.is-open {
  display: flex;
}

.nav__mobile .nav__link {
  color: var(--text);
  font-size: var(--text-xl);
  font-family: var(--font-display);
  font-weight: 400;
}

.nav__mobile .nav__cta {
  align-self: flex-start;
  margin-top: var(--s4);
}

/* Offenes Mobile-Menü: obere Leiste solide, damit Logo/Hamburger lesbar
   bleiben und der Über-Hero-Scrim nicht in das weiße Menü durchscheint */
body:has(.nav__mobile.is-open) .nav {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}
body:has(.nav__mobile.is-open) .nav::before { opacity: 0; }
body:has(.nav__mobile.is-open) .nav__logo,
body:has(.nav__mobile.is-open) .nav__hamburger { color: var(--text); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: var(--s3) var(--s8);
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--lake);
  color: var(--white);
}

.btn--primary:hover { background: var(--lake-mid); }

.btn--ghost {
  background: transparent;
  color: var(--lake);
  box-shadow: inset 0 0 0 1.5px var(--lake);
}

.btn--ghost:hover {
  background: var(--lake-wash);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px oklch(98% 0.006 85 / 0.5);
}

.btn--ghost-light:hover {
  background: oklch(98% 0.006 85 / 0.1);
}

.btn--lg {
  font-size: var(--text-base);
  padding: var(--s4) var(--s10);
}

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--s8);
}

.section {
  padding: var(--s24) 0;
}

.section--sm { padding: var(--s16) 0; }
.section--lg { padding: clamp(5rem, 10vw, 9rem) 0; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    oklch(12% 0.02 70 / 0.94) 0%,
    oklch(12% 0.02 70 / 0.55) 45%,
    oklch(12% 0.02 70 / 0.2) 100%
  );
}

.hero__title,
.hero__sub {
  text-shadow: 0 1px 14px oklch(12% 0.02 70 / 0.45);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--s32) var(--s8) var(--s20);
  max-width: var(--max-content);
  margin: 0 auto;
}

.hero__eyebrow {
  color: var(--lake-pale);
  margin-bottom: var(--s6);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  font-style: normal;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: var(--s6);
  max-width: 14ch;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
}

.hero__sub {
  font-size: var(--text-base);
  color: oklch(94% 0.01 85 / 0.85);
  max-width: 46ch;
  line-height: 1.6;
  margin-bottom: var(--s10);
}

.hero__actions {
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
}

/* ── Zimmer Inklusiv-Liste ───────────────────────────────── */
.zimmer-inkl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s10);
  background: var(--white);
  border: 1px solid var(--border);
  padding: var(--s10);
}

.zimmer-inkl__col + .zimmer-inkl__col {
  border-left: 1px solid var(--border);
  padding-left: var(--s10);
}

.zimmer-inkl__heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lake);
  margin-bottom: var(--s5, 1.25rem);
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--border);
}

.zimmer-inkl__list {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.zimmer-inkl__list li {
  font-size: var(--text-sm);
  color: var(--text-mid);
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
  line-height: 1.55;
}

.zimmer-inkl__list li::before {
  content: '✓';
  color: var(--lake);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.zimmer-inkl__list--muted li::before {
  content: '·';
  color: var(--text-soft);
  font-size: 1.4em;
  line-height: 1;
}

@media (max-width: 720px) {
  .zimmer-inkl {
    grid-template-columns: 1fr;
    gap: var(--s8);
    padding: var(--s8);
  }
  .zimmer-inkl__col + .zimmer-inkl__col {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: var(--s8);
  }
}

/* ── Highlights Band ─────────────────────────────────────── */
.highlights {
  background: var(--white);
  padding: var(--s12) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.highlight {
  padding: var(--s8) var(--s10);
  background: var(--white);
  display: flex;
  align-items: flex-start;
  gap: var(--s6);
}

.highlight__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lake);
  margin-bottom: var(--s2);
}

.highlight__text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--text);
  font-weight: 400;
  line-height: 1.3;
}

.highlight__sub {
  font-size: var(--text-sm);
  color: var(--text-mid);
  margin-top: var(--s1);
  line-height: 1.4;
}

/* ── Intro / Willkommen ──────────────────────────────────── */
.intro {
  padding: var(--s24) 0;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}

.intro__image {
  position: relative;
  aspect-ratio: 3/4;
}

.intro__image-clip {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.intro__image-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-quart);
}

.intro__image:hover .intro__image-clip img {
  transform: scale(1.02);
}

.intro__badge {
  position: absolute;
  bottom: var(--s6);
  right: calc(-1 * var(--s12));
  background: var(--white);
  padding: var(--s6) var(--s8);
  box-shadow: 0 4px 32px oklch(12% 0.02 70 / 0.12);
  text-align: center;
  z-index: 2;
}

.intro__badge-year {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--lake);
}

.intro__badge-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: var(--s1);
}

.intro__text {
  padding-left: var(--s4);
}

.intro__text .eyebrow {
  margin-bottom: var(--s4);
}

.intro__text h2 {
  margin-bottom: var(--s6);
}

.intro__text .lead {
  margin-bottom: var(--s8);
}

.intro__text p {
  color: var(--text-mid);
  max-width: var(--max-prose);
  margin-bottom: var(--s4);
}

/* ── Room Preview ─────────────────────────────────────────── */
.rooms-preview {
  background: var(--bg);
  padding: var(--s24) 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s8);
  margin-bottom: var(--s12);
  flex-wrap: wrap;
}

.section-header__left .eyebrow {
  margin-bottom: var(--s4);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}

.room-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease-out-quart),
              border-color 0.3s;
}

.room-card:hover {
  transform: translateY(-3px);
  border-color: var(--lake-pale);
  box-shadow: none;
}

.room-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.room-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-quart);
}

.room-card:hover .room-card__img img {
  transform: scale(1.04);
}

.room-card__body {
  padding: var(--s6) var(--s8) var(--s8);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-card__type {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: oklch(50% 0.105 62);
  margin-bottom: var(--s3);
}

.room-card__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: var(--s3);
  line-height: 1.2;
}

.room-card__desc {
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: var(--s6);
  flex: 1;
}

.room-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding-top: var(--s6);
  border-top: 1px solid var(--border);
}

.room-card__price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--lake);
}

.room-card__price span {
  font-size: var(--text-sm);
  font-family: var(--font-body);
  color: var(--text-soft);
  font-weight: 400;
}

/* ── Hafen Bar Feature ─────────────────────────────────────── */
.hafenbar {
  padding: var(--s24) 0;
  position: relative;
  overflow: hidden;
}

.hafenbar__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 0;
  min-height: 560px;
}

.hafenbar__text {
  padding: var(--s16) var(--s12) var(--s16) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hafenbar__text .eyebrow {
  margin-bottom: var(--s6);
}

.hafenbar__text h2 {
  margin-bottom: var(--s6);
}

.hafenbar__text .lead {
  margin-bottom: var(--s8);
}

.hafenbar__text p {
  color: var(--text-mid);
  margin-bottom: var(--s4);
  max-width: 54ch;
}

.hafenbar__text .btn {
  align-self: flex-start;
  margin-top: var(--s4);
}

.hafenbar__images {
  position: relative;
  display: grid;
  grid-template-rows: 2fr 1fr;
  gap: var(--s3);
}

.hafenbar__img-main {
  overflow: hidden;
}

.hafenbar__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hafenbar__img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
}

.hafenbar__img-small {
  overflow: hidden;
}

.hafenbar__img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Hafenschänke Teaser ─────────────────────────────────── */
.hafen-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: stretch;
}

.hafen-teaser__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hafen-teaser__text .eyebrow { margin-bottom: var(--s6); }
.hafen-teaser__text h2 { margin-bottom: var(--s6); }

.hafen-teaser__text .lead {
  color: var(--text-mid);
  max-width: 48ch;
  margin-bottom: var(--s8);
}

.hafen-teaser__text .btn { align-self: flex-start; }

.hafen-teaser__image {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.hafen-teaser__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-quart);
}

.hafen-teaser__image:hover img { transform: scale(1.02); }

/* ── Geschichte / 1780 Section ───────────────────────────── */
.history {
  background: oklch(96% 0.018 241);
  padding: var(--s24) 0;
  position: relative;
  overflow: hidden;
}

.history__watermark {
  position: absolute;
  right: -0.05em;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(12rem, 25vw, 22rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.06em;
  color: oklch(37% 0.155 241 / 0.06);
  pointer-events: none;
  user-select: none;
}

.history__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}

.history__text .eyebrow {
  color: var(--lake);
  margin-bottom: var(--s6);
}

.history__text h2 {
  color: var(--text);
  margin-bottom: var(--s6);
  font-size: var(--text-3xl);
}

.history__text p {
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: var(--s4);
  max-width: 52ch;
}

.history__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
  padding-top: var(--s6);
  margin-top: var(--s4);
  border-top: 1px solid var(--border);
}

.history__stat-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--lake);
  line-height: 1;
  margin-bottom: var(--s2);
}

.history__stat-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.history__image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.history__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Location ──────────────────────────────────────────────── */
.location {
  padding: var(--s24) 0;
  background: var(--bg-surface);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}

.location__content .eyebrow {
  margin-bottom: var(--s4);
}

.location__content h2 {
  margin-bottom: var(--s6);
}

.location__content .lead {
  margin-bottom: var(--s8);
}

.location__features {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  margin-bottom: var(--s8);
}

.location__feature {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
}

.location__feature-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: var(--lake-wash);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-top: 2px;
}

.location__feature-text strong {
  display: block;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text);
  margin-bottom: 1px;
}

.location__feature-text span {
  font-size: var(--text-sm);
  color: var(--text-mid);
}

.location__map {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}

.location__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Contact Strip ────────────────────────────────────────── */
.contact-strip {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-mid);
  padding: var(--s16) 0;
}

.contact-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s8);
  flex-wrap: wrap;
}

.contact-strip__info {
  display: flex;
  gap: var(--s12);
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}

.contact-item__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lake);
}

.contact-item__value {
  font-size: var(--text-base);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 400;
}

.contact-item__value a {
  color: inherit;
  transition: color 0.2s;
}

.contact-item__value a:hover {
  color: var(--lake);
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: var(--s16) 0 var(--s8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s12);
  margin-bottom: var(--s12);
  padding-bottom: var(--s12);
  border-bottom: 1px solid var(--border);
}

.footer__brand {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: var(--s4);
}

.footer__brand span {
  font-style: italic;
  font-weight: 400;
}

.footer__desc {
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 34ch;
}

.footer__col h2 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lake);
  margin-bottom: var(--s4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--text-mid);
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--text);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  flex-wrap: wrap;
}

.footer__copy {
  font-size: var(--text-xs);
  color: var(--text-soft);
}

.footer__legal {
  display: flex;
  gap: var(--s6);
}

.footer__legal a {
  font-size: var(--text-xs);
  color: var(--text-soft);
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: var(--text-mid);
}

/* ── Page Header (einheitlich für alle Unterseiten) ────────── */
/* Spiegelt die Bildsprache des Startseiten-Heros: vollflächiges Foto,
   sichtbar (nicht abgedunkelt), Titel unten links, weiß und gut lesbar. */
.page-header {
  position: relative;
  min-height: clamp(380px, 46vw, 540px);
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.page-header__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    oklch(12% 0.02 70 / 0.90) 0%,
    oklch(12% 0.02 70 / 0.52) 45%,
    oklch(12% 0.02 70 / 0.22) 100%
  );
}

.page-header__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2; /* über dem ::after-Overlay, sonst verdeckt der Verlauf den Titel */
  max-width: var(--max-content);
  margin: 0 auto;
  padding: var(--s20) var(--s8) var(--s12);
}

.page-header__content .eyebrow {
  color: var(--lake-pale);
  margin-bottom: var(--s4);
  text-shadow: 0 1px 12px oklch(10% 0.02 70 / 0.7);
}

.page-header__content h1 {
  color: var(--white);
  font-size: var(--text-4xl);
  line-height: 1.04;
  max-width: 16ch;
  text-shadow: 0 2px 28px oklch(0% 0 0 / 0.6), 0 1px 4px oklch(0% 0 0 / 0.5);
}

.page-header__sub {
  color: oklch(95% 0.01 85 / 0.92);
  font-size: var(--text-lg);
  font-family: var(--font-body);
  max-width: 52ch;
  margin-top: var(--s4);
  line-height: 1.55;
  text-shadow: 0 1px 16px oklch(10% 0.02 70 / 0.7);
}

/* ── Zimmer Page: Häuser ──────────────────────────────────── */
/* Jedes der beiden Häuser bekommt eine eigene Sektion mit Außenfoto,
   damit sichtbar ist, welche Zimmerkategorie in welchem Haus liegt. */
.haus {
  padding: var(--s20) 0;
}

.haus--fachwerk {
  --haus-accent: var(--timber-deep);
}

.haus--gaestehaus {
  --haus-accent: var(--lake);
  background: var(--bg-surface);
}

.haus__head {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--s10);
  align-items: center;
  border-left: 5px solid var(--haus-accent);
  padding-left: var(--s8);
  margin-bottom: var(--s16);
}

.haus__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-deep);
  margin: 0;
}

.haus__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-quart);
}

.haus__photo:hover img {
  transform: scale(1.03);
}

.haus__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s2) var(--s4);
  background: var(--haus-accent);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--s4);
}

.haus__badge svg {
  flex: none;
}

.haus__title {
  margin-bottom: var(--s4);
}

.haus__text {
  color: var(--text-mid);
  max-width: 58ch;
}

.haus__rooms-in {
  margin-top: var(--s4);
  font-size: var(--text-sm);
  color: var(--text-soft);
}

.haus__rooms-in strong {
  color: var(--text-mid);
  font-weight: 600;
}

.haus__rooms {
  display: grid;
  gap: var(--s12);
}

.haus__rooms--two {
  grid-template-columns: 1fr 1fr;
}

.zimmer {
  display: flex;
  flex-direction: column;
  scroll-margin-top: calc(var(--nav-h) + var(--s8));
}

/* Karten in einer Reihe gleich hoch halten, damit die Album-Buttons auf einer Linie sitzen */
.zimmer > .zimmer-card {
  flex: 1;
}

/* ── Zimmerkarte ──────────────────────────────────────────── */
.zimmer-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 1px 3px oklch(20% 0.02 70 / 0.07);
}

.zimmer-card--wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.zimmer-card__img {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.zimmer-card--wide .zimmer-card__img {
  aspect-ratio: auto;
  min-height: 420px;
}

.zimmer-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-quart);
}

.zimmer-card__img:hover img {
  transform: scale(1.03);
}

.zimmer-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--s10) var(--s8);
}

.zimmer-card__body h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--s2);
}

.zimmer-card__body .lead {
  margin-bottom: var(--s4);
}

.zimmer-card__body p {
  color: var(--text-mid);
}

.zimmer-card__foot {
  margin-top: auto;
}

/* ── Bettgröße mit Vergleichsbalken ───────────────────────── */
.bed-note {
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding: var(--s4);
  margin: var(--s6) 0;
  background: var(--bg);
  border: 1px solid var(--border);
}

.bed-note svg {
  flex: none;
  color: var(--haus-accent);
}

.bed-note__size {
  font-size: var(--text-sm);
  font-weight: 700;
}

.bed-note__scale {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-top: var(--s2);
}

.bed-note__bar {
  flex: 1;
  max-width: 180px;
  height: 6px;
  border-radius: 4px;
  background: var(--border);
  overflow: hidden;
}

.bed-note__fill {
  height: 100%;
  background: var(--haus-accent);
}

.bed-note__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ── Fotoalbum pro Zimmer ─────────────────────────────────── */
.room-album {
  margin-top: var(--s8);
}

.room-album__toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s3) var(--s6);
  background: transparent;
  color: var(--lake);
  border: 1.5px solid var(--lake);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.room-album__toggle:hover {
  background: var(--lake);
  color: var(--white);
}

.room-album__count {
  font-weight: 400;
  opacity: 0.75;
}

.room-album__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--s3);
  margin-top: var(--s6);
}

.room-album__grid[hidden] {
  display: none;
}

.room-album__item {
  display: block;
  padding: 0;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-surface);
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
}

.room-album__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-quart);
}

.room-album__item:hover img {
  transform: scale(1.05);
}

/* ── Formular-Statusmeldung ───────────────────────────────── */
.form-status {
  margin-bottom: var(--s4);
  padding: var(--s3) var(--s4);
  border-radius: 4px;
  font-size: var(--text-sm);
}

.form-status--error {
  background: oklch(94% 0.04 25);
  color: oklch(40% 0.13 25);
  border: 1px solid oklch(80% 0.08 25);
}

.amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2) var(--s6);
  margin: var(--s6) 0;
}

.amenity {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: var(--text-sm);
  color: var(--text-mid);
}

.amenity::before {
  content: '✓';
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--lake);
  flex-shrink: 0;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: var(--s3);
  padding: var(--s6) var(--s8);
  background: var(--lake-wash);
  margin: var(--s6) 0;
}

.price-box__amount {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--lake);
  line-height: 1;
}

.price-box__from {
  font-size: var(--text-sm);
  color: var(--text-soft);
}

/* ── Buchung Page ─────────────────────────────────────────── */
.booking-section {
  padding: var(--s24) 0;
}

.booking-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--s16);
  align-items: start;
}

.booking-form {
  background: var(--white);
  padding: var(--s10) var(--s12);
  box-shadow: 0 4px 40px oklch(12% 0.02 70 / 0.07);
}

.booking-form h2 {
  margin-bottom: var(--s2);
}

.booking-form .lead {
  margin-bottom: var(--s8);
  font-size: var(--text-base);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  margin-bottom: var(--s6);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 2px;
  padding: var(--s3) var(--s4);
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--lake);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}

.form-note {
  font-size: var(--text-xs);
  color: var(--text-soft);
  line-height: 1.5;
  margin-top: var(--s4);
}

.booking-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + var(--s8));
}

.booking-info-card {
  background: var(--bg-surface);
  padding: var(--s8);
  margin-bottom: var(--s4);
}

.booking-info-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--s4);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table td {
  padding: var(--s3) 0;
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--border);
}

.price-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--lake);
  font-family: var(--font-display);
  font-size: var(--text-lg);
}

.storno-block {
  background: var(--timber-pale);
  padding: var(--s6) var(--s8);
  margin-top: var(--s4);
}

.storno-block h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--s4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.storno-item {
  display: flex;
  justify-content: space-between;
  gap: var(--s4);
  font-size: var(--text-sm);
  padding: var(--s2) 0;
  color: var(--text-mid);
}

/* ── Kontakt Page ─────────────────────────────────────────── */
.contact-page {
  padding: var(--s24) 0;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
}

.contact-card {
  background: var(--white);
  padding: var(--s10) var(--s12);
  box-shadow: 0 4px 40px oklch(12% 0.02 70 / 0.07);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--s6);
  margin-top: var(--s8);
}

.contact-detail {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
}

.contact-detail__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-detail__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lake);
  margin-bottom: var(--s1);
}

.contact-detail__value {
  font-size: var(--text-base);
  color: var(--text);
}

.contact-detail__value a {
  color: var(--lake);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s;
}

.contact-detail__value a:hover {
  text-decoration-color: var(--lake);
}

.map-embed {
  height: 400px;
  overflow: hidden;
  margin-top: var(--s8);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Impressum Page ───────────────────────────────────────── */
.legal-page {
  padding: var(--s24) 0;
  padding-top: calc(var(--nav-h) + var(--s16));
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  margin-bottom: var(--s6);
}

.legal-section {
  margin-bottom: var(--s12);
}

.legal-section h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--s4);
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--border);
}

.legal-section h3 {
  font-size: var(--text-lg);
  margin-top: var(--s6);
  margin-bottom: var(--s3);
}

.legal-section p {
  color: var(--text-mid);
  margin-bottom: var(--s4);
  line-height: 1.7;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--s4) 0;
}

.legal-table td {
  padding: var(--s3) var(--s4);
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.legal-table td:first-child {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  padding-right: var(--s8);
  width: 35%;
}

.legal-table td:last-child {
  color: var(--text-mid);
}

/* ── Hafenschänke Page ─────────────────────────────────────── */
.hafen-hero-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--s12) 0;
}

.hafen-gen-timeline {
  display: flex;
  gap: 0;
  padding: var(--s12) 0;
  position: relative;
}

.hafen-gen-timeline::before {
  content: '';
  position: absolute;
  top: calc(var(--s12) + 16px);
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-mid);
}

.gen-item {
  flex: 1;
  text-align: center;
  padding: 0 var(--s4);
  position: relative;
}

.gen-item__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lake);
  margin: 10px auto var(--s4);
  position: relative;
  z-index: 1;
}

.gen-item__year {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--lake);
  margin-bottom: var(--s2);
  display: block;
}

.gen-item__name {
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: var(--s1);
}

.gen-item__desc {
  font-size: var(--text-xs);
  color: var(--text-soft);
  line-height: 1.5;
}

/* ── Scroll Animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Lightbox ──────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: oklch(6% 0.01 70 / 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: var(--s6);
  right: var(--s6);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.lightbox__close:hover { opacity: 1; }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display: none;
  align-items: center;
  justify-content: center;
  background: oklch(100% 0 0 / 0.08);
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s, background 0.2s;
  border-radius: 50%;
}

.lightbox__nav:hover { opacity: 1; background: oklch(100% 0 0 / 0.16); }
.lightbox__nav--prev { left: var(--s6); }
.lightbox__nav--next { right: var(--s6); }

.lightbox__counter {
  position: absolute;
  bottom: var(--s6);
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: var(--text-sm);
  opacity: 0.7;
  letter-spacing: 0.05em;
  display: none;
}

.lightbox--gallery .lightbox__nav,
.lightbox--gallery .lightbox__counter {
  display: flex;
}

@media (max-width: 700px) {
  .lightbox__nav { width: 44px; height: 44px; font-size: 1.8rem; }
  .lightbox__nav--prev { left: var(--s2); }
  .lightbox__nav--next { right: var(--s2); }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s8);
  }

  .intro__badge {
    right: var(--s4);
  }

  .history__watermark {
    font-size: clamp(8rem, 18vw, 14rem);
  }
}

@media (max-width: 900px) {
  :root { --nav-h: 64px; }

  .nav__links { display: none; }
  .nav__inner .nav__cta { display: none; } /* nur Desktop-CTA; Mobile-Menü-CTA bleibt sichtbar */
  .nav__hamburger { display: flex; }

  .hero__title { max-width: none; }

  .highlights {
    padding: 0;
  }

  .highlights__grid {
    grid-template-columns: 1fr;
    gap: 0;
    background: transparent;
  }

  /* Label/Überschrift/Sub vertikal stapeln statt nebeneinander (sonst Überlauf) */
  .highlight {
    flex-direction: column;
    gap: var(--s1);
    padding: var(--s6) 0;
    border-bottom: 1px solid var(--border);
  }

  .highlight:last-child {
    border-bottom: none;
  }

  .intro__grid,
  .history__inner,
  .location__grid,
  .booking-grid,
  .contact-page__grid,
  .hafenbar__grid,
  .hafen-teaser__grid {
    grid-template-columns: 1fr;
  }

  .hafen-teaser__image {
    aspect-ratio: 4/3;
    min-height: 0;
  }

  .intro__badge {
    right: var(--s4);
    bottom: var(--s4);
    padding: var(--s4) var(--s6);
  }

  .hafenbar__text { padding-right: 0; }

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

  .haus__head {
    grid-template-columns: 1fr;
    gap: var(--s6);
    padding-left: var(--s6);
    margin-bottom: var(--s12);
  }

  .haus__photo {
    aspect-ratio: 4 / 3;
    max-width: 420px;
  }

  .haus__rooms--two,
  .zimmer-card--wide {
    grid-template-columns: 1fr;
  }

  .zimmer-card--wide .zimmer-card__img {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

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

  .booking-sidebar {
    position: static;
  }

  .contact-strip__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .zimmer-card__body {
    padding: var(--s8) var(--s6);
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .contact-strip__info {
    gap: var(--s8);
  }

  .hafen-gen-timeline {
    flex-direction: column;
  }

  .hafen-gen-timeline::before { display: none; }

  .gen-item { text-align: left; padding: var(--s4) 0; }
  .gen-item__dot { margin: 0 0 var(--s3); }
}

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

/* ── Reduzierte Bewegung respektieren ─────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Kompaktere Sektionsabstände auf Mobil ───────────────── */
@media (max-width: 900px) {
  .section,
  .intro,
  .rooms-preview,
  .hafenbar,
  .history,
  .location,
  .hafen-text-section,
  .booking-section,
  .contact-page,
  .legal-page {
    padding-top: var(--s12);
    padding-bottom: var(--s12);
  }
  .haus {
    padding-top: var(--s12);
    padding-bottom: var(--s12);
  }
}

/* ── Zeichenzähler Textfelder ─────────────────────────────── */
.char-count {
  font-size: var(--text-xs);
  color: var(--text-soft);
  text-align: right;
  margin-top: var(--s1);
}
.char-count--limit {
  color: oklch(45% 0.16 25);
  font-weight: 600;
}
