/* ============================================================
   Strandkorbvermietung Heiko Neuhoff — Grömitz
   Design idea: rotation / movement. Warm dune-sand + deep navy.
   ============================================================ */

/* --- Selbstgehostete Schriften (Google Fonts, DSGVO-konform lokal) --- */
/* Figtree — variabel 300..900, kursiv */
@font-face {
  font-family: 'Figtree';
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
  src: url(fonts/figtree-var-italic-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Figtree';
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
  src: url(fonts/figtree-var-italic-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Figtree — variabel 300..900, normal */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url(fonts/figtree-var-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url(fonts/figtree-var-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --sand:        #f3e9d8;
  --sand-light:  #faf4e9;
  --paper:       #fffdf9;
  /* Primärfarbe: dunkelblau/marine. Variablennamen sind historisch (früher petrolgrün). */
  --petrol:      #12325c;   /* deep navy */
  --petrol-dark: #0b2140;
  --petrol-soft: #23507f;
  --sun:         #e0903c;   /* warm sunset accent */
  --sun-soft:    #f3c98a;
  --text:        #1b2432;
  --text-muted:  #5c6675;
  --line:        #e6dcc9;
  --white:       #ffffff;
  --radius:      14px;
  --radius-lg:   24px;
  --radius-xl:   34px;
  --shadow:      0 6px 30px rgba(18,50,92,.10);
  --shadow-lg:   0 18px 60px rgba(18,50,92,.18);
  --t:           .3s cubic-bezier(.22,.61,.36,1);
  --max-w:       1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Figtree', system-ui, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
address { font-style: normal; }

h1, h2, h3, h4 {
  font-family: 'Figtree', system-ui, sans-serif;
  line-height: 1.15;
  color: var(--petrol-dark);
  font-weight: 800;
  letter-spacing: -0.022em;
}
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--text-muted); }

/* ── utilities ── */
.container { width: min(var(--max-w), 100% - clamp(1.6rem, 5vw, 2.5rem)); margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-size: .76rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sun);
  margin-bottom: .85rem;
}
.eyebrow--light { color: var(--sun-soft); }

.lead { font-size: 1.1rem; color: var(--text-muted); }

/* ── buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .8rem 1.7rem; border-radius: 50px;
  font: 600 .95rem 'Figtree', sans-serif;
  cursor: pointer; border: 1.8px solid transparent;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: #eaa658; color: #2a1c08; border-color: #eaa658; }
.btn--primary:hover { background: #e0973f; border-color: #e0973f; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(234,166,88,.42); }
.btn--outline { background: transparent; color: var(--petrol); border-color: var(--petrol); }
.btn--outline:hover { background: var(--petrol); color: var(--white); transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn--sm { padding: .55rem 1.2rem; font-size: .85rem; }
.btn--lg { padding: .95rem 2.1rem; font-size: 1.02rem; }

/* ── brand ── */
.brand { display: inline-flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.brand__mark {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  color: var(--sun); background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.4);
  transition: color var(--t), background var(--t), border-color var(--t);
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05;
  font-family: 'Figtree', system-ui, sans-serif; font-weight: 800; font-size: 1.14rem; letter-spacing: -.02em; color: var(--white); }
.brand__text small { font-family: 'Figtree', sans-serif; font-weight: 500;
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 2px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── header ── */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; padding: 1.1rem 0;
  background: linear-gradient(to bottom, rgba(11,33,64,.34), rgba(11,33,64,0));
  backdrop-filter: blur(6px) saturate(1.1);
  -webkit-backdrop-filter: blur(6px) saturate(1.1);
  transition: background var(--t), box-shadow var(--t), padding var(--t);
}
.site-header--scrolled {
  background: rgba(255,253,249,.95); backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(18,50,92,.1); padding: .6rem 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.site-header--scrolled .brand__mark { color: var(--petrol); background: var(--sand); border-color: var(--line); }
.site-header--scrolled .brand__text { color: var(--petrol-dark); }
.site-header--scrolled .brand__text small { color: var(--text-muted); }

.nav__links { display: flex; align-items: center; gap: .3rem; }
.nav__links a:not(.cta) {
  padding: .45rem .85rem; border-radius: 50px; font-size: .9rem; font-weight: 500;
  color: rgba(255,255,255,.92); transition: background var(--t), color var(--t);
}
.nav__links a:not(.cta):hover { background: rgba(255,255,255,.16); color: var(--white); }
.site-header--scrolled .nav__links a:not(.cta) { color: var(--text-muted); }
.site-header--scrolled .nav__links a:not(.cta):hover { background: var(--sand); color: var(--petrol); }

.nav__toggle { display: none; flex-direction: column; justify-content: space-between;
  width: 28px; height: 20px; background: none; border: none; cursor: pointer; padding: 0; }
.nav__toggle span { display: block; height: 2px; background: var(--white); border-radius: 2px;
  transition: transform var(--t), opacity var(--t); }
.site-header--scrolled .nav__toggle span { background: var(--petrol-dark); }
.nav__toggle--open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav__toggle--open span:nth-child(2) { opacity: 0; }
.nav__toggle--open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ── hero ── */
.hero {
  position: relative; min-height: 100svh; height: 100svh; display: flex; align-items: center;
  background: #081426; overflow: hidden;
}

/* cinema reveal: the frame opens from the centre outward on load */
.hero__reveal {
  position: absolute; inset: 0; overflow: hidden;
  clip-path: inset(0 50% 0 50%);
  animation: cinemaOpen 1.9s cubic-bezier(.72,.02,.24,1) .18s both;
}
@keyframes cinemaOpen {
  from { clip-path: inset(0 50% 0 50%); }
  to   { clip-path: inset(0 0 0 0); }
}

.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.0);
  animation: heroZoom 26s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.0); } to { transform: scale(1.05); } }

