/* ==========================================================================
   Adelheid.club, Design-Tokens und Basis-Stile
   Palette und Typografie mit der Nutzerin abgestimmt (Entwurf 2, Fraunces).
   Schriften lokal eingebunden (kein Google-Fonts-CDN, siehe Datenschutz).
   ========================================================================== */

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/fraunces-400.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/fraunces-600.woff2") format("woff2");
}
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/karla-400.woff2") format("woff2");
}
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/karla-600.woff2") format("woff2");
}
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/karla-700.woff2") format("woff2");
}

:root {
  /* Farben, Licht */
  --bg: #fbf6ee;
  --surface: #eae1cf;
  --surface-line: #d5c6a8;
  --ink: #2b2118;
  --ink-muted: #6e5f4f;
  --accent: #e8490c;
  --accent-hover: #c93e0a;
  --accent-ink: #fbf6ee;
  --accent-yellow: #f5c02e;
  --accent-yellow-ink: #2b2118;
  --sage: #5b6b4f;
  --sage-ink: #fbf6ee;
  --sage-surface: #e3e5d5;

  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --shadow: 0 1px 2px rgba(43, 33, 24, 0.06), 0 8px 24px -12px rgba(43, 33, 24, 0.2);

  --font-display: "Fraunces", serif;
  --font-body: "Karla", sans-serif;

  --content-width: 1120px;
  --content-narrow: 760px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #201811;
    --surface: #322920;
    --surface-line: #4c4030;
    --ink: #f3e9db;
    --ink-muted: #c7b6a0;
    --accent: #ff7a3d;
    --accent-hover: #ff9761;
    --accent-ink: #201811;
    --accent-yellow: #ffd447;
    --accent-yellow-ink: #201811;
    --sage: #93a780;
    --sage-ink: #201811;
    --sage-surface: #333b28;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.35), 0 8px 24px -12px rgba(0, 0, 0, 0.55);
  }
}
:root[data-theme="dark"] {
  --bg: #201811;
  --surface: #322920;
  --surface-line: #4c4030;
  --ink: #f3e9db;
  --ink-muted: #c7b6a0;
  --accent: #ff7a3d;
  --accent-hover: #ff9761;
  --accent-ink: #201811;
  --accent-yellow: #ffd447;
  --accent-yellow-ink: #201811;
  --sage: #93a780;
  --sage-ink: #201811;
  --sage-surface: #333b28;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.35), 0 8px 24px -12px rgba(0, 0, 0, 0.55);
}
:root[data-theme="light"] {
  --bg: #fbf6ee;
  --surface: #eae1cf;
  --surface-line: #d5c6a8;
  --ink: #2b2118;
  --ink-muted: #6e5f4f;
  --accent: #e8490c;
  --accent-hover: #c93e0a;
  --accent-ink: #fbf6ee;
  --accent-yellow: #f5c02e;
  --accent-yellow-ink: #2b2118;
  --sage: #5b6b4f;
  --sage-ink: #fbf6ee;
  --sage-surface: #e3e5d5;
  --shadow: 0 1px 2px rgba(43, 33, 24, 0.06), 0 8px 24px -12px rgba(43, 33, 24, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); }

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

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  text-wrap: balance;
  margin: 0;
}

h1 { font-size: clamp(34px, 5vw, 52px); }
h2 { font-size: clamp(26px, 3.4vw, 34px); }
h3 { font-size: 21px; }
h1.h1-compact { font-size: clamp(22px, 2.6vw, 26px); }
h2.h2-compact { font-size: 19px; font-weight: 600; color: var(--ink-muted); }

p { margin: 0; }

.lede {
  font-size: 19px;
  color: var(--ink-muted);
  max-width: 60ch;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--surface-line);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 2px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--surface-line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 20px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 38px; width: auto; }
.brand .brand-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.main-nav { display: flex; align-items: center; gap: 24px; flex-shrink: 0; }
.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--accent); }
.header-cta { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }

@media (max-width: 900px) {
  .main-nav { display: none; }
}

@media (max-width: 480px) {
  .header-cta { display: none; }
  .brand img { height: 30px; }
  .wrap { padding: 0 18px; }
  .offer-card { padding: 26px; }
  .kontakt-card { padding: 30px 16px; }
  .calendly-wrap {
    padding: 6px;
    margin-left: -34px;
    margin-right: -34px;
  }
  .hero { padding: 48px 0 64px; }
  .offers { padding: 56px 0; }
  .kontakt { padding: 56px 0; }
}

/* Hero */
.hero {
  padding: 72px 0 88px;
}
.hero .wrap.hero-grid {
  display: grid;
  gap: 20px;
  max-width: var(--content-narrow);
  align-items: start;
}
.hero .wrap.hero-solo {
  max-width: var(--content-narrow);
}
.hero h1 { margin-top: 10px; }
.hero h1 + h2 { margin-top: 12px; }
.hero .lede { margin-top: 18px; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.bio-text { margin-top: 24px; display: grid; gap: 16px; }
.bio-text p { color: var(--ink); }

.fit-list { margin-top: 30px; }
.fit-list-intro {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}
.fit-list-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.fit-list-items li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}
.fit-list-items li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-photo {
  order: -1;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 320px;
}
.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 860px) {
  .hero .wrap.hero-grid {
    max-width: var(--content-width);
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 64px;
  }
  .hero-copy { max-width: var(--content-narrow); }
  .hero-photo {
    order: 0;
    max-width: 420px;
    justify-self: end;
    margin-top: 6px;
  }
}

.quote-block {
  margin-top: 44px;
  padding-left: 20px;
  border-left: 3px solid var(--accent-yellow);
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink-muted);
}
.quote-block cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-muted);
  margin-top: 8px;
}

