/* ==========================================================================
   Cranio am Rhein – Stylesheet
   Farbwelt «Meer»: Weiss wie Sand · Schaum-Türkis · Lagunen-Türkis · Meerestiefe · Sandgold
   ========================================================================== */

:root {
  /* Flächen – vom Strand ins tiefe Wasser */
  --white: #FFFFFF;
  --pearl: #F4FAF9;          /* Kontaktbereich */
  --foam: #EFF9F8;           /* Cranio-Bereich: flaches, helles Wasser */
  --lagoon: #3BB3AC;         /* Lagunen-Türkis: Akzente, Linien, Lichtreflexe */
  --lagoon-soft: #9ED8D2;
  --sea: #127279;            /* Türkis für Überschriften */
  --deep: #0B4650;           /* Meerestiefe: Bänder */
  --abyss: #08323A;          /* Fusszeile */

  /* Schrift */
  --ink: #1E393E;            /* Fliesstext: dunkles Meeres-Anthrazit */
  --muted: #587377;

  /* Gold (Sand) */
  --gold: #B08D57;
  --gold-ink: #93723A;
  --gold-light: #E2C996;

  /* Magnolie */
  --magnolia: #E6A2B6;
  --magnolia-soft: #F8E1E8;
  --magnolia-deep: #C46E8C;

  --serif: "Noto Serif Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Mulish", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.25, .46, .3, 1);
  --gutter: clamp(20px, 5vw, 56px);
  --header-h: 76px;
  color-scheme: light;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
html.menu-open { overflow: hidden; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

[hidden] { display: none !important; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
[id] { scroll-margin-top: calc(var(--header-h) - 1px); }

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.skip-link {
  position: absolute; left: 16px; top: -80px; z-index: 100;
  background: var(--white); color: var(--ink); padding: .7rem 1.1rem; border-radius: 8px;
  text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 16px; }

.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: var(--gutter); }
.container.narrow { max-width: 760px; }

/* ---------- Logo (Linienzeichnung) ---------- */

.brand-mark, .hero-mark, .calm-mark, .done-mark, .mobile-menu-mark {
  fill: none; stroke: var(--gold); stroke-linecap: round; stroke-linejoin: round; overflow: visible;
}
.js .draw { stroke-dasharray: 1 2; stroke-dashoffset: 1.01; transition: stroke-dashoffset 3s cubic-bezier(.45, .05, .3, 1); }
.js .draw.is-drawn { stroke-dashoffset: 0; }

/* ---------- Typografie ---------- */

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -.005em;
  color: var(--sea);
  margin: 0;
  text-wrap: balance;
}
h1 em, h2 em, h3 em { font-style: italic; }

.display { font-size: clamp(3rem, 6.8vw, 5.6rem); line-height: 1.04; letter-spacing: -.015em; }
.h2 { font-size: clamp(2.1rem, 4.2vw, 3.3rem); }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.5rem); font-weight: 400; }
.display em, .h2 em, .welcome-title em { color: var(--gold); }

p { margin: 0 0 1em; max-width: 38em; }

.lead {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1.12rem, 1.5vw, 1.28rem);
  line-height: 1.75;
  color: var(--ink);
}

.eyebrow {
  display: flex; align-items: center; gap: .9rem;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-ink);
  margin: 0 0 1.5rem;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; }
.center .eyebrow { justify-content: center; }

.signature {
  font-family: var(--serif);
  font-style: italic; font-weight: 300;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  color: var(--gold);
  line-height: 1.2;
  margin-top: .8em;
}

.fine { font-size: .85rem; color: var(--muted); }
.center { text-align: center; margin-inline: auto; }
.center p { margin-inline: auto; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--sans); font-size: .74rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 1.15em 2.3em; border-radius: 999px;
  border: 1px solid transparent; text-decoration: none; cursor: pointer;
  transition: background-color .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}
.btn-primary { background: var(--deep); color: var(--white); }
.btn-primary:hover { background: var(--sea); }
.btn-gold { border-color: var(--gold); color: var(--gold-ink); background: transparent; }
.btn-gold:hover { background: var(--gold); color: var(--white); }
.btn-light { background: var(--white); color: var(--deep); }
.btn-light:hover { background: var(--gold-light); }
.btn-sm { padding: .85em 1.6em; font-size: .68rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; }

