/* =========================================================
   C13 Casablanca – Stil "Höhenprofil / Editorial"
   Edles Sand-Beige · Sonnenuntergang/Gold · Atlantik-Teal
   Typo: Fraunces (Display) · Archivo (UI/Body) · IBM Plex Mono (Daten)
   ========================================================= */

:root {
  /* Flächen */
  --sand:    #E9E0CF;
  --linen:   #F2ECDF;
  --cream:   #FBF8F1;
  --espresso:#241C12;

  /* Text */
  --ink:      #241F1A;
  --ink-soft: #6A6052;

  /* Akzente */
  --sunset:   #DC7536;   /* Button-Flächen */
  --sunset-d: #B0501F;   /* Text-Akzent (kontraststark) */
  --gold:     #C39230;
  --teal:     #1E5A63;   /* kühler Gegenpol, sparsam */
  --teal-d:   #16454C;

  --line:     #D9CDB6;

  /* Typo */
  --font-display: "Fraunces", Georgia, serif;
  --font-ui:      "Archivo", system-ui, -apple-system, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, monospace;

  /* Maße */
  --container: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow:    0 22px 60px -30px rgba(36, 28, 18, 0.5);
  --shadow-sm: 0 10px 30px -18px rgba(36, 28, 18, 0.45);

  /* Vertikaler Rhythmus */
  --space-section: clamp(3.5rem, 8vw, 7.5rem);
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { margin: 0; color: var(--ink); }
.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.015em;
}
p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section { padding: var(--space-section) 0; }
.section-title { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 2.5rem; }

.kicker {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--sunset-d);
  margin: 0 0 1rem;
}

/* ---------- Zugänglichkeit ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: var(--cream);
  padding: 0.6rem 1rem; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--sunset); outline-offset: 3px; border-radius: 4px; }

/* ---------- Scroll-Fortschritt ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 120; }
.scroll-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--sunset)); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn-primary { background: var(--sunset); color: var(--ink); }           /* Orange + dunkler Text = AA-konform */
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.75); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

/* ---------- Pfeil-Links ---------- */
.link-arrow {
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--sunset-d);
  display: inline-flex; align-items: center; gap: .45rem;
}
.link-arrow span { transition: transform .2s ease; }
.link-arrow:hover span { transform: translateX(4px); }

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(233, 224, 207, 0.86);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 116px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 68px; width: auto; display: block; }
/* Logo-Umschaltung: hell über transparentem Hero, dunkel bei beigem Header */
.brand-logo--dark { display: none; }
.site-header.scrolled .brand-logo--light,
.site-header.solid .brand-logo--light { display: none; }
.site-header.scrolled .brand-logo--dark,
.site-header.solid .brand-logo--dark { display: block; }
.footer-logo { height: 38px; width: auto; margin-bottom: 0.7rem; }

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav-link {
  font-family: var(--font-ui); font-weight: 500; font-size: 1.08rem;
  padding: 0.55rem 1.05rem; border-radius: 999px; color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
  transition: background .15s ease, color .15s ease;
}
.nav-link:hover { background: rgba(255,255,255,.16); }
.nav-link.is-active { color: #fff; }
.nav-cta { background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.6); color: #fff; }
.nav-cta:hover { background: var(--sunset); border-color: var(--sunset); color: var(--ink); text-shadow: none; }

.site-header.scrolled .nav-link { color: var(--ink); text-shadow: none; }
.site-header.scrolled .nav-link:hover { background: rgba(195,146,48,.14); }
.site-header.scrolled .nav-link.is-active { color: var(--sunset-d); }
.site-header.scrolled .nav-cta { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.site-header.scrolled .nav-cta:hover { background: var(--sunset); border-color: var(--sunset); color: var(--ink); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: transform .25s ease, opacity .2s ease, background .25s ease; }
.site-header.scrolled .nav-toggle span { background: var(--ink); }

/* Fester (beiger) Header für Seiten mit hellem Hero */
.site-header.solid { background: rgba(233, 224, 207, 0.92); backdrop-filter: blur(10px); border-bottom-color: var(--line); }
.site-header.solid .nav-link { color: var(--ink); text-shadow: none; }
.site-header.solid .nav-link:hover { background: rgba(195,146,48,.14); }
.site-header.solid .nav-link.is-active { color: var(--sunset-d); }
.site-header.solid .nav-cta { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.site-header.solid .nav-cta:hover { background: var(--sunset); border-color: var(--sunset); color: var(--ink); }
.site-header.solid .nav-toggle span { background: var(--ink); }

/* ============ SPLIT-HERO (helles Bild) ============ */
.split-hero { background: var(--sand); padding: calc(116px + clamp(1.8rem, 4vw, 3.5rem)) 0 var(--space-section); }
.split-hero-grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split-hero-copy h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.04; margin-bottom: 1.1rem; }
.split-hero-sub { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--ink-soft); max-width: 32rem; margin-bottom: 1.7rem; }
.split-hero-figure { position: relative; margin: 0; }
.split-hero-figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split-hero-cap {
  position: absolute; left: 1rem; bottom: 1rem;
  background: var(--espresso); color: var(--cream);
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.5rem 0.85rem; border-radius: 8px;
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: clamp(580px, 90vh, 880px);
  display: flex; align-items: flex-end; color: #fff; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(20,15,10,.72) 0%, rgba(20,15,10,.32) 36%, rgba(20,15,10,0) 68%),
    linear-gradient(90deg, rgba(20,15,10,.34) 0%, rgba(20,15,10,0) 52%);
}
.hero-content { position: relative; z-index: 2; padding-bottom: clamp(4rem, 10vh, 7rem); padding-top: 7rem; max-width: 820px; }
.eyebrow { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.24em; font-size: 0.72rem; margin-bottom: 1.1rem; }
.eyebrow--light { color: rgba(255,255,255,.85); }
.hero-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 5.4rem); line-height: 1.0; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 1.1rem; text-shadow: 0 1px 2px rgba(0,0,0,.5), 0 3px 26px rgba(0,0,0,.4);
}
.hero-title em { font-style: italic; color: var(--sunset); }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 38rem; color: rgba(255,255,255,.92); margin-bottom: 1.8rem; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.hero-profile { position: absolute; bottom: 0; left: 0; width: 100%; height: 110px; z-index: 1; color: rgba(255,255,255,.4); pointer-events: none; }