/* slight red-ish grade over the footage */
.hero__tint {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 68% 40%, rgba(214,64,44,.08), rgba(214,64,44,0) 60%),
    linear-gradient(200deg, rgba(190,42,32,.06), rgba(120,20,26,.04) 55%, rgba(18,50,92,.03));
  mix-blend-mode: multiply;
}

@media (prefers-reduced-motion: reduce) {
  .hero__reveal { animation: none; clip-path: none; }
  .hero__video { animation: none; transform: none; }
}
.hero__overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(
    100deg,
    rgba(10,26,50,.36) 0%,
    rgba(18,50,92,.22) 42%,
    rgba(18,50,92,.05) 70%,
    rgba(224,144,60,.04) 100%);
}
.hero__mute {
  position: absolute; z-index: 3; right: 1.25rem; bottom: 1.25rem;
  display: grid; place-items: center;
  width: 44px; height: 44px; padding: 0;
  border: 1px solid rgba(255,255,255,.45); border-radius: 999px;
  background: rgba(10,26,50,.35); color: #fff;
  cursor: pointer; backdrop-filter: blur(6px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.hero__mute:hover { background: rgba(10,26,50,.55); border-color: rgba(255,255,255,.75); }
.hero__mute:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.hero__mute:active { transform: scale(.94); }
.hero__mute .ico { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.hero__mute .ico path[fill], .hero__mute .ico path:first-child { fill: currentColor; stroke: none; }
.hero__mute .ico--on { display: none; }
.hero__mute.is-muted .ico--on { display: none; }
.hero__mute.is-muted .ico--muted { display: block; }
.hero__mute:not(.is-muted) .ico--muted { display: none; }
.hero__mute:not(.is-muted) .ico--on { display: block; }
@media (max-width: 640px) { .hero__mute { width: 40px; height: 40px; right: 1rem; bottom: 1rem; } }

.hero__content { position: relative; z-index: 2; max-width: 640px; padding-top: 5rem;
  margin-inline: max(1.25rem, (100% - var(--max-w)) / 2) auto; }

/* info emerges out of the footage — starts as the cinema frame is opening,
   softly de-blurring so it reads as part of the video */
.hero--cinema .hero__content > * {
  opacity: 0;
  animation: heroInfo 1.1s cubic-bezier(.2,.7,.2,1) both;
}
.hero--cinema .hero__content > *:nth-child(1) { animation-delay: 1.35s; }
.hero--cinema .hero__content > *:nth-child(2) { animation-delay: 1.55s; }
.hero--cinema .hero__content > *:nth-child(3) { animation-delay: 1.8s; }
.hero--cinema .hero__content > *:nth-child(4) { animation-delay: 2.05s; }
@keyframes heroInfo {
  from { opacity: 0; transform: translateY(20px) scale(.985); filter: blur(10px); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero--cinema .hero__content > * { opacity: 1; animation: none; }
}
.hero__title {
  font-family: 'Figtree', system-ui, sans-serif; font-weight: 800;
  font-size: clamp(2.85rem, 7.6vw, 5.6rem); color: var(--white);
  line-height: 1.02; letter-spacing: -.035em; margin-bottom: 1.3rem;
}
.hero__sub { font-size: clamp(1.02rem, 1.6vw, 1.25rem); color: rgba(255,255,255,.85);
  max-width: 520px; margin-bottom: 2.2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* orange CTA — the single call-to-action, gently pulsing (reusable: hero + navbar) */
.cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2.6rem; border-radius: 50px;
  font-family: 'Figtree', sans-serif; font-size: 1.02rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  color: #fff;
  background: #ff6a00;
  border: none;
  box-shadow: 0 0 10px rgba(255,106,0,.28), 0 8px 22px rgba(255,106,0,.22);
  will-change: transform, box-shadow;
  animation: ctaPulse 2.4s ease-in-out infinite;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.cta:hover {
  background: #ff7d1f;
  transform: translateY(-2px) scale(1.03);
}
/* hero placement — centered at the bottom of the frame, no transform needed for centering */
.cta--hero {
  position: absolute; bottom: 2.6rem; left: 0; right: 0;
  margin: 0 auto; width: fit-content; z-index: 3;
}
/* compact variant for the navbar */
.cta--sm { padding: .55rem 1.2rem; font-size: .85rem; }
/* slight breathing pulse, softened glow */
@keyframes ctaPulse {
  0%, 100% { transform: scale(1);
    box-shadow: 0 0 10px rgba(255,106,0,.24), 0 8px 22px rgba(255,106,0,.20); }
  50%      { transform: scale(1.035);
    box-shadow: 0 0 18px rgba(255,106,0,.42), 0 8px 26px rgba(255,106,0,.30); }
}
@media (prefers-reduced-motion: reduce) {
  .cta { animation: none;
    box-shadow: 0 0 10px rgba(255,106,0,.28), 0 8px 22px rgba(255,106,0,.22); }
}

/* ── drehbar emblem (compact signature, sits above the price cards) ── */
.drehbar {
  position: relative; width: 132px; height: 132px; margin: 0 auto 1.4rem;
  display: grid; place-items: center;
}
.drehbar__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px dashed rgba(18,50,92,.30);
  box-shadow: inset 0 0 0 1px rgba(18,50,92,.05);
}
/* the hand pivots around the circle centre; JS rotates it to follow the cursor */
.drehbar__orbit {
  position: absolute; inset: 0; border-radius: 50%;
  transform: rotate(0deg); transition: transform .6s ease-out; will-change: transform;
}
.drehbar { cursor: pointer; }
/* the arrow sits just outside the ring and points straight out — like a clock hand to a number */
.drehbar__arrow {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 30px; display: grid; place-items: center;
  border-radius: 50%; color: #fff;
  background: #eaa658;
  box-shadow: 0 4px 14px rgba(234,166,88,.5);
}
.drehbar__arrow svg { width: 17px; height: 17px; }
.drehbar__hub {
  position: relative; z-index: 2; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  width: 62%; aspect-ratio: 1; border-radius: 50%;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(18,50,92,.12), inset 0 0 0 1px var(--line);
}
.drehbar__hub strong { font-family: 'Figtree', system-ui, sans-serif; font-weight: 800; font-size: 1.3rem; letter-spacing: -.02em;
  color: var(--petrol-dark); line-height: 1; }
.drehbar__hub small { font: 500 .5rem 'Figtree', sans-serif; letter-spacing: .24em;
  text-transform: uppercase; color: var(--sun); }

@media (prefers-reduced-motion: reduce) {
  .drehbar__orbit, .brand__mark svg { animation: none; }
}

/* ── fact bar ── */
.facts { background: var(--petrol); padding: 1.4rem 0; }
.facts__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.facts__item { display: flex; align-items: center; gap: .85rem; color: var(--white); }
.facts__item svg { width: 30px; height: 30px; flex-shrink: 0; color: var(--sun-soft); }
.facts__item div { display: flex; flex-direction: column; }
.facts__item strong { font-size: .95rem; font-weight: 600; }
.facts__item span { font-size: .8rem; opacity: .78; }

/* ── sections ── */
.section { padding: clamp(3.25rem, 7vw, 5.5rem) 0; }
.section--sand { background: var(--sand-light); }
.section--deep { background: linear-gradient(160deg, var(--petrol-dark), var(--petrol)); }
.section__head { text-align: center; max-width: 620px; margin: 0 auto clamp(2rem, 5vw, 3.2rem); }
.section__head--light h2 { color: var(--white); }
.section__intro { font-size: 1.06rem; margin-top: .65rem; }
.section__head--light .section__intro { color: rgba(255,255,255,.8); }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split__text { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.split__text h2 { margin-bottom: .2rem; }

/* ── ticks ── */
.ticks { display: flex; flex-direction: column; gap: .7rem; margin: .25rem 0 .5rem; }
.ticks li { display: flex; align-items: center; gap: .75rem; color: var(--text-muted); font-size: .98rem; }
.ticks li::before {
  content: ''; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--petrol) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/58% no-repeat;
}

/* ── framed photo ── */
.framed { position: relative; margin: 0; }
.framed img {
  width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  object-fit: cover; object-position: center;
  height: clamp(260px, 26vw, 360px);
}
.framed--idee::before {
  content: ''; position: absolute; z-index: -1;
  top: -14px; left: 14px; right: -14px; bottom: auto;
  height: calc(clamp(260px, 26vw, 360px) + 28px);
  border: 1.5px solid var(--sun-soft); border-radius: var(--radius-xl);
}
.framed figcaption {
  margin-top: .9rem; font-size: .88rem; color: var(--text-muted); font-style: italic;
  max-width: 90%;
}

/* ── rotation band ── */
.rotband {
  margin-top: 3.5rem; display: grid; grid-template-columns: minmax(220px, .9fr) 2fr;
  gap: 2.5rem; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.4rem) clamp(1.4rem, 4vw, 2.6rem); box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.rotband::before {
  content: ''; position: absolute; width: 300px; height: 300px; left: -120px; bottom: -140px;
  border-radius: 50%; background: radial-gradient(circle, rgba(243,201,138,.35), transparent 70%);
}
.rotband__head { position: relative; }
.rotband__big {
  font-family: 'Figtree', system-ui, sans-serif; font-size: clamp(2.8rem, 5.6vw, 4.3rem); font-weight: 800; letter-spacing: -.03em;
  line-height: 1; color: var(--sun); display: block;
}
.rotband__head p { font-family: 'Figtree', system-ui, sans-serif; font-size: 1.12rem; font-weight: 600; color: var(--petrol-dark); margin-top: .4rem; }
.rotband__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; position: relative; }
.rotband__steps li { display: flex; flex-direction: column; gap: .5rem; }
.rotband__ico {
  width: 46px; height: 46px; border-radius: 13px; background: var(--sand);
  display: grid; place-items: center; font-size: 1.2rem; color: var(--sun);
}
.rotband__steps strong { display: block; color: var(--petrol-dark); font-size: 1rem; }
.rotband__steps em { display: block; font-style: normal; font-size: .9rem; color: var(--text-muted); }

/* ── gallery (editorial mosaic) ── */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px;
}
.gallery__item {
  position: relative; padding: 0; border: none; cursor: pointer; overflow: hidden;
  border-radius: var(--radius); background: var(--sand); box-shadow: var(--shadow);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, opacity .3s ease; }
.gallery__item::after {
  content: ''; position: absolute; inset: 0; background: rgba(18,50,92,.12); opacity: 0; transition: opacity var(--t);
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ── lightbox ── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(8,18,36,.94); align-items: center; justify-content: center; padding: 2rem;
}
.lightbox--open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 86vh; object-fit: contain;
  border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav {
  position: fixed; background: rgba(255,255,255,.14); border: none; color: #fff; cursor: pointer;
  border-radius: 50%; width: 50px; height: 50px; font-size: 1.6rem; line-height: 1;
  display: grid; place-items: center; transition: background var(--t);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.28); }
.lightbox__close { top: 1.25rem; right: 1.25rem; }
.lightbox__prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.25rem; top: 50%; transform: translateY(-50%); }

