/* =========================================================================
   Aqua Eleganz – Pool- & Teichbau · Design-System
   Dark-Mode als Standard, Light-Mode via [data-theme="light"]
   Keine externen Ressourcen (DSGVO-konform).
   ========================================================================= */

/* ---------- Design-Tokens: Dark (Standard) ---------- */
:root {
  color-scheme: dark;

  --bg:          #0b1418;
  --bg-2:        #0e1c22;
  --surface:     #12252c;
  --surface-2:   #163038;
  --surface-3:   #1b3a43;
  --border:      rgba(255,255,255,.09);
  --border-strong: rgba(255,255,255,.16);

  --text:        #e9f2f0;
  --text-muted:  #9fb3b0;
  --text-faint:  #6f8582;

  --primary:     #34d1bf;   /* Aqua-Türkis */
  --primary-2:   #23b7a6;
  --primary-ink: #04211d;   /* Text auf Aqua-Flächen */
  --blue:        #37a0cf;
  --green:       #46b782;
  --green-2:     #46b782;
  --gold:        #eaa62a;
  --gold-2:      #d18e15;
  --gold-ink:    #2a1c02;

  --grad-aqua:   linear-gradient(135deg, #34d1bf 0%, #2b9fcf 100%);
  --grad-nature: linear-gradient(135deg, #46b782 0%, #34d1bf 100%);
  --grad-gold:   linear-gradient(135deg, #f2b942 0%, #e09514 100%);

  --shadow-sm:   0 1px 2px rgba(0,0,0,.4);
  --shadow-md:   0 10px 30px -12px rgba(0,0,0,.55);
  --shadow-lg:   0 24px 60px -18px rgba(0,0,0,.6);
  --ring:        0 0 0 3px rgba(52,209,191,.45);

  --radius:      16px;
  --radius-sm:   10px;
  --radius-lg:   26px;
  --radius-pill: 999px;

  --container:   1180px;
  --gutter:      clamp(1.1rem, 4vw, 2.4rem);
  --section-y:   clamp(3.6rem, 8vw, 6.6rem);

  --header-h:    72px;

  --font:        system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  --ease:        cubic-bezier(.4,0,.2,1);
}

/* ---------- Design-Tokens: Light ---------- */
[data-theme="light"] {
  color-scheme: light;

  --bg:          #f4faf8;
  --bg-2:        #ffffff;
  --surface:     #ffffff;
  --surface-2:   #eef6f3;
  --surface-3:   #e3f0ec;
  --border:      rgba(16,44,44,.12);
  --border-strong: rgba(16,44,44,.2);

  --text:        #10262b;
  --text-muted:  #47605c;
  --text-faint:  #6d827e;

  --primary:     #0f9c8b;
  --primary-2:   #0c8577;
  --primary-ink: #ffffff;
  --blue:        #1d6388;
  --green:       #2f8a5f;
  --green-2:     #2f8a5f;
  --gold:        #b9760a;
  --gold-2:      #9c6205;
  --gold-ink:    #ffffff;

  --grad-aqua:   linear-gradient(135deg, #17a493 0%, #1d6388 100%);
  --grad-nature: linear-gradient(135deg, #2f8a5f 0%, #17a493 100%);
  --grad-gold:   linear-gradient(135deg, #d98c14 0%, #b9760a 100%);

  --shadow-sm:   0 1px 2px rgba(16,44,44,.08);
  --shadow-md:   0 12px 30px -14px rgba(16,44,44,.28);
  --shadow-lg:   0 26px 60px -22px rgba(16,44,44,.3);
  --ring:        0 0 0 3px rgba(15,156,139,.4);
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 { line-height: 1.12; font-weight: 800; letter-spacing: -.02em; color: var(--text); }
h2 { font-size: clamp(1.7rem, 1.2rem + 2.4vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .7vw, 1.4rem); letter-spacing: -.01em; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: var(--radius-sm); }

::selection { background: var(--primary); color: var(--primary-ink); }

/* ---------- Layout-Helfer ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--bg-2); }
.narrow { max-width: 760px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--primary); color: var(--primary-ink);
  padding: .7rem 1.1rem; border-radius: var(--radius-sm); font-weight: 700;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; text-decoration: none; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--primary);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--grad-aqua); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head p { color: var(--text-muted); margin-top: .9rem; font-size: 1.08rem; }
.section-head h2 { margin-top: .8rem; }

.lead { font-size: 1.12rem; color: var(--text-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font: inherit; font-weight: 700; line-height: 1;
  padding: .95rem 1.5rem; border-radius: var(--radius-pill);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; }

.btn--primary { background: var(--grad-aqua); color: var(--primary-ink); box-shadow: 0 10px 24px -10px rgba(52,209,191,.6); }
.btn--primary:hover { box-shadow: 0 16px 30px -10px rgba(52,209,191,.7); }

.btn--gold { background: var(--grad-gold); color: var(--gold-ink); box-shadow: 0 10px 24px -10px rgba(234,166,42,.55); }
.btn--gold:hover { box-shadow: 0 16px 30px -10px rgba(234,166,42,.65); }

.btn--ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn--ghost:hover { background: var(--surface-2); border-color: var(--primary); }

.btn--lg { padding: 1.1rem 1.9rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; gap: 1.4rem;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: .65rem; margin-right: auto; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand__logo { width: 40px; height: 40px; flex: none; }
.brand__name { font-weight: 800; letter-spacing: .02em; font-size: 1.12rem; color: var(--text); line-height: 1; }
.brand__name span { display: block; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: .3rem; }
.nav__links a:not(.btn) {
  color: var(--text-muted); font-weight: 600; font-size: .96rem; white-space: nowrap;
  padding: .5rem .8rem; border-radius: var(--radius-sm); text-decoration: none;
  transition: color .15s var(--ease), background .15s var(--ease);
}
.nav__links a:not(.btn):hover { color: var(--text); background: var(--surface-2); }

/* CTA im Menü nur mobil zeigen (Desktop nutzt den Button in den Actions) */
.nav__cta--mobile { display: none; }

.nav__actions { display: flex; align-items: center; gap: .5rem; }

.icon-btn {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px; flex: none;
  background: var(--surface-2); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--radius-pill);
  cursor: pointer; transition: background .15s var(--ease), border-color .15s var(--ease), color .15s;
}
.icon-btn:hover { border-color: var(--primary); color: var(--primary); }
.icon-btn svg { width: 20px; height: 20px; }

/* Theme-Toggle-Icons: passendes Icon je Theme zeigen */
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

.nav__burger { display: none; }

/* Mobile Navigation */
@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: var(--bg-2); border-bottom: 1px solid var(--border);
    padding: .8rem var(--gutter) 1.4rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-140%); transition: transform .32s var(--ease);
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: .85rem 1rem; font-size: 1.05rem; }
  .nav__cta--mobile { display: flex; margin-top: .5rem; justify-content: center; }
  .nav__cta.nav__cta--desktop { display: none; }
  .nav__burger {
    display: inline-grid; place-items: center;
    width: 42px; height: 42px; background: var(--surface-2);
    border: 1px solid var(--border); border-radius: var(--radius-pill); cursor: pointer; color: var(--text);
  }
  .nav__burger svg { width: 22px; height: 22px; }
  .nav__burger .icon-close { display: none; }
  .nav__burger[aria-expanded="true"] .icon-menu { display: none; }
  .nav__burger[aria-expanded="true"] .icon-close { display: block; }
}

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,16,20,.72) 0%, rgba(6,16,20,.45) 40%, rgba(6,16,20,.82) 100%),
    linear-gradient(105deg, rgba(6,16,20,.7) 0%, rgba(6,16,20,.15) 60%);
}
.hero__inner { padding-block: clamp(3.5rem, 11vw, 8rem); max-width: 760px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  color: #eaf6f3; backdrop-filter: blur(6px);
  padding: .5rem 1rem; border-radius: var(--radius-pill);
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px rgba(52,209,191,.25); }
.hero h1 {
  color: #fff; margin-top: 1.4rem;
  font-size: clamp(2.4rem, 1.4rem + 5.4vw, 4.6rem);
  letter-spacing: -.03em; line-height: 1.02;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero h1 .accent {
  background: var(--grad-aqua); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub { color: #dfeeeb; font-size: clamp(1.05rem, 1rem + .5vw, 1.28rem); margin-top: 1.3rem; max-width: 40ch; text-shadow: 0 1px 12px rgba(0,0,0,.35); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; margin-top: 2.4rem; }
.hero__trust li { display: flex; align-items: center; gap: .6rem; color: #d7e8e5; font-weight: 600; font-size: .96rem; }
.hero__trust svg { width: 22px; height: 22px; color: var(--primary); flex: none; }

/* ---------- Leistungen (Service-Karten) ---------- */
.grid { display: grid; gap: clamp(1rem, 2.4vw, 1.5rem); }
.grid--services { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card--hover:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow-md); }

.svc__icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  background: color-mix(in srgb, var(--primary) 16%, transparent);
  color: var(--primary); border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent);
}
.svc__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--text-muted); font-size: 1rem; }

