/* =========================================================
   Aurabad – Stylesheet
   Warm, fürsorglich, beruhigend – gestaltet für Senioren:
   große Schrift, hoher Kontrast, weiche Formen,
   warme Creme-, Terrakotta- und Salbeitöne.
   ========================================================= */

:root {
  /* Warme Markenfarben */
  --klar: #c4673d;          /* Terrakotta – primärer Akzent */
  --klar-dunkel: #a8542e;
  --salbei: #7c9885;        /* Salbeigrün – beruhigend, fürsorglich */
  --salbei-dunkel: #5d7a67;
  --wald: #3c5246;          /* tiefes warmes Grün */
  --wald-tief: #2c3d34;
  --gold: #e3a857;          /* warmer Goldton – das „Aura“-Glühen */
  --gold-weich: #f3d9a8;

  --creme: #fdf8f0;         /* Seitenhintergrund */
  --sand: #f5ecdd;          /* sanfter Abschnittston */
  --sand-tief: #efe2cd;
  --rand: #e7d8c1;          /* warme Ränder */

  --text: #3d2f24;          /* warmes Dunkelbraun */
  --text-stark: #2e231a;    /* Überschriften */
  --text-leicht: #6f6053;
  --weiss: #ffffff;
  --erfolg: #4f7a55;

  --radius: 18px;
  --radius-gross: 28px;
  --schatten: 0 12px 32px rgba(91, 62, 38, 0.10);
  --schatten-stark: 0 22px 55px rgba(91, 62, 38, 0.18);
  --schatten-glow: 0 0 0 8px rgba(227, 168, 87, 0.12);
  --breite: 1180px;
  --fokus: 3px solid var(--klar);
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 19px;          /* großzügige Grundschrift */
  line-height: 1.68;
  color: var(--text);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.15;
  color: var(--text-stark);
  margin: 0 0 .4em;
  font-weight: 600;
}

p { margin: 0 0 1rem; }

a { color: var(--klar-dunkel); }

img { max-width: 100%; display: block; }

.container {
  width: min(100% - 2.5rem, var(--breite));
  margin-inline: auto;
}

.visually-hidden,
.skip-link {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 12px; left: 12px;
  width: auto; height: auto;
  padding: .7rem 1.1rem;
  background: var(--wald-tief);
  color: #fff;
  border-radius: 10px;
  z-index: 2000;
  clip: auto;
}

/* Sichtbarer Fokus für Tastaturnutzung */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: var(--fokus);
  outline-offset: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: .8rem 1.6rem;
  cursor: pointer;
  transition: transform .12s ease, background .2s ease, box-shadow .2s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: linear-gradient(135deg, #d2774a, var(--klar));
  color: #fff;
  box-shadow: 0 10px 24px rgba(196, 103, 61, .35);
}
.btn--primary:hover { background: linear-gradient(135deg, var(--klar), var(--klar-dunkel)); }

.btn--ghost {
  background: #fff;
  color: var(--klar-dunkel);
  border-color: var(--klar);
}
.btn--ghost:hover { background: var(--sand); }

.btn--large { font-size: 1.18rem; padding: 1.05rem 2rem; }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--wald-tief);
  color: #e9ddc9;
  font-size: .98rem;
}
.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.8rem;
  justify-content: center;
  padding: .55rem 0;
}
.topbar__item { white-space: nowrap; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 248, 240, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rand);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .8rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--text-stark);
  font-family: "Fraunces", serif;
  font-size: 1.55rem;
}
.logo__mark { width: 48px; height: 48px; flex: 0 0 auto; }
.logo__text { letter-spacing: -.01em; font-weight: 500; }
.logo__text strong { color: var(--klar); font-weight: 600; }

.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__list a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
  padding: .4rem 0;
}
.nav__list a:hover { color: var(--klar-dunkel); }
.nav__cta {
  background: var(--salbei);
  color: #fff !important;
  padding: .55rem 1.25rem !important;
  border-radius: 999px;
}
.nav__cta:hover { background: var(--salbei-dunkel); }

.nav__toggle {
  display: none;
  width: 48px; height: 48px;
  border: 2px solid var(--rand);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  position: relative;
}
.nav__toggle-bar,
.nav__toggle-bar::before,
.nav__toggle-bar::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 22px; height: 3px;
  background: var(--wald-tief);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .2s ease, opacity .2s ease;
}
.nav__toggle-bar::before { transform: translate(-50%, -9px); }
.nav__toggle-bar::after { transform: translate(-50%, 9px); }

