@charset "UTF-8";
/* ==========================================================================
   RB Dienstleistungen — Stylesheet
   Keine Inline-Styles: die CSP verbietet 'unsafe-inline' (siehe .htaccess).
   Animiert wird ausschliesslich transform + opacity (GPU, kein Layout-Thrash).
   ========================================================================== */

/* --------------------------------------------------------------- 1. Tokens */
:root {
  /* Farbe — Gold-Palette, abgeleitet aus dem Kundenlogo (#DEB253 / #0C0C0A).
     Kontrastwerte gegen --cream bzw. weiss sind unten je Token notiert. */
  --olive:        #7A5219;  /* Primaer  — weiss darauf 6.9:1 */
  --olive-deep:   #12100C;  /* Flaechen — echtes Logo-Schwarz, creme darauf 16.3:1 */
  --olive-light:  #E8C978;  /* aufgehellt: dunkler Text darauf 9.5:1 (Saisonbalken) */
  --bark:         #18130D;  /* Text/Anthrazit — echtes Logo-Schwarz, auf --cream 15.8:1 */
  --bark-soft:    #29221A;
  --muted:        #5A5147;  /* Sekundaertext — auf --cream 6.7:1 */
  --cream:        #F2EDE1;  /* Seitenhintergrund */
  --sand:         #DCD3BE;  /* Karten, Trenner */
  --sand-deep:    #C6BAA0;
  --signal:       #9C6E28;  /* Gold-Text auf hellem Grund (Links, Hover) — auf --cream 3.9:1 */
  --signal-dark:  #7A5219;  /* Gold-Text, kraeftiger (aktive Nav, Hover) — auf --cream 5.9:1 */
  --signal-glow:  #DEB253;  /* Logo-Gold 1:1 — CTA-Fuellung & Akzente auf Schwarz, nie als Text auf --cream */
  --white:        #FFFFFF;

  /* Typografie */
  --font-display: 'Big Shoulders Display', 'Haettenschweiler', 'Arial Narrow', sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --fs-hero:    clamp(2.9rem, 9.5vw, 7rem);
  --fs-h1:      clamp(2.4rem, 6.5vw, 4.5rem);
  --fs-h2:      clamp(2rem, 5vw, 3.25rem);
  --fs-h3:      clamp(1.375rem, 2.6vw, 1.85rem);
  --fs-lead:    clamp(1.1rem, 1.1vw + .85rem, 1.35rem);
  --fs-body:    clamp(1rem, .35vw + .92rem, 1.09rem);
  --fs-small:   .9rem;
  --fs-eyebrow: .8rem;

  /* Raster & Rhythmus */
  --wrap: 1240px;
  --wrap-narrow: 760px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --band-y: clamp(3.5rem, 8vw, 7rem);
  --radius: 3px;          /* fast eckig — robust, kein weiches SaaS-Rund */

  /* Motion (§5.3) */
  --t-micro: 140ms;
  --t-ui:    280ms;
  --t-large: 520ms;
  --ease-out: cubic-bezier(.22, .61, .36, 1);
  --ease-in:  cubic-bezier(.55, .06, .68, .19);

  --header-h: 68px;
}

/* ----------------------------------------------------------- 2. Reset/Base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--bark);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
img { background: var(--sand); }          /* ruhiger Platzhalter beim Laden */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: .95;
  letter-spacing: .005em;
  text-transform: uppercase;
  margin: 0 0 .45em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.02; }
p  { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }
ul, ol { margin: 0 0 1.15em; padding-left: 1.25rem; }
li { margin-bottom: .4em; }

/* Sichtbarer Fokus auf ALLEN interaktiven Elementen (§4.4) */
:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
  border-radius: 2px;
}
.on-dark :focus-visible, .site-header--dark :focus-visible { outline-color: var(--signal-glow); }