/* ── prices ── */
.prices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; align-items: stretch; }
.price {
  position: relative;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.9rem 1.5rem; display: flex; flex-direction: column; gap: .85rem;
  box-shadow: var(--shadow); transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.price:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.price--featured {
  border-color: var(--sun); box-shadow: 0 18px 50px rgba(224,144,60,.22);
  background: linear-gradient(180deg, var(--sun-soft) 0%, var(--white) 38%);
}
.price__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.35rem; color: var(--sun); background: var(--sand); margin-bottom: .2rem;
}
.price--featured .price__icon { color: #fff; background: var(--sun); }
.price__badge {
  position: absolute; top: -.7rem; right: 1rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #2a1c08; background: var(--sun); padding: .32rem .7rem; border-radius: 50px;
  box-shadow: 0 6px 16px rgba(224,144,60,.4); display: inline-flex; align-items: center; gap: .35rem;
}
.price__tag {
  align-self: flex-start; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--petrol); background: var(--sand); padding: .3rem .7rem; border-radius: 50px;
}
.price__tag--accent { color: #2a1c08; background: var(--sun-soft); }
.price__name { font-size: 1.5rem; }
.price__rows { display: flex; flex-direction: column; gap: .6rem; margin-top: auto; }
.price__rows > div { display: flex; align-items: baseline; justify-content: space-between;
  padding-bottom: .6rem; border-bottom: 1px dashed var(--line); }
.price__rows > div:last-child { border-bottom: none; padding-bottom: 0; }
.price__rows span { font-size: .9rem; color: var(--text-muted); display: inline-flex; align-items: baseline; gap: .45rem; }
.price__rows span i { color: var(--sun); font-size: .82em; }
.price__rows strong { font-family: 'Figtree', system-ui, sans-serif; font-weight: 800; font-size: 1.45rem; letter-spacing: -.02em; color: var(--petrol-dark); }
.price__rows--single strong { font-size: 1.15rem; color: var(--sun); }
.price__cta { align-self: stretch; justify-content: center; margin-top: .3rem; }
.prices__note { text-align: center; font-size: .85rem; color: var(--text-muted); margin-top: 1.8rem; }
.prices__note i { color: var(--sun); margin-right: .15rem; }

/* ── booking frame ── */
.booking-frame {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: .5rem; overflow: hidden;
}

/* ── feature cards (lounge) ── */
.feature-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.fcard {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg); padding: 1.8rem 1.5rem; backdrop-filter: blur(4px);
  transition: transform var(--t), background var(--t);
}
.fcard:hover { transform: translateY(-5px); background: rgba(255,255,255,.1); }
.fcard__icon {
  width: 54px; height: 54px; border-radius: 14px; margin-bottom: 1rem;
  display: grid; place-items: center; font-size: 1.45rem; color: var(--sun);
  background: rgba(243,201,138,.14); border: 1px solid rgba(243,201,138,.25);
}
.fcard h3 { color: var(--white); margin-bottom: .5rem; font-size: 1.15rem; }
.fcard p { color: rgba(255,255,255,.78); font-size: .92rem; }