/* Rotierendes Siegel */
.seal {
  position: absolute; z-index: 3; right: clamp(1.5rem, 5vw, 4rem); bottom: clamp(4rem, 11vh, 7.5rem);
  width: 132px; height: 132px; display: grid; place-items: center; color: #fff;
}
.seal-ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 22s linear infinite; }
.seal-ring text { font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; letter-spacing: 1px; fill: #fff; }
.seal-center { position: relative; display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: var(--sunset); color: var(--ink); box-shadow: 0 8px 24px -8px rgba(0,0,0,.5); }
.seal:hover .seal-ring { animation-play-state: paused; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ VERTRAUENS-BAND ============ */
.trust { background: var(--espresso); color: var(--cream); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: 1.6rem 0; }
.trust-item { display: flex; align-items: center; gap: 0.9rem; }
.trust-icon { width: 30px; height: 30px; flex: none; fill: none; stroke: var(--sunset); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.trust-item strong { display: block; font-size: 0.98rem; font-weight: 600; }
.trust-item span { display: block; font-size: 0.82rem; color: rgba(255,255,255,.62); }

/* ============ INTRO + KENNZAHLEN ============ */
.intro { background: var(--linen); }
.intro-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.intro-text h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1.1rem; }
.intro-text p { color: var(--ink-soft); font-size: 1.08rem; margin: 0; }
.stat-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.stat-list li { display: flex; align-items: baseline; gap: 1rem; padding: 1.1rem 1.3rem; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.stat-num { font-family: var(--font-mono); font-weight: 600; font-size: 1.55rem; color: var(--sunset-d); min-width: 6rem; font-variant-numeric: tabular-nums; }
.stat-label { color: var(--ink-soft); font-size: 0.95rem; }

/* ============ TRIPTYCHON ============ */
.triptych { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; background: var(--espresso); }
.tile { position: relative; min-height: clamp(320px, 42vw, 460px); overflow: hidden; display: flex; }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.tile img.pos-low { object-position: 50% 90%; }
.tile-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,15,10,.82) 0%, rgba(20,15,10,.2) 55%, rgba(20,15,10,.05) 100%); transition: background .3s ease; }
.tile-body { position: relative; z-index: 2; margin-top: auto; padding: 2rem 1.8rem; color: #fff; }
.tile-index { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 2px; color: var(--sunset); }
.tile-word { display: block; font-family: var(--font-display); font-weight: 600; font-size: 2rem; line-height: 1.1; margin: .3rem 0 .2rem; }
.tile-word::after { content: ""; display: block; width: 0; height: 2px; background: var(--sunset); transition: width .35s ease; margin-top: .5rem; }
.tile-text { font-size: 0.95rem; color: rgba(255,255,255,.85); }
.tile:hover img { transform: scale(1.06); }
.tile:hover .tile-overlay { background: linear-gradient(0deg, rgba(20,15,10,.88) 0%, rgba(20,15,10,.3) 60%, rgba(20,15,10,.1) 100%); }
.tile:hover .tile-word::after { width: 46px; }

/* ============ EDITORIAL ============ */
.editorial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.editorial-title { font-size: clamp(3rem, 9vw, 6.5rem); margin: 0.3rem 0 1.4rem; }
.editorial-copy p { color: var(--ink-soft); font-size: 1.1rem; max-width: 30rem; margin-bottom: 1.4rem; }
.editorial-figure { margin: 0; }
.editorial-figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 320px 320px 18px 18px; box-shadow: var(--shadow); }

