/* ============================================================
   PECAVER YACHTING — Design-System „Stilles Wasser“
   Editorial, ruhig, maritim ohne Kitsch. Vanilla CSS.
   ============================================================ */

/* ---------- Fonts (self-hosted, latin, woff2) ---------- */
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 300; font-display: swap; src: url("/assets/fonts/cormorant-garamond-latin-300-normal.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 400; font-display: swap; src: url("/assets/fonts/cormorant-garamond-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 500; font-display: swap; src: url("/assets/fonts/cormorant-garamond-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: italic; font-weight: 400; font-display: swap; src: url("/assets/fonts/cormorant-garamond-latin-400-italic.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("/assets/fonts/inter-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("/assets/fonts/inter-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("/assets/fonts/inter-latin-600-normal.woff2") format("woff2"); }

/* ---------- Tokens ---------- */
:root {
  --ink: #0B1D26;
  --ink-2: #122B38;
  --paper: #F7F4ED;
  --paper-2: #EFEAE0;
  --text: #1E2D33;
  --text-mute: #56666D;     /* leicht dunkler als Konzept-Wert: AA auf paper-2 */
  --mist: #A7B6BB;          /* gedämpfter Text auf dunkel */
  --bronze: #A98B5C;        /* Hairlines/Akzente auf dunkel */
  --bronze-ink: #7E6539;    /* Eyebrow-Text auf hell (AA) */
  --sea: #34646A;
  --line: rgba(30, 45, 51, .12);
  --line-light: rgba(247, 244, 237, .16);
  --serif: "Cormorant Garamond", "Iowan Old Style", Palatino, serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;
  --header-h: 76px;
  --ease-out: cubic-bezier(.22, .61, .21, 1);
  --container: 1240px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
a { color: var(--sea); text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
::selection { background: var(--sea); color: var(--paper); }

:focus-visible { outline: 2px solid var(--sea); outline-offset: 3px; border-radius: 2px; }
.site-header :focus-visible, .on-dark :focus-visible, .site-footer :focus-visible { outline-color: var(--bronze); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--paper); padding: 12px 20px; font-size: 14px;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Typografie ---------- */
h1, h2, h3, .display { font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: -.015em; color: inherit; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 300; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 400; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); font-weight: 500; line-height: 1.2; }

.eyebrow {
  display: block; font-family: var(--sans); font-size: 11.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--bronze-ink);
  margin-bottom: 1.1rem;
}
.on-dark .eyebrow, .hero .eyebrow { color: var(--bronze); }

.lead { font-size: clamp(1.08rem, 1.6vw, 1.28rem); line-height: 1.65; max-width: 38em; }
.mute { color: var(--text-mute); }
.small { font-size: .88rem; }

.serif-num { font-family: var(--serif); font-weight: 300; }

/* Fließtext-Container */
.prose p + p { margin-top: 1.2em; }
.prose a, .lnk {
  color: inherit;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size .45s var(--ease-out);
  padding-bottom: 1px;
}
.lnk { color: var(--sea); background-size: 0 1px; }
.lnk:hover, .lnk:focus-visible { background-size: 100% 1px; }
.prose a:hover { background-size: 0 1px; }

/* Sektions-Titel mit Wasserlinie */
.section-head { max-width: 720px; margin-bottom: clamp(2.4rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.waterline { position: relative; padding-bottom: 1.4rem; }
.waterline::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 72px; height: 1px;
  background: var(--bronze); transform-origin: left center;
}
.section-head.center .waterline::after { left: 50%; margin-left: -36px; }
.js [data-reveal] .waterline::after, .js [data-reveal].waterline::after { transform: scaleX(0); transition: transform 1.1s var(--ease-out) .25s; }
.js [data-reveal].is-in .waterline::after, .js [data-reveal].is-in .waterline::after { transform: scaleX(1); }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 4vw, 48px); }
.container-narrow { max-width: 880px; }
main { display: block; }

.section { padding-block: clamp(80px, 10vw, 152px); }
.section-tight { padding-block: clamp(64px, 7vw, 104px); }
.bg-paper-2 { background: var(--paper-2); }
.bg-ink { background: var(--ink); color: var(--paper); }
.on-dark { color: var(--paper); }
.on-dark .mute { color: var(--mist); }

/* Body ohne Foto-Hero: Platz für fixen Header */
body:not(.has-dark-hero) main { padding-top: var(--header-h); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-family: var(--sans); font-size: 13.5px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; line-height: 1;
  padding: 18px 30px; border: 1px solid currentColor; border-radius: 2px;
  color: var(--ink); transition: color .35s ease, background-color .35s ease, border-color .35s ease, transform .35s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-primary:hover { background: var(--ink-2); }
.on-dark .btn-primary, .hero .btn-primary, .cta-block .btn-primary, .embed-shell .btn-primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.on-dark .btn-primary:hover, .embed-shell .btn-primary:hover { background: #fff; }
.btn-ghost { color: var(--paper); border-color: rgba(247, 244, 237, .55); }
.btn-ghost:hover { border-color: var(--paper); background: rgba(247, 244, 237, .06); }
.btn-cta {
  font-size: 12px; padding: 13px 20px; color: var(--paper);
  border-color: rgba(247, 244, 237, .45); border-radius: 2px; white-space: nowrap;
}
.btn-cta:hover { border-color: var(--bronze); color: #fff; background: rgba(169, 139, 92, .12); }
.btn-cta .label-short { display: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  transition: background-color .45s ease, box-shadow .45s ease;
}
.site-header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--line-light); opacity: 0; transition: opacity .45s ease;
}
body:not(.has-dark-hero) .site-header,
.site-header.is-solid {
  background: rgba(11, 29, 38, .92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
body:not(.has-dark-hero) .site-header::after, .site-header.is-solid::after { opacity: 1; }

.header-inner {
  max-width: var(--container); margin-inline: auto; height: 100%;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; flex-direction: column; line-height: 1; color: var(--paper); }
.brand-name { font-family: var(--serif); font-size: 24px; font-weight: 500; letter-spacing: .34em; text-transform: uppercase; }
.brand-sub { font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: .52em; text-transform: uppercase; color: var(--bronze); margin-top: 5px; }

.main-nav ul { display: flex; gap: clamp(16px, 2.2vw, 30px); }
.nav-link {
  font-size: 13.5px; font-weight: 500; letter-spacing: .04em; color: rgba(247, 244, 237, .85);
  background-image: linear-gradient(var(--bronze), var(--bronze));
  background-size: 0 1px; background-repeat: no-repeat; background-position: 0 100%;
  padding-bottom: 4px; transition: color .3s ease, background-size .45s var(--ease-out);
}
.nav-link:hover, .nav-link:focus-visible { color: #fff; background-size: 100% 1px; }
.nav-link.is-active { color: #fff; background-size: 100% 1px; }
.nav-overlay-contact { display: none; }
.header-actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle { display: none; position: relative; z-index: 120; width: 44px; height: 44px; }
.nav-toggle-bar {
  display: block; width: 24px; height: 1.5px; background: var(--paper); margin: 5px auto;
  transition: transform .4s var(--ease-out), opacity .3s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0; z-index: 110; background: var(--ink);
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 96px clamp(28px, 8vw, 64px) 48px;
    visibility: hidden; opacity: 0; transition: opacity .45s ease, visibility 0s linear .45s;
  }
  .main-nav.is-open { visibility: visible; opacity: 1; transition: opacity .45s ease; }
  .main-nav ul { flex-direction: column; gap: 6px; }
  .main-nav .nav-link {
    font-family: var(--serif); font-size: clamp(2rem, 8vw, 2.8rem); font-weight: 300;
    letter-spacing: 0; color: var(--paper); padding-bottom: 6px;
  }
  .js .main-nav li { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s var(--ease-out); }
  .js .main-nav.is-open li { opacity: 1; transform: none; }
  .js .main-nav.is-open li:nth-child(1) { transition-delay: .08s; }
  .js .main-nav.is-open li:nth-child(2) { transition-delay: .14s; }
  .js .main-nav.is-open li:nth-child(3) { transition-delay: .2s; }
  .js .main-nav.is-open li:nth-child(4) { transition-delay: .26s; }
  .js .main-nav.is-open li:nth-child(5) { transition-delay: .32s; }
  .js .main-nav.is-open li:nth-child(6) { transition-delay: .38s; }
  .nav-overlay-contact {
    display: flex; flex-direction: column; gap: 8px; margin-top: 40px;
    padding-top: 28px; border-top: 1px solid var(--line-light);
  }
  .nav-overlay-contact a { color: var(--mist); font-size: 15px; }
  .nav-overlay-contact a:hover { color: var(--paper); }
  body.nav-open { overflow: hidden; }
  .header-actions .btn-cta { padding: 11px 14px; font-size: 11px; }
}

/* Kompakter Header für schmale Viewports: Burger + CTA dürfen NIE clippen */
.nav-toggle { flex-shrink: 0; }
@media (max-width: 600px) {
  .header-inner { gap: 16px; }
  .header-actions { gap: 12px; flex-shrink: 0; }
  .header-actions .btn-cta { padding: 10px 12px; }
  .btn-cta .label-long { display: none; }
  .btn-cta .label-short { display: inline; }
}
@media (max-width: 400px) {
  .header-inner { padding-inline: 16px; gap: 12px; }
  .header-actions { gap: 10px; }
  .brand-name { font-size: 19px; letter-spacing: .22em; }
  .brand-sub { font-size: 8px; letter-spacing: .4em; margin-top: 4px; }
  .main-nav { padding-inline: 24px; }
}

/* ---------- Hero (Foto, dunkel) ---------- */
.hero {
  position: relative; display: flex; align-items: flex-end;
  min-height: min(94vh, 980px); background: var(--ink); color: var(--paper); overflow: hidden;
}
.hero-sub { min-height: min(78vh, 760px); }
.hero-media, .hero-media picture { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.js .hero-media img { transform: scale(1); }
.js .hero.is-ready .hero-media img { animation: kenburns 14s var(--ease-out) forwards; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.06); } }
/* Zweischichtiger Scrim: kräftiger Verlauf hinter der Textzone unten,
   dezente Vollton-Abdunklung übers ganze Bild — Lesbarkeit ohne Erstickung. */
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(11, 29, 38, .85) 0%, rgba(11, 29, 38, .62) 32%, rgba(11, 29, 38, .30) 54%, rgba(11, 29, 38, 0) 78%),
    linear-gradient(to bottom, rgba(11, 29, 38, .45) 0%, rgba(11, 29, 38, 0) 26%),
    rgba(11, 29, 38, .18);
}
.hero-content {
  position: relative; width: 100%; max-width: var(--container); margin-inline: auto;
  padding: calc(var(--header-h) + 48px) clamp(20px, 4vw, 48px) clamp(56px, 9vh, 110px);
}
.hero-title { max-width: 13em; }
.hero-title .hl { display: block; overflow: hidden; }
.hero-title .hl > span { display: block; }
.js .hero-title .hl > span { transform: translateY(112%); transition: transform .9s var(--ease-out); }
.js .hero.is-ready .hero-title .hl > span { transform: none; }
.hero-title .hl:nth-child(2) > span { transition-delay: 90ms; }
.hero-title .hl:nth-child(3) > span { transition-delay: 180ms; }
.hero-lead { margin-top: 1.6rem; max-width: 36em; color: rgba(247, 244, 237, .88); }
.js .hero-fade { opacity: 0; transform: translateY(18px); transition: opacity .9s ease .5s, transform .9s var(--ease-out) .5s; }
.js .hero.is-ready .hero-fade { opacity: 1; transform: none; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 2.2rem; }
.hero-tel { font-size: 15px; color: rgba(247, 244, 237, .85); }
.hero-tel:hover { color: #fff; }

/* Trust-Zeile */
.trust-line { border-top: 1px solid var(--line-light); background: var(--ink); color: var(--mist); }
.trust-line .container {
  display: flex; flex-wrap: wrap; gap: 8px 0; padding-block: 18px;
  font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase;
}
.trust-line span { white-space: nowrap; }
.trust-line span:not(:last-child)::after { content: "·"; margin-inline: 14px; color: var(--bronze); }

/* ---------- Hero (Text, hell) ---------- */
.page-head { padding: clamp(72px, 10vw, 128px) 0 clamp(40px, 6vw, 72px); }
.page-head h1 { max-width: 14em; }
.page-head .lead { margin-top: 1.5rem; }

/* ---------- Editorial-Leistungsliste (01–04) ---------- */
.svc-list { border-top: 1px solid var(--line); }
.svc-item { border-bottom: 1px solid var(--line); }
.svc-link {
  display: grid; grid-template-columns: 110px 1fr auto; gap: clamp(16px, 4vw, 56px);
  align-items: baseline; padding: clamp(28px, 4vw, 44px) 8px; color: var(--text);
  transition: background-color .4s ease;
}
.svc-link:hover { background: rgba(239, 234, 224, .6); }
.svc-num { font-family: var(--serif); font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 300; color: var(--bronze-ink); }
.svc-title { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 400; line-height: 1.15; }
.svc-text { margin-top: .6rem; max-width: 34em; color: var(--text-mute); font-size: .98rem; }
.svc-more { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--sea); white-space: nowrap; }
.svc-link:hover .svc-more { color: var(--ink); }
@media (max-width: 720px) {
  .svc-link { grid-template-columns: 1fr; gap: 10px; }
  .svc-more { margin-top: 4px; }
}

/* ---------- Schritte ---------- */
.steps-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); }
.step-num { font-family: var(--serif); font-size: clamp(2.6rem, 4vw, 3.6rem); font-weight: 300; color: var(--bronze-ink); line-height: 1; }
.step h3 { margin-top: .9rem; }
.step p { margin-top: .7rem; color: var(--text-mute); font-size: .98rem; }
@media (max-width: 820px) { .steps-3 { grid-template-columns: 1fr; } }

