/* ========================================================
   agile-management.eu — components.css
   ========================================================

   Was liegt hier — und was in style.css?

   • style.css       → Design-Tokens (Farben, Typo, Spacing),
                       globales Layout, Homepage-spezifische
                       Blöcke (Header, Hero, Hub, Footer …).
   • components.css  → Wiederverwendbare Komponenten für alle
                       Unterseiten: Button-System (.ph-btn),
                       Subpage-Header (.ph-header inkl. Burger),
                       Landingpage-Bausteine (.lp-*), CTA-Riegel,
                       eingebettetes Kontaktformular (.lp-contact),
                       Sticky-Mobile-CTA, Fade-in-Stagger und
                       der Seiten-Modifier .theme-coaching.

   Einbindung: IMMER NACH style.css laden —
     <link rel="stylesheet" href="../style.css">
     <link rel="stylesheet" href="../components.css">

   Regel: Keine hartcodierten Farbwerte — ausschließlich
   var(--...) Tokens aus style.css verwenden.
   ======================================================== */

/* ========================================================
   1) BUTTON-SYSTEM — .ph-btn
   Primär (gefüllt), Sekundär (--outline), Ghost (.ph-link).
   .lp-hero__cta ist Alias für .ph-btn--lg (Bestandsseiten).
   ======================================================== */

.ph-btn,
.lp-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: var(--space-3) var(--space-6);
  background: var(--color-highlight);
  color: var(--color-on-primary);
  font-family: inherit;
  font-weight: 600;
  font-size: var(--text-sm);
  border: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: var(--shadow-accent);
  transition:
    background var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.ph-btn:hover,
.lp-hero__cta:hover {
  background: var(--color-highlight-hover);
  color: var(--color-on-primary);
  transform: translateY(-2px);
}

/* Große Variante — Abschluss-CTAs, Hero-Bereiche */
.ph-btn--lg,
.lp-hero__cta {
  gap: 8px;
  padding: 14px 28px;
  font-size: var(--text-base);
  font-weight: 700;
  border-radius: 8px;
}

/* Hero-Variante — noch großzügigeres Padding */
.ph-btn--hero {
  gap: 8px;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-sm);
}

/* Sekundär-Level: transparente Outline-Variante.
   .lp-hero__cta--secondary ist Alias (Bestandsseiten). */
.ph-btn--outline,
.lp-hero__cta--secondary {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  box-shadow: none;
}

.ph-btn--outline:hover,
.lp-hero__cta--secondary:hover {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* Ghost-Link mit Pfeil — der Pfeil (SVG oder .ph-link__arrow)
   wandert beim Hover nach rechts. */
.ph-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-highlight);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--duration-fast) var(--ease-out);
}

.ph-link:hover { color: var(--color-highlight-hover); }

.ph-link svg,
.ph-link .ph-link__arrow {
  display: inline-block;
  transition: transform var(--duration-fast) var(--ease-out);
}

.ph-link:hover svg,
.ph-link:hover .ph-link__arrow {
  transform: translateX(3px);
}

.ph-link--card-end { margin-top: auto; }

/* ========================================================
   2) SUBPAGE-HEADER — .ph-header (inkl. Mobile-Burger)
   Konsolidiert aus den Inline-Styles der Landingpages.
   ======================================================== */

.ph-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-bg);
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
}

.ph-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-4);
  gap: var(--space-4);
}

.ph-nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
  padding: 0;
  margin: 0;
}

.ph-nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--transition-interactive);
}

.ph-nav__links a:hover { color: var(--color-text); }

.ph-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}

.ph-logo__text {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.ph-logo__text span {
  display: block;
  font-weight: 400;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-top: 1px;
}

.ph-header__cta {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-highlight);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.ph-header__cta:hover { color: var(--color-highlight-hover); }

.ph-header__right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Burger-Button — nur unter 700px sichtbar */
.ph-header__burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.ph-header__burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--color-text);
  transition: transform var(--duration-base) var(--ease-out),
              opacity var(--duration-base) var(--ease-out);
}

