/* ===========================================================================
   The BLUE by Villa Hahn — Atlantik & Sterne (2026)
   Passatwolken-Weiß · Gischt-Blaugrau · Atlantikblau · Azul (das BLUE) · Lavagrau.
   Headlines: Fraunces · Body: Inter · Datenschicht: JetBrains Mono.
   Design-These: „Am Tag das Blau. In der Nacht die Sterne."
   =========================================================================== */

:root {
  --cloud: #FAFBFC;
  --foam: #EEF3F6;
  --foam-deep: #DFE9EF;
  --atlantic: #16456E;
  --atlantic-deep: #0D2C49;
  --atlantic-700: #1E5788;
  --azul: #2470B2;
  --azul-deep: #1F639C;
  --azul-soft: #7FB4DC;
  --lava: #3A4148;
  --sun: #F2C879;

  --text: #1C3A56;
  --text-muted: #54708A;
  --line: rgba(22, 69, 110, .15);
  --line-soft: rgba(22, 69, 110, .08);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow-sm: 0 12px 30px -20px rgba(13, 44, 73, .35);
  --shadow: 0 26px 60px -34px rgba(13, 44, 73, .40);
  --shadow-lg: 0 40px 90px -40px rgba(13, 44, 73, .45);
  --glass: rgba(250, 251, 252, .74);

  --font-display: "Fraunces", "Georgia", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", ui-monospace, monospace;

  --maxw: 1280px;
  --header-h: 84px;
  --ease: cubic-bezier(.16, 1, .3, 1);

  /* die Blaue Stunde — Übergang zwischen Tag und Sternennacht */
  --blue-hour-1: #E7EFF5;
  --blue-hour-2: #D3E1EC;
  --dusk-1: #D3E1EC;
  --dusk-2: #BCD1E2;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--cloud);
  line-height: 1.75;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: var(--azul-deep); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--atlantic); }
::selection { background: var(--azul-soft); color: var(--atlantic-deep); }
:focus-visible { outline: 1.5px solid var(--azul); outline-offset: 4px; }

/* skip link — first focusable node, slides in on keyboard focus */
.skip-link { position: fixed; top: -64px; left: 1rem; z-index: 400; background: var(--atlantic); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm); font-family: var(--font-sans); font-size: .85rem; font-weight: 600; text-decoration: none; transition: top .2s var(--ease); }
.skip-link:focus { top: 0; color: #fff; outline: 2px solid var(--azul-soft); outline-offset: 2px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 420;
  line-height: 1.08;
  color: var(--atlantic);
  letter-spacing: -.005em;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.75rem); }
.section { padding: clamp(4.5rem, 10vw, 9rem) 0; }
.section--compact { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--soft { background: var(--foam); }
.section--sea { background: linear-gradient(180deg, var(--cloud), var(--foam)); }
.section--editorial { background: var(--cloud); }
.center { text-align: center; }

.label {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono);
  font-size: .66rem; font-weight: 400; letter-spacing: .24em;
  text-transform: uppercase; color: var(--lava); margin-bottom: 1.4rem;
}
.label::before { content: ""; width: 1.9rem; height: 1px; margin-right: .8rem; background: currentColor; opacity: .7; }