/* ── map / address ── */
.addr {
  background: var(--white); border-left: 3px solid var(--sun); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem; line-height: 1.8; font-size: .96rem; box-shadow: var(--shadow);
}
.addr strong { color: var(--petrol-dark); }
.addr-note { color: var(--text); }
.map { border-radius: var(--radius-lg); overflow: hidden; height: clamp(280px, 45vw, 420px); box-shadow: var(--shadow-lg); }
.map iframe { width: 100%; height: 100%; display: block; }

/* ── contact ── */
.contact__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; max-width: 760px; margin: 0 auto; }
.ccard {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: .4rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.2rem 1.5rem; box-shadow: var(--shadow); transition: transform var(--t), box-shadow var(--t);
}
.ccard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ccard__icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%;
  background: var(--sand); color: var(--petrol); margin-bottom: .4rem; }
.ccard__icon svg { width: 26px; height: 26px; }
.ccard__label { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--sun); }
.ccard__value { font-family: 'Figtree', system-ui, sans-serif; font-weight: 700; font-size: 1.12rem; color: var(--petrol-dark); word-break: break-word; }

/* ── footer ── */
.site-footer { background: var(--petrol-dark); color: rgba(255,255,255,.7); padding-top: 4rem; }
.site-footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.brand--footer { margin-bottom: .9rem; }
.brand--footer .brand__mark { color: var(--sun); }
.site-footer__brand p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 280px; }
.site-footer__col h4 { font: 700 .76rem 'Figtree', sans-serif; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 1rem; }
.site-footer__col ul { display: flex; flex-direction: column; gap: .6rem; }
.site-footer__col a, .site-footer__col li { font-size: .9rem; color: rgba(255,255,255,.66); transition: color var(--t); }
.site-footer__col a:hover { color: var(--sun-soft); }
.site-footer__bottom { padding: 1.2rem 0; text-align: center; }
.site-footer__bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }

/* ── floating CTA ── */
.float-cta {
  position: fixed; bottom: 1.2rem; right: 1.2rem; z-index: 90;
  display: none; align-items: center; gap: .5rem;
  background: #ff6a00; color: #fff; font-weight: 700; font-size: .92rem;
  padding: .8rem 1.3rem; border-radius: 50px; box-shadow: 0 0 10px rgba(255,106,0,.28), 0 10px 30px rgba(255,106,0,.38);
  transition: transform var(--t), opacity .3s ease, visibility .3s ease;
}
.float-cta svg { width: 18px; height: 18px; }
.float-cta:hover { transform: translateY(-3px); }
/* erscheint erst, wenn das Hero aus dem Bild gescrollt ist */
.float-cta.is-hidden {
  opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(14px);
}

/* ── reveal animation ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ============================================================
   MOTION — extra dynamic touches (all opt-out via reduced-motion)
   ============================================================ */

/* thin scroll-progress bar riding the top edge */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200;
  background: linear-gradient(90deg, var(--sun), #ff6a00);
  box-shadow: 0 0 10px rgba(255,106,0,.5);
  transition: width .12s linear;
}

/* staggered reveals: grid children fade up one after another */
.prices .price,
.feature-cards .fcard,
.gallery .gallery__item,
.facts__grid .facts__item,
.contact__cards .ccard {
  transition-delay: calc(var(--stagger, 0) * 85ms);
}

