/* ==========================================================================
   Bahar – Alltagshilfe & Betreuung, Wedel
   Farbwelt: warmes Sand + tiefes Petrol + Koralle
   Schriften: Fraunces (Überschriften), Inter (Text) – selbst gehostet
   ========================================================================== */

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/fraunces-var-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/inter-var-latin.woff2") format("woff2");
}

:root {
  --sand: #faf6f0;
  --sand-deep: #f1eadf;
  --paper: #ffffff;
  --ink: #21333a;
  --muted: #55686f;
  --line: #e5dccd;
  --teal: #16606b;
  --teal-deep: #0e444d;
  --teal-soft: #e2eeec;
  --coral: #dd6a50;
  --coral-soft: #fbe9e3;
  --radius: 20px;
  --shadow: 0 2px 6px rgba(33, 51, 58, 0.05), 0 18px 44px -18px rgba(33, 51, 58, 0.18);
  --wrap: 1120px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--teal-deep);
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }
img, svg { max-width: 100%; height: auto; }

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

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

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

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

.section { padding: 88px 0; }
.section--alt { background: var(--paper); }
.section--deep {
  background: linear-gradient(160deg, var(--teal-deep), var(--teal) 90%);
  color: #f0f5f4;
}
.section--deep h2 { color: #fff; }

.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 42em;
}

.section-head { max-width: 46em; margin-bottom: 44px; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { flex: none; }

.btn--primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(14, 68, 77, 0.55);
}
.btn--primary:hover { background: var(--teal-deep); color: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--teal-deep);
  border-color: rgba(22, 96, 107, 0.35);
}
.btn--ghost:hover { border-color: var(--teal); background: rgba(22, 96, 107, 0.06); }

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

.btn--whatsapp {
  background: #1fa855;
  color: #fff;
}
.btn--whatsapp:hover { background: #179147; color: #fff; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 240, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 220, 205, 0.7);
}

.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  max-width: var(--wrap);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--teal-deep);
}
.brand img { width: 44px; height: 44px; }
.brand__name {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.1;
}
.brand__claim {
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  text-decoration: none;
  font-weight: 550;
  font-size: 0.97rem;
  color: var(--ink);
}
.nav a:hover { color: var(--teal); }
.nav .btn { padding: 11px 20px; font-size: 0.95rem; }
.nav a.btn--primary,
.nav a.btn--primary:hover { color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--teal-deep);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -20% -55% -20%;
  height: 90%;
  background: radial-gradient(55% 90% at 70% 100%, rgba(22, 96, 107, 0.1), transparent 70%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.hero .lead { font-size: 1.2rem; margin-bottom: 32px; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
}
.hero__facts li { display: flex; align-items: center; gap: 8px; }
.hero__facts svg { color: var(--coral); flex: none; }

.hero__card {
  position: relative;
  background: var(--paper);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 40px 36px;
  text-align: center;
}
.hero__card img { width: 130px; height: 130px; margin-bottom: 18px; }
.hero__card-quote {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--teal-deep);
  line-height: 1.35;
  margin: 0 0 18px;
}
.hero__langs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-deep);
  font-size: 0.85rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Leistungen
   -------------------------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-top-color: var(--coral); }

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--teal-soft);
  color: var(--teal);
  margin-bottom: 18px;
}
.card p { margin: 0; color: var(--muted); font-size: 0.98rem; }

/* --------------------------------------------------------------------------
   Pflegekasse-Band
   -------------------------------------------------------------------------- */
.band__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}
.band p { color: #d7e4e2; max-width: 40em; }
.band strong { color: #fff; }

.band__box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 30px 30px 22px;
}
.band__box p { font-size: 0.98rem; }
.band__box p.band__sum {
  font-family: "Fraunces", Georgia, serif;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.band__sum small {
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #bcd2cf;
  margin-top: 10px;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Warum wir / Werte
   -------------------------------------------------------------------------- */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.value {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 26px 24px;
  border: 1px solid var(--line);
}
.value h3 { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; }
.value h3 svg { color: var(--coral); flex: none; }
.value p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Ablauf
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 30px 28px 26px;
  box-shadow: var(--shadow);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.step p { margin: 0; color: var(--muted); font-size: 0.98rem; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq { max-width: 800px; }
.faq details {
  background: var(--paper);
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--teal-deep);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  color: var(--coral);
  line-height: 1;
  transition: transform 0.2s ease;
  flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div {
  padding: 0 24px 22px;
  color: var(--muted);
}
.faq details > div p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Bewertungen (Sektion ist in index.html vorbereitet, aber auskommentiert)
   -------------------------------------------------------------------------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  margin: 0;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
}
.review__stars {
  color: #e8a33d;
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.review blockquote {
  margin: 0 0 14px;
  font-size: 1rem;
  color: var(--ink);
}
.review figcaption {
  font-size: 0.85rem;
  color: var(--muted);
}
@media (max-width: 980px) {
  .reviews { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Kontakt
   -------------------------------------------------------------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.contact-list a { text-decoration: none; font-weight: 600; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-list svg { color: var(--coral); flex: none; margin-top: 3px; }

.map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--teal-soft);
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}
.map iframe { display: block; width: 100%; height: 320px; border: 0; }
.map--loaded { padding: 0; }
.map__hint { max-width: 30em; }
.map__hint p { color: var(--muted); font-size: 0.9rem; }

.form-card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 32px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .form-field--full { grid-column: 1 / -1; }

.form-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--teal-deep);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--sand);
  font: inherit;
  color: var(--ink);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
}
.form-card .btn { width: 100%; justify-content: center; margin-top: 18px; }
.form-note { font-size: 0.83rem; color: var(--muted); margin: 12px 0 0; text-align: center; }
.privacy-note {
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--coral);
  background: #fff8f3;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--teal-deep);
  color: #cfe0dd;
  padding: 60px 0 30px;
  font-size: 0.95rem;
}
.footer a { color: #fff; text-decoration: none; }
.footer a:hover { text-decoration: underline; color: #fff; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__brand img { width: 40px; height: 40px; }
.footer__brand span {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}
.footer h3 { color: #fff; font-family: "Inter", system-ui, sans-serif; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #9fbbb7;
}

/* --------------------------------------------------------------------------
   Floating WhatsApp
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1fa855;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px -8px rgba(23, 145, 71, 0.6);
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.07); color: #fff; }

/* --------------------------------------------------------------------------
   Unterseiten (Impressum / Datenschutz / Danke)
   -------------------------------------------------------------------------- */
.page { padding: 72px 0 96px; max-width: 760px; }
.page h1 { margin-bottom: 0.8em; }
.page h2 { font-size: 1.35rem; margin-top: 2em; }
.page--center { text-align: center; margin: 0 auto; }
.page--center .btn { margin-top: 12px; }

/* --------------------------------------------------------------------------
   Scroll-Reveal
   -------------------------------------------------------------------------- */
/* greift nur, wenn JS aktiv ist (html.js) – ohne JS bleibt alles sichtbar */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .card:hover, .wa-float:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .hero__grid, .band__grid, .contact__grid { grid-template-columns: 1fr; gap: 44px; }
  .cards, .steps { grid-template-columns: 1fr 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 72px 0 80px; }
  .hero__card { max-width: 480px; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .cards, .steps, .form-grid { grid-template-columns: 1fr; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--sand);
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 12px 24px 20px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; }
  .nav .btn { justify-content: center; margin-top: 8px; }
  .nav-toggle { display: block; }
}

@media (max-width: 520px) {
  .values, .footer__grid { grid-template-columns: 1fr; }
  .brand__name { font-size: 1.15rem; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}
