/* =================================================================
   SUP Oberlausitz — Design System
   Eine Datei, modular gegliedert:
   1. Tokens (Farben, Typo, Spacing, Radius, Schatten, Motion, Z-Index)
   2. Reset & Base
   3. Layout (Container, Section, Grid)
   4. Typografie-Helfer
   5. Buttons
   6. Header / Navigation
   7. Hero
   8. Big SUP (USP)
   9. Leistungen / Angebote
   10. Preise
   11. Vorteile (Features)
   12. Zielgruppen (Tags)
   13. Standorte (Seen)
   14. Galerie
   15. FAQ
   16. CTA-Band
   17. Kontakt
   18. Footer
   19. Foto-Komponente (mit Fallback-Verlauf)
   20. Utilities
   21. Animation / Reveal
   22. Responsive
   23. Reduced Motion & Print
   ================================================================= */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Grün (Natur, Marke) */
  --green-50:  #ecf7f1;
  --green-100: #d4ecdf;
  --green-200: #a9d9bf;
  --green-300: #74c19c;
  --green-400: #41a577;
  --green-500: #1f8a5b;
  --green-600: #15784e;
  --green-700: #105a3b;
  --green-800: #0d4730;
  --green-900: #0a3322;

  /* Blau (Wasser, Himmel) */
  --blue-50:  #eef6fb;
  --blue-100: #d7eaf5;
  --blue-200: #aed6ea;
  --blue-300: #7bbdda;
  --blue-400: #4aa1c8;
  --blue-500: #2b86b3;
  --blue-600: #1f6b93;
  --blue-700: #194f6e;

  /* Sonne / Sand / Erde (warmer Akzent, sparsam) */
  --sun:       #f2a23c;
  --sun-dark:  #d9852a;
  --sand-50:   #f7f3ea;
  --sand-100:  #efe6d4;
  --sand-200:  #e3d4ba;
  --earth:     #8a6a4a;

  /* Neutrale (kühl getönt, kein Creme) */
  --bg:        #ffffff;
  --surface:   #f4f8f6;
  --surface-2: #eaf1ee;
  --ink:       #0e1f18;
  --ink-2:     #2b3a33;
  --muted:     #475a52;
  --muted-2:   #6a7b73;
  --line:      #e2e9e5;
  --line-2:    #d2ddd7;
  --white:     #ffffff;

  /* Marken-Aliasse */
  --brand:        var(--green-600);
  --brand-strong: var(--green-700);
  --brand-soft:   var(--green-50);
  --accent:       var(--sun);

  /* Typografie — distinktives Paar (kein Inter/Jakarta-Reflex):
     Bricolage Grotesque (Display, charaktervoll) + Hanken Grotesk (Text, ruhig & gut lesbar) */
  --font-sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fs-300: 0.875rem;   /* 14 */
  --fs-400: 1rem;       /* 16 */
  --fs-500: 1.125rem;   /* 18 */
  --fs-600: 1.3125rem;  /* 21 */
  --fs-700: clamp(1.5rem, 1.2rem + 1.4vw, 2rem);
  --fs-800: clamp(1.9rem, 1.4rem + 2.4vw, 2.85rem);
  --fs-900: clamp(2.4rem, 1.6rem + 3.6vw, 3.9rem);   /* Hero, max ~62px */
  --lh-tight: 1.08;
  --lh-snug:  1.22;
  --lh-base:  1.65;

  /* Spacing (8pt) */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;  --sp-3: 0.75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;   --sp-6: 2rem;    --sp-7: 3rem;     --sp-8: 4rem;
  --sp-9: 6rem;     --sp-10: 8rem;
  --section-y: clamp(3.5rem, 2rem + 7vw, 7rem);
  --container: 1200px;
  --container-narrow: 820px;

  /* Radius */
  --r-sm: 8px;  --r-md: 12px;  --r-lg: 16px;  --r-xl: 22px;  --r-pill: 999px;

  /* Schatten (weich, definiert — nie 1px-Border + breiter Schatten zusammen) */
  --shadow-sm: 0 1px 2px rgba(13, 71, 48, 0.06), 0 2px 6px rgba(13, 71, 48, 0.05);
  --shadow-md: 0 6px 20px rgba(13, 71, 48, 0.10);
  --shadow-lg: 0 18px 48px rgba(13, 71, 48, 0.16);
  --shadow-brand: 0 12px 28px rgba(21, 120, 78, 0.28);

  /* Motion */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --t-fast: 140ms;
  --t-base: 220ms;
  --t-slow: 420ms;

  /* Z-Index-Skala (semantisch) */
  --z-base: 1;
  --z-sticky: 100;
  --z-drawer: 200;
  --z-overlay: 300;
  --z-toast: 400;
}