.steps-line { max-width: 720px; counter-reset: stepnr; }
.steps-line li {
  counter-increment: stepnr; position: relative;
  padding: 0 0 clamp(28px, 4vw, 40px) clamp(64px, 8vw, 88px);
}
.steps-line li::before {
  content: counter(stepnr, decimal-leading-zero);
  position: absolute; left: 0; top: -2px;
  font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 300; color: var(--bronze-ink);
}
.steps-line li::after {
  content: ""; position: absolute; left: 17px; top: 44px; bottom: 10px; width: 1px; background: var(--line);
}
.steps-line li:last-child { padding-bottom: 0; }
.steps-line li:last-child::after { display: none; }
.steps-line strong { font-weight: 600; }
.steps-line p { color: var(--text-mute); margin-top: .25rem; font-size: .98rem; }

/* ---------- Feature (asymmetrisch, Bild + Text) ---------- */
.feature { display: grid; grid-template-columns: repeat(12, 1fr); align-items: center; gap: clamp(24px, 4vw, 56px); }
.feature-media { grid-column: 1 / span 7; }
.feature-body { grid-column: 8 / span 5; }
.feature.is-flipped .feature-media { grid-column: 6 / span 7; order: 2; }
.feature.is-flipped .feature-body { grid-column: 1 / span 5; order: 1; }
.feature-media .frame { transform: translateY(clamp(0px, 2vw, 28px)); }
.feature-body h2 { max-width: 9em; }
.feature-body .prose { margin-top: 1.3rem; }
.feature-cta { margin-top: 1.8rem; }
.specs-line { margin-top: 1.6rem; padding-top: 1.2rem; border-top: 1px solid var(--line); font-family: var(--serif); font-size: 1.12rem; color: var(--text-mute); }
.on-dark .specs-line { border-top-color: var(--line-light); color: var(--mist); }
@media (max-width: 880px) {
  .feature, .feature.is-flipped { display: block; }
  .feature-body, .feature.is-flipped .feature-body { margin-top: 28px; }
  .feature-media .frame { transform: none; }
}