.title {
  font-size: clamp(2.6rem, 5.6vw, 5rem);
  font-weight: 420; line-height: 1.02; letter-spacing: -.018em;
  margin-bottom: 1.2rem;
}
.title--xl { font-size: clamp(3rem, 8vw, 6rem); }
.subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-muted); }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.35rem); font-weight: 400; line-height: 1.85; color: var(--text-muted); max-width: 46rem; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-sans); font-weight: 500; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 1.05rem 2.1rem; border-radius: 999px;
  background: var(--azul); color: #fff; border: 1px solid var(--azul);
  cursor: pointer; transition: transform .4s var(--ease), background .3s var(--ease), box-shadow .4s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap; box-shadow: 0 14px 32px -16px rgba(43, 125, 192, .55);
}
.btn:hover { background: var(--azul-deep); border-color: var(--azul-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 22px 46px -18px rgba(43, 125, 192, .6); }
.btn:not(.btn--outline)::before {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-18deg); transition: left .7s var(--ease); pointer-events: none;
}
.btn:not(.btn--outline):hover::before { left: 145%; }
.btn--outline {
  background: transparent; color: var(--atlantic); border-color: var(--line);
  box-shadow: none;
}
.btn--outline:hover { background: var(--azul); color: #fff; border-color: var(--azul); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.55); box-shadow: none; backdrop-filter: blur(6px); }
.btn--ghost:hover { background: #fff; color: var(--atlantic); border-color: #fff; }
.nav-cta, .btn--book { background: var(--azul); border-color: var(--azul); color: #fff; }
.nav-cta:hover, .btn--book:hover { background: var(--azul-deep); border-color: var(--azul-deep); color: #fff; }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease), height .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.site-header.solid, .site-header.is-open {
  background: var(--glass); backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom-color: var(--line-soft); box-shadow: 0 8px 30px -22px rgba(13,44,73,.4);
}

/* brand lockup — typografisch: THE BLUE / by Villa Hahn */
.brand { display: inline-flex; align-items: baseline; gap: .55rem; line-height: 1; color: var(--atlantic); white-space: nowrap; }
.brand:hover { color: var(--atlantic); }
.brand-blue { font-family: var(--font-display); font-weight: 500; font-size: 1.45rem; letter-spacing: .01em; }
.brand-blue em { font-style: normal; color: var(--azul); }
.brand-by { font-family: var(--font-mono); font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; color: var(--text-muted); }
.site-header.over-hero:not(.solid) .brand,
.site-header.over-hero:not(.solid) .brand-blue { color: #fff; }
.site-header.over-hero:not(.solid) .brand-blue em { color: var(--azul-soft); }
.site-header.over-hero:not(.solid) .brand-by { color: rgba(255,255,255,.72); }

.nav { display: flex; align-items: center; gap: clamp(1.1rem, 2vw, 2.1rem); }
.nav a {
  font-family: var(--font-sans); font-weight: 500; font-size: .76rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--atlantic); white-space: nowrap;
  position: relative; transition: color .25s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--azul); }
.site-header.over-hero:not(.solid) .nav > a,
.site-header.over-hero:not(.solid) .nav > .has-sub > a { color: rgba(255,255,255,.9); }
.site-header.over-hero:not(.solid) .nav > a:hover,
.site-header.over-hero:not(.solid) .nav > .has-sub > a:hover,
.site-header.over-hero:not(.solid) .nav > a.active { color: #fff; }
@media (min-width: 861px) {
  .nav > a::after, .nav > .has-sub > a::after {
    content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 1px;
    background: currentColor; transform: scaleX(0); transform-origin: right;
    transition: transform .45s var(--ease);
  }
  .nav > a:hover::after, .nav > .has-sub > a:hover::after, .nav > a.active::after { transform: scaleX(1); transform-origin: left; }
}

.has-sub { position: relative; }
.submenu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--glass); backdrop-filter: blur(18px) saturate(1.3); -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: .7rem; min-width: 232px; opacity: 0; visibility: hidden; transition: all .3s var(--ease);
  border: 1px solid var(--line-soft);
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.submenu a { display: block; padding: .65rem .9rem; border-radius: var(--radius-sm); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--atlantic); font-weight: 500; }
.submenu a:hover { background: var(--foam); color: var(--azul); }

.nav-cta { margin-left: .3rem; padding: .85rem 1.6rem; box-shadow: none; }
.lang { display: flex; align-items: center; gap: .3rem; font-size: .72rem; }
.lang a { color: var(--text-muted); padding: 3px 7px; border-radius: 999px; font-weight: 600; letter-spacing: .08em; }
.lang a.active { color: var(--atlantic); background: var(--foam); }
.site-header.over-hero:not(.solid) .lang a { color: rgba(255,255,255,.82); }
.site-header.over-hero:not(.solid) .lang a.active { color: var(--atlantic); background: rgba(255,255,255,.85); }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--atlantic); }
.site-header.over-hero:not(.solid) .menu-toggle { color: #fff; }
.menu-toggle svg { width: 26px; height: 26px; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: clamp(640px, 94vh, 940px); display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero--page { min-height: clamp(440px, 60vh, 660px); }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(22,23,26,.40) 0%, rgba(22,23,26,.10) 32%, rgba(22,23,26,.26) 64%, rgba(22,23,26,.76) 100%); }
.hero__inner { position: relative; z-index: 2; width: 100%; padding-top: calc(var(--header-h) + 2rem); padding-bottom: clamp(3rem, 7vw, 6rem); }
.hero__claim { font-family: var(--font-mono); font-size: .76rem; font-weight: 400; letter-spacing: .42em; text-transform: uppercase; color: var(--azul-soft); margin-bottom: 1.3rem; }
.hero h1 { color: #fff; font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 460; letter-spacing: -.01em; line-height: 1; text-shadow: 0 4px 40px rgba(0,0,0,.3); }
.hero__sub { margin-top: 1.4rem; max-width: 38rem; font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255,255,255,.92); font-weight: 400; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero--page .hero__inner { padding-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.hero--page h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
.crumbs { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.8); margin-bottom: 1rem; }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0; }
.crumbs li { display: inline; }
.crumbs li + li::before { content: "/"; padding: 0 .55em; color: rgba(255,255,255,.5); }
.crumbs a { color: rgba(255,255,255,.8); }
.crumbs a:hover { color: #fff; }
.crumbs [aria-current="page"] { color: #fff; }

/* visually-hidden: für Screenreader & SEO da, visuell außerhalb */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }

/* ---- Karte (Klick-zum-Laden Google Maps, DSGVO-sauber) ---- */
.map-card { margin-top: clamp(1.8rem, 4vw, 2.6rem); border-radius: 22px; overflow: hidden; box-shadow: 0 26px 64px -34px rgba(13,44,73,.5); border: 1px solid var(--foam-deep); }
.map-card__preview {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: .7rem; padding: clamp(2.6rem, 6vw, 4.2rem) 1.5rem;
  min-height: 360px;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(43,125,192,.14) 0%, rgba(43,125,192,0) 55%),
    linear-gradient(165deg, var(--foam) 0%, var(--foam-deep) 100%);
  color: var(--atlantic);
}
.map-card__pin-wrap { color: var(--azul); line-height: 0; filter: drop-shadow(0 8px 12px rgba(13,44,73,.28)); }
.map-card__preview .label { color: var(--atlantic-700); }
.map-card__place { font-family: var(--font-display); font-size: clamp(1.6rem, 3.6vw, 2.3rem); font-weight: 460; line-height: 1.1; }
.map-card__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin: .15rem 0 .35rem; }
.map-card__chips span { font-size: .78rem; letter-spacing: .03em; padding: .36rem .85rem; border-radius: 999px; background: rgba(22,69,110,.08); color: var(--atlantic); }
.map-card__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin-top: .5rem; }
.map-card__note { font-size: .73rem; line-height: 1.55; color: rgba(22,69,110,.9); max-width: 31rem; margin-top: .7rem; }
.map-card__note a { color: inherit; text-decoration: underline; }
.map-frame { display: block; width: 100%; height: clamp(360px, 52vh, 520px); border: 0; }

/* Home-Hero — typografisches Lockup über der Slideshow */
.hero--slides { align-items: center; text-align: center; background: var(--atlantic); }
.hero--slides .hero__inner { text-align: center; padding-top: calc(var(--header-h) + clamp(2rem, 6vw, 4rem)); }
.hero-slides, .hero-veil { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-image: var(--bg-d); background-size: cover; background-position: var(--pos-d, 50% 50%); opacity: 0; transform: scale(1.04); animation: heroFade 28s infinite; }
.hero-veil { pointer-events: none; background:
  radial-gradient(ellipse at 50% 46%, rgba(22,23,26,.30) 0%, rgba(22,23,26,.18) 46%, rgba(22,23,26,.14) 100%),
  linear-gradient(0deg, rgba(22,23,26,.74) 0%, rgba(22,23,26,.16) 42%, rgba(22,23,26,.34) 100%); }
@keyframes heroFade { 0% { opacity: 0 } 5% { opacity: 1 } 22% { opacity: 1 } 27% { opacity: 0 } 100% { opacity: 0 } }
.hero-lockup { display: inline-flex; flex-direction: column; align-items: center; gap: .4rem; }
.hero-word { font-family: var(--font-display); font-weight: 480; color: #fff; font-size: clamp(3.6rem, 11vw, 7.5rem); line-height: .98; letter-spacing: -.01em; text-shadow: 0 4px 40px rgba(0,0,0,.35); }
.hero-word em { font-style: normal; color: var(--azul-soft); }
.hero-word-by { font-family: var(--font-mono); font-size: clamp(.66rem, 1.4vw, .8rem); letter-spacing: .5em; text-transform: uppercase; color: rgba(255,255,255,.78); margin-top: .9rem; }
.hero-badge { display: inline-block; font-family: var(--font-mono); font-size: .64rem; font-weight: 400; letter-spacing: .34em; text-transform: uppercase; color: var(--azul-soft); border: 1px solid rgba(127,180,220,.55); border-radius: 999px; padding: .5rem 1.25rem; margin-bottom: 1.5rem; backdrop-filter: blur(2px); }
.hero-script { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(1.35rem, 2.8vw, 2rem); color: rgba(255,255,255,.92); line-height: 1.2; margin-top: 1.1rem; text-shadow: 0 2px 20px rgba(0,0,0,.42); }
.hero__sub--brand { max-width: 40rem; margin: 1.6rem auto 0; color: rgba(255,255,255,.92); font-size: clamp(1.05rem, 2vw, 1.28rem); }
.hero-trustline { max-width: 44rem; margin: 1.05rem auto 0; color: rgba(255,255,255,.9); font-family: var(--font-mono); font-size: clamp(.72rem, 1.5vw, .8rem); letter-spacing: .03em; text-shadow: 0 1px 10px rgba(0,0,0,.4); }
.hero-trustline .stars { color: #F5C451; letter-spacing: .1em; }
.hero-trustline i { font-style: normal; opacity: .45; padding: 0 .55rem; }
.hero--slides .hero-trustline { animation: heroRise 1.2s .27s var(--ease) both; }
section[id] { scroll-margin-top: 5rem; }
.hero--slides .hero__actions { justify-content: center; margin-top: 2.4rem; }
.hero-scroll { position: absolute; left: 50%; bottom: 1.8rem; transform: translateX(-50%); z-index: 3; width: 1px; height: 48px; background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,.8)); }
.hero-scroll::after { content: ""; position: absolute; left: 50%; bottom: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--azul-soft); transform: translateX(-50%); }