.skip-link {
  position: absolute; left: 50%; top: 0; z-index: 200;
  transform: translate(-50%, -120%);
  background: var(--bark); color: var(--cream);
  padding: .8rem 1.5rem; font-weight: 600; text-decoration: none;
  transition: transform var(--t-ui) var(--ease-out);
}
.skip-link:focus { transform: translate(-50%, 0); }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------- 3. Bausteine */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.band { padding-block: var(--band-y); }
.band--sand { background: var(--sand); }
.band--bark { background: var(--bark); color: var(--cream); }
.band--olive { background: var(--olive-deep); color: var(--cream); }
.band--tight { padding-block: clamp(2.25rem, 5vw, 3.5rem); }

.eyebrow {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow); font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  /* signal-dark statt signal: als kleiner Text braucht es 4.5:1 auf Creme */
  color: var(--signal-dark); margin: 0 0 1rem;
}
.eyebrow::before {
  content: ""; width: 34px; height: 3px; flex: none;
  background: var(--signal);
}
.band--bark .eyebrow, .band--olive .eyebrow, .on-dark .eyebrow { color: var(--signal-glow); }
.band--bark .eyebrow::before, .band--olive .eyebrow::before, .on-dark .eyebrow::before { background: var(--signal-glow); }

.lead { font-size: var(--fs-lead); line-height: 1.55; max-width: 62ch; }
.muted { color: var(--muted); }
.band--bark .muted, .band--olive .muted, .on-dark .muted { color: var(--sand-deep); }

.section-head { max-width: 68ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }

/* --------------------------------------------------------------- 4. Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  letter-spacing: .01em; text-decoration: none;
  padding: .95rem 1.7rem; border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; text-align: center;
  transition: background-color var(--t-micro) var(--ease-out),
              border-color var(--t-micro) var(--ease-out),
              color var(--t-micro) var(--ease-out),
              transform var(--t-micro) var(--ease-out);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--signal-glow); color: var(--bark); border-color: var(--bark); }
.btn--primary:hover { background: var(--bark); color: var(--signal-glow); border-color: var(--bark); }

.btn--solid { background: var(--bark); color: var(--cream); border-color: var(--bark); }
.btn--solid:hover { background: var(--olive-deep); border-color: var(--olive-deep); }

.btn--ghost { background: transparent; color: var(--bark); border-color: var(--bark); }
.btn--ghost:hover { background: var(--bark); color: var(--cream); }

.btn--ondark { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn--ondark:hover { background: var(--cream); color: var(--bark); }

.btn--wide { width: 100%; }
.btn__arrow { transition: transform var(--t-micro) var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ---------------------------------------------------------------- 5. Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--sand-deep);
  transition: box-shadow var(--t-ui) var(--ease-out);
}
.site-header.is-stuck { box-shadow: 0 6px 24px rgb(42 36 30 / .13); }

.site-header__inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: var(--header-h);
  max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter);
}

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--bark); margin-right: auto; }
.brand__emblem { width: auto; height: 34px; color: var(--olive); flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: .88; }
.brand__name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.6rem;
  letter-spacing: .02em; text-transform: uppercase;
}
.brand__sub {
  font-family: var(--font-display); font-weight: 600; font-size: .92rem;
  letter-spacing: .17em; text-transform: uppercase; color: var(--muted);
}

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.nav__link {
  position: relative; display: block; padding: .55rem .7rem; white-space: nowrap;
  font-size: .96rem; font-weight: 500; text-decoration: none; color: var(--bark);
  transition: color var(--t-micro) var(--ease-out);
}
.nav__link::after {
  content: ""; position: absolute; left: .7rem; right: .7rem; bottom: .28rem; height: 2px;
  background: var(--signal); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-micro) var(--ease-out);
}
.nav__link:hover { color: var(--signal-dark); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--signal-dark); font-weight: 600; }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.header__phone {
  display: none; align-items: center; gap: .5rem; white-space: nowrap;
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
  letter-spacing: .01em; text-decoration: none; color: var(--bark);
  transition: color var(--t-micro) var(--ease-out);
}
.header__phone:hover { color: var(--signal-dark); }
.header__phone svg { width: 19px; height: 19px; flex: none; color: var(--signal); }
.header__cta { display: none; }

/* Burger */
.burger {
  display: grid; place-items: center; width: 46px; height: 46px; flex: none;
  background: var(--bark); border: 0; border-radius: var(--radius); cursor: pointer;
}
.burger__box { position: relative; width: 22px; height: 16px; }
.burger__bar {
  position: absolute; left: 0; width: 100%; height: 2.5px; background: var(--cream);
  transition: transform var(--t-ui) var(--ease-out), opacity var(--t-micro) linear;
}
.burger__bar:nth-child(1) { top: 0; }
.burger__bar:nth-child(2) { top: 6.75px; }
.burger__bar:nth-child(3) { top: 13.5px; }
.burger[aria-expanded="true"] .burger__bar:nth-child(1) { transform: translateY(6.75px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bar:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__bar:nth-child(3) { transform: translateY(-6.75px) rotate(-45deg); }

/* Mobile-Panel */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: var(--bark); color: var(--cream);
  padding: 1.5rem var(--gutter) 2.5rem;
  overflow-y: auto;
  opacity: 0; transform: translateY(-12px); visibility: hidden;
  transition: opacity var(--t-ui) var(--ease-in), transform var(--t-ui) var(--ease-in), visibility 0s linear var(--t-ui);
}
.mobile-nav.is-open {
  opacity: 1; transform: translateY(0); visibility: visible;
  transition: opacity var(--t-ui) var(--ease-out), transform var(--t-ui) var(--ease-out), visibility 0s;
}
.mobile-nav__list { list-style: none; margin: 0 0 1.75rem; padding: 0; }
.mobile-nav__list li { margin: 0; border-bottom: 1px solid rgb(242 237 225 / .16); }
.mobile-nav__link {
  display: flex; justify-content: space-between; align-items: center;
  padding: .95rem 0; text-decoration: none; color: var(--cream);
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  letter-spacing: .02em; text-transform: uppercase;
}
.mobile-nav__link[aria-current="page"] { color: var(--signal-glow); }
.mobile-nav__link::after { content: "→"; opacity: .45; transition: transform var(--t-micro) var(--ease-out); }
.mobile-nav__link:hover::after { transform: translateX(4px); }
.mobile-nav__foot { display: grid; gap: .75rem; }
body.nav-open { overflow: hidden; }

@media (min-width: 900px) {
  .nav { display: block; }
  .burger { display: none; }
  .mobile-nav { display: none; }
  .header__phone { display: inline-flex; }
  :root { --header-h: 78px; }
}
@media (min-width: 980px) { .header__cta { display: inline-flex; } }

/* ------------------------------------------------------------------ 6. Hero */
.hero { position: relative; background: var(--bark); color: var(--cream); overflow: hidden; }
.hero__stage { position: relative; }
/* Der neue Slide blendet sich UEBER dem alten ein, statt dass beide gleichzeitig
   kreuzblenden — sonst faellt die Gesamtdeckung in der Mitte unter 100 % und der
   dunkle Hintergrund blitzt durch. */
.hero__slide {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0; transition: opacity var(--t-large) var(--ease-out);
}
.hero__slide:first-child { position: relative; }
.hero__slide.is-leaving { opacity: 1; z-index: 1; transition: none; }
.hero__slide.is-active { opacity: 1; z-index: 2; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }

/* Verlauf sichert Textkontrast auf jedem Foto (WCAG AA), ohne das Motiv
   zuzudecken: unten (Textzone) ~0.92 Deckung, oben nur ~0.12. */
.hero__stage::after {
  content: ""; position: absolute; inset: 0; z-index: 5; pointer-events: none;
  background:
    linear-gradient(to top, rgb(24 20 16 / .92) 0%, rgb(24 20 16 / .76) 38%, rgb(24 20 16 / .36) 68%, rgb(24 20 16 / .12) 100%),
    linear-gradient(to right, rgb(24 20 16 / .40) 0%, rgb(24 20 16 / 0) 58%);
}
.hero__inner {
  position: relative; z-index: 6;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: min(78svh, 640px);
  max-width: var(--wrap); margin-inline: auto;
  padding: 4.5rem var(--gutter) clamp(2.5rem, 5vw, 4rem);
}
.hero__stage { display: grid; }
.hero__stage > .hero__inner { grid-area: 1 / 1; }
.hero__slide { grid-area: 1 / 1; position: absolute; }

.hero__title {
  font-size: var(--fs-hero); margin: 0 0 .35em;
  letter-spacing: .004em; text-shadow: 0 2px 22px rgb(0 0 0 / .35);
}
.hero__title span { display: block; color: var(--signal-glow); }
.hero__lead { font-size: var(--fs-lead); max-width: 46ch; margin-bottom: 1.9rem; color: #EDE7DA; }
.hero .btn-row { margin-bottom: .35rem; }

.hero__dots { position: absolute; z-index: 7; right: var(--gutter); bottom: clamp(2.5rem, 5vw, 4rem); display: flex; gap: .55rem; }
.hero__dot {
  width: 34px; height: 5px; padding: 0; border: 0; cursor: pointer;
  background: rgb(242 237 225 / .38); border-radius: 2px;
  transition: background-color var(--t-micro) var(--ease-out), transform var(--t-micro) var(--ease-out);
}
.hero__dot:hover { transform: scaleY(1.6); background: rgb(242 237 225 / .6); }
.hero__dot[aria-selected="true"] { background: var(--signal-glow); }

/* Kennzahlen-Leiste direkt unter dem Hero */
.factbar { background: var(--olive-deep); color: var(--cream); }
.factbar__list {
  display: grid; grid-template-columns: 1fr; gap: 0;
  list-style: none; margin: 0; padding: 0;
  max-width: var(--wrap); margin-inline: auto;
}
.factbar__item {
  display: flex; align-items: center; gap: .95rem; margin: 0;
  padding: 1.1rem var(--gutter);
  border-bottom: 1px solid rgb(242 237 225 / .17);
}
.factbar__item:last-child { border-bottom: 0; }
.factbar__icon { width: 26px; height: 26px; flex: none; color: var(--signal-glow); }
.factbar__k { display: block; font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; letter-spacing: .015em; line-height: 1; }
.factbar__v { display: block; font-size: .88rem; color: var(--sand-deep); }
@media (min-width: 720px) {
  .factbar__list { grid-template-columns: repeat(3, 1fr); }
  .factbar__item { border-bottom: 0; border-right: 1px solid rgb(242 237 225 / .17); padding-inline: 1.5rem; }
  .factbar__item:first-child { padding-left: var(--gutter); }
  .factbar__item:last-child { border-right: 0; padding-right: var(--gutter); }
}

/* --------------------------------------------------- 7. Leistungs-Kacheln */
.tiles { display: grid; grid-template-columns: 1fr; gap: clamp(1rem, 2vw, 1.6rem); }
@media (min-width: 620px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .tiles { grid-template-columns: repeat(3, 1fr); } }

.tile {
  display: flex; flex-direction: column;
  background: var(--bark); color: var(--cream);
  text-decoration: none; border-radius: var(--radius); overflow: hidden;
  transition: transform var(--t-ui) var(--ease-out), box-shadow var(--t-ui) var(--ease-out);
}
.tile:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgb(42 36 30 / .22); }
/* Die Kachel besteht aus <span>-Elementen (valide innerhalb eines <a>),
   deshalb muss die Blockdarstellung hier explizit gesetzt werden. */
.tile__head { display: block; padding: 1.4rem 1.4rem 1.25rem; flex: 1 1 auto; position: relative; }
.tile__head::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: var(--signal-glow);
  transform: scaleY(0); transform-origin: top;
  transition: transform var(--t-ui) var(--ease-out);
}
.tile:hover .tile__head::after, .tile:focus-visible .tile__head::after { transform: scaleY(1); }
.tile__title {
  display: block;
  font-family: var(--font-display); font-weight: 800; line-height: .98;
  letter-spacing: .005em; text-transform: uppercase;
  font-size: 1.7rem; margin: 0 0 .35em; color: var(--white);
}
.tile__claim { display: block; font-size: .96rem; line-height: 1.5; color: #F0E6D2; margin: 0 0 1rem; }
.tile__more {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .87rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  color: var(--white);
}
.tile__more span { transition: transform var(--t-micro) var(--ease-out); }
.tile:hover .tile__more span { transform: translateX(5px); }

.tile__pics { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: var(--olive-deep); }
.tile__pics img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform var(--t-large) var(--ease-out); }
.tile:hover .tile__pics img { transform: scale(1.055); }
.tile__pics > * { overflow: hidden; display: block; }