/* the dashed emblem ring keeps a slow idle turn */
.drehbar__ring { animation: spin 34s linear infinite; }

/* rotation-themed icon spin on card hover */
.price__icon, .fcard__icon, .ccard__icon, .rotband__ico, .facts__item svg {
  transition: transform var(--t), background var(--t), color var(--t);
}
.price:hover .price__icon,
.fcard:hover .fcard__icon,
.ccard:hover .ccard__icon,
.rotband__steps li:hover .rotband__ico { transform: rotate(-8deg) scale(1.08); }
.facts__item:hover svg { transform: rotate(90deg); }

/* the warm blob behind the rotation band drifts gently */
.rotband::before { animation: blobDrift 20s ease-in-out infinite alternate; }
@keyframes blobDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(46px, -34px) scale(1.16); }
}

/* featured badge breathes */
.price__badge { animation: badgeFloat 2.6s ease-in-out infinite; }
@keyframes badgeFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }

/* light sweep across the primary button on hover */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after {
  content: ''; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg); pointer-events: none;
}
.btn--primary:hover::after { animation: btnShine .75s ease; }
@keyframes btnShine { to { left: 135%; } }

/* animated underline on desktop nav links */
.nav__links a:not(.cta)::after {
  content: ''; position: absolute; left: .85rem; right: .85rem; bottom: .2rem; height: 2px;
  background: currentColor; border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform var(--t); opacity: .7;
}
.nav__links a:not(.cta) { position: relative; }
.nav__links a:not(.cta):hover::after { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .drehbar__ring, .rotband::before, .price__badge { animation: none; }
  .prices .price, .feature-cards .fcard, .gallery .gallery__item,
  .facts__grid .facts__item, .contact__cards .ccard { transition-delay: 0s; }
  .btn--primary:hover::after { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* large tablets / small laptops */
@media (max-width: 1024px) {
  .facts__grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .prices { grid-template-columns: repeat(2, 1fr); }
  .feature-cards { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
  .rotband { grid-template-columns: 1fr; gap: 1.8rem; }
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 2; }
}

/* tablets — collapse split layouts, switch to mobile nav */
@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none; position: fixed; inset: 0; background: rgba(18,50,92,.98);
    flex-direction: column; align-items: center; justify-content: center; gap: .6rem; z-index: 99;
  }
  .nav__links--open { display: flex; }
  .nav__links a { font-size: 1.2rem; color: var(--white) !important; padding: .7rem 1.5rem; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split__text { align-items: flex-start; }
  .framed--idee { max-width: 520px; margin-inline: auto; }
  .rotband__steps { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
  .contact__cards { grid-template-columns: repeat(2, 1fr); }
  .float-cta { display: inline-flex; }
}

/* phones (landscape) */
@media (max-width: 640px) {
  .facts__grid { grid-template-columns: 1fr 1fr; }
  .prices { grid-template-columns: 1fr 1fr; }
  .feature-cards { grid-template-columns: 1fr 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .site-footer__brand { grid-column: 1 / -1; }
  .rotband__steps { grid-template-columns: 1fr; }
  .contact__cards { grid-template-columns: 1fr; max-width: 420px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .price { padding: 1.6rem 1.3rem; }
  /* Faktenleiste unter dem Hero auf dem Handy ausblenden */
  .facts { display: none; }
  /* CTA-Buttons mittig ausrichten */
  .split__text > .cta { align-self: center; }
}

/* phones (portrait) */
@media (max-width: 480px) {
  .facts__grid { grid-template-columns: 1fr; gap: .9rem; }
  .prices { grid-template-columns: 1fr; }
  .feature-cards { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .site-footer__brand { grid-column: auto; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .hero__content { padding-top: 4rem; }
  .cta--hero { bottom: 1.6rem; left: 1.25rem; right: 1.25rem; margin: 0 auto; width: fit-content; }
  .brand__text { font-size: 1.05rem; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--wide { grid-column: span 2; }
  .lightbox { padding: 1rem; }
  .lightbox__close, .lightbox__nav { width: 42px; height: 42px; font-size: 1.35rem; }
  .lightbox__prev { left: .5rem; }
  .lightbox__next { right: .5rem; }
  .lightbox__close { top: .6rem; right: .6rem; }
}

/* very small phones */
@media (max-width: 360px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery__item--tall { grid-row: auto; }
  .gallery__item--wide { grid-column: auto; }
  .cta { padding: .95rem 1.8rem; font-size: .95rem; }
  .drehbar { width: 112px; height: 112px; }
}

/* short / landscape screens — let the hero breathe instead of forcing full height */
@media (max-height: 560px) and (orientation: landscape) {
  .hero { min-height: 520px; height: auto; padding: 6rem 0 4.5rem; }
  .cta--hero { position: static; margin: 1.6rem auto 0; }
}