/* ---------- grids & cards ---------- */
.grid { display: grid; gap: clamp(1.4rem, 2.5vw, 2.2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card { background: transparent; border-radius: var(--radius-lg); overflow: hidden; }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius-lg); background: var(--foam-deep); box-shadow: var(--shadow-sm); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 1.5rem .25rem 0; }
.card__body h3 { font-size: 1.7rem; font-weight: 460; margin-bottom: .5rem; }
.card__body p { color: var(--text-muted); font-size: 1rem; }
.card .meta { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--lava); font-weight: 400; margin-bottom: .7rem; }

/* Duo-Kapitel: die zwei Häuser nebeneinander */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 3vw, 2.6rem); }
.duo .card__media { aspect-ratio: 4 / 4.6; }
.duo .card__facts { display: flex; flex-wrap: wrap; gap: .4rem .5rem; margin: .8rem 0 1rem; }
.duo .card__facts span { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--atlantic); background: var(--foam); border: 1px solid var(--line-soft); border-radius: 999px; padding: .34rem .8rem; }

/* testimonials — real Google reviews as pull-quotes */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.testimonial { margin: 0; background: var(--cloud); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: clamp(1.6rem, 3vw, 2.2rem); display: flex; flex-direction: column; gap: .9rem; }
.testimonial__stars { color: var(--azul); letter-spacing: .18em; font-size: .9rem; }
.testimonial blockquote { margin: 0; font-family: var(--font-display); font-size: clamp(1.05rem, 1.5vw, 1.22rem); line-height: 1.5; color: var(--atlantic); }
.testimonial figcaption { margin-top: auto; font-weight: 600; font-size: .9rem; color: var(--text); }
.testimonial figcaption span { display: block; font-family: var(--font-mono); font-weight: 400; font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--text-muted); margin-top: .2rem; }
@media (max-width: 860px) { .testimonials { grid-template-columns: 1fr; } }

/* feature row */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.feature + .feature { margin-top: clamp(4rem, 8vw, 7rem); }
.feature--rev .feature__media { order: 2; }
.feature__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; background: var(--foam-deep); }
.feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.feature:hover .feature__media img { transform: scale(1.04); }
.feature > div:not(.feature__media) { display: flex; flex-direction: column; justify-content: center; }

/* fact strip */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.fact { text-align: center; padding: 2rem 1.2rem; background: var(--cloud); border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); }
.fact b { display: block; font-family: var(--font-display); font-size: 2.4rem; color: var(--atlantic); font-weight: 460; line-height: 1; margin-bottom: .35rem; }
.fact span { font-family: var(--font-mono); font-size: .72rem; color: var(--lava); letter-spacing: .18em; text-transform: uppercase; font-weight: 400; }

/* amenity lists */
.amenity-group { background: var(--cloud); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); padding: 2rem 2.1rem; }
.amenity-group h3 { font-size: 1.5rem; margin-bottom: 1.1rem; font-weight: 460; }
.amenity-group ul { list-style: none; display: grid; gap: .7rem; }
.amenity-group li { display: flex; gap: .7rem; align-items: flex-start; font-size: .98rem; color: var(--text); }
.amenity-group li::before { content: ""; flex: 0 0 auto; width: 18px; height: 18px; margin-top: 3px; border-radius: 50%; background: var(--azul);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4.5 9.5l3 3L14 6' fill='none' stroke='%23FFFFFF' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.9rem, 1.6vw, 1.4rem); }
.gallery a { display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--foam-deep); box-shadow: var(--shadow-sm); position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
picture { display: contents; } /* <picture> ist nur WebP-Weiche — Layout gehört dem <img> */
.gallery a:hover img { transform: scale(1.06); }
.gallery--editorial { grid-template-columns: 1.2fr .9fr .9fr; grid-auto-flow: dense; }
.gallery--editorial .tall { grid-row: span 2; aspect-ratio: 4 / 5.4; }

/* faq */
.faq-item { background: var(--cloud); border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); margin-bottom: 1rem; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 1.3rem 1.6rem; font-weight: 500; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; color: var(--atlantic); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-display); font-size: 1.6rem; color: var(--azul); transition: transform .3s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 1.6rem 1.4rem; color: var(--text-muted); }

/* price table */
.price-table { width: 100%; border-collapse: collapse; background: var(--cloud); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); }
.price-table th, .price-table td { padding: 1.05rem 1.4rem; text-align: left; border-bottom: 1px solid var(--line-soft); font-size: .98rem; }
.price-table th { background: var(--foam); color: var(--atlantic); font-family: var(--font-mono); font-weight: 400; letter-spacing: .12em; font-size: .72rem; text-transform: uppercase; }
.price-table td b { color: var(--atlantic); font-family: var(--font-display); font-size: 1.15rem; }
.price-table tbody td:last-child { white-space: nowrap; }
.note { font-size: .85rem; color: var(--text-muted); margin-top: 1rem; }
.book-steps { max-width: 640px; margin: 2.1rem auto 0; text-align: center; font-size: 1rem; line-height: 1.6; color: var(--atlantic); }
.book-fallback { margin-top: .85rem; }
.flag { background: var(--azul); color: #fff; padding: .15rem .55rem; border-radius: 999px; font-size: .72rem; font-weight: 600; letter-spacing: .04em; }

/* form */
.form { display: grid; gap: 1.1rem; max-width: 38rem; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .72rem; font-weight: 600; color: var(--atlantic); letter-spacing: .12em; text-transform: uppercase; }
.field input, .field textarea, .field select {
  font-family: var(--font-sans); font-size: .98rem; padding: .9rem 1.1rem; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--cloud); color: var(--atlantic); width: 100%; transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--azul); box-shadow: 0 0 0 3px rgba(36,112,178,.4); }