/* ============ ZWEI-UP ANGEBOT ============ */
.offer { background: var(--linen); }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.offer-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.offer-media { aspect-ratio: 16 / 10; overflow: hidden; }
.offer-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.offer-card:hover .offer-media img { transform: scale(1.05); }
.offer-body { padding: 1.6rem 1.7rem 1.9rem; }
.offer-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; margin-bottom: 0.5rem; }
.offer-body p { color: var(--ink-soft); margin-bottom: 1rem; }

/* ============ AUSSTATTUNG ============ */
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.feature-list li { background: var(--cream); padding: 1.5rem 1.6rem; font-family: var(--font-ui); font-weight: 500; font-size: 1.05rem; display: flex; align-items: center; gap: 0.9rem; }
.feature-list svg { width: 24px; height: 24px; flex: none; fill: none; stroke: var(--teal); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* ============ AKTIV-TABS ============ */
.experiences { background: var(--linen); }
.tab-list { display: flex; flex-wrap: wrap; gap: 0.5rem; border-bottom: 1px solid var(--line); margin-bottom: 2rem; }
.tab {
  font-family: var(--font-ui); font-weight: 600; font-size: 0.98rem; color: var(--ink-soft);
  background: none; border: 0; padding: 0.8rem 1.1rem; cursor: pointer; border-radius: 8px 8px 0 0;
  border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color .15s ease, border-color .15s ease;
}
.tab:hover { color: var(--ink); }
.tab[aria-selected="true"] { color: var(--sunset-d); border-bottom-color: var(--sunset); }
.tab-panel { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.tab-panel[hidden] { display: none; }
.panel-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.panel-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.panel-copy h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 0.7rem; }
.panel-copy p { color: var(--ink-soft); }
.panel-meta { font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.04em; color: var(--teal); }

/* ============ CTA-BAND ============ */
.cta-band { position: relative; color: #fff; text-align: center; overflow: hidden; padding: clamp(4rem, 10vw, 7rem) 0; }
.cta-media { position: absolute; inset: 0; z-index: 0; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: rgba(20,15,10,.62); z-index: 1; }
.cta-inner { position: relative; z-index: 2; }
.cta-inner h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 0.7rem; }
.cta-inner p { color: rgba(255,255,255,.86); margin-bottom: 1.8rem; max-width: 34rem; margin-left: auto; margin-right: auto; }

/* ============ FAQ ============ */
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.faq-intro h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.faq-intro p { color: var(--ink-soft); margin-bottom: 1rem; }
.faq-list details { border-bottom: 1px solid var(--line); padding: 0.4rem 0; }
.faq-list summary {
  font-family: var(--font-ui); font-weight: 600; font-size: 1.08rem; cursor: pointer;
  padding: 1rem 2.5rem 1rem 0; position: relative; list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--font-mono); font-size: 1.5rem; color: var(--sunset-d); transition: transform .2s ease;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { color: var(--ink-soft); margin: 0 0 1rem; padding-right: 2.5rem; }

/* ============ MARKEN-STATEMENT ============ */
.statement { background: var(--espresso); padding: clamp(3rem, 7vw, 5.5rem) 0; }
.statement-line {
  font-family: var(--font-display); font-weight: 600; text-align: center; margin: 0;
  font-size: clamp(2.2rem, 8vw, 6rem); line-height: 1; letter-spacing: -0.02em;
  color: transparent; -webkit-text-stroke: 1px rgba(251,248,241,.55);
}
.statement-line em { font-style: italic; color: var(--sunset); -webkit-text-stroke: 0; }

/* ============ FOOTER ============ */
.site-footer { background: var(--espresso); color: rgba(255,255,255,.8); padding-top: 2.2rem; border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.8rem; padding-bottom: 1.6rem; }
.footer-brand p { color: rgba(255,255,255,.7); font-size: 0.9rem; line-height: 1.5; }
.footer-col h3 { color: #fff; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; font-family: var(--font-mono); margin-bottom: 0.55rem; }
.footer-col a, .footer-col address a { display: block; color: rgba(255,255,255,.75); padding: 0.16rem 0; font-size: 0.9rem; transition: color .15s ease; }
.footer-col a:hover { color: var(--sunset); }
.footer-col address { font-style: normal; line-height: 1.55; font-size: 0.9rem; color: rgba(255,255,255,.75); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 0.9rem 0 1.3rem; border-top: 1px solid rgba(255,255,255,.1); margin-top: 0; font-size: 0.82rem; }
.footer-legal { display: flex; gap: 1.5rem; margin: 0; }
.footer-legal a { color: rgba(255,255,255,.65); }
.footer-legal a:hover { color: var(--sunset); }
.footer-bottom p { margin: 0; }

/* ============ UNTERSEITEN: SEITEN-HERO ============ */
.page-hero { position: relative; min-height: clamp(420px, 62vh, 600px); display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media img.pos-low { object-position: 50% 78%; }
.page-hero-content { position: relative; z-index: 2; padding-bottom: clamp(3rem, 8vh, 5rem); padding-top: 8rem; max-width: 760px; }
.page-hero-title { font-size: clamp(2.6rem, 7vw, 5rem); color: #fff; margin-bottom: 0.8rem; text-shadow: 0 1px 2px rgba(0,0,0,.5), 0 3px 26px rgba(0,0,0,.4); }
.page-hero-sub { font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 36rem; color: rgba(255,255,255,.92); margin: 0; }

/* ============ INTRO-LITE ============ */
.intro-lite-inner { max-width: 760px; }
.intro-lite-inner h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1.1rem; }
.intro-lite-inner p { color: var(--ink-soft); font-size: 1.1rem; margin: 0; }

/* ============ FAKTEN-BAND (Karussell/Marquee) ============ */
.facts { background: var(--espresso); color: var(--cream); padding: 1.8rem 0; }
.facts-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.facts-track { display: flex; gap: 3.2rem; width: max-content; animation: marquee 28s linear infinite; will-change: transform; }
.facts-marquee:hover .facts-track { animation-play-state: paused; }
.fact { flex: 0 0 auto; display: flex; flex-direction: column; gap: 0.2rem; border-left: 2px solid var(--sunset); padding-left: 1rem; }
.fact-num { font-family: var(--font-mono); font-weight: 600; font-size: 1.1rem; letter-spacing: 0.04em; white-space: nowrap; }
.fact-label { font-size: 0.85rem; color: rgba(255,255,255,.65); white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ RÄUME (Cards) ============ */
.room-card {
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: stretch;
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  margin-bottom: clamp(1.4rem, 3vw, 2.4rem);
}
.room-card:last-child { margin-bottom: 0; }
.room-card.reverse .room-media { order: 2; }
.room-media {
  position: relative; padding: 0; border: 0; background: var(--line);
  cursor: zoom-in; overflow: hidden; min-height: 340px;
}
.room-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.room-media:hover img, .room-media:focus-visible img { transform: scale(1.05); }
.room-zoom {
  position: absolute; right: 14px; bottom: 14px; width: 42px; height: 42px;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(20,15,10,.55); color: #fff; opacity: 0; transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease; backdrop-filter: blur(2px);
}
.room-zoom svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.room-media:hover .room-zoom, .room-media:focus-visible .room-zoom { opacity: 1; transform: none; }
.room-copy { padding: clamp(1.8rem, 3vw, 3.2rem); display: flex; flex-direction: column; justify-content: center; }
.room-copy h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
.room-copy p { color: var(--ink-soft); font-size: 1.08rem; margin: 0; }

/* ============ SEO-TEXT-SECTION ============ */
.seo-section { background: var(--linen); }
.seo-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.seo-aside { position: sticky; top: 120px; }
.seo-aside h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.seo-aside .seo-lead { color: var(--ink-soft); margin: 1.1rem 0 0; font-size: 1.05rem; }
.seo-body { max-width: 64ch; }
.seo-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; letter-spacing: -0.01em; margin: 2rem 0 0.6rem; }
.seo-body h3:first-child { margin-top: 0; }
.seo-body p { color: var(--ink-soft); margin: 0 0 1rem; }
.seo-body a { color: var(--sunset-d); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color .15s ease; }
.seo-body a:hover { color: var(--sunset); }

/* ============ GALERIE + LIGHTBOX ============ */
.gallery-section { background: var(--linen); }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 178px; gap: 14px; }
.gallery-item {
  padding: 0; border: 0; cursor: zoom-in; background: var(--line);
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover { transform: translateY(-6px); box-shadow: 0 34px 64px -26px rgba(36,28,18,.6); z-index: 2; }
.gallery-item:hover img { transform: scale(1.08); }
/* Bento-Verteilung */
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }

.lightbox { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; background: rgba(20,15,10,.92); }
.lightbox.is-open { display: flex; }
.lb-figure { margin: 0; max-width: 92vw; max-height: 86vh; }
.lb-img { max-width: 92vw; max-height: 86vh; width: auto; height: auto; border-radius: 8px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.8); }
.lb-btn { position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.3); cursor: pointer; border-radius: 999px; width: 52px; height: 52px; font-size: 1.8rem; line-height: 1; display: grid; place-items: center; transition: background .15s ease; }
.lb-btn:hover { background: rgba(255,255,255,.25); }
.lb-close { top: 1.2rem; right: 1.2rem; }
.lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============ RESPONSIV ============ */
@media (max-width: 940px) {
  .intro-grid, .editorial-grid, .offer-grid, .faq-grid, .tab-panel, .room-card, .split-hero-grid { grid-template-columns: 1fr; }
  .split-hero-figure { order: -1; }
  .split-hero-figure img { aspect-ratio: 16 / 10; }
  .editorial-figure { order: -1; }
  .editorial-figure img { aspect-ratio: 16 / 10; border-radius: 200px 200px 18px 18px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .feature-list { grid-template-columns: 1fr 1fr; }
  .triptych { grid-template-columns: 1fr; }
  .tile { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .room-card.reverse .room-media { order: -1; }
  .room-media { min-height: 0; }
  .room-media img { aspect-ratio: 16 / 10; height: auto; }
  /* Galerie auf Tablet: einfaches Raster ohne Bento-Spans */
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(2), .gallery-item:nth-child(5) { grid-column: auto; grid-row: auto; }
  /* SEO-Section: einspaltig, Aside nicht mehr sticky */
  .seo-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .seo-aside { position: static; }
}

@media (max-width: 660px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 116px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 0.5rem 1.25rem 1.25rem;
    transform: translateY(-130%); transition: transform .3s ease; box-shadow: var(--shadow);
  }
  .nav.is-open { transform: translateY(0); }
  .nav-link, .site-header.scrolled .nav-link { color: var(--ink); text-shadow: none; padding: 0.9rem 0.5rem; border-radius: 8px; }
  .nav-link.is-active, .site-header.scrolled .nav-link.is-active { color: var(--sunset-d); }
  .nav-cta, .site-header.scrolled .nav-cta { text-align: center; margin-top: 0.4rem; background: var(--ink); border-color: var(--ink); color: var(--cream); }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .trust-grid, .feature-list, .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }

  /* Galerie auf Mobil komplett ausgeblendet */
  .gallery-section { display: none; }

  /* Räume: Cards stapeln sich beim Scrollen übereinander */
  .rooms { padding-bottom: 2rem; }
  .room-card {
    position: sticky;
    top: 86px;
    margin-bottom: 16px;
    box-shadow: 0 -12px 34px -8px rgba(20, 15, 10, 0.4), var(--shadow);
  }
  .room-media img { aspect-ratio: 16 / 11; }
  .room-copy { padding: 1.5rem 1.4rem 1.8rem; }
  .seal { width: 104px; height: 104px; right: 1.1rem; bottom: 3.2rem; }
  .seal-center { width: 50px; height: 50px; }
}

