/* ============================================================
   Trageberatung Fulda – zentrales Stylesheet
   Farbwelt: warme Erdtöne, hell, familiär
   ============================================================ */

:root {
  /* Farben */
  --cream: #fbf4ec;          /* Seitenhintergrund */
  --cream-soft: #fdf9f4;     /* Karten auf farbigem Grund */
  --blush: #f6e7da;          /* helle Akzentfläche */
  --sand: #efe0d0;
  --clay: #a87c63;           /* Terrakotta / Ton */
  --clay-dark: #8a6350;
  --clay-deep: #6f4f3f;
  --sage: #8a9678;           /* Salbeigrün */
  --sage-dark: #5c6a4c;
  --sage-deep: #47523b;
  --sage-tint: #e8ebdd;
  --ink: #46352a;            /* Textfarbe */
  --ink-soft: #6d5b4e;       /* gedämpfter Text */
  --line: rgba(110, 80, 60, 0.14);
  --white: #fffdfa;
  --shadow: 0 14px 40px -12px rgba(94, 66, 46, 0.18);
  --shadow-soft: 0 10px 30px -14px rgba(94, 66, 46, 0.14);

  /* Typografie */
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Maße */
  --container: 1140px;
  --radius: 22px;
  --radius-lg: 32px;
  --header-h: 84px;
}

/* ---------- Basis ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.075rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--clay-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--clay-deep);
}

::selection {
  background: var(--clay);
  color: var(--cream);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.65rem); }

p {
  margin: 0 0 1.1em;
}

.lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay-dark);
  margin: 0 0 1rem;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--clay);
  border-radius: 2px;
}

.kicker--center {
  justify-content: center;
}

.kicker--center::after {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--clay);
  border-radius: 2px;
}

/* ---------- Layout-Helfer ---------- */

.container {
  width: min(var(--container), 92vw);
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  position: relative;
}

.section--alt {
  background: var(--blush);
}

.section--tint {
  background: var(--sage-tint);
}

.section--tight-top {
  padding-top: 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.section-head--left {
  margin-left: 0;
  text-align: left;
}

/* Abschluss-Zeile unter Listen/Karten, z. B. „Alle Fragen ansehen" */
.section-foot {
  margin-top: clamp(2.2rem, 4.5vw, 3rem);
  text-align: center;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 12px 0;
  z-index: 200;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--clay);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(138, 99, 80, 0.55);
}

.btn--primary:hover {
  background: var(--clay-dark);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(110, 80, 60, 0.35);
}

.btn--ghost:hover {
  border-color: var(--clay);
  color: var(--clay-deep);
  background: rgba(168, 124, 99, 0.07);
}

.btn--light {
  background: var(--cream);
  color: var(--clay-deep);
}

.btn--light:hover {
  background: #fff;
  color: var(--clay-deep);
}

.btn--sage {
  background: var(--sage-dark);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(76, 90, 64, 0.55);
}

.btn--sage:hover {
  background: var(--sage-deep);
  color: #fff;
}

.btn--lg {
  padding: 1.1rem 2.3rem;
  font-size: 1.05rem;
}

.btn .icon {
  width: 1.15em;
  height: 1.15em;
  flex: none;
}

/* ---------- Icons ---------- */

.icon {
  width: 22px;
  height: 22px;
  flex: none;
}

/* ---------- Header / Navigation ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 244, 236, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px -12px rgba(94, 66, 46, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--ink);
}

.brand__mark {
  width: auto;
  height: 60px;
  flex: none;
}

/* Logo ist dunkle Linienzeichnung – im dunklen Footer hell darstellen */
.site-footer .brand__mark {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand__claim {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clay-dark);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a:not(.btn) {
  position: relative;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.3rem 0;
}

.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav__links a:not(.btn):hover::after,
.nav__links a:not(.btn)[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav__links .btn {
  padding: 0.68rem 1.5rem;
  font-size: 0.95rem;
}

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(110, 80, 60, 0.3);
  border-radius: 12px;
  background: var(--cream-soft);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s 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);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem)) 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
}