/* ----------------------------------------- 8. Signature: Saisonkalender */
.season { --sea-label: 8.5rem; }
.season__scroll { overflow-x: auto; padding-bottom: .5rem; }
.season__grid { min-width: 560px; }

.season__months {
  display: grid; grid-template-columns: var(--sea-label) repeat(12, 1fr);
  gap: 0 3px; align-items: end;
  font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--sand-deep); padding-bottom: .5rem;
  border-bottom: 2px solid rgb(242 237 225 / .22); margin-bottom: .85rem;
}
.season__months span { text-align: center; }
.season__months span:first-child { text-align: left; }

.season__row {
  display: grid; grid-template-columns: var(--sea-label) repeat(12, 1fr);
  gap: 0 3px; align-items: center; margin-bottom: .5rem;
}
.season__label {
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  letter-spacing: .03em; text-transform: uppercase; color: var(--cream);
  padding-right: .75rem; line-height: 1.05;
}
.season__bar {
  grid-row: 1; height: 30px; border-radius: 2px;
  background: var(--olive-light);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-large) var(--ease-out);
  display: flex; align-items: center; padding-left: .55rem;
  font-size: .72rem; font-weight: 600; color: var(--bark); white-space: nowrap; overflow: hidden;
}
.season__bar--peak { background: var(--signal-glow); }
.is-in .season__bar { transform: scaleX(1); }
/* Spalten je Leistung — als Klassen statt Inline-Styles (CSP ohne 'unsafe-inline') */
.sb-1-12 { grid-column: 2 / 14; }
.sb-3-11 { grid-column: 4 / 13; }
.sb-3-10 { grid-column: 4 / 12; }
.sb-1-3  { grid-column: 2 / 5; }
.sb-11-12{ grid-column: 12 / 14; }
.season__row:nth-child(2) .season__bar { transition-delay: 60ms; }
.season__row:nth-child(3) .season__bar { transition-delay: 120ms; }
.season__row:nth-child(4) .season__bar { transition-delay: 180ms; }
.season__row:nth-child(5) .season__bar { transition-delay: 240ms; }
.season__row:nth-child(6) .season__bar { transition-delay: 300ms; }
.season__row:nth-child(7) .season__bar { transition-delay: 360ms; }
.season__note { margin-top: 1.4rem; font-size: .92rem; color: var(--sand-deep); max-width: 60ch; }
@media (max-width: 560px) { .season { --sea-label: 7rem; } }

