/* ============================================
   Barbara Greb – Heilpädagogisches Reiten
   Straubenhardt / Enzkreis
   ============================================ */

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("../files/fonts/fraunces-variable.woff2") format("woff2-variations"),
       url("../files/fonts/fraunces-variable.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
  src: url("../files/fonts/fraunces-italic-variable.woff2") format("woff2-variations"),
       url("../files/fonts/fraunces-italic-variable.woff2") format("woff2");
}
@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../files/fonts/caveat-variable.woff2") format("woff2-variations"),
       url("../files/fonts/caveat-variable.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../files/fonts/inter-variable.woff2") format("woff2-variations"),
       url("../files/fonts/inter-variable.woff2") format("woff2");
}

:root {
  /* Farben */
  --ink:        #2a2f2c;
  --ink-soft:   #57605a;
  --paper:      #faf7f1;
  --paper-deep: #f0e9da;
  --white:      #ffffff;
  --border:     #e6dfd0;

  --teal:       #2f95ac;
  --teal-light: #44b3c7;
  --teal-dark:  #1c6d80;
  --teal-tint:  #e3f2f3;

  --orange:      #ff9c00;
  --orange-dark: #d17f00;
  --orange-tint: #fff1db;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-script: "Caveat", "Segoe Script", cursive;

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 32px;
  --radius-pill: 999px;

  --maxw: 1200px;
  --text-w: 700px;

  --shadow-s: 0 2px 10px rgba(42,47,44,0.06);
  --shadow-m: 0 12px 32px rgba(42,47,44,0.10);
  --shadow-l: 0 24px 60px rgba(42,47,44,0.16);
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
@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; }
}

* { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }
input, textarea { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--teal-dark);
  color: #fff;
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 var(--radius-s) 0;
}
.skip-link:focus { left: 0; }

/* ============================================
   Eyebrow / Section headings
   ============================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
}
.eyebrow__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.eyebrow--center { justify-content: center; width: 100%; }
.eyebrow--light { color: rgba(255,255,255,0.85); }

.section__title {
  font-size: clamp(28px, 4vw, 42px);
  max-width: 720px;
}
.section__title--center { margin: 0 auto; text-align: center; }
.section__lead {
  margin-top: 18px;
  max-width: var(--text-w);
  font-size: 18px;
  color: var(--ink-soft);
}
.section__lead--center { margin-left: auto; margin-right: auto; text-align: center; }

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--cream { background: var(--paper); }
.section--deep { background: var(--paper-deep); }
.section--teal {
  background: linear-gradient(155deg, var(--teal-dark), var(--teal));
  color: #fff;
}
.section--teal h2, .section--teal h3 { color: #fff; }

@media (max-width: 640px) {
  .section { padding: 64px 0; }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-s);
}
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-m); }

.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  border-color: var(--teal);
  color: var(--teal-dark);
}
.btn--outline:hover { background: var(--teal-tint); transform: translateY(-2px); }

.btn--small { padding: 10px 20px; font-size: 14px; }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(250,247,241,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-s);
  border-color: var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  transition: padding 0.3s ease;
}
.site-header.is-scrolled .site-header__inner { padding: 11px 24px; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand__logo { height: 52px; width: auto; transition: height 0.3s ease; }
.site-header.is-scrolled .brand__logo { height: 40px; }
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
}
.brand__sub {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.nav { margin-left: auto; }
.nav ul {
  display: flex;
  gap: 30px;
}
.nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav a:hover, .nav a.is-active { color: var(--teal-dark); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -3px;
  height: 2px;
  background: var(--orange);
  transition: right 0.25s ease;
}
.nav a:hover::after { right: 0; }

.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: transparent;
  border: none;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(340px, 84vw);
    background: var(--paper);
    box-shadow: var(--shadow-l);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 100px 32px 32px;
    margin-left: 0;
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav ul { flex-direction: column; gap: 4px; }
  .nav ul a { display: block; padding: 12px 0; font-size: 17px; }
  body.nav-open { overflow: hidden; }
}

.nav-scrim {
  display: none;
  position: fixed; inset: 0;
  background: rgba(20,20,18,0.35);
  z-index: 400;
}
body.nav-open .nav-scrim { display: block; }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 64px;
  overflow: hidden;
  color: #fff;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,60,68,0.45) 0%, rgba(26,60,68,0.62) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 60px 0 90px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__title {
  font-size: clamp(40px, 6vw, 68px);
  color: #fff;
  text-wrap: balance;
}
.hero__title em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 600;
  font-size: 1.25em;
  color: var(--orange);
}
.hero__lead {
  margin-top: 22px;
  font-size: 19px;
  max-width: 560px;
  color: rgba(255,255,255,0.92);
}
.hero__actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__features {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.25);
}
.hero__features-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  padding: 26px 0;
}
.hero__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}
.hero__feature svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--orange); }

@media (max-width: 640px) {
  .hero__features-inner { flex-direction: column; align-items: flex-start; gap: 14px; padding: 22px 0; }
}

.scroll-cue {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.75);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
}
.scroll-cue svg { width: 18px; height: 18px; }
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ============================================
   Reveal on scroll
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--scale { transform: translateY(0) scale(0.94); }
.reveal--scale.is-visible { transform: scale(1); }

/* ============================================
   Feature / Angebot Karten
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .card-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 30px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-m);
  border-color: var(--teal-light);
}
.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 19px; margin-bottom: 10px; }
.feature-card p { color: var(--ink-soft); font-size: 15px; }

/* ============================================
   Zielgruppen Chips
   ============================================ */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.chip {
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--border);
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.chip svg { width: 16px; height: 16px; color: var(--orange); }