/* Bild-Rahmen mit Hover-Zoom */
.frame { overflow: hidden; border-radius: 2px; }
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
a .frame img:hover, .frame.zoom img:hover { transform: scale(1.03); }
.frame-tall img { aspect-ratio: 4 / 5; }
.frame-wide img { aspect-ratio: 16 / 10; }
.frame-43 img { aspect-ratio: 4 / 3; }

/* ---------- Revier (2 Spalten) ---------- */
.revier { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(28px, 4vw, 56px); }
.revier-intro { grid-column: 1 / span 5; }
.revier-media { grid-column: 1 / span 5; grid-row: 2; }
.revier-cols { grid-column: 7 / span 6; grid-row: 1 / span 2; display: flex; flex-direction: column; gap: clamp(28px, 4vw, 48px); justify-content: center; }
.revier-col { border-top: 1px solid var(--line); padding-top: 1.4rem; }
.revier-col h3 { font-family: var(--serif); }
.revier-col p { margin-top: .7rem; color: var(--text-mute); }
@media (max-width: 880px) {
  .revier { display: block; }
  .revier-cols { margin-top: 32px; gap: 28px; }
  .revier-media { margin-top: 32px; }
}

/* ---------- Zitat / Über-Teaser ---------- */
.quote-section { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(28px, 4vw, 56px); align-items: center; }
.quote-media { grid-column: 1 / span 4; }
.quote-body { grid-column: 6 / span 7; }
.bigquote { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(1.7rem, 3.4vw, 2.7rem); line-height: 1.25; letter-spacing: -.01em; }
.bigquote::before { content: "\201E"; }
.bigquote::after { content: "\201C"; }
.quote-attrib { margin-top: 1rem; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mute); }
.quote-body .prose { margin-top: 1.6rem; max-width: 36em; }
@media (max-width: 820px) {
  .quote-section { display: block; }
  .quote-media { max-width: 320px; margin-bottom: 28px; }
}