.hero__blob--one {
  width: 480px;
  height: 480px;
  background: #f3ddc9;
  top: -140px;
  right: -120px;
}

.hero__blob--two {
  width: 420px;
  height: 420px;
  background: #dde3cd;
  bottom: -180px;
  left: -140px;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.hero__copy .lead {
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero__actions--center {
  justify-content: center;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2.4rem;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.hero__facts li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__facts .icon {
  width: 20px;
  height: 20px;
  color: var(--sage-dark);
  flex: none;
}

.hero__art {
  position: relative;
  justify-self: center;
  width: min(440px, 100%);
}

.hero__arch {
  position: relative;
  border-radius: 260px 260px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 10px solid var(--white);
  background: var(--sage-tint);
}

.hero__arch img {
  width: 100%;
  height: auto;
}

.hero__badge {
  position: absolute;
  left: -12%;
  bottom: 9%;
  max-width: 250px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.1rem 1.3rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.4;
  color: var(--clay-deep);
  animation: floaty 6s ease-in-out infinite;
}

.hero__badge small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Vertrauens-Leiste ---------- */

.strip {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.6rem 0;
}

.strip__item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  justify-content: center;
  font-weight: 500;
  color: var(--ink);
  font-size: 1rem;
}

.strip__item .icon {
  width: 34px;
  height: 34px;
  color: var(--clay);
  flex: none;
}

/* ---------- Karten (Angebot) ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card__icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: var(--sage-deep);
  color: #e9ecdf;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
}

.card__icon svg {
  width: 34px;
  height: 34px;
}

.card h3 {
  margin-bottom: 0.4em;
}

.card p {
  color: var(--ink-soft);
  font-size: 1rem;
  flex-grow: 1;
}

.card__link {
  font-weight: 500;
  text-decoration: none;
  color: var(--clay-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.card__link .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.card__link:hover .icon {
  transform: translateX(4px);
}

/* ---------- Zitat-Band ---------- */

.quote-band {
  background: var(--clay);
  color: var(--cream);
  text-align: center;
  padding: clamp(4rem, 8vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}

.quote-band--sage {
  background: var(--sage-deep);
}

.quote-band blockquote {
  margin: 0 auto;
  max-width: 820px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.4;
}

.quote-band blockquote p {
  margin: 0;
  quotes: "\201E" "\201C";
}

.quote-band blockquote p::before {
  content: open-quote;
}

.quote-band blockquote p::after {
  content: close-quote;
}

.quote-band cite {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.8;
}

.quote-band .quote-mark {
  position: absolute;
  font-family: var(--font-display);
  font-size: 22rem;
  line-height: 1;
  opacity: 0.08;
  top: -4rem;
  left: 2rem;
  pointer-events: none;
  user-select: none;
}

/* ---------- Bewertungen ---------- */

.reviews .section-head {
  margin-bottom: 0;
}

.reviews__stars {
  display: inline-flex;
  gap: 0.4rem;
  margin: 0.2rem 0 1.1rem;
  color: #d9a24b;
}

.reviews__stars svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* ---------- Bewertungs-Slider ---------- */

.slider {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.slider__viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.slider__track {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.slider__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 6px;
  box-sizing: border-box;
}

.review-card {
  margin: 0;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.7rem, 4.5vw, 2.7rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.review-card__stars {
  display: inline-flex;
  gap: 0.3rem;
  color: #d9a24b;
}

.review-card__stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.review-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.5;
  color: var(--ink);
  max-width: 36rem;
}

.review-card blockquote p {
  margin: 0;
}

.review-card figcaption {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(110, 80, 60, 0.3);
  background: var(--cream-soft);
  color: var(--clay-deep);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.slider__btn:hover {
  background: #fff;
  border-color: var(--clay);
  transform: translateY(-50%) scale(1.06);
}

.slider__btn svg {
  width: 20px;
  height: 20px;
}

.slider__btn--prev {
  left: -66px;
}

.slider__btn--prev svg {
  transform: rotate(180deg);
}

.slider__btn--next {
  right: -66px;
}

@media (max-width: 1000px) {
  .slider__btn--prev { left: 6px; }
  .slider__btn--next { right: 6px; }
  .slider__btn { background: rgba(253, 249, 244, 0.92); }
}

.slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(110, 80, 60, 0.25);
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.slider__dot.is-active {
  background: var(--clay);
  transform: scale(1.3);
}

/* ---------- Zweispalter ---------- */

.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.split--reverse .split__media {
  order: 2;
}

.split__media {
  position: relative;
}

.photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sage-tint);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1.5px solid rgba(255, 253, 250, 0.55);
  border-radius: calc(var(--radius-lg) - 10px);
  pointer-events: none;
}

.photo-frame--arch {
  border-radius: 240px 240px var(--radius-lg) var(--radius-lg);
}

.photo-frame--arch::after {
  border-radius: 230px 230px calc(var(--radius-lg) - 10px) calc(var(--radius-lg) - 10px);
}

/* Rahmen für echte Fotos: füllt den Rahmen formatfüllend aus */
.photo-frame--photo {
  aspect-ratio: 4 / 5;
}

.photo-frame--photo.photo-frame--wide {
  aspect-ratio: 3 / 2;
}

.photo-frame--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Großes, randabfallendes Foto-Banner mit optionaler Bildunterschrift */
.photo-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sage-tint);
  aspect-ratio: 16 / 8;
}

.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.photo-band__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(1.6rem, 4vw, 2.8rem);
  background: linear-gradient(to top, rgba(61, 47, 38, 0.72), rgba(61, 47, 38, 0));
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 2.1rem);
  line-height: 1.35;
}