/* Burger → X, sobald das Menü offen ist */
.ph-header__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.ph-header__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.ph-header__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 699.98px) {
  .ph-header__burger { display: inline-flex; }

  /* Nav wird zum Dropdown-Panel unter dem Header */
  .ph-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    padding: var(--space-3) var(--space-6) var(--space-4);
  }

  .ph-nav.ph-nav--open { display: block; }

  .ph-nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .ph-nav__links li { width: 100%; }

  .ph-nav__links a {
    display: flex;
    align-items: center;
    min-height: 44px;               /* Touch-Target WCAG 2.5.5 */
    font-size: var(--text-base);
    color: var(--color-text);
  }

  /* Pillar-Block: gestapelt, Trenner unten statt rechts */
  .ph-nav__pillars,
  li.ph-nav__pillars {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-right: 0;
    margin-right: 0;
    border-right: none;
    padding-bottom: var(--space-2);
    margin-bottom: var(--space-2);
    border-bottom: 1px solid var(--color-divider);
  }

  .ph-nav__pillars a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }
}

/* ========================================================
   3) LANDINGPAGE-BAUSTEINE — .lp-*
   Superset der Inline-Styles aller Landingpages.
   (.lp-related liegt bereits in style.css.)
   ======================================================== */

.lp-hero {
  background: var(--color-surface);
  padding: 80px 24px 64px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.lp-hero__breadcrumb {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.lp-hero__breadcrumb a { color: var(--color-text-muted); text-decoration: none; }
.lp-hero__breadcrumb a:hover { text-decoration: underline; }

.lp-hero__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-highlight);
  border: 1px solid var(--color-highlight);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 20px;
}

.lp-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  max-width: 760px;
  margin: 0 auto 20px;
  color: var(--color-text);
}

.lp-hero__subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.lp-hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hinweis: .lp-hero__cta / .lp-hero__cta--secondary sind oben
   im Button-System als Aliase von .ph-btn--lg / --outline definiert. */

.lp-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px;
}

.lp-content h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  margin: 56px 0 16px;
  color: var(--color-text);
  line-height: 1.25;
}

.lp-content h2:first-of-type { margin-top: 0; }

.lp-content p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin: 0 0 20px;
  max-width: 100%;
}

.lp-content ul { margin: 0 0 24px 0; padding-left: 24px; }

.lp-content ul li {
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  max-width: 100%;
}

/* Zitat-/Highlight-Box (.lp-quote als Alias) */
.lp-highlight-box,
.lp-quote {
  background: var(--color-highlight-tint);
  border-left: 4px solid var(--color-highlight);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 32px 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  font-style: italic;
}

/* Kennzahlen */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0;
}

@media (max-width: 600px) { .lp-stats { grid-template-columns: 1fr; } }

.lp-stat {
  background: var(--color-surface-2);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
}

.lp-stat__number {
  font-size: 32px;
  font-weight: 700; /* 800 wird nicht geladen */
  color: var(--color-highlight);
  display: block;
}

.lp-stat__label {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 4px;
  display: block;
}

/* Prozess-Schritte — Listen-Variante (__num/__body) */
.lp-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 32px 0;
}

.lp-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
  align-items: flex-start;
}

.lp-step:last-child { border-bottom: 1px solid var(--color-border); }

.lp-step__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-highlight-tint);
  color: var(--color-highlight);
  font-weight: 700; /* 800 wird nicht geladen */
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-step__body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 8px;
}

.lp-step__body p { margin: 0; font-size: 15px; }

/* Prozess-Schritte — gefüllte Variante (__number/__content,
   aus agile-transformation-mittelstand) */
.lp-step__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-highlight);
  color: var(--color-on-primary);
  font-weight: 700; /* 800 wird nicht geladen */
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.lp-step__content h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--color-text);
}

.lp-step__content p {
  font-size: 16px;
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 100%;
}

/* Format-Liste (aus management-sparring) */
.lp-formats {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 32px 0;
}

.lp-format {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
}

.lp-format:last-child { border-bottom: 1px solid var(--color-border); }

.lp-format__badge {
  flex-shrink: 0;
  background: var(--color-highlight-tint);
  color: var(--color-highlight);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  height: fit-content;
}

.lp-format__body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 8px;
}

.lp-format__body p { margin: 0; font-size: 15px; }