/* ---------- Kopfzeile ---------- */

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid rgba(18, 114, 121, .1);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform .8s var(--ease), opacity .7s var(--ease);
}
.site-header.is-visible { transform: none; opacity: 1; }

.header-inner {
  max-width: 1320px; margin-inline: auto;
  height: var(--header-h);
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-mark { width: 46px; height: 46px; flex: none; stroke-width: 2; }
.brand-name {
  display: block;
  font-family: var(--serif); font-weight: 400; font-size: 1.35rem; line-height: 1;
  color: var(--sea);
}
.brand-name em { color: var(--gold); font-weight: 300; }
.brand-sub {
  display: block; margin-top: .42rem;
  font-size: .56rem; font-weight: 600; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-ink);
}

.main-nav { display: flex; align-items: center; gap: clamp(1.3rem, 2.6vw, 2.6rem); }
.main-nav a:not(.btn) {
  position: relative; padding-block: .5rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-ink); text-decoration: none;
  transition: color .3s;
}
.main-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: .22em; bottom: 2px; height: 1px;
  background: var(--gold); transform: scaleX(0);
  transition: transform .5s var(--ease);
}
.main-nav a:not(.btn):hover { color: var(--gold); }
.main-nav a:not(.btn):hover::after, .main-nav a.is-active::after { transform: scaleX(1); }

.menu-toggle {
  display: none; align-items: center; gap: .75rem;
  background: none; border: 0; padding: .7rem 0; cursor: pointer;
  font: 600 .68rem/1 var(--sans); letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-ink);
}
.menu-toggle-lines { position: relative; display: block; width: 26px; height: 10px; }
.menu-toggle-lines i {
  position: absolute; left: 0; right: 0; height: 1.5px; background: var(--gold);
  transition: transform .45s var(--ease), top .45s var(--ease);
}
.menu-toggle-lines i:first-child { top: 0; }
.menu-toggle-lines i:last-child { top: 8.5px; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child { top: 4.25px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child { top: 4.25px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 45;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2.2rem;
  padding: calc(var(--header-h) + env(safe-area-inset-top, 0px)) 24px calc(40px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, .985);
  opacity: 0; transition: opacity .5s var(--ease);
}
.mobile-menu.is-open { opacity: 1; }
.mobile-menu-mark { width: 72px; height: 72px; stroke-width: 1.5; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.mobile-menu nav a {
  font-family: var(--serif); font-weight: 300; font-size: 2.2rem; line-height: 1.2;
  color: var(--sea); text-decoration: none;
}
.mobile-menu-foot { margin: 0; font-size: .64rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-ink); text-align: center; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: #0B3E63 url("../video/hero-desktop-poster.jpg") center / cover no-repeat;
}
.hero-media { position: absolute; inset: 0; will-change: transform; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; opacity: 0; transition: opacity 1.6s ease; }
.hero-video.is-playing { opacity: 1; }

.hero-shade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(4, 30, 45, .66) 0%, rgba(4, 30, 45, .3) 30%, rgba(4, 30, 45, 0) 55%);
}