/* home bespoke ---------------------------------------------------------- */
.home-intro { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.home-intro .title { max-width: 11ch; margin-bottom: 0; }
.home-intro__note { margin-top: 1.6rem; padding-left: 1.4rem; border-left: 2px solid var(--azul); color: var(--atlantic); font-size: clamp(1rem, 1.7vw, 1.12rem); font-style: italic; font-family: var(--font-display); }

.overview-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.overview-strip__item { display: grid; gap: .6rem; min-width: 0; min-height: 160px; padding: clamp(1.6rem, 3vw, 2.6rem); border-right: 1px solid var(--line); }
.overview-strip__item:last-child { border-right: 0; }
.overview-strip__item span { color: var(--lava); font-family: var(--font-mono); font-size: .66rem; font-weight: 400; letter-spacing: .3em; text-transform: uppercase; }
.overview-strip__item b { align-self: end; max-width: 100%; color: var(--atlantic); font-family: var(--font-display); font-size: clamp(1.5rem, 2.4vw, 2.2rem); font-weight: 460; line-height: 1.08; overflow-wrap: anywhere; hyphens: auto; }

.experience-list { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: clamp(3rem, 8vw, 8rem); }
.experience-list .title { max-width: 12ch; }
.experience-list__items { display: grid; border-top: 1px solid var(--line); }
.experience-list__item { display: grid; grid-template-columns: minmax(7rem,.42fr) 1fr minmax(7.5rem,.5fr); gap: clamp(1rem, 3vw, 2rem); align-items: center; padding: clamp(1.4rem, 3vw, 2.2rem) 0; border-bottom: 1px solid var(--line); }
.experience-list__item h3 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 460; }
.experience-list__item p { color: var(--text-muted); font-size: 1.05rem; }
.experience-list__thumb { aspect-ratio: 4/3; border-radius: 14px; overflow: hidden; box-shadow: 0 12px 30px rgba(13,44,73,.12); }
/* home intro: editorial headline + portrait image ("Ein Ort über dem Atlantik" ↔ sunset over the Atlantic) */
.home-intro--visual { grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); grid-template-areas: "head media" "body media"; align-items: start; column-gap: clamp(2.5rem, 6vw, 5.5rem); row-gap: 1.6rem; }
.home-intro__head { grid-area: head; }
.home-intro__body { grid-area: body; }
.home-intro__media { grid-area: media; align-self: stretch; aspect-ratio: 3 / 4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--foam-deep); }
.home-intro__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.home-intro--visual .title { max-width: 12ch; font-size: clamp(2.6rem, 5.6vw, 4.8rem); line-height: .98; }
.experience-list__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.experience-list__item h3 .step-no { font-family: var(--font-mono); font-size: .7em; color: var(--azul); font-weight: 400; margin-right: .6rem; }

.split-showcase { display: grid; gap: clamp(4rem, 10vw, 8rem); }
.story-band { padding: 0; }

/* prose */
.prose { max-width: 46rem; }
.prose h2 { font-size: 1.7rem; margin: 2.2rem 0 .8rem; font-weight: 460; }
.prose p, .prose li { color: var(--text-muted); margin-bottom: .8rem; }
.prose ul { padding-left: 1.2rem; }