/* ---------- 2. RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  font-family: var(--font-sans);
  font-size: var(--fs-400);
  line-height: var(--lh-base);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
  overflow-x: hidden;
}
img, svg, video, picture { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-strong); text-decoration: none; }
a:hover { color: var(--green-800); }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select { font: inherit; }
:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 2px;
  border-radius: 4px;
}
::selection { background: var(--green-200); color: var(--green-900); }

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: #fff; padding: 10px 16px;
  border-radius: var(--r-sm); z-index: var(--z-overlay);
  transition: top var(--t-base) var(--ease-out);
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- 3. LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 0.5rem + 2.5vw, 2.5rem); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); position: relative; }
.section--tint { background: var(--surface); }
.section--sand { background: linear-gradient(180deg, var(--sand-50), #fbf8f1); }
.section--green { background: var(--green-700); color: #eaf5ef; }
.section--green h1, .section--green h2, .section--green h3 { color: #fff; }
.section--dark { background: var(--ink); color: #d8e3de; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--flush-top { padding-top: 0; }

.grid { display: grid; gap: var(--sp-6); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.auto-fit { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.stack > * + * { margin-top: var(--sp-4); }
.cluster { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; }

/* ---------- 4. TYPOGRAFIE ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: var(--lh-tight); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); text-wrap: balance; }
h1 { font-size: var(--fs-900); }
h2 { font-size: var(--fs-800); }
h3 { font-size: var(--fs-700); line-height: var(--lh-snug); letter-spacing: -0.015em; }
h4 { font-size: var(--fs-600); line-height: var(--lh-snug); letter-spacing: -0.01em; font-weight: 700; }
p { text-wrap: pretty; }
.lead { font-size: var(--fs-500); color: var(--muted); max-width: 60ch; line-height: 1.6; }
.prose { max-width: 70ch; }
.prose p + p { margin-top: var(--sp-4); }
.prose h2 { margin-top: var(--sp-7); }
.prose h3 { margin-top: var(--sp-6); margin-bottom: var(--sp-2); }
.prose ul { display: grid; gap: var(--sp-2); margin-top: var(--sp-3); }
.prose ul li { padding-left: 1.6em; position: relative; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 0.7em; height: 0.7em; border-radius: 50%; background: var(--green-300); }
.muted { color: var(--muted); }
.kicker {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: var(--fs-300); font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--brand-strong);
}
.kicker::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--accent); }
.section--green .kicker, .section--dark .kicker { color: var(--green-200); }
.text-accent { color: var(--sun-dark); }
.section__head { max-width: 64ch; margin-bottom: var(--sp-7); }
.section__head .lead { margin-top: var(--sp-3); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .lead { margin-inline: auto; }

/* ---------- 5. BUTTONS ---------- */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  padding: 0.85em 1.5em;
  font-weight: 700; font-size: var(--fs-400); line-height: 1;
  color: var(--btn-fg); background: var(--btn-bg);
  border-radius: var(--r-pill);
  transition: transform var(--t-fast) var(--ease-out), background-color var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out), color var(--t-base) var(--ease-out);
  will-change: transform; white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn--primary { box-shadow: var(--shadow-brand); }