/* --------------------------------------------------------- 9. Leistungsseite */
.svc-hero { position: relative; background: var(--bark); color: var(--cream); }
.svc-hero__img { position: absolute; inset: 0; }
.svc-hero__img img { width: 100%; height: 100%; object-fit: cover; }
/* Links deckend genug fuer AA-Kontrast (auch ueber hellen Motiven wie Schnee
   oder weisser Wand), rechts fast klar — damit das Foto sichtbar bleibt. */
.svc-hero__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgb(24 20 16 / .93) 0%, rgb(24 20 16 / .88) 38%,
    rgb(24 20 16 / .60) 62%, rgb(24 20 16 / .22) 88%, rgb(24 20 16 / .10) 100%);
}
.svc-hero__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  min-height: clamp(280px, 32vw, 440px);
  max-width: var(--wrap); margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--gutter);
}
/* Bis 900 px laeuft der Text ueber die volle Breite (erst darueber steht er in
   der linken Spalte), deshalb deckt der Verlauf hier flaechig statt seitlich. */
@media (max-width: 899px) {
  .svc-hero__img::after {
    background: linear-gradient(to top,
      rgb(24 20 16 / .90) 0%, rgb(24 20 16 / .86) 60%, rgb(24 20 16 / .62) 100%);
  }
}
.svc-hero__claim { font-size: var(--fs-lead); max-width: 48ch; color: #EDE7DA; margin: 0; }

.breadcrumb { font-size: .85rem; margin: 0 0 1.1rem; color: var(--sand-deep); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: .4rem; opacity: .5; }
.breadcrumb a { color: inherit; text-decoration: none; border-bottom: 1px solid rgb(242 237 225 / .35); }
.breadcrumb a:hover { color: var(--signal-glow); border-color: var(--signal-glow); }

.split { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 900px) { .split { grid-template-columns: 1.15fr .85fr; align-items: start; } }

.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  position: relative; padding-left: 2rem; margin-bottom: .7rem;
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .52em;
  width: 11px; height: 11px; background: var(--signal); border-radius: 1px;
}
.band--bark .checklist li::before, .band--olive .checklist li::before { background: var(--signal-glow); }

