/* ============================================================
   Lüttje Butt — Ferienhaus List auf Sylt
   Erlebnis-Redesign: ruhig, editorial, friesisch-warm.
   Palette: Leinen-Sand, Nordsee-Petrol, Backstein-Bronze.
   ============================================================ */

:root {
  --sand:      #f5f1e8;   /* Seitenhintergrund */
  --shell:     #ece5d6;   /* Alt-Sektionen */
  --paper:     #fffdf8;   /* Karten */
  --ink:       #1d2a33;   /* Text */
  --ink-soft:  #58676f;
  --sea:       #2b5b6b;   /* Nordsee-Petrol */
  --sea-deep:  #17404e;
  --bronze:    #a8834e;   /* Logo-Gold */
  --bronze-soft: #c9ac7d;
  --line:      #e2d9c6;
  --radius:    16px;
  --shadow:    0 14px 40px rgba(23, 40, 51, .12);
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--sea); }
figure { margin: 0; }
figcaption {
  font-size: .82rem;
  color: var(--ink-soft);
  padding-top: 10px;
  font-style: italic;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--ink); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); letter-spacing: -.01em; }
h3 { font-size: 1.3rem; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.center { text-align: center; }

.eyebrow, .chapter-no {
  font-size: .78rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
  margin-bottom: 1.1em;
}
.chapter-no.light { color: var(--bronze-soft); }
.lead { font-size: 1.14rem; color: var(--ink-soft); }

/* ---------- Reveal-Animationen ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-video { display: none !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--sea); color: #fff; }
.btn-primary:hover { background: var(--sea-deep); }
.btn-ghost { border-color: rgba(255,255,255,.7); color: #fff; background: rgba(20,35,44,.18); backdrop-filter: blur(3px); }
.btn-light { background: #fff; color: var(--sea-deep); }
.btn-outline { border-color: var(--sea); color: var(--sea); background: transparent; }
.btn-outline:hover { background: var(--sea); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 6px 0;
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.site-header.scrolled {
  background: rgba(245, 241, 232, .94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding: 0;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 10px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,253,248,.85);
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0,0,0,.35);
  transition: color .35s ease, text-shadow .35s ease;
}
.site-header.scrolled .brand-name { color: var(--ink); text-shadow: none; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  text-decoration: none;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
  font-size: .93rem; font-weight: 500;
  transition: color .35s ease, text-shadow .35s ease;
}
.site-header.scrolled .main-nav a { color: var(--ink); text-shadow: none; }
.main-nav a:hover { color: var(--bronze-soft); }
.site-header.scrolled .main-nav a:hover { color: var(--sea); }
.nav-cta {
  background: var(--bronze);
  color: #fff !important;
  text-shadow: none !important;
  padding: 10px 24px;
  border-radius: 999px;
}
.nav-cta:hover { background: #8f6e3f; color: #fff !important; }
.nav-guest {
  border: 1.5px solid var(--bronze-soft);
  color: #fff;
  padding: 9px 20px;
  border-radius: 999px;
  margin-left: 8px;
  letter-spacing: .02em;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.nav-guest:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: #fff !important;
  text-shadow: none;
}
.site-header.scrolled .nav-guest,
.site-header.always-solid .nav-guest {
  color: var(--bronze);
  border-color: var(--bronze);
  text-shadow: none;
}
.site-header.scrolled .nav-guest:hover,
.site-header.always-solid .nav-guest:hover { color: #fff !important; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; z-index: 110; }
.nav-toggle span {
  display: block; width: 25px; height: 2px;
  background: #fff; margin: 5px 0;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
  transition: .2s;
}
.site-header.scrolled .nav-toggle span, .main-nav.open ~ .nav-toggle span { background: var(--ink); box-shadow: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media, .hero-fallback, .hero-video { position: absolute; inset: 0; }
.hero-fallback {
  background-size: cover;
  background-position: center 40%;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-video.is-playing { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 31, 39, .5) 0%, rgba(18, 31, 39, .18) 40%, rgba(18, 31, 39, .62) 100%);
}
.hero-content {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 28px 80px;
  width: 100%;
}
.hero-eyebrow {
  font-size: .82rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  opacity: .9;
  margin-bottom: 22px;
  animation: heroFade 1.2s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 10vw, 7.5rem);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: .98;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0,0,0,.35);
  margin-bottom: 26px;
  animation: heroFade 1.2s .15s ease both;
}
.hero-sub {
  max-width: 540px;
  font-size: 1.18rem;
  line-height: 1.65;
  text-shadow: 0 1px 14px rgba(0,0,0,.45);
  margin-bottom: 38px;
  animation: heroFade 1.2s .3s ease both;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: heroFade 1.2s .45s ease both; }
@keyframes heroFade {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.scroll-cue {
  position: absolute;
  left: 50%; bottom: 30px;
  transform: translateX(-50%);
  width: 28px; height: 52px;
  display: block;
}
.scroll-cue-line {
  position: absolute; left: 50%; top: 0;
  width: 1px; height: 100%;
  background: rgba(255,255,255,.55);
  overflow: hidden;
}
.scroll-cue-line::after {
  content: "";
  position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%;
  background: #fff;
  animation: cueDrop 2s ease-in-out infinite;
}
@keyframes cueDrop {
  0% { top: -50%; } 60% { top: 100%; } 100% { top: 100%; }
}

/* ---------- Intro ---------- */
.intro { padding: 110px 0 90px; }
.intro-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 70px;
  align-items: center;
}
.intro-statement {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: .7em;
}
.intro-statement em { color: var(--bronze); }
.intro-figure { position: relative; }
.intro-figure img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(1.6deg);
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
}
.intro-figure figcaption { text-align: right; }