.btn--primary:hover { --btn-bg: var(--brand-strong); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(21,120,78,0.34); }
.btn--secondary { --btn-bg: var(--white); --btn-fg: var(--brand-strong); box-shadow: inset 0 0 0 1.5px var(--line-2), var(--shadow-sm); }
.btn--secondary:hover { --btn-fg: var(--green-800); box-shadow: inset 0 0 0 1.5px var(--green-300), var(--shadow-sm); transform: translateY(-2px); }
.btn--sun { --btn-bg: var(--sun); --btn-fg: #3a2606; box-shadow: 0 12px 26px rgba(217,133,42,0.30); }
.btn--sun:hover { --btn-bg: var(--sun-dark); --btn-fg: #2a1c04; transform: translateY(-2px); }
.btn--ghost { --btn-bg: transparent; --btn-fg: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.55); }
.btn--ghost:hover { --btn-bg: rgba(255,255,255,0.12); --btn-fg:#fff; transform: translateY(-2px); }
.btn--lg { padding: 1.02em 1.9em; font-size: var(--fs-500); }
.btn--block { width: 100%; }
.btn:active { transform: scale(0.97); }

.link-arrow { display: inline-flex; align-items: center; gap: 0.4em; font-weight: 700; color: var(--brand-strong); }
.link-arrow svg { width: 1.05em; height: 1.05em; transition: transform var(--t-base) var(--ease-out); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- 6. HEADER / NAV ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-sticky);
  transition: background-color var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out);
  background: rgba(255,255,255,0.72);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { background: rgba(255,255,255,0.9); border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(13,71,48,0.06); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5); height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 0.6em; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark { width: 46px; height: 46px; flex: none; border-radius: 11px; }
.brand__name { display: flex; flex-direction: column; line-height: 1; }
.brand__name b { font-family: var(--font-display); font-weight: 800; font-size: 1.14rem; letter-spacing: -0.02em; }
.brand__name span { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.nav__links { display: flex; align-items: center; gap: clamp(0.4rem, 0.1rem + 1vw, 1.4rem); }
.nav__link { position: relative; padding: 0.5em 0.2em; font-weight: 600; color: var(--ink-2); font-size: var(--fs-400); }
.nav__link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; border-radius: 2px; background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform var(--t-base) var(--ease-out); }
.nav__link:hover { color: var(--brand-strong); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--brand-strong); }
.nav__actions { display: flex; align-items: center; gap: var(--sp-3); }
.nav__toggle { display: none; width: 46px; height: 46px; border-radius: var(--r-md); align-items: center; justify-content: center; color: var(--ink); }
.nav__toggle span { position: relative; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: background-color var(--t-fast) linear; }
.nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform var(--t-base) var(--ease-out), top var(--t-base) var(--ease-out); }
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }

/* ---------- 7. HERO ---------- */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__overlay { position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(8,40,28,0.55) 0%, rgba(8,40,28,0.30) 35%, rgba(8,40,28,0.66) 100%),
    radial-gradient(120% 90% at 80% 8%, rgba(242,162,60,0.30), transparent 55%);
}
.hero__inner { padding-block: clamp(5rem, 4rem + 9vw, 9.5rem); max-width: 50rem; }
.hero h1 { color: #fff; letter-spacing: -0.025em; text-shadow: 0 2px 24px rgba(4,26,18,0.35); }
.hero .hero__lead { color: rgba(255,255,255,0.92); font-size: var(--fs-500); max-width: 42ch; margin-top: var(--sp-4); text-shadow: 0 1px 12px rgba(4,26,18,0.3); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }
.hero__trust { display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-6); margin-top: var(--sp-7); padding-top: var(--sp-5); border-top: 1px solid rgba(255,255,255,0.22); }
.hero__trust-item { display: inline-flex; align-items: center; gap: 0.55em; font-weight: 600; font-size: var(--fs-300); color: #fff; }
.hero__trust-item svg { width: 1.25em; height: 1.25em; color: var(--green-200); flex: none; }
.hero__badge { display: inline-flex; align-items: center; gap: 0.5em; background: rgba(255,255,255,0.16); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 0.45em 0.95em; border-radius: var(--r-pill); font-weight: 700; font-size: var(--fs-300); margin-bottom: var(--sp-5); }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 4px rgba(242,162,60,0.3); }