.hero-content {
  position: absolute; left: 0; right: 0;
  bottom: calc(clamp(84px, 10vh, 110px) + env(safe-area-inset-bottom, 0px));
  padding-inline: 20px;
  text-align: center;
}
.hero-mark { display: block; width: 64px; height: 64px; margin: 0 auto .8rem; stroke: #F3E2BC; stroke-width: 1.9; filter: drop-shadow(0 1px 10px rgba(0, 20, 40, .55)); }
.js .hero-mark { transition-duration: 3.4s; transition-delay: .4s; }
.hero-title {
  font-weight: 300;
  font-size: clamp(2.5rem, 5.4vw, 4.2rem);
  line-height: 1.05;
  color: var(--white);
  text-shadow: 0 2px 32px rgba(0, 22, 44, .35);
  animation: rise 1.8s var(--ease) .5s both;
}
.hero-title em { color: var(--gold-light); }
.hero-sub {
  margin: 1.1rem auto 0; max-width: none;
  font-size: .66rem; font-weight: 600; letter-spacing: .34em; text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  animation: rise 1.8s var(--ease) .9s both;
}
@keyframes rise { from { opacity: 0; transform: translateY(14px); } }

.scroll-cue {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: calc(26px + env(safe-area-inset-bottom, 0px));
  display: block; width: 32px; height: 56px;
  animation: rise 1.8s var(--ease) 1.4s both;
}
.scroll-cue span { position: absolute; left: 50%; top: 0; width: 1px; height: 100%; background: rgba(255, 255, 255, .3); overflow: hidden; }
.scroll-cue span::after {
  content: ""; position: absolute; left: 0; top: -40%; width: 1px; height: 40%;
  background: var(--white);
  animation: cue 3.2s var(--ease) infinite;
}
@keyframes cue { to { top: 100%; } }

/* ---------- Willkommen ---------- */

.welcome {
  position: relative;
  padding-block: clamp(110px, 13vw, 180px);
  background: var(--white);
}
.welcome-inner { text-align: center; }
.welcome-text { max-width: 640px; margin-inline: auto; }
.welcome-text p { margin-inline: auto; }
.welcome-text .eyebrow { justify-content: center; }
.welcome-title { font-size: clamp(2.9rem, 6.2vw, 5.2rem); line-height: 1.02; color: var(--sea); margin-bottom: 2.2rem; }
.welcome-title em { display: inline-block; padding-left: .5em; }
.welcome-text .lead { margin-bottom: 1.1rem; }


/* ---------- Cranio-Bereich ---------- */

.cranio {
  /* Helles Wasser: weiche, unregelmässige Lichtflächen, die ineinander verlaufen */
  background-color: var(--foam);
  background-image:
    radial-gradient(48% 20% at 8% 3%, rgba(108, 204, 200, .5), transparent 72%),
    radial-gradient(42% 16% at 94% 15%, rgba(138, 206, 232, .44), transparent 74%),
    radial-gradient(58% 24% at 72% 42%, rgba(112, 206, 202, .4), transparent 76%),
    radial-gradient(46% 20% at 4% 60%, rgba(142, 212, 230, .44), transparent 76%),
    radial-gradient(52% 22% at 88% 82%, rgba(108, 204, 200, .38), transparent 76%),
    radial-gradient(40% 18% at 30% 95%, rgba(140, 210, 228, .38), transparent 78%);
}

.cranio-intro { padding-block: clamp(100px, 12vw, 170px) clamp(70px, 8vw, 120px); }
.intro-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(1.5rem, 3vw, 3rem); }
.intro-grid > :nth-child(1) { grid-column: 1 / span 6; }
.intro-grid > :nth-child(2) { grid-column: 7 / span 6; align-self: end; margin: 0; }
.intro-grid > :nth-child(3) { grid-column: 2 / span 4; margin-top: clamp(2rem, 5vw, 4.5rem); }
.intro-grid > :nth-child(4) { grid-column: 8 / span 4; margin-top: clamp(2rem, 9vw, 8rem); }
.intro-grid > :nth-child(5) { grid-column: 1 / -1; }

.intro-block::before {
  content: ""; display: block; width: 40px; height: 1px; background: var(--gold); margin-bottom: 1.5rem;
  transition: width .8s var(--ease);
}
.intro-block h3 { font-style: italic; margin-bottom: .8rem; }
.intro-block p { margin: 0; }
.intro-block:hover::before { width: 80px; }

.whole-body {
  display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 3vw, 2.2rem);
  max-width: none; margin: clamp(3rem, 7vw, 6rem) 0 0;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.35; color: var(--sea); text-align: center;
}
.wb-line { flex: 1 1 60px; max-width: 150px; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 1.6s var(--ease) .3s; }
.wb-line:first-child { transform-origin: right; }
.wb-line:last-child { transform-origin: left; }
.whole-body.is-in .wb-line, html:not(.js) .wb-line { transform: none; }

.areas { padding-block: clamp(40px, 6vw, 80px) clamp(100px, 11vw, 150px); }
.section-head { max-width: 680px; margin-bottom: clamp(2.6rem, 5vw, 4rem); }
.section-head .h2 { margin-bottom: 1.2rem; }
.section-head p:last-child { margin-bottom: 0; }