.header__phone {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
  text-align: right;
}
.header__phone-label { font-size: .85rem; color: var(--text-leicht); }
.header__phone-number { font-size: 1.4rem; font-weight: 700; color: var(--klar-dunkel); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 460px at 78% 8%, rgba(227, 168, 87, .28), transparent 70%),
    radial-gradient(700px 500px at 15% 110%, rgba(124, 152, 133, .22), transparent 70%),
    linear-gradient(180deg, var(--sand), var(--creme));
  padding: clamp(2.5rem, 6vw, 5.5rem) 0;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3rem;
  align-items: center;
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  font-size: .95rem;
  color: var(--klar);
  margin-bottom: .6rem;
}
.hero__title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 1rem;
  color: var(--text-stark);
}
.hero__lead {
  font-size: 1.28rem;
  color: var(--text-leicht);
  max-width: 38ch;
  margin-bottom: 1.9rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.9rem;
}
.hero__trust {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: .55rem;
}
.hero__trust li {
  position: relative;
  padding-left: 2rem;
  font-weight: 600;
  color: var(--wald);
}
.hero__trust li::before {
  content: "♥";
  position: absolute;
  left: 0;
  color: var(--klar);
  font-weight: 700;
}

/* Hero-Karte mit sanftem Aura-Glühen */
.hero__visual { display: flex; justify-content: center; }
.hero__card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-gross);
  box-shadow: var(--schatten-stark);
  padding: 2.8rem 2.2rem;
  text-align: center;
  max-width: 330px;
  border: 1px solid var(--rand);
}
.hero__card::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: calc(var(--radius-gross) + 18px);
  background: radial-gradient(circle at 50% 30%, rgba(227,168,87,.35), transparent 70%);
  z-index: -1;
}
.hero__card-icon { font-size: 3.6rem; margin-bottom: .5rem; }
.hero__card-title { font-family: "Fraunces", serif; font-size: 1.55rem; color: var(--text-stark); margin-bottom: .3rem; }
.hero__card-text { color: var(--text-leicht); margin: 0; }

/* ---------- Sections ---------- */
.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section--tint { background: var(--sand); }
.section--dark { background: linear-gradient(160deg, var(--wald), var(--wald-tief)); }

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  font-size: .95rem;
  color: var(--klar);
  margin-bottom: .5rem;
}
.section__eyebrow--light { color: var(--gold); }
.section__title { font-size: clamp(1.8rem, 3.5vw, 2.7rem); margin-bottom: .6rem; }
.section__title--light { color: #fff; }
.section__intro {
  font-size: 1.22rem;
  color: var(--text-leicht);
  max-width: 60ch;
  margin-bottom: 2.5rem;
}

/* ---------- Cards / Leistungen ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.card {
  background: #fff;
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  padding: 2.1rem 1.9rem;
  box-shadow: var(--schatten);
  transition: transform .15s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--schatten-stark); }
.card__icon {
  font-size: 1.9rem;
  width: 64px; height: 64px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: var(--sand);
  margin-bottom: 1rem;
}
.card__title { font-size: 1.4rem; }
.card__text { color: var(--text-leicht); margin: 0; }

/* ---------- Features / Vorteile ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.feature {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.9rem;
  border: 1px solid var(--rand);
  box-shadow: var(--schatten);
}
.feature__num {
  font-family: "Fraunces", serif;
  font-size: 2.1rem;
  color: var(--klar);
  margin-bottom: .4rem;
}
.feature__title { font-size: 1.3rem; }
.feature__text { color: var(--text-leicht); margin: 0; }

/* ---------- Steps / Ablauf ---------- */
.steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.step { position: relative; padding-top: 1rem; }
.step__badge {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--salbei), var(--salbei-dunkel));
  color: #fff;
  display: grid; place-items: center;
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 8px 18px rgba(93, 122, 103, .35);
}
.step__title { font-size: 1.3rem; }
.step__text { color: var(--text-leicht); margin: 0; }