@media (max-width: 700px) {
  .photo-band {
    aspect-ratio: 4 / 5;
  }
}

.split__deco {
  position: absolute;
  z-index: -1;
  width: 70%;
  height: 70%;
  border-radius: var(--radius-lg);
  background: var(--blush);
  bottom: -24px;
  right: -24px;
}

.split--reverse .split__deco {
  right: auto;
  left: -24px;
  background: var(--sage-tint);
}

/* ---------- Checkliste ---------- */

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.checklist li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.checklist .icon {
  width: 26px;
  height: 26px;
  flex: none;
  color: var(--sage-dark);
  margin-top: 0.15rem;
}

.checklist strong {
  display: block;
}

.checklist span {
  color: var(--ink-soft);
  font-size: 1rem;
}

/* ---------- Schritte ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 1.7rem 1.9rem;
  box-shadow: var(--shadow-soft);
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -1.35rem;
  left: 1.6rem;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: var(--clay);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px -8px rgba(138, 99, 80, 0.6);
}

.step h3 {
  margin-bottom: 0.35em;
}

.step p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin: 0;
}

/* ---------- Angebotsdetails ---------- */

.offer {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-soft);
}

.offer + .offer {
  margin-top: 1.6rem;
}

.offer__icon {
  width: 96px;
  height: 96px;
  border-radius: 26px;
  background: var(--sage-deep);
  color: #e9ecdf;
  display: grid;
  place-items: center;
}

.offer__icon svg {
  width: 52px;
  height: 52px;
}