/* ---------- CTA-Block (dunkel, full-bleed) ---------- */
.cta-block { background: var(--ink); color: var(--paper); padding-block: clamp(88px, 11vw, 160px); position: relative; overflow: hidden; }
.cta-inner { text-align: center; max-width: 760px; }
.cta-title { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 300; }
.cta-text { margin: 1.4rem auto 0; max-width: 32em; color: var(--mist); }
.cta-actions { margin-top: 2.4rem; }
.cta-contact { margin-top: 1.6rem; font-size: 15px; color: var(--mist); }
.cta-contact a { color: var(--paper); }
.cta-contact a:hover { color: #fff; }

/* ---------- Karten / Touren ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 32px); }
@media (max-width: 880px) { .cards-3 { grid-template-columns: 1fr; } }
.card {
  border: 1px solid var(--line); border-radius: 3px; padding: clamp(28px, 3vw, 40px);
  background: var(--paper); display: flex; flex-direction: column;
  transition: transform .5s var(--ease-out), box-shadow .5s ease;
}
.js .card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -28px rgba(11, 29, 38, .35); }
.card .eyebrow { margin-bottom: .8rem; }
.card h3 { font-size: clamp(1.5rem, 2.2vw, 1.85rem); font-weight: 400; }
.card p { margin-top: .9rem; color: var(--text-mute); font-size: .97rem; flex: 1; }
.card-price { margin-top: 1.6rem; padding-top: 1.3rem; border-top: 1px solid var(--line); }
.card-price strong { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; display: block; }
.card-price span { display: block; margin-top: .35rem; font-size: .84rem; color: var(--text-mute); line-height: 1.5; }
.footnote { margin-top: 2rem; font-size: .86rem; color: var(--text-mute); max-width: 52em; }

/* ---------- Spec-Grid ---------- */
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(32px, 5vw, 72px); max-width: 880px; }
.spec-grid > div { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.spec-grid dt { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute); }
.spec-grid dd { font-family: var(--serif); font-size: 1.25rem; text-align: right; }
@media (max-width: 640px) { .spec-grid { grid-template-columns: 1fr; } }