/* ============ LEGAL: IMPRESSUM / DATENSCHUTZ ============ */
.legal-hero { padding-top: calc(116px + clamp(2rem, 5vw, 3.5rem)); padding-bottom: clamp(1.6rem, 4vw, 2.4rem); background: var(--linen); border-bottom: 1px solid var(--line); }
.legal-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.legal-hero .legal-sub { color: var(--ink-soft); margin: 0.8rem 0 0; max-width: 60ch; }
.legal-content { max-width: 760px; }
.legal-content h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.3rem, 2.6vw, 1.7rem); letter-spacing: -0.01em; margin: 2.4rem 0 0.7rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.02rem; font-weight: 700; margin: 1.4rem 0 0.4rem; }
.legal-content p, .legal-content li { color: var(--ink-soft); }
.legal-content ul { padding-left: 1.2rem; margin: 0 0 1rem; }
.legal-content li { margin-bottom: 0.35rem; }
.legal-content a { color: var(--sunset-d); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--sunset); }
.legal-content address { font-style: normal; line-height: 1.7; color: var(--ink); margin-bottom: 1rem; }
.legal-note { background: var(--linen); border-left: 3px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; padding: 0.9rem 1.1rem; font-size: 0.92rem; margin: 1.2rem 0; }

/* ============ BOOKING: KALENDER + FORMULAR ============ */
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }

/* Karten (Kalender & Formular) */
.booking-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); }
.booking-card > .kicker { margin-bottom: 0.4rem; }
.booking-card h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 1.3rem; }

/* Kalender-Kopf */
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal-label { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }
.cal-nav { display: flex; gap: 0.4rem; }
.cal-nav button { width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--line); background: var(--cream); color: var(--ink); font-size: 1.1rem; cursor: pointer; display: grid; place-items: center; transition: background .15s ease, border-color .15s ease, opacity .15s ease; }
.cal-nav button:hover:not(:disabled) { background: var(--sand); border-color: var(--gold); }
.cal-nav button:disabled { opacity: 0.3; cursor: not-allowed; }

/* Kalender-Raster */
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-wd { text-align: center; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); padding-bottom: 0.4rem; }
.cal-cell { aspect-ratio: 1 / 1; border: 0; background: transparent; border-radius: 10px; font-family: var(--font-mono); font-size: 0.9rem; color: var(--ink); cursor: pointer; transition: background .12s ease, color .12s ease; display: grid; place-items: center; }
.cal-cell.is-empty { cursor: default; }
.cal-cell:hover:not(:disabled):not(.is-start):not(.is-end) { background: var(--sand); }
.cal-cell.is-past { color: #C8BFAD; cursor: not-allowed; }
.cal-cell.is-blocked { color: #C0B49C; cursor: not-allowed; position: relative; text-decoration: line-through; background: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(176,80,31,.08) 4px, rgba(176,80,31,.08) 8px); }
.cal-cell.is-in { background: var(--sand); }
.cal-cell.is-start, .cal-cell.is-end { background: var(--sunset); color: var(--ink); font-weight: 600; }
.cal-cell.is-start { border-top-right-radius: 4px; border-bottom-right-radius: 4px; }
.cal-cell.is-end { border-top-left-radius: 4px; border-bottom-left-radius: 4px; }

/* Legende & Zusammenfassung */
.cal-legend { display: flex; flex-wrap: wrap; gap: 1.1rem; margin-top: 1.2rem; font-size: 0.82rem; color: var(--ink-soft); }
.cal-legend span { display: inline-flex; align-items: center; gap: 0.45rem; }
.cal-dot { width: 14px; height: 14px; border-radius: 5px; display: inline-block; }
.cal-dot.free { background: var(--sand); border: 1px solid var(--line); }
.cal-dot.sel { background: var(--sunset); }
.cal-dot.busy { background: repeating-linear-gradient(45deg, #EDE4D3, #EDE4D3 3px, rgba(176,80,31,.25) 3px, rgba(176,80,31,.25) 6px); border: 1px solid var(--line); }
.cal-summary { margin-top: 1.2rem; padding: 0.9rem 1.1rem; background: var(--linen); border-radius: var(--radius); font-size: 0.95rem; line-height: 1.5; }
.cal-summary .cal-hint { color: var(--ink-soft); }
.cal-summary .cal-nights { color: var(--sunset-d); font-family: var(--font-mono); font-size: 0.85rem; }

/* Formular */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 0.4rem; color: var(--ink); }
.field input, .field select, .field textarea { width: 100%; font-family: var(--font-ui); font-size: 1rem; color: var(--ink); background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 0.75rem 0.9rem; transition: border-color .15s ease, box-shadow .15s ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sunset); box-shadow: 0 0 0 3px rgba(220,117,54,.18); }
.field input[readonly] { background: var(--linen); cursor: default; color: var(--ink-soft); }
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236A6052' stroke-width='1.6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem; }
.field-hint { font-size: 0.78rem; color: var(--ink-soft); margin: 0.35rem 0 0; }
.booking-card .btn-primary { width: 100%; margin-top: 0.4rem; }
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin: 0.9rem 0 0; text-align: center; }