/* ---------- footer ---------- */
.site-footer { background: linear-gradient(180deg, var(--atlantic-deep), #081D33); color: rgba(255,255,255,.7); padding: clamp(4rem, 7vw, 6rem) 0 2.2rem; }
.site-footer .cols { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 2.5rem; }
.site-footer h2 { color: #fff; font-family: var(--font-mono); font-weight: 400; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.2rem; }
.site-footer a { color: rgba(255,255,255,.7); font-size: .95rem; display: block; padding: .25rem 0; transition: color .25s; }
.site-footer a:hover { color: var(--azul-soft); }
.brand-foot .brand-blue { color: #fff; font-size: 1.6rem; }
.brand-foot .brand-blue em { color: var(--azul-soft); }
.brand-foot .brand-by { color: rgba(255,255,255,.6); }
.brand-foot .footer-brand { display: inline-flex; align-items: baseline; gap: .6rem; margin-bottom: .9rem; }
.site-footer .brand-foot p { margin-top: .2rem; font-size: .95rem; max-width: 24rem; color: rgba(255,255,255,.66); }
.foot-claim { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; letter-spacing: .01em; color: var(--azul-soft); margin-top: 1rem; }
.foot-reg { display: flex; flex-wrap: wrap; gap: .3rem 1.6rem; margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.13); font-family: var(--font-mono); font-size: .68rem; letter-spacing: .02em; color: rgba(255,255,255,.6); }
.foot-reg span { word-break: break-all; }
.foot-reg b { color: rgba(255,255,255,.8); font-weight: 400; }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: 1.6rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.13); font-size: .82rem; }
.foot-consent { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
.foot-consent:hover, .foot-consent:focus-visible { text-decoration: underline; }

/* consent notice — only rendered when Google Ads is configured. Non-modal; both choices carry equal visual weight. */
.consent { position: fixed; z-index: 90; left: clamp(.9rem, 2vw, 1.6rem); bottom: clamp(.9rem, 2vw, 1.6rem); width: min(25.5rem, calc(100vw - 1.8rem)); padding: 1.35rem 1.4rem 1.25rem; background: rgba(255,255,255,.97); color: var(--text); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.consent__eyebrow { margin: 0 0 .55rem; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .28em; text-transform: uppercase; color: var(--azul-deep); }
.consent__text { margin: 0; font-size: .9rem; line-height: 1.6; color: var(--text-muted); }
.consent__text a { color: var(--atlantic); text-decoration: underline; text-underline-offset: 2px; }
.consent__actions { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-top: 1.05rem; }
.consent__btn { font: inherit; font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; padding: .82rem .6rem; border-radius: 999px; border: 1px solid var(--atlantic); background: var(--atlantic); color: #fff; cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease); }
.consent__btn:hover, .consent__btn:focus-visible { background: #fff; color: var(--atlantic); }
.consent__btn:focus-visible { outline: 2px solid var(--azul); outline-offset: 2px; }
html.consent-open .book-fab { display: none !important; }
@media (max-width: 560px) { .consent { left: .75rem; right: .75rem; bottom: .75rem; width: auto; } }
.foot-bottom a { display: inline; }

/* ===========================================================================
   Motion — weiche Reveals (nur unter .js-reveal; respektiert Reduced Motion)
   =========================================================================== */
.js-reveal .reveal-text { opacity: 0; transform: translateY(26px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.js-reveal .reveal-text.is-in { opacity: 1; transform: none; }
.js-reveal .reveal-img { clip-path: inset(0 0 100% 0); transition: clip-path 1.2s var(--ease); }
.js-reveal .reveal-img.is-in { clip-path: inset(0 0 0 0); }

/* Ken-Burns + kursive Flourish-Zeile auf Unterseiten-Heroes */
.hero--page .hero__media--ken img { animation: heroKen 38s ease-in-out infinite alternate; transform-origin: 50% 45%; }
.hero--page .hero-script { display: block; font-size: clamp(1.25rem, 2.4vw, 1.7rem); margin-top: .5rem; }

/* eine kursive Akzent-Zeile pro Unterseite */
.script-accent { font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--azul); font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.2; text-align: center; margin: 0 auto; max-width: 36rem; }

/* Kontaktdaten als linierter Index */
.contact-list { list-style: none; display: grid; border-top: 1px solid var(--line); margin: 1.6rem 0 0; }
.contact-list li { display: grid; grid-template-columns: minmax(7rem, .4fr) 1fr; gap: 1rem; align-items: baseline; padding: 1.05rem 0; border-bottom: 1px solid var(--line); }
.contact-list .k { color: var(--lava); font-size: .68rem; font-weight: 400; letter-spacing: .26em; text-transform: uppercase; font-family: var(--font-mono); }
.contact-list .v { font-family: var(--font-display); font-size: 1.2rem; color: var(--atlantic); }
.contact-list .v a { color: var(--atlantic); }
.contact-list .v a:hover { color: var(--azul); }

/* Buchung: „Warum direkt"-Band */
.trust { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust > div { padding: clamp(1.6rem, 3vw, 2.4rem); border-right: 1px solid var(--line); }
.trust > div:last-child { border-right: 0; }
.trust .label { margin-bottom: .8rem; }
.trust h3 { font-family: var(--font-display); font-weight: 460; font-size: 1.4rem; margin-bottom: .5rem; }
.trust p { color: var(--text-muted); font-size: .96rem; }

/* Kontaktformular-Karte */
.form--card { background: var(--cloud); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: clamp(1.8rem, 4vw, 2.6rem); max-width: none; }
.form__status { margin: .2rem 0 0; font-size: .9rem; font-weight: 500; }
.form__status.is-ok { color: var(--azul-deep); }
.form__status.is-warn { color: #B24A3A; }
.form__status[hidden] { display: none; }

/* FAQ-Gruppen + Open-Akzent */
.faq-group + .faq-group { margin-top: clamp(2.4rem, 5vw, 3.6rem); }
.faq-group > .label { margin-bottom: 1.1rem; }
.faq-item summary:hover { color: var(--azul); }
.faq-item[open] { border-left: 2px solid var(--azul); padding-left: 1.2rem; }

/* Galerie-Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; background: rgba(13,44,73,.94); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: clamp(1rem, 4vw, 3rem); opacity: 0; pointer-events: none; visibility: hidden; transition: opacity .3s var(--ease), visibility 0s .3s; touch-action: pan-y pinch-zoom; }
.lightbox.is-open { opacity: 1; pointer-events: auto; visibility: visible; transition-delay: 0s; }
.lightbox img { -webkit-user-drag: none; user-select: none; }
.lightbox figure { margin: 0; display: grid; justify-items: center; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.lightbox__cap { color: rgba(255,255,255,.86); font-family: var(--font-mono); font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; text-align: center; margin-top: 1rem; }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(127,180,220,.55); color: #fff; width: 46px; height: 46px; border-radius: 999px; cursor: pointer; display: grid; place-items: center; font-size: 1.3rem; line-height: 1; transition: background .25s var(--ease); }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(43,125,192,.35); }
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 1.2rem; }
.lightbox__nav--next { right: 1.2rem; }
.lightbox__count { position: absolute; top: 1.55rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.75); font-size: .72rem; letter-spacing: .3em; font-family: var(--font-mono); }
.lightbox.is-open img { animation: lbIn .38s var(--ease); }
@keyframes lbIn { from { opacity: 0; transform: scale(.965); } }

/* jede Slide bekommt ihre eigene Kamerafahrt (Pan-Richtung via Vars) */
@keyframes heroKen { from { transform: scale(1); } to { transform: scale(1.09); } }
@keyframes heroPan {
  from { transform: scale(1.12) translate3d(var(--kb-x, 0%), var(--kb-y, 0%), 0); }
  to { transform: scale(1.03) translate3d(calc(var(--kb-x, 0%) * -1), calc(var(--kb-y, 0%) * -1), 0); }
}
.hero-slide { animation: heroFade 28s infinite, heroPan 28s linear infinite; }
.hero-slide:nth-child(1) { --kb-x: 1.6%; --kb-y: .5%; }
.hero-slide:nth-child(2) { --kb-x: -1.4%; --kb-y: -.6%; }
.hero-slide:nth-child(3) { --kb-x: .8%; --kb-y: -1.1%; }
.hero-slide:nth-child(4) { --kb-x: -1.7%; --kb-y: .4%; }
.hero-slide:nth-child(5) { --kb-x: 1.1%; --kb-y: 1%; }
/* alle 14s streift ein Lichtreflex über den Hero */
.hero-veil::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -35%; width: 26%;
  background: linear-gradient(100deg, transparent, rgba(214,236,255,.07) 45%, rgba(255,255,255,.10) 50%, rgba(214,236,255,.07) 55%, transparent);
  transform: skewX(-14deg);
  animation: lightSweep 14s ease-in-out infinite;
}
@keyframes lightSweep {
  0%, 55% { left: -35%; opacity: 0; }
  62% { opacity: 1; }
  78%, 100% { left: 118%; opacity: 0; }
}
@keyframes heroRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero--slides .hero-lockup { animation: heroRise 1.2s var(--ease) both; }
.hero--slides .hero__sub--brand { animation: heroRise 1.2s .18s var(--ease) both; }
.hero--slides .hero__actions { animation: heroRise 1.2s .36s var(--ease) both; }

@media (prefers-reduced-motion: reduce) {
  .hero-slides, .hero-slide { animation: none; }
  .hero-slide:first-child { opacity: 1; }
  .hero-veil::after { animation: none; opacity: 0; }
  .hero--slides .hero-lockup, .hero--slides .hero__sub--brand, .hero--slides .hero-trustline, .hero--slides .hero__actions { animation: none; }
  .hero--page .hero__media--ken img { animation: none; }
  .lightbox { transition: none; }
  .btn::before { display: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .facts, .overview-strip, .trust { grid-template-columns: repeat(2, 1fr); }
  .trust > div:nth-child(2) { border-right: 0; }
  .trust > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .home-intro, .experience-list, .feature, .feature--rev, .gallery--editorial, .duo { grid-template-columns: 1fr; }
  .feature--rev .feature__media, .feature__media { order: -1; }
  /* stacked: show the whole photo (no forced portrait crop / zoom on mobile) */
  .feature__media { aspect-ratio: auto; }
  .feature__media img { height: auto; }
  .overview-strip__item:nth-child(2) { border-right: 0; }
  .overview-strip__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .gallery--editorial .tall { grid-row: auto; aspect-ratio: 4/3; }
  .duo .card__media { aspect-ratio: 4/3; }
  .home-intro--visual { grid-template-areas: "head" "media" "body"; }
  .home-intro__media { aspect-ratio: 4 / 5; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  :root { --header-h: 70px; }
  /* full-height, SOLID mobile menu (glass was too see-through over content) */
  .nav { position: fixed; inset: var(--header-h) 0 0 0; flex-direction: column; align-items: stretch;
    background: var(--cloud); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 1.4rem 1.5rem 2.2rem; gap: .1rem; display: none;
    overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
  .nav.open { display: flex; }
  /* lock the page behind the open menu so only the menu scrolls */
  html.nav-open, html.nav-open body { overflow: hidden; }
  /* CONTAINING-BLOCK TRAP: the open header's backdrop-filter would make it the
     containing block for the fixed nav, collapsing the full-screen menu to the
     header's height. Drop the filter (and go solid) so the nav resolves against
     the viewport again — and switch the header text to dark on the now-light bar. */
  .site-header.is-open { background: var(--cloud); backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: none; border-bottom-color: var(--line-soft); }
  .site-header.over-hero.is-open .brand-blue { color: var(--atlantic); }
  .site-header.over-hero.is-open .brand-blue em { color: var(--azul); }
  .site-header.over-hero.is-open .brand-by { color: var(--text-muted); }
  .site-header.over-hero.is-open .menu-toggle { color: var(--atlantic); }
  .nav > a, .nav .has-sub > a { padding: .9rem 0; border-bottom: 1px solid var(--line-soft); color: var(--atlantic) !important; font-size: .95rem; }
  .submenu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; padding: 0 0 .6rem 1.1rem; min-width: 0; border: 0; background: transparent; backdrop-filter: none; }
  .has-sub:hover .submenu { transform: none; }
  .nav-cta { margin: .7rem 0 0; }
  .lang { padding-top: .7rem; }
  .menu-toggle { display: inline-flex; }
  .grid-2 { grid-template-columns: 1fr; }
  /* tighten the home hero so the booking bar is reachable without a long scroll */
  .hero--slides { min-height: 100svh; }
  .hero--slides .hero__inner { padding-top: calc(var(--header-h) + 1.1rem); padding-bottom: 1.6rem; }
  .hero-lockup { gap: .3rem; }
  .hero-word { font-size: clamp(3.2rem, 17vw, 4.6rem); }
  .hero-script { margin-top: .5rem; }
  .hero-greeting { margin-top: .6rem; }
  .hero__sub--brand { margin-top: .9rem; }
  .hero--slides .hero__actions { margin-top: 1.2rem; }
  .hero--slides .hero-book { margin-top: 1.3rem; }
  .hero-slide { background-image: var(--bg-m, var(--bg-d)); background-position: var(--pos-m, var(--pos-d, 50% 50%)); }
}
@media (max-width: 560px) {
  .grid-3, .grid-4, .gallery, .facts, .overview-strip, .trust { grid-template-columns: 1fr; }
  .trust > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust > div:last-child { border-bottom: 0; }
  .contact-list li { grid-template-columns: 1fr; gap: .2rem; }
  .form .row { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr; }
  .overview-strip__item { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .overview-strip__item:last-child { border-bottom: 0; }
  .experience-list__item { grid-template-columns: 1fr; gap: .7rem; }
  .experience-list__thumb { order: -1; aspect-ratio: 16/9; margin-bottom: .3rem; }
  .brand-blue { font-size: 1.2rem; }
  .brand-by { display: none; }
}

/* ===========================================================================
   Kino-Schicht — Scroll-Choreographie, Buchungs-Gravitation, Marken-Details
   =========================================================================== */

/* Seiten-Crossfade (progressiv; ältere Browser ignorieren es) */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .3s; }

/* der Tag→Nacht-Faden: Lesefortschritt als Horizontlinie; der wandernde
   Lichtpunkt beginnt als warme Sonne und wird zum kühlen Sternenlicht */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 14px; z-index: 210;
  pointer-events: none; --p: 0;
}
.scroll-progress::before {
  content: ""; position: absolute; top: 5px; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--sun), var(--azul) 55%, var(--atlantic-deep));
  transform-origin: 0 50%; transform: scaleX(var(--p));
}
.scroll-progress__sun {
  position: absolute; top: 1px; left: calc(var(--p) * 100%);
  width: 10px; height: 10px; margin-left: -6px; border-radius: 50%;
  background: color-mix(in oklab, var(--sun) calc((1 - var(--p)) * 100%), #EAF4FF);
  box-shadow: 0 0 10px 2px color-mix(in oklab, rgba(242,200,121,.6) calc((1 - var(--p)) * 100%), rgba(127,180,220,.65));
}

/* Header verdichtet sich nach dem Scrollen (Desktop) */
@media (min-width: 861px) { .site-header.solid { height: 68px; } }

/* --- Glas-Buchungsleiste im Hero --- */
.hero-book {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: center; gap: 1rem 1.5rem;
  margin: 2.6rem auto 0; padding: 1.15rem 1.5rem; max-width: 800px;
  background: rgba(13,44,73,.72); border: 1px solid rgba(255,255,255,.3); border-radius: 22px;
  backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.55);
}
.hero-book__field { display: grid; gap: .35rem; text-align: left; }
.hero-book__field label { font-family: var(--font-mono); font-size: .6rem; font-weight: 400; letter-spacing: .26em; text-transform: uppercase; color: rgba(255,255,255,.96); text-shadow: 0 1px 8px rgba(0,0,0,.55); }
.hero-book__field input, .hero-book__field select {
  font-family: var(--font-sans); font-size: .95rem; color: #fff; background: transparent;
  border: 0; border-bottom: 1px solid rgba(255,255,255,.4); border-radius: 0;
  padding: .3rem .1rem .45rem; min-width: 9.5rem; color-scheme: dark;
  transition: border-color .3s var(--ease);
}
.hero-book__field select { min-width: 4.5rem; cursor: pointer; }
.hero-book__field option { color: var(--atlantic); background: #fff; }
.hero-book__field input:focus, .hero-book__field select:focus { outline: none; border-bottom-color: var(--azul-soft); box-shadow: 0 0 0 3px rgba(127,180,220,.35); border-radius: 6px; }
.hero-book .btn { padding: .95rem 1.9rem; }
.hero-book__result { flex-basis: 100%; margin: .1rem 0 0; text-align: center; font-size: .88rem; color: rgba(255,255,255,.92); letter-spacing: .02em; }
.hero-book__result.is-ok { color: #9FD8C4; font-weight: 500; }
.hero-book__result.is-warn { color: var(--sun); }
.hero-book__result[hidden] { display: none; }
.hero--slides .hero-book { animation: heroRise 1.2s .52s var(--ease) both; }

/* --- Sticky-Verfügbarkeits-Pill --- */
.book-fab {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 140;
  display: inline-flex; align-items: center; gap: .9rem;
  padding: .85rem 1.5rem .85rem 1.2rem; border-radius: 999px;
  background: var(--atlantic-deep); color: #fff; border: 1px solid rgba(127,180,220,.4);
  box-shadow: 0 24px 60px -20px rgba(13,44,73,.75);
  opacity: 0; transform: translateY(16px) scale(.96); pointer-events: none; visibility: hidden;
  transition: opacity .5s var(--ease), transform .5s var(--ease), background .3s var(--ease), border-color .3s var(--ease), visibility 0s .5s;
}
.book-fab.is-visible { opacity: 1; transform: none; pointer-events: auto; visibility: visible; transition-delay: 0s; }
.book-fab:hover { background: var(--atlantic); color: #fff; border-color: rgba(127,180,220,.8); }
.book-fab__pulse {
  width: 9px; height: 9px; border-radius: 50%; background: var(--azul-soft); flex: 0 0 auto;
  animation: fabPulse 2.4s infinite;
}
@keyframes fabPulse {
  0% { box-shadow: 0 0 0 0 rgba(127,180,220,.6); }
  70% { box-shadow: 0 0 0 12px rgba(127,180,220,0); }
  100% { box-shadow: 0 0 0 0 rgba(127,180,220,0); }
}
.book-fab__price { font-family: var(--font-display); font-size: 1.06rem; line-height: 1; color: #fff; white-space: nowrap; }
.book-fab__price i { font-style: normal; font-size: .72rem; color: rgba(255,255,255,.6); }
.book-fab__cta { font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--azul-soft); white-space: nowrap; }

/* --- Fakten-Marquee --- */
.marquee { overflow: hidden; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--foam); padding: 1.15rem 0; }
.marquee__track { display: flex; width: max-content; animation: marqueeMove 46s linear infinite; }
.marquee:hover .marquee__track, .marquee.is-paused .marquee__track { animation-play-state: paused; }
.marquee__seq { display: flex; align-items: center; flex: 0 0 auto; }
.marquee__seq span { font-family: var(--font-display); font-size: 1.25rem; font-style: italic; color: var(--atlantic); white-space: nowrap; }
.marquee__seq em { font-style: normal; color: var(--azul); font-size: .72rem; margin: 0 1.9rem; }
@keyframes marqueeMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- Filmstrip: greifbare Full-Bleed-Fotorolle --- */
.filmstrip-bleed {
  width: 100vw; margin-left: calc(50% - 50vw); margin-top: 1.6rem;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.filmstrip {
  display: flex; gap: clamp(1rem, 2vw, 1.6rem); overflow-x: auto; scroll-snap-type: x proximity;
  padding: 1.4rem max(calc(50vw - var(--maxw) / 2 + 2.75rem), 1.5rem) 2.4rem; cursor: grab;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.filmstrip::-webkit-scrollbar { display: none; }
.filmstrip.is-drag { cursor: grabbing; scroll-snap-type: none; }
.filmstrip a {
  flex: 0 0 clamp(250px, 30vw, 420px); aspect-ratio: 4 / 3; scroll-snap-align: center;
  border-radius: var(--radius-lg); overflow: hidden; background: var(--foam-deep);
  box-shadow: var(--shadow-sm); transition: box-shadow .5s var(--ease);
  user-select: none; -webkit-user-drag: none;
}
.filmstrip a:nth-child(even) { margin-top: 1.3rem; }
.filmstrip a img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); pointer-events: none; }
.filmstrip a:hover img { transform: scale(1.05); }
.filmstrip a:hover { box-shadow: var(--shadow); }

/* --- Galerie-Kacheln: Zoom-Affordanz --- */
.gallery a::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(13,44,73,.45));
  opacity: 0; transition: opacity .5s var(--ease); pointer-events: none;
}
.gallery a::after {
  content: "+"; position: absolute; right: 1rem; bottom: 1rem; z-index: 2;
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(250,251,252,.22); border: 1px solid rgba(255,255,255,.5); color: #fff;
  font-family: var(--font-display); font-size: 1.5rem; line-height: 1;
  opacity: 0; transform: translateY(8px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); pointer-events: none;
}
.gallery a:hover::before { opacity: 1; }
.gallery a:hover::after { opacity: 1; transform: none; }

/* --- Buchung: Live-Puls + Zeilenfokus --- */
.live-dot {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%;
  background: var(--azul); margin-right: .7rem; vertical-align: middle;
  animation: fabPulse 2.4s infinite;
}
.price-table tbody tr { transition: background .3s var(--ease); }
.price-table tbody tr:hover { background: rgba(43,125,192,.08); }

/* --- FAQ: Antwort-Einlauf --- */
.faq-item[open] .answer { animation: faqIn .5s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } }

/* --- Horizont-Divider (Markenmotiv: Stern über dem Meer) --- */
.horizon { display: flex; justify-content: center; padding: 0 0 clamp(2.4rem, 5vw, 3.6rem); color: var(--azul); }
.horizon svg { width: min(300px, 60vw); height: auto; overflow: visible; }
.horizon__star { animation: starGlow 5.5s ease-in-out infinite alternate; transform-origin: center; }
@keyframes starGlow { from { opacity: .55; } to { opacity: 1; } }

/* --- Buttons: Pfeil gleitet ein --- */
.btn:not(.btn--outline):not(.btn--ghost):not(.nav-cta)::after {
  content: "→"; content: "→" / ""; /* Alt-Text-Syntax hält ihn aus dem Accessible Name */
  display: inline-block; max-width: 0; opacity: 0; overflow: hidden;
  margin-left: 0; transition: max-width .45s var(--ease), opacity .35s var(--ease), margin-left .45s var(--ease);
}
.btn:not(.btn--outline):not(.btn--ghost):not(.nav-cta):hover::after { max-width: 1.2em; opacity: 1; margin-left: .15rem; }

/* --- Wow-Schicht: Intro-Vorhang, Begrüßung, Wort-Reveals, Panorama, Tiefe --- */
.intro-curtain {
  position: fixed; inset: 0; z-index: 300; background: var(--atlantic-deep);
  display: grid; place-content: center; justify-items: center; gap: .6rem;
  transition: transform .85s cubic-bezier(.7, 0, .18, 1);
}
.intro-curtain__word { font-family: var(--font-display); font-weight: 480; color: #fff; font-size: clamp(2.6rem, 7vw, 4.5rem); line-height: 1; animation: introPop 1s var(--ease) both; }
.intro-curtain__word em { font-style: normal; color: var(--azul-soft); }
.intro-curtain__by { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .5em; text-transform: uppercase; color: rgba(255,255,255,.7); animation: introPop 1s .14s var(--ease) both; }
@keyframes introPop { from { opacity: 0; transform: translateY(16px) scale(.96); } to { opacity: 1; transform: none; } }
.intro-curtain.is-done { transform: translateY(-101%); }
html.has-intro { overflow: hidden; }

.hero-greeting { margin: 1rem 0 0; font-family: var(--font-mono); font-size: .66rem; font-weight: 400; letter-spacing: .32em; text-transform: uppercase; color: rgba(255,255,255,.72); }
.hero-greeting[hidden] { display: none; }

/* Wort-für-Wort-Headlines (nur unter .js-reveal) */
.js-reveal .wr { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .12em; margin-bottom: -.12em; }
.js-reveal .wi { display: inline-block; transform: translateY(108%); transition: transform .85s var(--ease); }
.js-reveal .title.is-in .wi { transform: none; }

/* Panorama-Band (full-bleed) */
.immersive { position: relative; min-height: clamp(420px, 78vh, 720px); overflow: hidden; display: grid; place-items: center; }
.immersive__media { position: absolute; inset: -12% 0; }
.immersive__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.immersive__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,44,73,.38), rgba(13,44,73,.55)); }
.immersive__content { position: relative; z-index: 2; text-align: center; padding: 2rem; }
.immersive__script { font-family: var(--font-display); font-style: italic; color: #fff; font-size: clamp(1.9rem, 4.4vw, 3.2rem); line-height: 1.15; margin-bottom: 1.8rem; text-shadow: 0 4px 34px rgba(0,0,0,.5); }

/* Hero-Tiefe: eigene translate-Property, damit Entrance-Animationen unberührt bleiben */
.hero--slides .hero-lockup,
.hero--slides .hero__sub--brand { translate: var(--par-x, 0px) var(--par-y, 0px); }
.hero--slides .hero-slide { translate: calc(var(--par-x, 0px) * -1.4) calc(var(--par-y, 0px) * -1); }


/* --- Kino-Schicht: responsive --- */
@media (max-width: 860px) {
  .hero-book { width: 100%; border-radius: var(--radius-lg); }
  .hero-book__field { flex: 1 1 40%; }
  .hero-book__field input, .hero-book__field select { width: 100%; min-width: 0; }
  .hero-book .btn { flex: 1 1 100%; margin-top: .3rem; }
  .book-fab { right: .9rem; bottom: .9rem; left: .9rem; justify-content: center; }
  .filmstrip a { flex-basis: min(78vw, 340px); }
}

/* --- Kino-Schicht: Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  @view-transition { navigation: none; }
  .scroll-progress { display: none; }
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; gap: .4rem 0; }
  .marquee__seq { flex: 1 1 auto; min-width: 0; flex-wrap: wrap; justify-content: center; }
  .marquee__seq:last-child { display: none; }
  .book-fab__pulse, .live-dot { animation: none; }
  .book-fab { transition: opacity .001s, visibility 0s; }
  .intro-curtain, .intro-curtain__word, .intro-curtain__by { animation: none; transition: none; }
  .horizon__star { animation: none; }
  .lightbox.is-open img, .faq-item[open] .answer { animation: none; }
  .hero--slides .hero-book { animation: none; }
  .filmstrip a:nth-child(even) { margin-top: 0; }
  .btn:not(.btn--outline):not(.btn--ghost):not(.nav-cta)::after { display: none; }
}

/* ===========================================================================
   Editorial-Schicht — die Seite als ein Tag über dem Atlantik
   Signatur: Horizont-Kapitel + Tag→Nacht-Faden + Koordinaten-Folio + Mono-Daten
   =========================================================================== */

/* das Horizont-Label: eine Haarlinie durch jeden Kapitelkopf,
   endend in einem blauen Punkt — the BLUE am Horizont */
.label--horizon { display: flex; width: 100%; align-items: center; gap: 1rem; margin-bottom: 1.6rem; }
.label--horizon::before { content: none; }
.center .label--horizon::before {
  content: ""; flex: 1 1 0; height: 1px; margin: 0;
  background: rgba(43, 125, 192, .32); width: auto;
}
.label--horizon::after {
  content: ""; flex: 1 1 0; height: 9px;
  background:
    radial-gradient(circle 3.5px at calc(100% - 4px) 50%, var(--azul) 97%, transparent),
    linear-gradient(rgba(43, 125, 192, .32), rgba(43, 125, 192, .32));
  background-size: 100% 100%, calc(100% - 16px) 1px;
  background-position: right center, left center;
  background-repeat: no-repeat;
}

/* Koordinaten-Folio: der echte Ort als redaktionelles Möbel */
.folio {
  position: fixed; left: 1.05rem; bottom: 5.5rem; z-index: 90;
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .3em;
  color: var(--azul); opacity: .5; pointer-events: none; white-space: nowrap;
}

/* der Tagesbogen: späte Sektionen kühlen zur Blauen Stunde, dann Sternennacht */
.phase-golden { background: linear-gradient(180deg, var(--blue-hour-1), var(--blue-hour-2)); }
.phase-dusk { background: linear-gradient(180deg, var(--dusk-1), var(--dusk-2)); }

@media (max-width: 1199px) { .folio { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .scroll-progress__sun { box-shadow: none; }
}

/* das Sternennacht-Kapitel: kein schwebender Kasten — die Seite endet wie der
   Tag auf La Palma, randlos in einer Nacht voller Sterne, die in den Footer fließt */
.cta-band { position: relative; overflow: hidden; background: var(--atlantic-deep); padding: clamp(4.5rem, 9vw, 7.5rem) 0 clamp(2.5rem, 5vw, 4rem); }
.cta-band::before {
  content: ""; position: absolute; inset: -40%; pointer-events: none;
  background:
    radial-gradient(38% 42% at 28% 32%, rgba(43,125,192,.20), transparent 70%),
    radial-gradient(30% 36% at 74% 68%, rgba(127,180,220,.12), transparent 72%);
  mask-image: linear-gradient(180deg, #000 55%, transparent 92%);
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 92%);
  animation: aurora 16s ease-in-out infinite alternate;
}
@keyframes aurora { from { transform: rotate(0deg) scale(1); } to { transform: rotate(14deg) scale(1.12); } }
/* der Sternenhimmel: handgesetzte Punkte, kein Muster — La Palma ist Starlight-Reserve */
.cta-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    radial-gradient(1.2px 1.2px at 8% 18%, rgba(255,255,255,.9) 50%, transparent 51%),
    radial-gradient(1px 1px at 21% 42%, rgba(255,255,255,.7) 50%, transparent 51%),
    radial-gradient(1.6px 1.6px at 33% 12%, rgba(234,244,255,.95) 50%, transparent 51%),
    radial-gradient(1px 1px at 46% 32%, rgba(255,255,255,.6) 50%, transparent 51%),
    radial-gradient(1.3px 1.3px at 58% 8%, rgba(255,255,255,.85) 50%, transparent 51%),
    radial-gradient(1px 1px at 66% 26%, rgba(242,200,121,.75) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 77% 15%, rgba(234,244,255,.9) 50%, transparent 51%),
    radial-gradient(1px 1px at 87% 38%, rgba(255,255,255,.65) 50%, transparent 51%),
    radial-gradient(1.2px 1.2px at 94% 10%, rgba(255,255,255,.8) 50%, transparent 51%),
    radial-gradient(1px 1px at 14% 6%, rgba(242,200,121,.6) 50%, transparent 51%),
    radial-gradient(1px 1px at 41% 5%, rgba(255,255,255,.75) 50%, transparent 51%),
    radial-gradient(1.4px 1.4px at 71% 45%, rgba(255,255,255,.55) 50%, transparent 51%);
  background-repeat: no-repeat;
  mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
  animation: starBreath 9s ease-in-out infinite alternate;
}
@keyframes starBreath { from { opacity: .38; } to { opacity: .55; } }
.cta-band .container { padding-left: clamp(1.25rem, 4vw, 2.75rem); padding-right: clamp(1.25rem, 4vw, 2.75rem); }
.cta-band__panel { position: relative; z-index: 1; background: transparent; box-shadow: none; border-radius: 0; margin: 0; padding: 0; text-align: center; color: #fff; }
.cta-band__panel .label { color: var(--azul-soft); }
.cta-band__panel .title { color: #fff; }
.cta-band__panel p { color: rgba(255,255,255,.82); max-width: 40rem; margin: 0 auto 2rem; }
/* der Horizont-Divider gehört zur Nacht, wenn er dem Schlusskapitel folgt */
.cta-band + .horizon { background: var(--atlantic-deep); margin: -1px 0 0; padding-top: calc(clamp(1.5rem, 3vw, 2.5rem) + 1px); color: var(--azul-soft); }

@media (prefers-reduced-motion: reduce) {
  .cta-band::before { animation: none; }
  .cta-band::after { animation: none; opacity: .45; }
}