.testimonial {
  margin-top: 30px;
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-m);
  padding: 24px 26px;
  box-shadow: var(--shadow);
  max-width: 58ch;
}
.testimonial p { font-size: 15.5px; color: var(--ink); }
.testimonial cite { display: block; margin-top: 10px; font-style: normal; font-weight: 700; font-size: 13.5px; color: var(--ink-muted); }

.testimonial-showcase { padding: 8px 0 64px; }
.testimonial-showcase .wrap { max-width: var(--content-narrow); }
.testimonial-showcase .quote-block {
  max-width: 58ch;
  margin: 0 auto;
  text-align: center;
  border-left: none;
}
.testimonial-showcase .testimonial { margin: 32px auto 0; text-align: center; }

/* Intro / Qualifizierende Liste */
.intro {
  padding: 24px 0 72px;
}
.intro .wrap { max-width: var(--content-narrow); }

/* Über-mich-Teaser */
.about-teaser { padding: 0 0 72px; }
.about-teaser .wrap { max-width: var(--content-narrow); }
.about-teaser-card {
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-l);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-teaser-card p {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.4;
  color: var(--ink);
  margin: 10px auto 22px;
  max-width: 46ch;
  text-wrap: balance;
}

/* Angebote */
.offers {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--surface-line);
  border-bottom: 1px solid var(--surface-line);
}
.section-head { max-width: var(--content-narrow); margin-bottom: 44px; }
.section-head p { margin-top: 12px; color: var(--ink-muted); font-size: 17px; }

.offer-list {
  display: grid;
  gap: 20px;
}
.offer-card {
  background: var(--bg);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-l);
  padding: 36px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}
.offer-card .tag {
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.offer-card.is-nature .tag { color: var(--sage); }
.offer-card p { color: var(--ink-muted); }
.offer-card .btn { justify-self: start; margin-top: 6px; }

.topic-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: -4px; }
.topic-chip {
  font-size: 13.5px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-s);
  padding: 7px 12px;
}

.date-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.date-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--surface-line);
  background: var(--surface);
  border-radius: var(--radius-s);
  padding: 9px 14px;
  text-decoration: none;
  color: var(--ink);
  font-size: 13.5px;
}
.date-chip strong { font-size: 13.5px; color: var(--sage); }
.date-chip:hover { border-color: var(--sage); }

@media (min-width: 860px) {
  .offer-list { grid-template-columns: repeat(3, 1fr); align-items: start; }
}

/* Kontakt / Termin CTA */
.kontakt {
  padding: 88px 0;
}
.kontakt .wrap { max-width: var(--content-narrow); }
.kontakt-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-l);
  padding: 52px 48px 48px;
  display: grid;
  gap: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.kontakt-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent-yellow));
}
.kontakt-card .eyebrow { color: var(--accent); }
.kontakt-card p { color: var(--ink-muted); font-size: 17px; }
.calendly-wrap {
  background: #ffffff;
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-m);
  padding: 10px;
  box-shadow: 0 14px 32px -18px rgba(43, 33, 24, 0.35);
}
.calendly-wrap .calendly-inline-widget {
  border-radius: calc(var(--radius-m) - 6px);
  overflow: hidden;
}
.kontakt-note {
  font-size: 14px;
  color: var(--ink-muted);
}

/* Podcast */
.podcast { padding: 0 0 88px; }
.podcast .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  max-width: var(--content-narrow);
}
.podcast-links { display: flex; gap: 16px; flex-wrap: wrap; }
.podcast-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1.5px solid var(--surface-line);
  padding-bottom: 2px;
}
.podcast-links a:hover { border-color: var(--accent); color: var(--accent); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--surface-line);
}
.footer-certs {
  padding: 32px 0 28px;
}
.footer-certs-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.footer-cert-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 32px; }
.footer-cert-logos a { display: inline-flex; opacity: 0.82; transition: opacity 0.15s ease; }
.footer-cert-logos a:hover { opacity: 1; }
.footer-cert-logos img { height: 46px; width: auto; }

.footer-bottom {
  border-top: 1px solid var(--surface-line);
}
.footer-bottom .wrap {
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom img { height: 40px; width: auto; opacity: 0.9; }
.footer-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; font-size: 13.5px; color: var(--ink-muted); }
.footer-meta a { color: var(--ink-muted); text-decoration: underline; text-decoration-color: var(--surface-line); text-underline-offset: 3px; }
.footer-meta a:hover { color: var(--accent); text-decoration-color: var(--accent); }
.footer-meta .divider { color: var(--surface-line); }

/* Rechtliche Seiten (Impressum, Datenschutz) */
.legal-page {
  padding: 56px 0 96px;
}
.legal-page .wrap { max-width: var(--content-narrow); display: grid; gap: 8px; }
.legal-page .lede { margin-top: 6px; }
.legal-page section { margin-top: 40px; display: grid; gap: 12px; }
.legal-page h2 { font-size: 22px; }
.legal-page h3 { font-size: 17px; margin-top: 4px; }
.legal-page p, .legal-page li { color: var(--ink); font-size: 16px; }
.legal-page ul { margin: 0; padding-left: 20px; display: grid; gap: 6px; }
.legal-page a { text-decoration: underline; text-decoration-color: var(--surface-line); text-underline-offset: 3px; }
.legal-page a:hover { text-decoration-color: var(--accent); }
.legal-page .meta-block { color: var(--ink); }
.legal-page .meta-block p { margin-top: 2px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-muted);
  text-decoration: none;
  margin-bottom: 24px;
}
.back-link:hover { color: var(--accent); }