/* ---------- 8. BIG SUP (USP) ---------- */
.bigsup { position: relative; overflow: hidden; background: linear-gradient(165deg, var(--green-800), var(--green-700) 55%, var(--blue-700)); color: #eaf5ef; }
.bigsup__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }
.bigsup h2 { color: #fff; }
.bigsup .lead { color: rgba(234,245,239,0.85); }
.bigsup__display { display: flex; align-items: baseline; gap: 0.3em; margin: var(--sp-2) 0 var(--sp-4); }
.bigsup__display b { font-family: var(--font-display); font-size: clamp(3.4rem, 2rem + 8vw, 6rem); font-weight: 800; line-height: 0.9; letter-spacing: -0.04em; color: #fff; }
.bigsup__display .unit { font-size: var(--fs-600); font-weight: 700; color: var(--green-200); max-width: 12ch; line-height: 1.1; }
.bigsup__benefits { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); margin: var(--sp-5) 0; }
.bigsup__benefits li { display: flex; align-items: flex-start; gap: 0.6em; font-weight: 600; font-size: var(--fs-400); color: #f1f8f4; }
.bigsup__benefits svg { width: 1.2em; height: 1.2em; color: var(--sun); flex: none; margin-top: 0.15em; }
.bigsup__media { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; }
.bigsup__tagchip { position: absolute; left: 18px; bottom: 18px; background: rgba(255,255,255,0.95); color: var(--green-800); font-weight: 700; padding: 0.5em 0.9em; border-radius: var(--r-pill); font-size: var(--fs-300); box-shadow: var(--shadow-md); }

/* ---------- 9. LEISTUNGEN / ANGEBOTE ---------- */
.offerings { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--sp-5); }
.offer {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--sp-6); overflow: hidden;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out);
}
.offer:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-200); }
.offer__icon { width: 52px; height: 52px; border-radius: var(--r-md); display: grid; place-items: center; background: var(--green-50); color: var(--brand-strong); margin-bottom: var(--sp-4); }
.offer__icon svg { width: 26px; height: 26px; }
.offer h3 { margin-bottom: var(--sp-2); }
.offer p { color: var(--muted); flex: 1; }
.offer .link-arrow { margin-top: var(--sp-4); }
.offer--feature { grid-row: span 1; background: linear-gradient(160deg, var(--green-700), var(--green-800)); color: #eaf5ef; border-color: transparent; }
.offer--feature h3, .offer--feature p { color: #fff; }
.offer--feature p { color: rgba(234,245,239,0.85); }
.offer--feature .offer__icon { background: rgba(255,255,255,0.16); color: #fff; }
.offer--feature .link-arrow { color: #fff; }
.offer__flag { position: absolute; top: 16px; right: 16px; background: var(--sun); color: #3a2606; font-weight: 800; font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.35em 0.7em; border-radius: var(--r-pill); }

/* ---------- 10. PREISE ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--sp-6);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card--featured { border: 2px solid var(--green-500); box-shadow: var(--shadow-md); }
.price-card__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--sun); color: #3a2606; font-weight: 800; font-size: var(--fs-300); padding: 0.4em 1em; border-radius: var(--r-pill); white-space: nowrap; box-shadow: var(--shadow-sm); }
.price-card__name { font-weight: 800; font-size: var(--fs-600); letter-spacing: -0.01em; }
.price-card__price { display: flex; align-items: baseline; gap: 0.3em; margin: var(--sp-3) 0 var(--sp-1); }
.price-card__name { font-family: var(--font-display); }
.price-card__price b { font-family: var(--font-display); font-size: clamp(2.2rem, 1.6rem + 2vw, 3rem); font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.price-card__price .per { color: var(--muted); font-weight: 600; }
.price-card__note { color: var(--muted-2); font-size: var(--fs-300); }
.price-card__list { display: grid; gap: var(--sp-2); margin: var(--sp-5) 0; }
.price-card__list li { display: flex; align-items: flex-start; gap: 0.55em; color: var(--ink-2); }
.price-card__list svg { width: 1.2em; height: 1.2em; color: var(--green-500); flex: none; margin-top: 0.18em; }
.price-card .btn { margin-top: auto; }

/* ---------- 11. VORTEILE (FEATURES) ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--sp-6) var(--sp-7); }
.feature { display: flex; gap: var(--sp-4); }
.feature__icon { flex: none; width: 48px; height: 48px; border-radius: var(--r-md); display: grid; place-items: center; background: var(--green-50); color: var(--brand-strong); }
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: var(--fs-500); margin-bottom: 0.35em; }
.feature p { color: var(--muted); font-size: var(--fs-400); }

/* ---------- 12. ZIELGRUPPEN (TAGS) ---------- */
.tags { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-3); }
.tag {
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 0.6em 1.1em; border-radius: var(--r-pill);
  background: var(--white); border: 1px solid var(--line-2);
  font-weight: 600; color: var(--ink-2); font-size: var(--fs-400);
  transition: transform var(--t-base) var(--ease-out), background-color var(--t-base) var(--ease-out), color var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out);
}
.tag svg { width: 1.05em; height: 1.05em; color: var(--green-500); }
.tag:hover { transform: translateY(-2px); background: var(--green-600); border-color: var(--green-600); color: #fff; }
.tag:hover svg { color: #fff; }
.section--tint .tag { background: #fff; }

/* ---------- 13. STANDORTE (SEEN) ---------- */
.lakes { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--sp-5); }
.lake {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  min-height: 240px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--sp-5); color: #fff; isolation: isolate;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.lake::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,40,28,0.05) 30%, rgba(8,40,28,0.78) 100%); }
.lake:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.lake__name { font-size: var(--fs-600); font-weight: 800; color: #fff; }
.lake__meta { display: inline-flex; align-items: center; gap: 0.45em; font-size: var(--fs-300); color: rgba(255,255,255,0.9); margin-top: 0.3em; }
.lake__meta svg { width: 1.1em; height: 1.1em; }

/* ---------- 14. GALERIE ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: var(--sp-3); }
.gallery__item { overflow: hidden; border-radius: var(--r-md); position: relative; }
.gallery__item .photo { width: 100%; height: 100%; transition: transform var(--t-slow) var(--ease-out); }
.gallery__item:hover .photo { transform: scale(1.05); }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }

/* ---------- 15. FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: var(--sp-3); }
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out); }
.faq__item[open] { border-color: var(--green-200); box-shadow: var(--shadow-sm); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); padding: var(--sp-5); font-weight: 700; font-size: var(--fs-500); color: var(--ink); cursor: pointer; list-style: none; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q .chev { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--green-50); color: var(--brand-strong); display: grid; place-items: center; transition: transform var(--t-base) var(--ease-out), background-color var(--t-base) var(--ease-out); }
.faq__q .chev svg { width: 15px; height: 15px; }
.faq__item[open] .faq__q .chev { transform: rotate(180deg); background: var(--green-500); color: #fff; }
.faq__a { padding: 0 var(--sp-5) var(--sp-5); color: var(--muted); }
.faq__a p + p { margin-top: var(--sp-3); }

/* ---------- 16. CTA-BAND ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--green-700), var(--blue-700)); color: #fff; border-radius: var(--r-xl); padding: clamp(2.2rem, 1.4rem + 4vw, 4rem); }
.cta-band::before { content: ""; position: absolute; right: -8%; top: -40%; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(242,162,60,0.34), transparent 65%); pointer-events: none; }
.cta-band__inner { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--sp-6); }
.cta-band h2 { color: #fff; max-width: 18ch; }
.cta-band p { color: rgba(255,255,255,0.88); max-width: 46ch; margin-top: var(--sp-3); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* ---------- 17. KONTAKT ---------- */
.contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: start; }
.contact-method { display: flex; gap: var(--sp-4); align-items: center; padding: var(--sp-5); border-radius: var(--r-md); background: var(--white); border: 1px solid var(--line); transition: border-color var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out); }
.contact-method:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--green-200); }
.contact-method__icon { flex: none; width: 48px; height: 48px; border-radius: var(--r-md); display: grid; place-items: center; background: var(--green-50); color: var(--brand-strong); }
.contact-method__icon svg { width: 24px; height: 24px; }
.contact-method__text { display: flex; flex-direction: column; justify-content: center; gap: 2px; min-width: 0; }
.contact-method .label { display: block; font-size: var(--fs-300); color: var(--muted); font-weight: 600; }
.contact-method .value { display: block; font-size: var(--fs-500); font-weight: 700; color: var(--ink); line-height: 1.25; overflow-wrap: break-word; }
.contact-method:hover .value { color: var(--brand-strong); }

/* Calendly-Einbettungsbereich (Platzhalter) */
.calendly-slot { border-radius: var(--r-lg); overflow: hidden; min-height: 540px; background: var(--surface); border: 1px solid var(--line); }
.calendly-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; min-height: 540px; padding: var(--sp-6); color: var(--muted); gap: var(--sp-3); }
.calendly-placeholder .badge-soft { background: var(--green-50); color: var(--brand-strong); padding: 0.4em 0.9em; border-radius: var(--r-pill); font-weight: 700; font-size: var(--fs-300); }
.calendly-placeholder code { background: var(--surface-2); padding: 0.15em 0.5em; border-radius: 6px; font-size: 0.85em; }

/* ---------- 18. FOOTER ---------- */
.site-footer { background: var(--ink); color: #b7c5bd; }
.site-footer a { color: #cdd9d2; }
.site-footer a:hover { color: #fff; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: var(--sp-6); padding-block: var(--sp-8) var(--sp-7); }
.footer__brand .brand { color: #fff; }
.footer__brand .brand__name b { color: #fff; }
.footer__brand .brand__name span { color: #8fa49a; }
.footer__brand p { margin-top: var(--sp-4); max-width: 34ch; color: #9fb1a8; font-size: var(--fs-400); }
.footer__col h4 { color: #fff; font-size: var(--fs-400); margin-bottom: var(--sp-4); letter-spacing: 0; }
.footer__col ul { display: grid; gap: var(--sp-2); }
.footer__col a { font-size: var(--fs-400); }
.footer__contact li { display: flex; gap: 0.6em; align-items: flex-start; margin-bottom: var(--sp-2); font-size: var(--fs-400); }
.footer__contact svg { width: 1.15em; height: 1.15em; color: var(--green-300); flex: none; margin-top: 0.25em; }
.footer__social { display: flex; gap: var(--sp-3); margin-top: var(--sp-4); }
.footer__social a { width: 42px; height: 42px; border-radius: var(--r-md); display: grid; place-items: center; background: rgba(255,255,255,0.08); transition: background-color var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out); }
.footer__social a:hover { background: var(--green-600); transform: translateY(-2px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: var(--sp-5); display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5); align-items: center; justify-content: space-between; font-size: var(--fs-300); color: #8fa49a; }
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: var(--sp-4); }

/* ---------- 19. FOTO-KOMPONENTE ---------- */
/* Hintergrundbild via --img; faellt elegant auf Markenverlauf zurueck,
   falls die Bilddatei (noch) fehlt. role="img" + aria-label fuer A11y. */
.photo {
  background-color: var(--green-100);
  background-image: var(--img, none), linear-gradient(150deg, var(--green-400), var(--blue-500) 70%, var(--blue-600));
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
}
.photo--sunset { background-image: var(--img, none), linear-gradient(160deg, #f6b15a 0%, #e07a4e 38%, #2b6b7e 78%, #173f57 100%); }
.photo--calm { background-image: var(--img, none), linear-gradient(170deg, #bfe3d3 0%, #6fb6c9 55%, #2b86b3 100%); }
.photo--cover { position: absolute; inset: 0; z-index: -2; }
.photo--rounded { border-radius: var(--r-lg); }

/* ---------- 20. UTILITIES ---------- */
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-4 { margin-top: var(--sp-4); } .mt-5 { margin-top: var(--sp-5); } .mt-6 { margin-top: var(--sp-6); } .mt-7 { margin-top: var(--sp-7); }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.divider { height: 1px; background: var(--line); border: 0; }
.badge-note { display: inline-flex; gap: 0.5em; align-items: center; background: #fdecec; color: #a31616; border: 1px solid #f3c4c4; padding: 0.55em 0.9em; border-radius: var(--r-sm); font-weight: 700; font-size: var(--fs-300); }
.notice { background: var(--sand-50); border: 1px solid var(--sand-200); border-radius: var(--r-md); padding: var(--sp-5); }
.eyebrow-info { display:inline-flex; gap:.5em; align-items:center; background:var(--blue-50); color:var(--blue-700); border:1px solid var(--blue-200); padding:.5em .9em; border-radius:var(--r-pill); font-weight:700; font-size:var(--fs-300); }

/* Inline-Seitentitel-Header (Sub-Seiten) */
.page-hero { position: relative; color: #fff; isolation: isolate; overflow: hidden; }
.page-hero__overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,40,28,0.62), rgba(8,40,28,0.5)), radial-gradient(120% 100% at 85% 0%, rgba(242,162,60,0.26), transparent 55%); }
.page-hero__inner { padding-block: clamp(3.5rem, 2.5rem + 6vw, 6.5rem); max-width: 50rem; }
.page-hero h1 { color: #fff; text-shadow: 0 2px 20px rgba(4,26,18,0.3); }
.page-hero .lead { color: rgba(255,255,255,0.92); margin-top: var(--sp-4); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.5em; align-items: center; font-size: var(--fs-300); color: rgba(255,255,255,0.85); margin-bottom: var(--sp-4); }
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 1em; height: 1em; opacity: 0.7; }

/* ---------- 21. ANIMATION / REVEAL ---------- */
/* Default ist SICHTBAR. Nur wenn JS aktiv ist (html.js) wird der
   Startzustand gesetzt und beim Scrollen via .is-in eingeblendet. */
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out); }
html.js .reveal.is-in { opacity: 1; transform: none; }
html.js .reveal[data-reveal="left"] { transform: translateX(-24px); }
html.js .reveal[data-reveal="right"] { transform: translateX(24px); }
html.js .reveal[data-reveal="scale"] { transform: scale(0.96); }
html.js .reveal.is-in[data-reveal] { transform: none; }
/* Stagger fuer Listen */
html.js .reveal-group > * { opacity: 0; transform: translateY(14px); transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out); }
html.js .reveal-group.is-in > * { opacity: 1; transform: none; }
html.js .reveal-group.is-in > *:nth-child(1) { transition-delay: 0ms; }
html.js .reveal-group.is-in > *:nth-child(2) { transition-delay: 60ms; }
html.js .reveal-group.is-in > *:nth-child(3) { transition-delay: 120ms; }
html.js .reveal-group.is-in > *:nth-child(4) { transition-delay: 180ms; }
html.js .reveal-group.is-in > *:nth-child(5) { transition-delay: 240ms; }
html.js .reveal-group.is-in > *:nth-child(6) { transition-delay: 300ms; }

/* sanftes "Floaten" fuer das Hero-Badge */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* ---------- 22. RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .offerings { grid-template-columns: 1fr 1fr; }
  .offer--feature { grid-column: 1 / -1; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: var(--sp-7) var(--sp-6); }
}
@media (max-width: 860px) {
  .nav__links, .nav__actions .btn { display: none; }
  .nav__toggle { display: flex; }
  .bigsup__inner { grid-template-columns: 1fr; }
  .bigsup__media { aspect-ratio: 16 / 11; max-height: 380px; }
  .contact-grid { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price-card--featured { order: -1; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }

  /* Mobile Navigation Drawer */
  .nav__drawer {
    position: fixed; inset: 0; z-index: var(--z-drawer);
    background: rgba(8,28,20,0.5); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden; transition: opacity var(--t-base) var(--ease-out), visibility var(--t-base);
  }
  .nav__drawer-panel {
    position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 360px);
    background: var(--bg); padding: var(--sp-6) var(--sp-5);
    display: flex; flex-direction: column; gap: var(--sp-2);
    transform: translateX(100%); transition: transform var(--t-slow) var(--ease-out);
    box-shadow: var(--shadow-lg); overflow-y: auto;
  }
  body.nav-open .nav__drawer { opacity: 1; visibility: visible; }
  body.nav-open .nav__drawer-panel { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  .nav__drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-4); }
  .nav__drawer .nav__link { font-size: var(--fs-600); padding: 0.7em 0; border-bottom: 1px solid var(--line); }
  .nav__drawer .nav__link::after { display: none; }
  .nav__drawer .btn { margin-top: var(--sp-4); }
  .nav__close { width: 44px; height: 44px; border-radius: var(--r-md); display: grid; place-items: center; color: var(--ink); }
  .nav__close svg { width: 24px; height: 24px; }
  body.nav-open .nav__toggle span { background: transparent; }
  body.nav-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
  body.nav-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }
}
@media (min-width: 861px) { .nav__drawer { display: none; } }
@media (max-width: 560px) {
  .offerings { grid-template-columns: 1fr; }
  .bigsup__benefits { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .hero__actions .btn, .cta-band__actions .btn { width: 100%; }
  .footer__top { grid-template-columns: 1fr; }
}

/* ---------- 23. REDUCED MOTION & PRINT ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  html.js .reveal, html.js .reveal-group > * { opacity: 1 !important; transform: none !important; }
}
@media print {
  .site-header, .nav__drawer, .cta-band, .site-footer .footer__social { display: none; }
  body { color: #000; }
  a { color: #000; }
}

/* ---------- 24. COOKIE-CONSENT ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-toast);
  padding: clamp(0.75rem, 0.4rem + 1.5vw, 1.25rem);
  transform: translateY(140%); transition: transform var(--t-slow) var(--ease-out);
}
.cookie-banner.is-visible { transform: none; }
.cookie-banner__inner {
  max-width: var(--container); margin-inline: auto;
  background: var(--white); border: 1px solid var(--line-2);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  padding: var(--sp-5); display: flex; gap: var(--sp-5);
  align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.cookie-banner__text { max-width: 64ch; }
.cookie-banner__text strong { display: block; font-family: var(--font-display); font-size: var(--fs-500); color: var(--ink); margin-bottom: 3px; }
.cookie-banner__text p { color: var(--muted); font-size: var(--fs-300); margin: 0; line-height: 1.5; }
.cookie-banner__actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
@media (max-width: 640px) {
  .cookie-banner__inner { flex-direction: column; align-items: stretch; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; }
}
@media (prefers-reduced-motion: reduce) { .cookie-banner { transition: none; } }

/* ---------- 25. FORMULAR (Anfrage) ---------- */
.form { display: grid; gap: var(--sp-5); }
.form fieldset { border: 0; padding: 0; margin: 0; }
.form legend { font-weight: 700; font-size: var(--fs-400); color: var(--ink); margin-bottom: var(--sp-3); padding: 0; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 600; font-size: var(--fs-300); color: var(--ink-2); }
.field .req { color: var(--sun-dark); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8em 1em; border: 1.5px solid var(--line-2);
  border-radius: var(--r-md); background: var(--white); color: var(--ink);
  font: inherit; font-size: var(--fs-400);
  transition: border-color var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--green-300); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-500); box-shadow: 0 0 0 4px rgba(31,138,91,0.16);
}
.field textarea { resize: vertical; min-height: 130px; }
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 2.7em; cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475a52' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1em center; background-size: 18px;
}
/* Auswahl-Kacheln (Art der Anfrage) */
.choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: var(--sp-3); }
.choice { position: relative; }
.choice input { position: absolute; inset: 0; opacity: 0; cursor: pointer; margin: 0; }
.choice label {
  display: flex; align-items: center; gap: 0.6em; height: 100%;
  padding: 0.9em 1em; border: 1.5px solid var(--line-2); border-radius: var(--r-md);
  background: var(--white); font-weight: 600; color: var(--ink-2); cursor: pointer;
  transition: border-color var(--t-base) var(--ease-out), background-color var(--t-base) var(--ease-out), color var(--t-base) var(--ease-out), transform var(--t-fast) var(--ease-out);
}
.choice label svg { width: 1.2em; height: 1.2em; color: var(--green-500); flex: none; }
.choice label:hover { border-color: var(--green-300); transform: translateY(-2px); }
.choice input:checked + label { border-color: var(--green-500); background: var(--green-50); color: var(--green-800); box-shadow: inset 0 0 0 1px var(--green-500); }
.choice input:checked + label svg { color: var(--green-600); }
.choice input:focus-visible + label { outline: 3px solid var(--blue-400); outline-offset: 2px; }
.form__consent { display: flex; gap: 0.7em; align-items: flex-start; font-size: var(--fs-300); color: var(--muted); }
.form__consent input { margin-top: 0.15em; width: 18px; height: 18px; flex: none; accent-color: var(--green-600); }
.form__consent a { font-weight: 600; }
.form__actions { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }
.form__hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form__status { display: none; padding: var(--sp-4) var(--sp-5); border-radius: var(--r-md); font-weight: 600; }
.form__status.is-error { display: block; background: #fdecec; color: #a31616; border: 1px solid #f3c4c4; }
.btn.is-loading { position: relative; color: transparent !important; pointer-events: none; }
.btn.is-loading::after { content: ""; position: absolute; width: 20px; height: 20px; border: 2.5px solid rgba(255,255,255,0.4); border-top-color: #fff; border-radius: 50%; animation: btn-spin 0.7s linear infinite; }
@keyframes btn-spin { to { transform: rotate(360deg); } }
/* Erfolgsmeldung */
.form-success { display: none; flex-direction: column; align-items: center; text-align: center; gap: var(--sp-4); padding: clamp(2rem,1.2rem+3vw,3.5rem) var(--sp-5); background: var(--green-50); border: 1px solid var(--green-200); border-radius: var(--r-lg); }
.form-success.is-visible { display: flex; }
.form-success__check { width: 68px; height: 68px; border-radius: 50%; background: var(--green-500); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px rgba(31,138,91,0.3); }
.form-success__check svg { width: 36px; height: 36px; }
.form-success h3 { color: var(--green-800); }
.form-success p { color: var(--ink-2); max-width: 48ch; }
@media (prefers-reduced-motion: reduce) { .btn.is-loading::after { animation-duration: 1.2s; } }