.stats-strip {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { text-align: center; padding: 28px 12px; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--sea-deep);
}
.stat span {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Kapitel / Editorial ---------- */
.chapter { padding: 110px 0; }
.chapter-alt { background: var(--shell); }
.chapter-head { margin-bottom: 64px; }
.chapter-head h2, .chapter-head .chapter-lead { max-width: 760px; }
.chapter-lead { color: var(--ink-soft); margin-top: 14px; }

.editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
  align-items: start;
}
.ed-main { grid-column: 1 / 8; }
.ed-main img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.ed-text {
  grid-column: 8 / 13;
  padding-top: 10px;
}
.ed-text p { margin-bottom: 1.1em; color: var(--ink-soft); }
.ed-text strong { color: var(--ink); }
.ed-side { grid-column: span 6; margin-top: 8px; }
.ed-side img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 8px 26px rgba(23,40,51,.10);
}
.editorial-flip .ed-main { grid-column: 6 / 13; order: 2; }
.editorial-flip .ed-text { grid-column: 1 / 6; order: 1; }
.editorial-flip .ed-side { order: 3; }

.ed-tags {
  list-style: none;
  display: flex; flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.ed-tags li {
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--sea-deep);
  background: rgba(43, 91, 107, .09);
  border: 1px solid rgba(43, 91, 107, .18);
  border-radius: 999px;
  padding: 5px 14px;
}

/* ---------- Atmo-Break ---------- */
.break {
  position: relative;
  min-height: 68vh;
  display: flex; align-items: center; justify-content: center;
  background-image: linear-gradient(rgba(15, 28, 36, .45), rgba(15, 28, 36, .45)), var(--break-img);
  background-size: cover;
  background-position: center;
}
@media (min-width: 1000px) {
  .break { background-attachment: fixed; }
}
.break-inner { max-width: 820px; padding: 100px 28px; text-align: center; }
.break-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.45);
}
.break-sub {
  margin-top: 18px;
  font-size: .92rem;
  letter-spacing: .04em;
  color: rgba(255,255,255,.75);
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
}