.form-status { margin-top: 1rem; padding: 0.8rem 1rem; border-radius: var(--radius); font-size: 0.9rem; }
.form-status.is-error { background: rgba(176,80,31,.1); color: var(--sunset-d); border: 1px solid rgba(176,80,31,.25); }

/* Inline-Dankesmeldung */
.form-thanks { text-align: center; padding: 1.5rem 0.5rem; }
.form-thanks-mark { width: 64px; height: 64px; margin: 0 auto 1.1rem; border-radius: 999px; background: var(--sunset); color: var(--ink); font-size: 2rem; font-weight: 700; display: grid; place-items: center; }
.form-thanks h3 { font-size: 1.7rem; margin-bottom: 0.6rem; }
.form-thanks p { color: var(--ink-soft); max-width: 38ch; margin: 0 auto 1.4rem; }

@media (max-width: 860px) {
  .booking-grid { grid-template-columns: 1fr; }
}

/* ============ COOKIE-/CONSENT-BANNER ============ */
.cookie-banner {
  position: fixed; left: 50%; top: 50%;
  transform: translate(-50%, calc(-50% + 18px)); opacity: 0;
  width: min(560px, calc(100% - 2rem)); z-index: 1100;
  background: var(--espresso); color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg);
  box-shadow: 0 40px 90px -20px rgba(0,0,0,.7);
  padding: clamp(1.3rem, 3vw, 1.8rem) clamp(1.3rem, 3vw, 1.9rem);
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 1.8rem); flex-wrap: wrap;
  transition: opacity .3s ease, transform .3s ease;
}
.cookie-banner.is-visible { opacity: 1; transform: translate(-50%, -50%); }
.cookie-text { flex: 1 1 300px; }
.cookie-text strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: #fff; margin-bottom: 0.3rem; }
.cookie-text p { margin: 0; font-size: 0.88rem; line-height: 1.55; }
.cookie-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.cookie-text a:hover { color: var(--sunset); }
.cookie-actions { display: flex; gap: 0.7rem; flex: 0 0 auto; }
.cookie-banner .btn { padding: 0.62rem 1.4rem; font-size: 0.9rem; }
.cookie-decline { background: transparent; border-color: rgba(255,255,255,.45); color: #fff; }
.cookie-decline:hover { background: rgba(255,255,255,.12); }
@media (max-width: 560px) {
  .cookie-actions { width: 100%; }
  .cookie-banner .btn { flex: 1; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .seal-ring { animation: none !important; }
  /* Karussell ohne Bewegung: ruhiger, scrollbarer Streifen */
  .facts-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .facts-track { width: auto; }
  .fact[aria-hidden="true"] { display: none; }
}