/* FAQ */
.lp-faq-item {
  border-top: 1px solid var(--color-border);
  padding: 24px 0;
}

.lp-faq-item:last-child { border-bottom: 1px solid var(--color-border); }

.lp-faq-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 12px;
}

.lp-faq-item p { margin: 0; font-size: 16px; max-width: 100%; }

/* Abschluss-CTA-Sektion */
.lp-cta-section {
  background: var(--color-surface-2);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  margin: 64px 0 0;
}

@media (max-width: 600px) { .lp-cta-section { padding: 36px 24px; } }

.lp-cta-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--color-text);
}

.lp-cta-section p {
  font-size: 16px;
  color: var(--color-text-muted);
  margin: 0 auto 28px;
  line-height: 1.6;
  max-width: 520px;
}

/* ========================================================
   3b) ARTIKEL-BAUSTEINE — Mid-Article-CTA-Box + Autor
   Konsolidiert aus artikel/agile-coach-ki-zeitalter.
   ======================================================== */

.article-cta-box {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 32px 36px;
  margin: 48px 0;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

@media (max-width: 600px) {
  .article-cta-box {
    flex-direction: column;
    padding: 24px 20px;
    gap: 16px;
  }
}

.article-cta-box__body { flex: 1; }

.article-cta-box__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-highlight);
  display: block;
  margin-bottom: 8px;
}

.article-cta-box__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 8px;
}

.article-cta-box__desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.article-cta-box__link {
  display: inline-block;
  background: var(--color-highlight);
  color: var(--color-on-primary);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
  transition: background var(--duration-fast) var(--ease-out);
}

.article-cta-box__link:hover { background: var(--color-highlight-hover); }

.article-author {
  border-top: 1px solid var(--color-border);
  padding-top: 36px;
  margin-top: 56px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.article-author__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-highlight-tint);
  border: 2px solid var(--color-highlight);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-highlight);
  font-size: 20px;
  font-weight: 700;
}

.article-author__body { flex: 1; }

.article-author__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 4px;
}

.article-author__role {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0 0 10px;
}

.article-author__bio {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ========================================================
   4) CTA-RIEGEL — horizontales Conversion-Band (Seitenmitte)
   ======================================================== */

.cta-riegel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-highlight);
  border-radius: 12px;
  padding: 22px 26px;
  margin: 40px 0;
}

.cta-riegel__text {
  flex: 1 1 320px;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  line-height: 1.4;
}

.cta-riegel__sub {
  display: block;
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text-muted);
  margin-top: 3px;
}

.cta-riegel__actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ========================================================
   5) EINGEBETTETES KONTAKTFORMULAR — .lp-contact
   Kompakter Formular-Block für Landingpages (id="kontakt").
   ======================================================== */

.lp-contact {
  max-width: 560px;
  margin: 48px auto 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 28px;
}

.lp-contact__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 6px;
}

.lp-contact__intro {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 0 20px;
}

.lp-contact__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.lp-contact label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.lp-contact input,
.lp-contact textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 9px;
  font-family: inherit;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.lp-contact input:focus,
.lp-contact textarea:focus {
  outline: 2px solid var(--color-highlight);
  outline-offset: 1px;
  border-color: var(--color-highlight);
}

.lp-contact textarea { resize: vertical; min-height: 100px; }

/* Vorbefülltes Anliegen-Feld ("Es geht um: …") */
.lp-contact__prefill input {
  color: var(--color-highlight);
  font-weight: 600;
}

.lp-contact .checkbox-label a { color: var(--color-accent); }

/* Alternativ-Zeile unter dem Formular (Telefon / Rückruf) */
.lp-contact__alt {
  margin: var(--space-4) 0 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.lp-contact__alt a {
  color: var(--color-highlight);
  font-weight: 600;
  text-decoration: none;
}

.lp-contact__alt a:hover { color: var(--color-highlight-hover); }

/* ========================================================
   6) STICKY-MOBILE-CTA — fixierte Leiste am unteren Rand
   Nur < 700px. Per [hidden] / .is-hidden versteckt;
   das Scroll-JS (siehe REDESIGN-PATTERNS.md, P3) blendet
   die Leiste nach ~50 % Scrolltiefe ein.
   ======================================================== */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--color-surface) 92%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--color-border);
}