.area-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.6rem); }
.area-card {
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: 6px;
  padding: clamp(1.8rem, 3vw, 2.6rem) clamp(1.5rem, 2.6vw, 2.2rem);
  box-shadow: 0 1px 0 rgba(18, 114, 121, .04);
}
.js .area-card.reveal { transition: opacity 1s var(--ease) var(--rd), translate 1.1s var(--ease) var(--rd), box-shadow .6s var(--ease), background-color .6s var(--ease); --rd: calc(var(--c) * 120ms); }
.area-card:hover { background: var(--white); box-shadow: 0 22px 44px -28px rgba(11, 70, 80, .35); }
.area-card h3 { font-style: italic; font-size: 1.55rem; margin-bottom: 1.3rem; }
.area-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.area-card li { position: relative; padding-left: 1.5rem; line-height: 1.5; }
.area-card li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: 7px; height: 7px;
  border-radius: 0 60% 0 60%;
  background: var(--lagoon);
  transform: rotate(-12deg);
}
.areas .fine { margin-top: 2.6rem; }

/* Meerestiefe: Stimmen & Kosten */
.band {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(ellipse 60% 55% at 12% 0%, rgba(118, 214, 204, .38), transparent 65%),
    radial-gradient(ellipse 70% 60% at 100% 100%, rgba(6, 60, 76, .55), transparent 70%),
    linear-gradient(158deg, #1B9C9B 0%, #14868D 38%, #0F6F7C 70%, #0B5A69 100%);
}
.band .h2, .band h3 { color: var(--white); }
.band .h2 em { color: var(--gold-light); }
.band .eyebrow { color: var(--gold-light); }

.voices { padding-block: clamp(100px, 11vw, 150px); overflow: hidden; }
.voices-head { position: relative; padding-left: clamp(0px, 9vw, 120px); margin-bottom: clamp(2.6rem, 5vw, 4rem); }
.quote-mark {
  position: absolute; left: 0; top: -.24em;
  font-family: var(--serif); font-size: clamp(5.5rem, 10vw, 8.5rem); line-height: 1;
  color: var(--lagoon-soft); opacity: .8;
}
.placeholder-note {
  display: inline-block; max-width: none; margin: 1.3rem 0 0;
  font-size: .64rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--abyss); background: var(--magnolia-soft);
  padding: .45em 1em; border-radius: 999px;
}
.quotes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.4rem, 3vw, 3rem); padding-left: clamp(0px, 9vw, 120px); }
.quote-card { margin: 0; padding-top: 1.8rem; border-top: 1px solid rgba(158, 216, 210, .45); }
.js .quote-card.reveal { --rd: calc(var(--c) * 140ms); }
.quote-card blockquote {
  margin: 0 0 1.4rem;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.15rem, 1.5vw, 1.3rem); line-height: 1.6;
  color: var(--white);
}
.quote-card figcaption { font-size: .68rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-light); }
.quote-card figcaption::before { content: ""; display: inline-block; width: 22px; height: 1px; margin-right: .7em; vertical-align: middle; background: currentColor; }
.quote-dots { display: none; }

/* Ablauf: Linie wächst ruhig mit dem Scrollen */
.process { padding-block: clamp(100px, 11vw, 150px) clamp(30px, 5vw, 60px); }
.process .h2 { margin-bottom: clamp(2.8rem, 5vw, 4.6rem); }
.steps {
  --line: 0;
  position: relative;
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.6rem, 3vw, 3rem);
}
.steps::before, .steps::after { content: ""; position: absolute; left: 22px; right: 0; top: 22px; height: 1px; }
.steps::before { background: rgba(176, 141, 87, .25); }
.steps::after { background: var(--gold); transform-origin: left; transform: scaleX(var(--line)); }
.step-no {
  position: relative; z-index: 1;
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--gold); background: var(--white);
  font-family: var(--serif); font-size: 1.15rem; color: var(--gold-ink);
  margin-bottom: 1.7rem;
  transition: background-color .6s var(--ease), color .6s var(--ease);
}
.step h3 { margin-bottom: .6rem; }
.step p { margin: 0; font-size: 1rem; }
.step h3, .step p { transition: opacity 1s var(--ease); }
.js .step:not(.on) h3, .js .step:not(.on) p { opacity: .25; }
.step.on .step-no { background: var(--gold); color: var(--white); }