/* ============================================
   Split / Mosaic Sections (Über mich, Pferde)
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split--reverse .split__text { order: 1; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split__media { order: 1; }
  .split--reverse .split__text { order: 2; }
}
.split__media {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-m);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.split__media--wide img { aspect-ratio: 6/5; }
.split__badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(250,247,241,0.94);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-m);
  padding: 14px 20px;
  box-shadow: var(--shadow-s);
  max-width: 220px;
}
.split__badge strong { display: block; font-family: var(--font-display); font-size: 22px; color: var(--teal-dark); }
.split__badge span { font-size: 13px; color: var(--ink-soft); }

.split__text p { color: var(--ink-soft); margin-top: 16px; }
.split__text p:first-of-type { margin-top: 20px; }
.split__signature {
  margin-top: 28px;
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  color: var(--teal-dark);
}

.placeholder-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.9);
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  z-index: 2;
}

/* ============================================
   Pferde-Grid
   ============================================ */
.pferde-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 800px) { .pferde-grid { grid-template-columns: 1fr; } }
.pferde-grid figure {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-m);
}
.pferde-grid img { width: 100%; height: 100%; object-fit: cover; }
.pferde-grid figure:first-child img { aspect-ratio: 5/4; }
.pferde-grid figure:last-child img { aspect-ratio: 4/5; }
.pferde-grid figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(20,40,45,0.75), transparent);
  color: #fff;
  font-weight: 600;
}

/* ============================================
   Impressionen / Gallery + Lightbox
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: zoom-in;
  box-shadow: var(--shadow-s);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,40,45,0.45), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item__icon {
  position: absolute;
  bottom: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gallery-item__icon { opacity: 1; transform: translateY(0); }
.gallery-item__icon svg { width: 17px; height: 17px; }

.lightbox {
  position: fixed; inset: 0;
  z-index: 900;
  background: rgba(20,25,23,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%; max-height: 84vh;
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-l);
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__close:hover { background: rgba(255,255,255,0.24); }
.lightbox__close svg { width: 22px; height: 22px; }
.lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.24); }
.lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
@media (max-width: 640px) {
  .lightbox { padding: 16px; }
  .lightbox__nav { width: 42px; height: 42px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}

/* ============================================
   Zitat / Slogan Band
   ============================================ */
.quote-band {
  padding: 90px 0;
  text-align: center;
  background: var(--paper-deep);
}
.quote-band blockquote {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(34px, 5.5vw, 54px);
  max-width: 820px;
  margin: 0 auto;
  color: var(--teal-dark);
}
.quote-band cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================
   Kontakt
   ============================================ */