/* ---------- Ein Tag im Lüttje Butt ---------- */
.daychapter {
  background: var(--sea-deep);
  color: #dfe9ec;
  padding: 110px 0;
}
.daychapter h2 { color: #fff; }
.day-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.day-card {
  background: rgba(255, 253, 248, .05);
  border: 1px solid rgba(255, 253, 248, .14);
  border-radius: var(--radius);
  overflow: hidden;
}
.day-card figure { overflow: hidden; }
.day-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .6s ease;
}
.day-card:hover img { transform: scale(1.04); }
.day-body { padding: 26px 26px 30px; }
.day-time {
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  margin-bottom: 10px;
}
.day-body h3 { color: #fff; margin-bottom: 10px; }
.day-body p { font-size: .95rem; color: #b9c9ce; }

/* ---------- Galerie / Collage ---------- */
.collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  grid-auto-flow: dense;
  gap: 14px;
  margin-bottom: 44px;
}
.collage a {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
}
.collage a img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.collage a:hover img { transform: scale(1.05); }
.collage a .tile-label {
  position: absolute;
  left: 12px; bottom: 10px;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(20, 33, 41, .55);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.collage a:hover .tile-label { opacity: 1; transform: none; }
.collage a.big { grid-column: span 2; grid-row: span 2; }
.collage a.wide { grid-column: span 2; }
.collage a.tall { grid-row: span 2; }

/* ---------- Lage ---------- */
.section-sea {
  background: linear-gradient(165deg, var(--sea) 0%, var(--sea-deep) 70%);
  color: #e8f0f2;
  padding: 110px 0;
}
.section-sea h2 { color: #fff; margin-bottom: .6em; }
.section-sea a { color: var(--bronze-soft); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-text p { margin-bottom: 1em; }
.poi-list { list-style: none; margin-top: 1.6em; }
.poi-list li {
  display: flex; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  font-size: .95rem;
  line-height: 1.5;
}
.poi-list li:last-child { border-bottom: 0; }
.poi-icon { flex: 0 0 auto; font-size: 1.2rem; }
.poi-list strong { color: #fff; }

.lage-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}
.lage-photos img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}
.lage-photos figcaption {
  color: #aec3c9;
  font-size: .74rem;
  padding-top: 6px;
  text-align: center;
}

.map-consent {
  border-radius: var(--radius);
  min-height: 280px;
  background: rgba(255,255,255,.06);
  border: 1px dashed rgba(255,255,255,.32);
  display: flex; flex-direction: column; gap: 20px;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 40px;
}
.map-frame { width: 100%; height: 440px; border: 0; border-radius: var(--radius); }

/* ---------- Buchung ---------- */
.booking { padding: 110px 0 90px; background: var(--shell); }
.booking-grid {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 64px;
  align-items: center;
}
.booking-text p { color: var(--ink-soft); margin-bottom: 1em; }
.booking-text h2 { margin-bottom: .5em; }
.booking-text strong { color: var(--ink); }
.service-list { list-style: none; margin-top: 1.4em; }
.service-list li {
  display: flex; align-items: baseline; gap: 14px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
}
.service-list li:last-child { border-bottom: 0; }
.booking-card {
  background: linear-gradient(155deg, var(--sea) 0%, var(--sea-deep) 100%);
  color: #e8f0f2;
  border-radius: var(--radius);
  padding: 48px 44px;
  box-shadow: var(--shadow);
}
.booking-card-eyebrow {
  font-size: .75rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  margin-bottom: 14px;
}
.booking-card h3 { color: #fff; font-size: 1.8rem; margin-bottom: 14px; }
.booking-card p { margin-bottom: 26px; }
.booking-note { font-size: .78rem; opacity: .65; margin-top: 16px; margin-bottom: 0 !important; }
.feedback-line {
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--ink-soft);
  font-size: .95rem;
}

/* ---------- Kontakt ---------- */
.contact-mail { font-size: 1.15rem; }
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 6px;
}
.contact-form label { font-weight: 600; font-size: .9rem; margin-top: 12px; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid var(--sea); border-color: transparent;
}
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 16px 0; font-weight: 400 !important; }
.consent span { font-size: .82rem; color: var(--ink-soft); line-height: 1.5; }
.consent input { margin-top: 4px; }
.form-note { font-size: .8rem; color: var(--ink-soft); margin-top: 10px; }
.hp-field { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }
.form-status { font-size: .95rem; margin-top: 10px; }
.form-status.ok { color: #2e7d4f; }
.form-status.err { color: #b3403a; }

#kontakt .split { align-items: start; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #aebbc3;
  padding: 64px 0 44px;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer-logo { width: 76px; height: 76px; border-radius: 50%; background: var(--sand); margin-bottom: 6px; }
.footer-claim {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: #fff;
}
.footer-address { font-size: .92rem; }
.footer-address strong { color: #dfe7ec; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 26px; justify-content: center; margin-top: 14px; }
.footer-nav a { color: #aebbc3; text-decoration: none; font-size: .88rem; }
.footer-nav a:hover { color: #fff; }
.footer-copy { font-size: .78rem; opacity: .55; margin-top: 10px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(14, 22, 28, .95);
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(92vw, 1400px); max-height: 86vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  font-size: 1.6rem; line-height: 1;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.22); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lb-counter { position: absolute; bottom: 20px; color: #fff; opacity: .7; font-size: .85rem; }

/* ---------- Legal-Seiten ---------- */
.legal-page { padding: 150px 0 90px; }
.legal-page .container { max-width: 780px; }
.legal-page h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1em; }
.legal-page h2 { font-size: 1.35rem; margin-top: 1.8em; margin-bottom: .5em; }
.legal-page p, .legal-page li { color: var(--ink-soft); margin-bottom: .8em; }
.legal-todo {
  background: #fdf3dc; border: 1px solid var(--bronze-soft);
  border-radius: 10px; padding: 18px 22px; margin: 20px 0;
  color: #7a5c22;
}
.legal-page ~ .site-header .brand-name,
.site-header.always-solid .brand-name { color: var(--ink); text-shadow: none; }
.site-header.always-solid { background: rgba(245, 241, 232, .94); box-shadow: 0 1px 0 var(--line); }
.site-header.always-solid .main-nav a { color: var(--ink); text-shadow: none; }

/* ---------- Gästebereich ---------- */
.guest-page { padding-top: 76px; }
.sr-only { position: absolute; left: -9999px; }

.guest-gate { padding: 90px 0 110px; text-align: center; }
.gate-logo { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 26px; box-shadow: var(--shadow); }
.guest-gate h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: .5em; }
.gate-form {
  display: flex; gap: 12px; justify-content: center;
  margin-top: 34px; flex-wrap: wrap;
}
.gate-form input {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: .35em;
  text-align: center;
  width: 190px;
  padding: 12px 10px 12px 20px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}
.gate-form input:focus { outline: 2px solid var(--sea); border-color: transparent; }
.gate-error {
  margin-top: 22px;
  color: #b3403a;
  background: #fdeeea;
  border: 1px solid #eac8c2;
  border-radius: 10px;
  display: inline-block;
  padding: 12px 20px;
  font-size: .95rem;
}
.gate-error[hidden] { display: none; }

.guest-section { padding: 56px 0; }
.guest-section h2 { margin-bottom: .4em; }
.guest-intro { color: var(--ink-soft); margin-bottom: 28px; }
.guest-outro {
  margin-top: 48px;
  text-align: center;
  font-size: 1.15rem;
  color: var(--ink-soft);
}
.guest-outro em { font-family: var(--font-display); color: var(--bronze); }

.guest-wifi { padding: 0; }
.wifi-card {
  display: flex; gap: 28px; align-items: center;
  background: linear-gradient(150deg, var(--sea) 0%, var(--sea-deep) 100%);
  color: #e8f0f2;
  border-radius: var(--radius);
  padding: 38px 42px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}
.wifi-icon { font-size: 3rem; }
.wifi-card h3 { color: #fff; margin-bottom: 6px; }
.wifi-data { display: flex; gap: 40px; margin-top: 18px; flex-wrap: wrap; }
.wifi-data dt {
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--bronze-soft); margin-bottom: 4px;
}
.wifi-data dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: #fff;
  user-select: all;
  word-break: break-all;
  letter-spacing: .06em;
}

.guide {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}
.guide summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1.02rem;
  list-style: none;
  position: relative;
}
.guide summary::-webkit-details-marker { display: none; }
.guide summary::after {
  content: "+";
  position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem; color: var(--bronze);
}
.guide[open] summary::after { content: "–"; }
.guide[open] summary { border-bottom: 1px dashed var(--line); }
.guide-body { padding: 16px 22px 20px; color: var(--ink-soft); }

.guest-tips { background: var(--shell); }
.tip-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.tip-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 22px;
}
.tip-cat {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--bronze); margin-bottom: 8px; font-weight: 600;
}
.tip-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.tip-card p { color: var(--ink-soft); font-size: .93rem; }

.tip-meta {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  font-size: .85rem !important;
  line-height: 1.6;
}
.tips-subhead { margin: 40px 0 18px; color: var(--sea-deep); }
.tip-card-wide { grid-column: span 3; }
.tip-list { margin: 10px 0 0 18px; color: var(--ink-soft); font-size: .93rem; }
.tip-list li { margin-bottom: 6px; }

.review-box {
  background: var(--paper);
  border: 1px dashed var(--bronze-soft);
  border-radius: var(--radius);
  padding: 34px 30px;
  max-width: 560px;
  margin: 0 auto;
}
.review-box p { color: var(--ink-soft); font-size: .92rem; margin-bottom: 18px; }
.review-frame {
  width: 100%;
  max-width: 720px;
  height: 900px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 24px; }
.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 22px;
}
.info-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.info-card p { color: var(--ink-soft); font-size: .95rem; }