/* ---------- Förderung ---------- */
.foerderung__inner {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 3rem;
  align-items: center;
}
.foerderung__lead { color: #ece1cf; font-size: 1.22rem; }
.foerderung__list {
  list-style: none;
  margin: 0 0 1.5rem; padding: 0;
  display: grid; gap: .8rem;
}
.foerderung__list li {
  color: #f1e8d8;
  padding-left: 2rem;
  position: relative;
  font-size: 1.12rem;
}
.foerderung__list li::before {
  content: "✦";
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: 700;
}
.foerderung__list strong { color: #fff; }
.foerderung__note { color: #cdbfa8; font-size: 1.05rem; margin: 0; }

.foerderung__highlight {
  position: relative;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(227,168,87,.35);
  border-radius: var(--radius-gross);
  padding: 2.8rem 1.5rem;
  text-align: center;
  box-shadow: inset 0 0 60px rgba(227,168,87,.12);
}
.foerderung__big {
  display: block;
  font-family: "Fraunces", serif;
  font-size: clamp(3rem, 6vw, 4.6rem);
  color: var(--gold);
  line-height: 1;
}
.foerderung__small { color: #cdbfa8; font-size: 1.05rem; }

/* ---------- Kundenstimmen ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.quote {
  background: #fff;
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  padding: 2.1rem;
  margin: 0;
  box-shadow: var(--schatten);
}
.quote__stars { color: var(--gold); font-size: 1.35rem; letter-spacing: .12em; margin-bottom: .8rem; }
.quote blockquote {
  margin: 0 0 1rem;
  font-size: 1.14rem;
  color: var(--text);
  font-style: italic;
}
.quote figcaption { color: var(--text-leicht); font-weight: 600; font-style: normal; }

/* ---------- Kontakt / Formular ---------- */
.kontakt__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.kontakt__direct {
  list-style: none;
  margin: 1.5rem 0 0; padding: 0;
  display: grid; gap: 1.2rem;
}
.kontakt__direct li { display: grid; }
.kontakt__direct-label {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .85rem;
  color: var(--text-leicht);
  font-weight: 700;
}
.kontakt__direct a {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--klar-dunkel);
  text-decoration: none;
}
.kontakt__direct small { color: var(--text-leicht); }

.form {
  background: #fff;
  border: 1px solid var(--rand);
  border-radius: var(--radius-gross);
  padding: 2.2rem;
  box-shadow: var(--schatten);
}
.form__row { margin-bottom: 1.1rem; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form label {
  display: block;
  font-weight: 600;
  margin-bottom: .35rem;
  color: var(--text-stark);
}
.form label span[aria-hidden] { color: var(--klar); }
.form input,
.form select,
.form textarea {
  width: 100%;
  font: inherit;
  padding: .85rem .95rem;
  border: 2px solid var(--rand);
  border-radius: 12px;
  background: #fffdf9;
  color: var(--text);
}
.form input:focus,
.form select:focus,
.form textarea:focus { border-color: var(--klar); }
.form textarea { resize: vertical; }

.form__check {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-weight: 400 !important;
  color: var(--text-leicht) !important;
  font-size: .98rem;
  margin: .3rem 0 1.2rem;
}
.form__check input { width: auto; margin-top: .25rem; flex: 0 0 auto; }
.form__hint { font-size: .92rem; color: var(--text-leicht); margin: .8rem 0 0; }
.form__success {
  margin: 1rem 0 0;
  padding: 1rem;
  background: #e9f3e9;
  border: 1px solid #bcdcbe;
  border-radius: 12px;
  color: var(--erfolg);
  font-weight: 600;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--wald-tief);
  color: #d8cab2;
  padding-top: 3rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.logo--footer { color: #fff; }
.logo--footer .logo__text strong { color: var(--gold); }
.footer__claim { color: #b9a98e; margin-top: 1rem; max-width: 32ch; }
.footer__col h4 { color: #fff; font-family: "Source Sans 3", sans-serif; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer__col a { color: #d8cab2; text-decoration: none; }
.footer__col a:hover { color: #fff; text-decoration: underline; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  padding: 1.2rem 0;
  font-size: .92rem;
  color: #b09f86;
}
.footer__bottom a { color: #d8cab2; }

/* ---------- Schwebender Anruf-Button (mobil) ---------- */
.fab {
  display: none;
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 1500;
  background: linear-gradient(135deg, #d2774a, var(--klar));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: .95rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(140, 70, 35, .35);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner,
  .foerderung__inner,
  .kontakt__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .cards,
  .quotes { grid-template-columns: repeat(2, 1fr); }
  .features,
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .header__phone { display: none; }
  .nav { margin-left: auto; }
  .nav__toggle { display: block; }
  .nav__list {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--creme);
    border-bottom: 1px solid var(--rand);
    box-shadow: var(--schatten);
    padding: .5rem 1.25rem 1rem;
    display: none;
  }
  .nav__list.is-open { display: flex; }
  .nav__list a { padding: .9rem 0; border-bottom: 1px solid var(--sand); font-size: 1.15rem; }
  .nav__cta { text-align: center; margin-top: .6rem; }
  .fab { display: inline-block; }
}

@media (max-width: 560px) {
  body { font-size: 18px; }
  .cards,
  .quotes,
  .features,
  .steps,
  .form__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .topbar__inner { font-size: .88rem; }
}

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