/* Zitat mit ruhigen Wasserringen */
.calm { position: relative; overflow: hidden; padding-block: clamp(100px, 13vw, 190px); text-align: center; }
.ripples { position: absolute; left: 50%; top: 50%; width: 0; height: 0; pointer-events: none; }
.ripples i {
  position: absolute; left: -45vmin; top: -45vmin; width: 90vmin; height: 90vmin; border-radius: 50%;
  border: 1px solid rgba(59, 179, 172, .35);
  opacity: 0;
  animation: ripple 16s cubic-bezier(.2, .6, .35, 1) infinite;
  animation-play-state: paused;
}
.ripples i:nth-child(2) { animation-delay: 5.3s; }
.ripples i:nth-child(3) { animation-delay: 10.6s; }
.calm.is-in .ripples i { animation-play-state: running; }
@keyframes ripple {
  0% { transform: scale(.2); opacity: 0; }
  15% { opacity: .8; }
  100% { transform: scale(1.3); opacity: 0; }
}
.calm .container { position: relative; }
.calm-mark { display: block; width: 76px; height: 76px; margin: 0 auto 2rem; stroke-width: 1.5; }
.calm-quote {
  margin: 0 auto; max-width: 12ch;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 5.6rem); line-height: 1.1;
  color: var(--sea);
  text-wrap: balance;
}
.calm-quote .w { transition: opacity .6s linear; }

/* Kosten */
.costs { padding-block: clamp(100px, 11vw, 150px); }
.costs-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(2.6rem, 6vw, 6rem); align-items: center; }
.room { margin: 0; }
.room-frame { overflow: hidden; border-radius: 4px; aspect-ratio: 4 / 5; }
.room-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; transition: transform 1.6s var(--ease); }
.room:hover .room-frame img { transform: scale(1.03); }
.room figcaption { margin-top: 1rem; font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 1.1rem; color: var(--lagoon-soft); }
.facts { margin: 2.4rem 0 2.8rem; }
.fact { position: relative; display: grid; grid-template-columns: 9.5rem minmax(0, 1fr); gap: 1.5rem; padding-block: 1.3rem; border-top: 1px solid rgba(158, 216, 210, .3); }
.fact:last-child { border-bottom: 1px solid rgba(158, 216, 210, .3); }
.js .fact.reveal { --rd: calc(var(--c) * 110ms); }
.fact dt { padding-top: .45rem; font-size: .68rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); }
.fact dd { margin: 0; font-size: 1rem; line-height: 1.65; }
.fact dd strong {
  display: block; margin-bottom: .1rem;
  font-family: var(--serif); font-weight: 300; font-size: 1.8rem; line-height: 1.25;
  color: var(--white);
}

/* ---------- Über mich ---------- */

.about { padding-block: clamp(110px, 13vw, 180px); background: var(--white); }
.about-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(3.5rem, 7vw, 7rem); align-items: center; }
.portrait-wrap { position: relative; width: 100%; max-width: 440px; justify-self: center; }
.portrait-wrap::before {
  content: ""; position: absolute; inset: 22px -22px -22px 22px;
  border: 1px solid var(--gold); opacity: .5;
}
.portrait-frame { position: relative; z-index: 1; overflow: hidden; border-radius: 2px; aspect-ratio: 4 / 5; }
.portrait { width: 100%; height: 100%; object-fit: cover; }
.about-text .h2 { margin-bottom: 1.8rem; }
.about-text .lead { margin-bottom: 1.1rem; }

/* ---------- Kontakt ---------- */

.contact { background: var(--pearl); padding-block: clamp(110px, 12vw, 170px); }
.booking { display: grid; gap: 1.4rem; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem; }
.field-row.row-date { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); }
.field { display: grid; gap: .55rem; align-content: start; min-width: 0; border: 0; padding: 0; margin: 0; }
.field > label, .field > legend {
  padding: 0;
  font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink); transition: color .3s;
}
.field > legend { margin-bottom: .55rem; }
.field:focus-within > label { color: var(--sea); }
.opt { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--muted); }