/* ---------- Ablauf (Prozess) ---------- */
.process { display: grid; gap: clamp(.8rem, 2vw, 1.3rem); grid-template-columns: repeat(auto-fit, minmax(184px, 1fr)); counter-reset: step; }
.step { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem 1.4rem 1.5rem; }
.step__num {
  counter-increment: step; content: counter(step);
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  font-weight: 800; font-size: 1.15rem; margin-bottom: 1rem;
  background: var(--grad-nature); color: var(--primary-ink);
}
.step__num::before { content: counter(step); }
.step h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.step p { color: var(--text-muted); font-size: .97rem; }

/* ---------- Über / Split ---------- */
.split { display: grid; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: center; grid-template-columns: 1fr 1fr; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.split__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split__media--tall img { aspect-ratio: 3/4; }
.about__points { display: grid; gap: .9rem; margin-top: 1.5rem; }
.about__points li { display: flex; gap: .75rem; align-items: flex-start; color: var(--text); }
.about__points svg { width: 22px; height: 22px; color: var(--primary); flex: none; margin-top: 2px; }
.about__points strong { display: block; }
.about__points span { color: var(--text-muted); font-size: .96rem; }

/* Kennzahlen / Merkmale (ohne erfundene Zahlen) */
.feature-row { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; margin-top: 1.8rem; }
.feature-row .f { display: flex; align-items: center; gap: .7rem; font-weight: 700; }
.feature-row svg { width: 26px; height: 26px; color: var(--primary); }

/* ---------- Galerie ---------- */
.gallery { display: grid; gap: .8rem; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 200px; }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); cursor: zoom-in; background: var(--surface-2); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem .95rem .8rem; color: #fff; font-weight: 600; font-size: .9rem;
  background: linear-gradient(0deg, rgba(0,0,0,.72), transparent);
  opacity: 0; transform: translateY(8px); transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.gallery__item:hover figcaption, .gallery__item:focus-visible figcaption { opacity: 1; transform: translateY(0); }