/* Preis-Zeilen (Törns) */
.price-rows { max-width: 720px; }
.price-rows > div { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--line); }
.price-rows dt { font-size: 1rem; }
.price-rows dd { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }

/* ---------- Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 24px); }
.gallery .frame img { aspect-ratio: 4 / 3; }
.gallery .g-tall img { aspect-ratio: 3 / 4; }
.gallery figcaption { margin-top: .6rem; font-size: .82rem; color: var(--text-mute); }
@media (max-width: 720px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Inhalts-Listen (Training etc.) ---------- */
.topic-list { max-width: 760px; }
.topic-list li { border-top: 1px solid var(--line); padding: clamp(20px, 3vw, 30px) 0; }
.topic-list li:last-child { border-bottom: 1px solid var(--line); }
.topic-list strong { display: block; font-family: var(--serif); font-size: 1.3rem; font-weight: 500; margin-bottom: .4rem; }
.topic-list p { color: var(--text-mute); font-size: .98rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  padding: 22px 4px; cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.45rem); font-weight: 500;
  transition: color .3s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--sea); }
.faq summary::after {
  content: "+"; font-family: var(--serif); font-size: 1.6rem; font-weight: 300; color: var(--bronze-ink);
  transition: transform .4s var(--ease-out); flex-shrink: 0; line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 4px 26px; color: var(--text-mute); max-width: 44em; }