@media (max-width: 900px) {
  .tip-grid { grid-template-columns: 1fr; }
  .tip-card-wide { grid-column: auto; }
  .info-grid { grid-template-columns: 1fr; }
  .wifi-card { padding: 28px 24px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .chapter, .intro, .daychapter, .section-sea, .booking { padding: 72px 0; }
  .intro-grid { grid-template-columns: 1fr; gap: 44px; }
  .stats-strip { margin-top: 56px; grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }

  .editorial { grid-template-columns: 1fr; gap: 24px; }
  .ed-main, .ed-text, .ed-side,
  .editorial-flip .ed-main, .editorial-flip .ed-text { grid-column: 1 / -1; order: initial; }

  .day-grid { grid-template-columns: 1fr; }
  .split, .booking-grid { grid-template-columns: 1fr; gap: 40px; }

  .collage { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }

  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute; top: 0; left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    background: var(--sand);
    border-bottom: 1px solid var(--line);
    padding: 90px 28px 30px;
    gap: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
  }
  .main-nav.open { display: flex; }
  .main-nav.open a { color: var(--ink); text-shadow: none; font-size: 1.05rem; }
  /* Unterseiten (Impressum/Datenschutz): einzelnen Zurück-Link inline zeigen */
  .site-header.always-solid .main-nav {
    display: flex;
    position: static;
    flex-direction: row;
    background: none;
    border: 0;
    padding: 0;
    box-shadow: none;
  }
  .site-header:has(.main-nav.open) .nav-toggle span { background: var(--ink); box-shadow: none; }
  .brand { position: relative; z-index: 110; }
  .site-header:has(.main-nav.open) .brand-name { color: var(--ink); text-shadow: none; }
}