.callout {
  background: var(--sand); border-left: 5px solid var(--signal);
  padding: 1.5rem 1.6rem; border-radius: var(--radius);
}
.callout h3 { font-size: 1.35rem; margin-bottom: .4em; }
.callout p:last-child { margin-bottom: 0; }

.callout-gap { height: clamp(1rem, 2vw, 1.5rem); }

.link-columns { columns: 2; column-gap: 2rem; font-size: 1rem; }
.link-columns li { break-inside: avoid; margin-bottom: .55rem; }
.link-columns a { color: var(--bark); text-decoration: none; border-bottom: 1px solid var(--sand-deep); }
.link-columns a:hover { color: var(--signal-dark); border-color: var(--signal); }
@media (max-width: 560px) { .link-columns { columns: 1; } }

.area-list { columns: 2; column-gap: 2rem; }
.area-list li { break-inside: avoid; }

/* Breadcrumb auf hellem Grund */
.breadcrumb--light { color: var(--muted); }
.breadcrumb--light a { border-bottom-color: var(--sand-deep); }
.breadcrumb--light a:hover { color: var(--signal-dark); border-color: var(--signal); }

.footer__areas { font-size: .88rem; margin-top: 2rem; }
.gallery-more { margin-top: clamp(1.5rem, 3vw, 2.25rem); }

/* ------------------------------------------------------------- 10. Galerie */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(.5rem, 1.4vw, 1rem); }
@media (min-width: 800px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--sand); }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform var(--t-large) var(--ease-out); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  font-size: .82rem; color: var(--muted); padding: .55rem .1rem 0;
}

/* Filter (Referenzen) */
.filter { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: clamp(1.5rem, 3vw, 2.25rem); padding: 0; list-style: none; }
.filter li { margin: 0; }
.filter__btn {
  font-family: var(--font-body); font-size: .88rem; font-weight: 600;
  letter-spacing: .04em;
  padding: .6rem 1.05rem; cursor: pointer;
  background: transparent; color: var(--bark);
  border: 2px solid var(--sand-deep); border-radius: var(--radius);
  transition: background-color var(--t-micro) var(--ease-out),
              border-color var(--t-micro) var(--ease-out),
              color var(--t-micro) var(--ease-out);
}
.filter__btn:hover { border-color: var(--bark); }
.filter__btn[aria-pressed="true"] { background: var(--bark); border-color: var(--bark); color: var(--cream); }

.gallery figure.is-hidden { display: none; }
.gallery figure { animation: fade-in var(--t-ui) var(--ease-out) both; }
@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.gallery-empty { padding: 2rem 0; color: var(--muted); }