.offer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.offer__meta li {
  background: var(--blush);
  color: var(--clay-deep);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.offer__meta .icon {
  width: 16px;
  height: 16px;
}

/* ---------- Instagram / CTA ---------- */

.insta-band {
  text-align: center;
}

.insta-band__handle {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  margin-top: 0.4rem;
}

.insta-band__handle .icon {
  width: 1.3em;
  height: 1.3em;
  color: var(--clay);
}

.insta-band__handle:hover {
  color: var(--clay-deep);
}

.cta-band {
  background: linear-gradient(115deg, var(--clay) 0%, var(--clay-dark) 100%);
  border-radius: var(--radius-lg);
  color: var(--cream);
  padding: clamp(2.6rem, 6vw, 4rem);
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 40px solid rgba(255, 253, 250, 0.08);
  top: -120px;
  right: -80px;
}

.cta-band h2 {
  color: var(--cream);
  margin-bottom: 0.3em;
}

.cta-band p {
  margin: 0;
  opacity: 0.9;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  position: relative;
}

.cta-band .btn--ghost {
  color: var(--cream);
  border-color: rgba(255, 253, 250, 0.45);
}

.cta-band .btn--ghost:hover {
  color: #fff;
  border-color: rgba(255, 253, 250, 0.75);
  background: rgba(255, 253, 250, 0.12);
}

/* ---------- FAQ / Akkordeon ---------- */

.faq-list {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  font-weight: 500;
  font-size: 1.08rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .faq-icon {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--clay-deep);
  display: grid;
  place-items: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-item summary .faq-icon svg {
  width: 16px;
  height: 16px;
}

.faq-item[open] summary .faq-icon {
  transform: rotate(45deg);
  background: var(--clay);
  color: #fff;
}

.faq-item .faq-body {
  padding: 0 1.5rem 1.3rem;
  color: var(--ink-soft);
}

.faq-item .faq-body p:last-child {
  margin-bottom: 0;
}

/* ---------- Kontakt-Kacheln ---------- */

.contact-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.contact-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.8rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.contact-tile .icon {
  width: 46px;
  height: 46px;
  color: var(--clay);
  margin-bottom: 0.4rem;
}

.contact-tile strong {
  font-size: 1.12rem;
}

.contact-tile span {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ---------- Formular ---------- */

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.8rem, 5vw, 3rem);
  max-width: 860px;
  margin-inline: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 500;
  font-size: 0.98rem;
}

.form-field label .req {
  color: var(--clay-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream-soft);
  border: 1.5px solid rgba(110, 80, 60, 0.22);
  border-radius: 14px;
  padding: 0.85rem 1.05rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sage-dark);
  box-shadow: 0 0 0 4px rgba(138, 150, 120, 0.18);
}