.sticky-cta .ph-btn,
.sticky-cta .ph-btn--outline {
  flex: 1;
  justify-content: center;
  min-height: 44px;
  padding-inline: var(--space-3);
  font-size: var(--text-sm);
  transform: none; /* kein Hover-Lift in der fixierten Leiste */
}

@media (min-width: 700px) {
  .sticky-cta { display: none; }
}

/* Muss NACH der Flex-Regel stehen: [hidden]/.is-hidden gewinnt */
.sticky-cta[hidden],
.sticky-cta.is-hidden {
  display: none;
}

/* ========================================================
   7) FADE-IN-STAGGER — .fade-in-group
   Ergänzt das bestehende .fade-in-System aus style.css:
   Kinder einer .fade-in-group erscheinen zeitversetzt.
   Nur aktiv, wenn <html class="js-animate"> gesetzt ist.
   Abstand über --stagger steuerbar (Default 60ms).
   ======================================================== */

.js-animate .fade-in-group > :nth-child(1) { transition-delay: calc(var(--stagger, 60ms) * 1); }
.js-animate .fade-in-group > :nth-child(2) { transition-delay: calc(var(--stagger, 60ms) * 2); }
.js-animate .fade-in-group > :nth-child(3) { transition-delay: calc(var(--stagger, 60ms) * 3); }
.js-animate .fade-in-group > :nth-child(4) { transition-delay: calc(var(--stagger, 60ms) * 4); }
.js-animate .fade-in-group > :nth-child(5) { transition-delay: calc(var(--stagger, 60ms) * 5); }
.js-animate .fade-in-group > :nth-child(6) { transition-delay: calc(var(--stagger, 60ms) * 6); }

@media (prefers-reduced-motion: reduce) {
  .js-animate .fade-in-group > * {
    transition-delay: 0ms !important;
  }
}

/* ========================================================
   8) SEITEN-MODIFIER — .theme-coaching
   Für Coaching-Seiten: Akzent eine Nuance wärmer/weicher
   (Rosé-Kupfer) + minimal wärmere Flächen. Kein neues
   Branding — nur eine Tonverschiebung. Funktioniert in
   Light & Dark (Body-Tokens überschreiben Root-Tokens).
   ======================================================== */

body.theme-coaching {
  /* Light: warmes Rosé-Kupfer.
     Button-Füllung (--color-highlight) leicht abgedunkelt,
     damit --color-on-primary (weiß) AA erreicht (≥4.5:1). */
  --color-primary:         #B96A4E;
  --color-primary-hover:   #A85D42;
  --color-accent:          #B96A4E;
  --color-accent-hover:    #A85D42;
  --color-highlight:       #A85D42;
  --color-highlight-hover: #96513A;
  --color-highlight-tint:  #F6ECE7;
  --color-primary-light:   #F6ECE7;
  --color-surface:         #FFFDFB;
  --color-surface-2:       #FBF5F1;
  --shadow-accent: 0 6px 24px rgba(185,106,78,.22);
}

[data-theme="dark"] body.theme-coaching {
  --color-primary:         #D9A183;
  --color-primary-hover:   #E3B296;
  --color-accent:          #D9A183;
  --color-accent-hover:    #E3B296;
  --color-highlight:       #D9A183;
  --color-highlight-hover: #E3B296;
  --color-highlight-tint:  #2F251F;
  --color-primary-light:   #2F251F;
  --color-surface:         #1D1A17;
  --color-surface-2:       #272220;
  --shadow-accent: 0 6px 28px rgba(217,161,131,.16);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) body.theme-coaching {
    --color-primary:         #D9A183;
    --color-primary-hover:   #E3B296;
    --color-accent:          #D9A183;
    --color-accent-hover:    #E3B296;
    --color-highlight:       #D9A183;
    --color-highlight-hover: #E3B296;
    --color-highlight-tint:  #2F251F;
    --color-primary-light:   #2F251F;
    --color-surface:         #1D1A17;
    --color-surface-2:       #272220;
    --shadow-accent: 0 6px 28px rgba(217,161,131,.16);
  }
}