/* Asymmetrisches Layout */
.g-a { grid-column: span 6; grid-row: span 2; }
.g-b { grid-column: span 3; grid-row: span 1; }
.g-c { grid-column: span 3; grid-row: span 2; }
.g-d { grid-column: span 3; grid-row: span 1; }
.g-e { grid-column: span 4; grid-row: span 1; }
.g-f { grid-column: span 5; grid-row: span 1; }
.g-g { grid-column: span 3; grid-row: span 1; }
@media (max-width: 760px) {
  .gallery { grid-auto-rows: 150px; }
  .gallery__item { grid-column: span 6 !important; grid-row: span 1 !important; }
  .g-a { grid-column: span 12 !important; grid-row: span 2 !important; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: none;
  align-items: center; justify-content: center; padding: 4vmin;
  background: rgba(4,10,12,.92); backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  color: #fff; width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; transition: background .15s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.25); }
.lightbox__close { top: 3vmin; right: 3vmin; }
.lightbox__close svg, .lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 3vmin; }
.lightbox__nav--next { right: 3vmin; }
.lightbox__caption { position: absolute; bottom: 3vmin; left: 0; right: 0; text-align: center; color: #dfeeeb; font-weight: 600; }
@media (max-width: 560px) { .lightbox__nav { width: 44px; height: 44px; } }

/* ---------- Einzugsgebiet ---------- */
.area-grid { display: grid; gap: .8rem; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.area-card {
  display: flex; align-items: center; gap: .75rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1rem 1.1rem; color: var(--text); font-weight: 700; text-decoration: none;
  transition: transform .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
}
.area-card:hover { transform: translateY(-3px); border-color: var(--primary); background: var(--surface-2); text-decoration: none; }
.area-card__pin { width: 38px; height: 38px; border-radius: 10px; flex: none; display: grid; place-items: center; background: color-mix(in srgb, var(--primary) 15%, transparent); color: var(--primary); }
.area-card__pin svg { width: 20px; height: 20px; }
.area-card__meta { display: flex; flex-direction: column; line-height: 1.2; }
.area-card__meta small { color: var(--text-muted); font-weight: 600; font-size: .78rem; }
.area-card .arrow { margin-left: auto; color: var(--text-faint); transition: transform .18s var(--ease), color .18s; }
.area-card:hover .arrow { color: var(--primary); transform: translateX(3px); }

/* ---------- USP / Warum ---------- */
.usp-grid { display: grid; gap: clamp(1rem, 2.4vw, 1.4rem); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.usp { display: flex; gap: 1rem; align-items: flex-start; padding: 1.3rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.usp__ic { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--grad-aqua); color: var(--primary-ink); }
.usp__ic svg { width: 24px; height: 24px; }
.usp h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.usp p { color: var(--text-muted); font-size: .96rem; }

/* ---------- Kontakt / CTA ---------- */
.cta {
  position: relative; overflow: hidden;
  background: var(--grad-aqua); color: var(--primary-ink);
  border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.6rem);
  box-shadow: var(--shadow-lg);
}
.cta::before {
  content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,.22), transparent 70%);
}
.cta__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(1.4rem, 4vw, 3rem); align-items: center; position: relative; }
@media (max-width: 780px) { .cta__grid { grid-template-columns: 1fr; } }
.cta h2 { color: var(--primary-ink); }
.cta p { color: color-mix(in srgb, var(--primary-ink) 82%, transparent); margin-top: .7rem; font-size: 1.08rem; }
.cta__actions { display: grid; gap: .8rem; }
.cta__actions .btn { background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(4px); }
.cta__actions .btn:hover { background: rgba(255,255,255,.26); }
.cta__actions .btn--solid { background: #fff; color: var(--primary-2); border-color: #fff; }
.cta__actions .btn--solid:hover { background: #f2fffd; }
.cta__actions .btn strong { font-weight: 800; }
.cta__actions .btn small { font-weight: 600; opacity: .8; }
.cta__line { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }

/* Kontakt-Detailkarten */
.contact-info { display: grid; gap: .7rem; margin-top: 1.4rem; }
.contact-info li { display: flex; gap: .7rem; align-items: center; }
.contact-info svg { width: 20px; height: 20px; color: var(--primary-ink); flex: none; }
.contact-info a { color: var(--primary-ink); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding-block: clamp(2.6rem, 5vw, 3.6rem) 1.6rem; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1.6fr 1fr 1fr; }
@media (max-width: 780px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer__brand img { width: 42px; height: 42px; }
.footer p { color: var(--text-muted); font-size: .95rem; max-width: 34ch; }
.footer h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-faint); margin-bottom: .9rem; font-weight: 800; }
.footer ul { display: grid; gap: .55rem; }
.footer a { color: var(--text-muted); text-decoration: none; }
.footer a:hover { color: var(--primary); }
.footer__bottom { margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; justify-content: space-between; align-items: center; color: var(--text-faint); font-size: .88rem; }
.footer__bottom a { color: var(--text-muted); }

/* ---------- Rechtstexte (Impressum/Datenschutz) ---------- */
.legal { padding-block: clamp(2.4rem, 6vw, 4rem); }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(2rem, 1.4rem + 3vw, 3rem); margin-bottom: 1.4rem; }
.legal h2 { font-size: clamp(1.3rem, 1.1rem + 1vw, 1.6rem); margin-top: 2.4rem; margin-bottom: .7rem; }
.legal h3 { margin-top: 1.5rem; margin-bottom: .4rem; }
.legal p, .legal li { color: var(--text-muted); margin-bottom: .8rem; }
.legal ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1rem; }
.legal li { margin-bottom: .4rem; }
.legal a { text-decoration: underline; text-underline-offset: 2px; }
.legal address { font-style: normal; color: var(--text); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem 1.4rem; margin-bottom: 1rem; }
.legal .note { background: color-mix(in srgb, var(--gold) 12%, var(--surface)); border: 1px solid color-mix(in srgb, var(--gold) 40%, transparent); border-radius: var(--radius-sm); padding: 1rem 1.2rem; color: var(--text); font-size: .95rem; }
.breadcrumb { font-size: .88rem; color: var(--text-muted); margin-bottom: 1.4rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }

/* Back-to-top / kleine Helfer */
.center { text-align: center; }
.mt-2 { margin-top: 1.4rem; } .mt-3 { margin-top: 2rem; }
.divider { height: 1px; background: var(--border); border: 0; margin-block: 0; }

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn:hover, .card--hover:hover, .area-card:hover, .gallery__item:hover img { transform: none; }
}

/* ---------- Größere Grundschrift auf Mobilgeräten (bessere Lesbarkeit) ---------- */
@media (max-width: 700px) {
  html { font-size: 17.5px; }
}
@media (max-width: 430px) {
  html { font-size: 18px; }
}