.form-hint {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill-group label {
  position: relative;
  cursor: pointer;
}

.pill-group input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.pill-group span {
  display: inline-block;
  border: 1.5px solid rgba(110, 80, 60, 0.28);
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  background: var(--cream-soft);
}

.pill-group input:checked + span {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: #fff;
}

.pill-group input:focus-visible + span {
  box-shadow: 0 0 0 4px rgba(138, 150, 120, 0.3);
}

/* Honeypot-Feld: für Menschen unsichtbar, für Bots ein Köder */
.form-field--hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.consent input {
  width: 22px;
  height: 22px;
  margin-top: 0.2rem;
  accent-color: var(--sage-dark);
  flex: none;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.form-note {
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  background: var(--sage-tint);
  border-radius: 14px;
  font-size: 0.92rem;
  color: var(--sage-deep);
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.form-note .icon {
  width: 22px;
  height: 22px;
  flex: none;
  margin-top: 0.1rem;
}

.form-feedback {
  display: none;
  margin-top: 1.2rem;
  padding: 0.9rem 1.2rem;
  border-radius: 14px;
  font-size: 0.98rem;
}

.form-feedback.is-error {
  display: block;
  background: #f7e3dc;
  color: #8a4632;
}

.form-feedback.is-success {
  display: block;
  background: var(--sage-tint);
  color: var(--sage-deep);
}

/* ---------- Video ---------- */

.video-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink);
}

.video-frame video {
  width: 100%;
  display: block;
}

/* ---------- Footer ---------- */

.site-footer {
  background: #3d2f26;
  color: #e9ded4;
  padding: clamp(3.5rem, 7vw, 5rem) 0 2rem;
  margin-top: 0;
}

.site-footer a {
  color: #e9ded4;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(233, 222, 212, 0.18);
}

.footer-brand .brand__name {
  color: #f4ece3;
}

.footer-brand .brand__claim {
  color: #c9a68f;
}

.footer-brand p {
  color: #cbbdb0;
  font-size: 0.98rem;
  max-width: 30rem;
  margin-top: 1rem;
}

.footer-col h4 {
  color: #f4ece3;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  font-size: 0.98rem;
}

.footer-col li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* lange E-Mail-Adressen sauber umbrechen statt überlaufen */
.footer-col a,
.contact-tile span {
  overflow-wrap: anywhere;
}

.footer-col .icon {
  width: 18px;
  height: 18px;
  color: #c9a68f;
  flex: none;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: 0.9rem;
  color: #b7a698;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom ul {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
}

/* ---------- Unterseiten-Hero ---------- */

.page-hero {
  padding: calc(var(--header-h) + clamp(2.5rem, 6vw, 4rem)) 0 clamp(2.5rem, 5vw, 3.5rem);
  background: var(--blush);
  border-bottom: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  max-width: 780px;
}

.page-hero .lead {
  margin-bottom: 0;
}

.page-hero__deco {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 50px solid rgba(168, 124, 99, 0.08);
  top: -140px;
  right: -120px;
  pointer-events: none;
}

/* ---------- Rechtstexte / Prosa ---------- */

.prose {
  max-width: 780px;
  margin-inline: auto;
}

.prose h2 {
  font-size: 1.7rem;
  margin-top: 2.2em;
}

.prose h3 {
  font-size: 1.25rem;
  margin-top: 1.8em;
}

.prose ul {
  padding-left: 1.3rem;
}

.prose .notice {
  background: var(--blush);
  border-left: 4px solid var(--clay);
  border-radius: 0 14px 14px 0;
  padding: 1rem 1.3rem;
  font-size: 0.98rem;
  color: var(--clay-deep);
}

/* ---------- Scroll-Animationen ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal--left {
  transform: translateX(-36px);
}

.reveal--right {
  transform: translateX(36px);
}

.reveal--zoom {
  transform: scale(0.94);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Sanft gezeichnete Linien-Illustrationen */
.draw-on-view path,
.draw-on-view circle,
.draw-on-view ellipse {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
}

.draw-on-view.in-view path,
.draw-on-view.in-view circle,
.draw-on-view.in-view ellipse {
  animation: draw-line 2.6s ease forwards;
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

/* ---------- Responsiv ---------- */

@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream-soft);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 0.6rem 4vw 1.4rem;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
  }

  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__links li {
    border-bottom: 1px solid var(--line);
  }

  .nav__links li:last-child {
    border-bottom: none;
    padding-top: 1rem;
  }

  .nav__links a:not(.btn) {
    display: block;
    padding: 0.95rem 0.2rem;
    font-size: 1.1rem;
  }

  .nav__links .btn {
    width: 100%;
  }

  .hero__grid,
  .split,
  .split--reverse {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__media {
    order: 0;
  }

  .hero__art {
    margin-inline: auto;
  }

  .hero__badge {
    left: 0;
  }

  .strip__grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .strip__item {
    justify-content: flex-start;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .contact-tiles {
    grid-template-columns: 1fr;
  }

  .cta-band {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-band__actions {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .offer {
    grid-template-columns: 1fr;
  }
}

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

  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero__badge {
    position: static;
    margin-top: 1rem;
    max-width: none;
    animation: none;
  }

  .brand__claim {
    display: none;
  }
}

/* ---------- Barrierefreiheit ---------- */

:focus-visible {
  outline: 3px solid var(--sage-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .draw-on-view path,
  .draw-on-view circle,
  .draw-on-view ellipse {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }
}

@media print {
  .site-header,
  .site-footer,
  .cta-band,
  .nav__toggle {
    display: none !important;
  }

  body {
    background: #fff;
  }
}