/* ------------------------------------------------------------ 11. Formular */
.form-grid { display: grid; gap: 1.15rem; }
@media (min-width: 700px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .field--full { grid-column: 1 / -1; }
}
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-weight: 600; font-size: .93rem; }
.field .req { color: var(--signal-dark); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--bark);
  background: var(--white);
  border: 2px solid var(--sand-deep); border-radius: var(--radius);
  padding: .8rem .9rem; width: 100%;
  transition: border-color var(--t-micro) var(--ease-out), box-shadow var(--t-micro) var(--ease-out);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--signal); box-shadow: 0 0 0 3px rgb(156 110 40 / .22);
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: none; }
.field__hint { font-size: .82rem; color: var(--muted); }
.field__error {
  /* liegt leer im DOM, damit Fehlermeldungen ohne Layoutsprung erscheinen —
     daher kein Aussenabstand aus der p-Grundregel */
  margin: 0;
  font-size: .85rem; font-weight: 600; color: #8C2F0D;
  opacity: 0; transform: translateY(-3px);
  transition: opacity var(--t-micro) var(--ease-out), transform var(--t-micro) var(--ease-out);
  min-height: 0;
}
.field.has-error .field__error { opacity: 1; transform: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #8C2F0D; }

.checkbox { display: grid; grid-template-columns: auto 1fr; gap: .75rem; align-items: start; }
.checkbox input { width: 22px; height: 22px; margin: .18rem 0 0; accent-color: var(--signal); flex: none; padding: 0; }
.checkbox label { font-weight: 400; font-size: .93rem; line-height: 1.55; }
.checkbox a { color: var(--signal-dark); text-underline-offset: 3px; }

/* Honeypot — fuer Menschen unsichtbar, fuer Bots ausfuellbar */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note {
  display: flex; gap: .7rem; align-items: flex-start;
  font-size: .87rem; color: var(--muted); margin-top: 1.1rem;
}
.form-note svg { width: 17px; height: 17px; flex: none; margin-top: .22rem; color: var(--olive); }

.alert { padding: 1.15rem 1.3rem; border-radius: var(--radius); margin-bottom: 1.75rem; border-left: 5px solid; }
.alert h3 { font-size: 1.25rem; margin-bottom: .3em; }
.alert p:last-child { margin-bottom: 0; }
.alert--ok   { background: #E7EDD9; border-color: var(--olive); color: #2C3618; }
.alert--fail { background: #F6E2D6; border-color: #8C2F0D; color: #5E1F08; }

/* --------------------------------------------------------- 12. Kontaktdaten */
.contact-list { list-style: none; padding: 0; margin: 0 0 1.75rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; margin-bottom: 1.05rem; }
.contact-list svg { width: 21px; height: 21px; flex: none; color: var(--signal); margin-top: .22rem; }
.contact-list a { color: inherit; text-underline-offset: 3px; }
.contact-list a:hover { color: var(--signal-dark); }
.contact-list strong { display: block; font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .03em; text-transform: uppercase; font-weight: 700; }

/* Karte mit Consent-Gate */
.map-gate {
  position: relative; background: var(--sand);
  border: 2px dashed var(--sand-deep); border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 3rem); text-align: center;
}
.map-gate h3 { font-size: 1.4rem; margin-bottom: .45em; }
.map-gate p { max-width: 52ch; margin-inline: auto; font-size: .93rem; color: var(--muted); }
.map-frame { border: 0; width: 100%; aspect-ratio: 16 / 10; border-radius: var(--radius); display: block; background: var(--sand); }
.map-gate__icon { width: 34px; height: 34px; margin: 0 auto .9rem; color: var(--olive); }
.map-gate__action { margin-top: 1.4rem; }
.checkbox-field { display: block; }

/* ------------------------------------------------------------- 13. CTA-Band */
.cta-band { position: relative; overflow: hidden; background: var(--bark); color: var(--cream); }
.cta-band__img { position: absolute; inset: 0; }
.cta-band__img img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgb(24 20 16 / .93) 0%, rgb(24 20 16 / .78) 55%, rgb(24 20 16 / .55) 100%);
}
.cta-band__inner {
  position: relative; z-index: 2;
  max-width: var(--wrap); margin-inline: auto;
  padding: clamp(3rem, 7vw, 5rem) var(--gutter);
}
.cta-band h2 { max-width: 18ch; }
.cta-band p { max-width: 52ch; }