.kontakt-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  margin-top: 48px;
}
@media (max-width: 900px) { .kontakt-grid { grid-template-columns: 1fr; } }

.kontakt-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}
.kontakt-info__item svg {
  width: 22px; height: 22px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}
.kontakt-info__item strong { display: block; font-size: 15px; margin-bottom: 3px; }
.kontakt-info__item a, .kontakt-info__item address { color: var(--ink-soft); font-style: normal; }
.kontakt-info__item a:hover { color: var(--teal-dark); }

.kontakt-map {
  margin-top: 28px;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-s);
}
.kontakt-map iframe { width: 100%; height: 260px; border: 0; display: block; filter: grayscale(0.25) contrast(1.05); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 40px;
  box-shadow: var(--shadow-m);
}
@media (max-width: 560px) { .form-card { padding: 26px; } }

.form-row { margin-bottom: 20px; }
.form-row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .form-row--split { grid-template-columns: 1fr; } }
.form-row label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.form-row input, .form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-s);
  background: var(--paper);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-tint);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row--checkbox { display: flex; align-items: flex-start; gap: 10px; }
.form-row--checkbox input { width: auto; margin-top: 4px; }
.form-row--checkbox label { font-size: 13px; font-weight: 400; color: var(--ink-soft); }
.form-row--checkbox a { color: var(--teal-dark); text-decoration: underline; }

.hp-field { position: absolute; left: -9999px; }

.form-msg { border-radius: var(--radius-s); padding: 14px 18px; font-size: 14px; margin-bottom: 20px; display: none; }
.form-msg:not(:empty) { display: block; }
.form-msg--ok { background: #e2f3e6; color: #2b6b3d; }
.form-msg--err { background: #fbe6e2; color: #a13d24; }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: #1f2b29;
  color: rgba(255,255,255,0.82);
  padding: 64px 0 0;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 800px) { .site-footer__inner { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-brand span { font-family: var(--font-display); font-size: 18px; color: #fff; }
.site-footer p { color: rgba(255,255,255,0.65); font-size: 14px; max-width: 320px; }

.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer-col a, .footer-col address { display: block; color: rgba(255,255,255,0.72); font-style: normal; font-size: 14px; margin-bottom: 10px; }
.footer-col a:hover { color: #fff; }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: rgba(255,255,255,0.55); }
.footer-legal a:hover { color: #fff; }
.footer-credit a { color: rgba(255,255,255,0.65); text-decoration: underline; }
.footer-credit a:hover { color: #fff; }

/* ============================================
   Back to top
   ============================================ */
.back-to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--teal-dark);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-m);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.2s ease;
  z-index: 400;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--teal); }
.back-to-top svg { width: 20px; height: 20px; }

/* ============================================
   Rechtstexte (Impressum / Datenschutz)
   ============================================ */
.page-hero {
  padding: 160px 0 60px;
  background: linear-gradient(155deg, var(--teal-dark), var(--teal));
  color: #fff;
}
.page-hero__title { font-size: clamp(32px, 5vw, 48px); color: #fff; }
.page-hero__lead { margin-top: 16px; max-width: 620px; color: rgba(255,255,255,0.9); }

.prose { max-width: var(--text-w); }
.prose h2 { font-size: 22px; margin-top: 40px; margin-bottom: 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 17px; margin-top: 24px; margin-bottom: 8px; }
.prose p { margin-bottom: 14px; color: var(--ink-soft); }
.prose ul { margin: 0 0 14px 0; }
.prose li { color: var(--ink-soft); margin-bottom: 6px; padding-left: 20px; position: relative; }
.prose li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
}
.prose a { color: var(--teal-dark); text-decoration: underline; }

/* ============================================
   Danke-Seite
   ============================================ */
.danke {
  min-height: 70vh;
  display: flex; align-items: center;
  padding: 160px 0 80px;
  text-align: center;
}
.danke__inner { max-width: 560px; margin: 0 auto; }
.danke__icon {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.danke__icon svg { width: 40px; height: 40px; }
.danke h1 { font-size: clamp(28px, 4vw, 38px); }
.danke p { margin-top: 16px; color: var(--ink-soft); font-size: 17px; }
.danke .btn { margin-top: 32px; }