.field input:not([type="radio"]), .field textarea {
  display: block; width: 100%; min-height: 54px;
  font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(30, 57, 62, .14); border-radius: 10px;
  padding: .9rem 1.05rem;
  -webkit-appearance: none; appearance: none;
  transition: border-color .3s, box-shadow .4s;
}
.field input::placeholder, .field textarea::placeholder { color: #9BB3B5; }
.field input::-webkit-date-and-time-value { text-align: left; }
.field textarea { resize: vertical; min-height: 124px; line-height: 1.6; }
.field input:not([type="radio"]):hover, .field textarea:hover { border-color: rgba(18, 114, 121, .35); }
.field input:not([type="radio"]):focus, .field textarea:focus { outline: none; border-color: var(--lagoon); box-shadow: 0 0 0 4px rgba(59, 179, 172, .16); }
.field.is-invalid input, .field.is-invalid textarea { border-color: var(--magnolia-deep); box-shadow: 0 0 0 4px rgba(196, 110, 140, .12); animation: shake .45s var(--ease); }
@keyframes shake { 25% { transform: translateX(-4px); } 60% { transform: translateX(3px); } }

.choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem; }
.choices-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.choices-3 .choice span { font-size: .9rem; padding-inline: .35rem; }
.choice { position: relative; display: block; cursor: pointer; }
.choice input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.choice span {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .1rem;
  min-height: 54px; padding: .55rem .6rem;
  background: var(--white);
  border: 1px solid rgba(30, 57, 62, .14); border-radius: 10px;
  font-size: .95rem; line-height: 1.25; text-align: center; color: var(--ink);
  transition: border-color .3s, background-color .3s, box-shadow .3s;
}
.choice small { font-size: .72rem; letter-spacing: .06em; color: var(--gold-ink); }
.choice:hover span { border-color: rgba(18, 114, 121, .35); }
.choice input:checked + span { border-color: var(--sea); background: #E4F4F2; box-shadow: inset 0 0 0 1px var(--sea); }
.choice input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error { margin: 0; font-size: .95rem; color: #A94E6F; }
.booking .btn-block { margin-top: .4rem; padding-block: 1.3em; }
.booking .fine { margin-top: -.2rem; }

.booking-done { text-align: center; padding: clamp(2.6rem, 6vw, 4rem) 1.5rem; background: var(--white); border-radius: 16px; }
.booking-done:focus { outline: none; }
.done-mark { display: block; width: 110px; height: 110px; margin: 0 auto 1.4rem; stroke-width: 1.3; }
.booking-done h3 { font-size: clamp(1.8rem, 3.5vw, 2.3rem); margin-bottom: .8rem; }
.booking-done p { margin-inline: auto; }

.direct { margin: 2.6rem auto 0; text-align: center; font-size: .95rem; }
.direct a { white-space: nowrap; color: var(--sea); text-underline-offset: 3px; text-decoration-color: rgba(176, 141, 87, .6); transition: color .3s; }
.direct a:hover { color: var(--gold-ink); }

/* ---------- Fusszeile ---------- */

.site-footer { background: var(--abyss); color: rgba(255, 255, 255, .8); }
.waves {
  height: 56px;
  background-color: var(--deep);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='24' viewBox='0 0 120 24'%3E%3Cg fill='none' stroke='%239ED8D2' stroke-opacity='.35' stroke-width='1'%3E%3Cpath d='M0 6C15 0 45 0 60 6S105 12 120 6'/%3E%3Cpath d='M0 18C15 12 45 12 60 18S105 24 120 18'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(180deg, var(--deep), var(--abyss));
  background-size: 120px 24px, auto;
}
.footer-main { padding-block: clamp(64px, 8vw, 100px); }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr)); gap: 2.6rem; }
.footer-brand .brand-mark { width: 72px; height: 72px; stroke: var(--gold-light); stroke-width: 1.6; }
.footer-name { margin: .8rem 0 0; font-family: var(--serif); font-weight: 300; font-size: 1.7rem; line-height: 1.1; color: var(--white); }
.footer-name em { color: var(--gold-light); }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: .55rem; padding-left: 1.6rem; border-left: 1px solid rgba(226, 201, 150, .35); }
.footer-col h2 { font-weight: 300; font-size: 1.5rem; color: var(--white); margin-bottom: .5rem; }
.footer-col p { margin: 0; font-size: .95rem; line-height: 1.8; }
.footer-col a { color: rgba(255, 255, 255, .85); text-underline-offset: 4px; text-decoration-color: rgba(226, 201, 150, .45); transition: color .3s; }
.footer-col a:hover { color: var(--gold-light); }