/* -------------------------------------------------------------- 14. Footer */
.site-footer { background: var(--bark); color: var(--sand); padding-top: clamp(3rem, 6vw, 4.5rem); }
.site-footer a { color: var(--sand); text-decoration: none; }
.site-footer a:hover { color: var(--signal-glow); }
.footer__grid { display: grid; gap: 2.25rem; }
@media (min-width: 700px) { .footer__grid { grid-template-columns: 1.3fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; } }
.footer__brand .brand { color: var(--cream); margin-bottom: 1rem; }
.footer__brand .brand__emblem { color: var(--olive-light); }
.footer__brand .brand__sub { color: var(--sand-deep); }
.footer__title {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--cream);
  margin: 0 0 .9rem;
}
.footer__list { list-style: none; margin: 0; padding: 0; font-size: .95rem; }
.footer__list li { margin-bottom: .5rem; }
.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid rgb(242 237 225 / .16);
  padding-block: 1.4rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .86rem; color: var(--sand-deep);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.2rem; }

/* ------------------------------------------------------- 15. Consent-Banner */
.consent {
  position: fixed; z-index: 150; left: 0; right: 0; bottom: 0;
  background: var(--bark); color: var(--cream);
  border-top: 4px solid var(--signal);
  padding: 1.35rem var(--gutter) 1.5rem;
  box-shadow: 0 -8px 40px rgb(0 0 0 / .3);
  transform: translateY(105%);
  transition: transform var(--t-large) var(--ease-out);
}
.consent.is-open { transform: translateY(0); }
.consent[hidden] { display: none; }
/* Auf kleinen Schirmen wuerde das Banner sonst die unteren Menuepunkte
   verdecken — solange das Menue offen ist, tritt es zurueck. */
body.nav-open .consent { display: none; }
.consent__inner { max-width: var(--wrap); margin-inline: auto; display: grid; gap: 1.1rem; }
@media (min-width: 940px) { .consent__inner { grid-template-columns: 1fr auto; align-items: center; } }
.consent h2 { font-size: 1.35rem; margin-bottom: .35em; }
.consent p { font-size: .9rem; color: var(--sand-deep); margin: 0; max-width: 78ch; }
.consent p a { color: var(--cream); text-underline-offset: 3px; }
.consent__actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.consent__actions .btn { padding-inline: 1.35rem; }

/* --------------------------------------------------------- 16. Rechtstexte */
.prose { max-width: 74ch; }
.prose h2 { font-size: clamp(1.6rem, 3.2vw, 2.15rem); margin-top: 2.4em; }
.prose h2:first-of-type { margin-top: 0; }
.prose h3 { font-size: 1.25rem; margin-top: 1.9em; }
.prose ul { padding-left: 1.35rem; }
.prose a { color: var(--signal-dark); text-underline-offset: 3px; }
.prose dl { margin: 0 0 1.15em; }
.prose dt { font-weight: 600; margin-top: .8em; }
.prose dd { margin: 0 0 .2em; }

/* Platzhalter in Impressum/Datenschutz — muss beim Ausfuellen auffallen */
.todo {
  background: #FBE6C8; color: #6B3A00;
  border: 1px dashed #B8802A; border-radius: 2px;
  padding: .08em .45em; font-size: .93em; font-weight: 600;
  font-family: var(--font-body); white-space: normal;
}

/* ----------------------------------------------------- 17. Scroll-Reveals */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity var(--t-large) var(--ease-out), transform var(--t-large) var(--ease-out);
}
.reveal--d1.is-in { transition-delay: 70ms; }
.reveal--d2.is-in { transition-delay: 140ms; }
.reveal--d3.is-in { transition-delay: 210ms; }

/* Ohne JS bleibt nichts unsichtbar */
.no-js .reveal { opacity: 1; transform: none; }
.no-js .season__bar { transform: scaleX(1); }
.no-js .hero__slide { opacity: 1; }
.no-js .hero__slide:not(:first-child) { display: none; }

/* ------------------------------------------- 18. prefers-reduced-motion (§4.4) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .season__bar { transform: scaleX(1); }
  .btn:hover, .tile:hover { transform: none; }
  .tile:hover .tile__pics img, .gallery figure:hover img { transform: none; }
  .consent { transform: translateY(0); }
}

/* --------------------------------------------------------------- 19. Print */
@media print {
  .site-header, .mobile-nav, .consent, .hero__dots, .cta-band, .btn { display: none !important; }
  body { background: #fff; color: #000; }
  .band { padding-block: 1rem; }
}