/* ---------- Click-to-load Embeds (Passepartout in --ink, Konzept §5) ---------- */
.embed-shell {
  background: var(--ink); color: var(--paper); border-radius: 3px;
  padding: clamp(14px, 2.2vw, 26px);
  border: 1px solid rgba(247, 244, 237, .08);
}
.embed-stage { position: relative; background: var(--ink-2); border: 1px solid var(--line-light); border-radius: 2px; overflow: hidden; }
.embed-placeholder { padding: clamp(56px, 8vw, 112px) clamp(24px, 5vw, 64px); text-align: center; }
.embed-placeholder .eyebrow { color: var(--bronze); }
.embed-placeholder h3 { font-weight: 300; font-size: clamp(1.7rem, 3.2vw, 2.5rem); color: var(--paper); }
.embed-placeholder p { margin: 1rem auto 0; max-width: 36em; color: var(--mist); }
.embed-placeholder .btn { margin-top: 1.8rem; }
.embed-note { margin-top: 1.2rem; font-size: .8rem; color: rgba(167, 182, 187, .75); }
.embed-stage iframe { display: block; width: 100%; border: 0; background: var(--paper); }
.embed-fallback { padding: 48px 24px; text-align: center; color: var(--mist); }
.embed-fallback a { color: var(--paper); }
.embed-ratio iframe { aspect-ratio: 16 / 9; height: auto; min-height: 380px; }

/* ---------- Anfrage-Wizard ---------- */
.wizard-wrap { max-width: 820px; }
.wizard-progress { margin-bottom: clamp(28px, 4vw, 44px); }
.wizard-progress-meta { display: flex; justify-content: space-between; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 10px; }
.waterline-track { height: 2px; background: var(--line); position: relative; overflow: hidden; border-radius: 1px; }
.waterline-bar { position: absolute; inset: 0; background: var(--sea); transform-origin: left center; transform: scaleX(0); transition: transform .7s var(--ease-out); }

.wizard-step legend, .wizard-q { font-family: var(--serif); font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 400; line-height: 1.15; margin-bottom: clamp(20px, 3vw, 32px); padding: 0; }
.wizard-step fieldset { border: 0; margin: 0; padding: 0; }
.wizard-step fieldset + fieldset { margin-top: clamp(28px, 4vw, 40px); }

.opt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.opt-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 640px) { .opt-grid, .opt-grid.cols-3 { grid-template-columns: 1fr; } }
.opt-card { position: relative; display: block; }
.opt-card input { position: absolute; opacity: 0; inset: 0; pointer-events: none; }
.opt-card span {
  display: block; padding: 20px 22px; border: 1px solid var(--line); border-radius: 3px;
  background: #fff; font-size: 1rem; line-height: 1.45; cursor: pointer;
  transition: border-color .3s ease, background-color .3s ease, transform .35s var(--ease-out), box-shadow .35s ease;
}
.opt-card small { display: block; margin-top: 4px; color: var(--text-mute); font-size: .85rem; }
.opt-card span:hover { border-color: var(--sea); transform: translateY(-2px); }
.opt-card input:checked + span { border-color: var(--sea); background: #fff; box-shadow: inset 0 0 0 1px var(--sea); }
.opt-card input:focus-visible + span { outline: 2px solid var(--sea); outline-offset: 2px; }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--text);
  padding: 14px 16px; border: 1px solid var(--line); border-radius: 3px; background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--sea); outline-offset: 0; border-color: var(--sea); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.field-check { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; color: var(--text-mute); }
.field-check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--sea); flex-shrink: 0; }