.footer-bar { background: #06282E; font-size: .8rem; color: rgba(255, 255, 255, .6); padding-block: 1.1rem calc(1.1rem + env(safe-area-inset-bottom, 0px)); }
.footer-bar-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem 1.4rem; }
.footer-links { display: flex; gap: 1.4rem; }
.footer-links button { padding: 0; background: none; border: 0; cursor: pointer; font: inherit; color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.footer-links button:hover { color: var(--gold-light); }

/* Rechtliches */
dialog.legal {
  width: min(560px, calc(100vw - 32px)); max-height: calc(100vh - 64px);
  border: 0; border-radius: 16px; padding: 2.6rem 2.2rem 2rem;
  color: var(--ink); background: var(--white);
  box-shadow: 0 30px 80px rgba(8, 50, 58, .25);
}
dialog.legal::backdrop { background: rgba(8, 50, 58, .45); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.legal h2 { font-size: 2rem; margin-bottom: 1.2rem; }
.legal-close { position: absolute; top: 10px; right: 14px; background: none; border: 0; cursor: pointer; font-size: 2rem; line-height: 1; color: var(--gold-ink); }

/* ---------- Sanftes Einblenden beim Scrollen ---------- */

.js .reveal { --rd: 0s; transition: opacity 1.1s var(--ease) var(--rd), translate 1.2s var(--ease) var(--rd); }
.js .reveal:not(.is-in) { opacity: 0; translate: 0 18px; }

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 3rem; }
  .steps::before, .steps::after { display: none; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .brand-name { font-size: 1.2rem; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-sub { font-size: .52rem; }

  .welcome-title em { padding-left: .35em; }

  .intro-grid > :nth-child(n) { grid-column: 1 / -1; margin-top: 0; }
  .intro-grid > :nth-child(3) { margin-top: 1.2rem; }
  .whole-body { margin-top: 2.4rem; }
  .wb-line { max-width: 40px; }

  .area-cards { grid-template-columns: minmax(0, 1fr); }

  .voices-head { padding-left: 0; padding-top: 3rem; }
  .quote-mark { top: -.28em; font-size: 6.5rem; }
  .quotes {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    scroll-padding-inline: var(--gutter);
    scrollbar-width: none;
  }
  .quotes::-webkit-scrollbar { display: none; }
  .quote-card { scroll-snap-align: start; }
  .quote-dots { display: flex; justify-content: center; gap: 10px; margin-top: 2rem; }
  .quote-dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, .3); transition: background-color .3s; }
  .quote-dots i.on { background: var(--gold-light); }

  .costs-grid { grid-template-columns: minmax(0, 1fr); }
  .room-frame { aspect-ratio: 4 / 3; }

  .about-grid { grid-template-columns: minmax(0, 1fr); }
  .portrait-wrap { max-width: 400px; margin-right: 22px; }
}

@media (max-width: 640px) {
  .steps { grid-template-columns: minmax(0, 1fr); row-gap: 2.2rem; }
  .steps::before, .steps::after { display: block; left: 22px; right: auto; top: 22px; bottom: 22px; width: 1px; height: auto; }
  .steps::after { transform-origin: top; transform: scaleY(var(--line)); }
  .step { display: grid; grid-template-columns: 44px minmax(0, 1fr); column-gap: 1.3rem; }
  .step-no { grid-row: span 2; margin: 0; }
  .step h3 { padding-top: .5rem; }

  .fact { grid-template-columns: minmax(0, 1fr); gap: .35rem; }
  .fact dt { padding-top: 0; }

  .field-row, .field-row.row-date { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 2.2rem; }
  .footer-bar-inner { flex-direction: column; }

  .hero-mark { width: 54px; height: 54px; margin-bottom: .6rem; }
  .hero-content { bottom: calc(96px + env(safe-area-inset-bottom, 0px)); }
  .hero-title { font-size: 2.5rem; }
  .hero-sub { font-size: .6rem; letter-spacing: .26em; line-height: 2; }
  .hero-sub .sep { display: block; height: 0; overflow: hidden; }
  .hero-shade { background: linear-gradient(to top, rgba(4, 30, 45, .74) 0%, rgba(4, 30, 45, .4) 26%, rgba(4, 30, 45, 0) 48%); }
}

@media (max-width: 380px) { .menu-toggle-label { display: none; } }
@media (max-width: 340px) { .choices-3 { grid-template-columns: minmax(0, 1fr); } }

@media (max-aspect-ratio: 3/4) { .hero { background-image: url("../video/hero-mobile-poster.jpg"); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
}