.wizard-nav { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: clamp(28px, 4vw, 44px); }
.wizard-back { font-size: 14px; color: var(--text-mute); }
.wizard-back:hover { color: var(--ink); }
.wizard-error { margin-top: 14px; color: #8C3B2E; font-size: .92rem; }

.summary-list { border-top: 1px solid var(--line); }
.summary-list > div { display: flex; justify-content: space-between; gap: 20px; align-items: baseline; padding: 14px 2px; border-bottom: 1px solid var(--line); }
.summary-list dt { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute); flex-shrink: 0; }
.summary-list dd { text-align: right; }
.summary-list .sum-edit { margin-left: 12px; font-size: .82rem; color: var(--sea); white-space: nowrap; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.wizard-fail { border: 1px solid var(--line); border-radius: 3px; padding: clamp(24px, 4vw, 40px); background: var(--paper-2); }
.wizard-fail h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.wizard-fail p { margin-top: .8rem; color: var(--text-mute); }
.wizard-fail .btn { margin-top: 1.4rem; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(28px, 4vw, 64px); }
.contact-info { grid-column: 1 / span 6; }
.contact-media { grid-column: 8 / span 5; }
.contact-list { margin-top: 2rem; }
.contact-list > div { padding: 18px 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 2px; }
.contact-list dt { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-mute); }
.contact-list dd { font-family: var(--serif); font-size: 1.4rem; }
@media (max-width: 820px) { .contact-grid { display: block; } .contact-media { margin-top: 36px; max-width: 460px; } }

/* ---------- Legal / Prosa-Seiten ---------- */
.legal h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin-top: 2.6rem; }
.legal p { margin-top: .9rem; max-width: 46em; }
.legal ul { margin-top: .9rem; padding-left: 1.2em; list-style: disc; max-width: 44em; }
.legal li { margin-top: .35rem; }
.address-block { font-style: normal; line-height: 1.8; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--mist); padding: clamp(64px, 8vw, 104px) 0 36px; border-top: 1px solid rgba(247, 244, 237, .06); }
.footer-claim { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 2.6vw, 2rem); color: var(--paper); max-width: 16em; }
.footer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 260px)); gap: 32px; margin-top: clamp(40px, 6vw, 64px); }
.footer-head { font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--bronze); margin-bottom: 16px; }
.footer-col li { margin-bottom: 9px; font-size: 14.5px; }
.footer-col a { color: var(--mist); transition: color .3s ease; }
.footer-col a:hover { color: var(--paper); }
.footer-base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  margin-top: clamp(48px, 6vw, 72px); padding-top: 24px; border-top: 1px solid rgba(247, 244, 237, .08);
  font-size: 13px; color: rgba(167, 182, 187, .7);
}
.footer-base a { color: inherit; }
.footer-base a:hover { color: var(--paper); }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Wellen-Divider ---------- */
.wave-divider { position: relative; height: 64px; overflow: hidden; }
.wave { position: absolute; inset: 0; width: 200%; display: flex; }
.wave svg { width: 50%; height: 100%; flex-shrink: 0; }
.wave-1 svg { fill: var(--sea); opacity: .07; }
.wave-2 svg { fill: var(--ink); opacity: .05; }
.js .wave-1 { animation: drift 18s linear infinite; }
.js .wave-2 { animation: drift 26s linear infinite reverse; }
@keyframes drift { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.bg-ink .wave-1 svg, .cta-block .wave-1 svg { fill: var(--paper); opacity: .05; }

/* ---------- Scroll-Reveals ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s var(--ease-out); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js [data-reveal-children] > * { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s var(--ease-out); }
.js [data-reveal-children].is-in > * { opacity: 1; transform: none; }
.js [data-reveal-children].is-in > *:nth-child(2) { transition-delay: .09s; }
.js [data-reveal-children].is-in > *:nth-child(3) { transition-delay: .18s; }
.js [data-reveal-children].is-in > *:nth-child(4) { transition-delay: .27s; }
.js [data-reveal-children].is-in > *:nth-child(5) { transition-delay: .36s; }
.js [data-reveal-children].is-in > *:nth-child(6) { transition-delay: .45s; }

/* Parallax */
[data-parallax] { will-change: transform; }

/* ---------- 404 / Danke ---------- */
.page-statement { min-height: 60vh; display: flex; align-items: center; }
.page-statement .eyebrow { margin-bottom: 1.4rem; }
.page-statement h1 { max-width: 12em; }
.page-statement .lead { margin-top: 1.4rem; }
.page-statement .actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }

/* ---------- Reduced Motion: ALLES aus ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal], .js [data-reveal-children] > *,
  .js .hero-title .hl > span, .js .hero-fade { opacity: 1 !important; transform: none !important; }
  .js .hero-media img { animation: none !important; transform: none !important; }
  .js .wave-1, .js .wave-2 { animation: none !important; }
  .js .waterline::after, .js [data-reveal] .waterline::after { transform: scaleX(1) !important; }
}
