/*
  B6 Wellness — main stylesheet.
  Structural/interaction patterns (type scale, pill buttons, scroll-reveal,
  card hover-lift, sticky glass header, accordion footer) are adapted from
  the Perseus reference project's CSS conventions — re-themed here in a
  calming sage / teal / lavender / peach palette instead of Perseus's
  blue/charcoal Apple-style look. See README.md for details.
  Hand-written, dependency-free — no build step, no framework.
*/

/* ────────────────────────────────────────────────────────────
   1. Reset & base
   ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: clip; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  padding-top: var(--site-topbar-height, 64px);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.has-site-announcement { --site-topbar-height: 104px; }
main { flex: 1 0 auto; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--b6-charcoal);
  letter-spacing: -0.01em;
  margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

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

/* ────────────────────────────────────────────────────────────
   2. Design tokens
   ──────────────────────────────────────────────────────────── */
:root {
  /* Palette */
  --b6-cream: #faf7f1;
  --b6-cream-soft: #f3ede2;
  --b6-beige: #e9dcc6;
  --b6-sage-50: #eef1e9;
  --b6-sage-300: #b9c6ab;
  --b6-sage: #93a97f;
  --b6-sage-600: #7c9468;
  --b6-teal-50: #e9f1ef;
  --b6-teal: #4f7c74;
  --b6-teal-600: #3e655e;
  --b6-blue: #b9d3e4;
  --b6-blue-600: #8fb4cd;
  --b6-lavender: #b6a4c9;
  --b6-lavender-600: #9c85b3;
  --b6-peach: #f0c6a6;
  --b6-peach-600: #e2a878;
  --b6-charcoal: #2c332b;
  --b6-charcoal-soft: #4a5148;
  --b6-ink-muted: #6d7568;
  --b6-line: rgba(44, 51, 43, 0.1);
  --b6-white: #ffffff;
  --b6-red: #c0392b;
  --b6-red-bg: #fbeceb;

  /* Semantic */
  --background: var(--b6-cream);
  --foreground: var(--b6-charcoal);
  --surface: var(--b6-white);
  --surface-muted: var(--b6-cream-soft);
  --primary: var(--b6-teal);
  --primary-hover: var(--b6-teal-600);
  --accent: var(--b6-sage);
  --accent-hover: var(--b6-sage-600);

  /* Layout */
  --section-v: clamp(56px, 8vw, 112px);
  --radius-pill: 999px;
  --radius-card: 20px;
  --shadow-card: 0 2px 18px rgba(44, 51, 43, 0.07), 0 1px 3px rgba(44, 51, 43, 0.06);
  --shadow-card-hover: 0 18px 46px rgba(44, 51, 43, 0.12), 0 4px 12px rgba(44, 51, 43, 0.07);
  --shadow-dropdown: 0 18px 46px rgba(44, 51, 43, 0.14);
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Fonts (see includes/site-header.php for @font-face / Google Fonts link) */
  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ────────────────────────────────────────────────────────────
   3. Layout containers & utilities
   ──────────────────────────────────────────────────────────── */
.container { max-width: 1040px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 44px); width: 100%; }
.container-lg { max-width: 1240px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 44px); width: 100%; }
.container-sm { max-width: 760px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 44px); width: 100%; }

.section { padding-block: var(--section-v); }
.section-muted { background: var(--surface-muted); }
.text-center { text-align: center; }

.sr-only {
  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 {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--primary); color: var(--b6-white);
  padding: 12px 20px; border-radius: 0 0 10px 0; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ────────────────────────────────────────────────────────────
   4. Typography
   ──────────────────────────────────────────────────────────── */
.t-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary);
}
.t-eyebrow-peach { color: var(--b6-peach); }
.t-headline {
  font-family: var(--font-display); font-size: clamp(34px, 5.4vw, 60px);
  font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; color: var(--b6-charcoal); margin: 0;
}
.t-headline-sm { font-size: clamp(28px, 4vw, 42px); }
.t-headline-lg { font-size: clamp(38px, 6.2vw, 68px); }
.t-headline-light { color: var(--b6-cream); }
.t-subhead { font-size: clamp(16px, 1.9vw, 19px); line-height: 1.6; font-weight: 400; color: var(--b6-charcoal-soft); margin: 0; }
.t-subhead-light { color: rgba(250, 247, 241, 0.8); }

.section-header { max-width: 640px; }
.section-header.centered { margin-inline: auto; text-align: center; }
.section-header .t-eyebrow { display: block; margin-bottom: 12px; }
.section-header .t-headline { margin-top: 0; }
.section-header .t-subhead { margin-top: 16px; }

/* ────────────────────────────────────────────────────────────
   5. Buttons
   ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 24px; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 600; text-decoration: none; letter-spacing: -0.005em;
  transition: background-color .2s var(--ease-out), color .2s var(--ease-out), transform .15s var(--ease-out), box-shadow .2s var(--ease-out);
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.btn svg { width: 15px; height: 15px; flex: 0 0 15px; }
.btn:disabled { cursor: not-allowed; opacity: 0.7; }

.btn-sm { height: 38px; padding: 0 16px; font-size: 13px; }
.btn-sm svg { width: 13px; height: 13px; flex: 0 0 13px; }
.btn-block { width: 100%; }
.btn-fit { width: fit-content; }

.btn-primary { background: var(--primary); color: var(--b6-white); }
.btn-primary:hover { background: var(--primary-hover); color: var(--b6-white); transform: translateY(-1px); }

.btn-accent { background: var(--accent); color: var(--b6-white); }
.btn-accent:hover { background: var(--accent-hover); color: var(--b6-white); transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--b6-charcoal); border-color: var(--b6-line); }
.btn-outline:hover { background: var(--b6-cream-soft); }

.btn-ghost-dark { background: rgba(255,255,255,0.14); color: var(--b6-white); border-color: rgba(255,255,255,0.28); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.22); color: var(--b6-white); }

.btn-cream { background: var(--b6-cream); color: var(--b6-charcoal); }
.btn-cream:hover { background: var(--b6-white); }

.btn-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 15px; font-weight: 600; color: var(--primary); text-decoration: none;
}
.btn-link:hover { text-decoration: underline; }
.btn-link svg { width: 14px; height: 14px; }

.spinner {
  width: 16px; height: 16px; flex: 0 0 16px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ────────────────────────────────────────────────────────────
   6. Cards & surfaces
   ──────────────────────────────────────────────────────────── */
.card-surface {
  border-radius: var(--radius-card); background: var(--surface);
  border: 1px solid var(--b6-line); box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.card-surface.card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.card-pad { padding: clamp(28px, 4vw, 44px); }
.card-pad-lg { padding: clamp(32px, 5vw, 56px); }

.icon-badge {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
}
.icon-badge svg { width: 24px; height: 24px; stroke-width: 1.6; fill: none; }
.icon-badge-lg { width: 56px; height: 56px; border-radius: 16px; }
.icon-badge-lg svg { width: 28px; height: 28px; }
.icon-badge-sage { background: var(--b6-sage-50); color: var(--b6-sage-600); }
.icon-badge-teal { background: var(--b6-teal-50); color: var(--b6-teal-600); }
.icon-badge-lavender { background: rgba(182,164,201,0.25); color: var(--b6-lavender-600); }
.icon-badge-blue { background: rgba(185,211,228,0.35); color: var(--b6-blue-600); }
.icon-badge-peach { background: rgba(240,198,166,0.35); color: var(--b6-peach-600); }

/* Grids */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-tight { gap: 12px; }
.grid-loose { gap: 28px; }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ────────────────────────────────────────────────────────────
   7. Scroll reveal (IntersectionObserver, js/main.js)
   ──────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ────────────────────────────────────────────────────────────
   8. Announcement bar
   ──────────────────────────────────────────────────────────── */
.announcement-bar { position: relative; background: var(--b6-charcoal); color: var(--b6-cream); }
.announcement-bar-inner {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding-block: 10px; text-align: center; font-size: 13px; font-weight: 500;
}
.announcement-bar-inner p { margin: 0; }
.announcement-bar a { text-decoration: underline; text-underline-offset: 2px; }
.announcement-bar a:hover { color: var(--b6-peach); }
.announcement-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  border-radius: 999px; padding: 4px; color: rgba(250,247,241,0.7); background: none; border: none; cursor: pointer;
}
.announcement-close:hover { color: var(--b6-cream); }
.announcement-close svg { width: 14px; height: 14px; }
.announcement-bar[hidden] { display: none; }

/* ────────────────────────────────────────────────────────────
   9. Site header & desktop nav (incl. dropdown)
   ──────────────────────────────────────────────────────────── */
.site-topbar {
  position: fixed; inset: 0 0 auto; z-index: 900;
  width: 100%;
}
.site-header {
  border-bottom: 1px solid rgba(44,51,43,0.07);
  background: rgba(250, 247, 241, 0.8);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.site-header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.site-logo { display: flex; align-items: center; }
.site-logo img { height: 36px; width: auto; display: block; }

.nav-primary { display: none; }
.nav-list { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; }
.nav-list > li { list-style: none; }
.nav-link {
  display: flex; align-items: center; gap: 4px; border-radius: 999px; padding: 8px 12px;
  font-size: 13.5px; font-weight: 500; color: var(--b6-charcoal-soft); transition: color .2s;
}
.nav-link:hover { color: var(--primary); }
.nav-link.is-active { color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 999px; color: var(--b6-charcoal);
  background: none; border: none; cursor: pointer;
}
.menu-toggle:hover { background: rgba(44,51,43,0.06); }
.menu-toggle svg { width: 20px; height: 20px; }

/* nav dropdown (Apple-style hover/focus panel) */
.nav-dropdown { position: relative; }
.nav-dropdown-chevron { width: 10px; height: 6px; transition: transform .2s; }
.nav-dropdown.is-open .nav-dropdown-chevron { transform: rotate(180deg); }
.nav-dropdown-panel {
  position: absolute; left: 50%; top: 100%; z-index: 10;
  width: 256px; transform: translate(-50%, -4px); padding-top: 8px;
  opacity: 0; visibility: hidden; transition: opacity .15s, transform .15s;
}
.nav-dropdown.is-open .nav-dropdown-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-dropdown-panel-inner {
  overflow: hidden; border-radius: 16px; border: 1px solid var(--b6-line);
  background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
  box-shadow: var(--shadow-dropdown); padding: 8px;
}
.nav-dropdown-item { display: block; border-radius: 12px; padding: 10px 12px; transition: background-color .2s; }
.nav-dropdown-item:hover { background: var(--b6-teal-50); }
.nav-dropdown-item-title { display: block; font-size: 14px; font-weight: 600; color: var(--b6-charcoal); }
.nav-dropdown-item-desc { display: block; margin-top: 2px; font-size: 12px; color: var(--b6-ink-muted); }

@media (min-width: 1024px) {
  .nav-primary { display: block; }
  .header-actions .btn { display: inline-flex; }
  .header-actions .menu-toggle { display: none; }
}
@media (max-width: 1023px) {
  .header-actions .btn { display: none; }
}

/* ────────────────────────────────────────────────────────────
   10. Mobile menu (full-screen)
   ──────────────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1000;
  height: 100vh; height: 100dvh;
  overflow: hidden;
  background: rgba(250, 247, 241, 0.98); backdrop-filter: blur(10px);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu-close {
  position: absolute; right: 20px; top: max(20px, env(safe-area-inset-top));
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(44,51,43,0.06); color: var(--b6-charcoal); border: none; cursor: pointer;
}
.mobile-menu-close:hover { background: rgba(44,51,43,0.1); }
.mobile-menu-close svg { width: 16px; height: 16px; }
.mobile-menu-inner {
  margin-inline: auto;
  max-width: 32rem;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: max(72px, calc(env(safe-area-inset-top) + 56px)) 24px max(32px, calc(env(safe-area-inset-bottom) + 24px));
}
.mobile-menu-logo { display: flex; justify-content: center; margin-bottom: 18px; padding-right: 64px; }
.mobile-menu-logo img { height: 40px; width: auto; display: block; }
.mobile-menu-list { display: grid; gap: 0; margin: 0; padding: 0; }
.mobile-menu-link {
  display: block; border-radius: 16px; padding: 8px 16px;
  font-family: var(--font-display); font-size: 22px; line-height: 1.15; font-weight: 600; color: var(--b6-charcoal);
  transition: background-color .2s, color .2s;
}
.mobile-menu-link:hover, .mobile-menu-link.is-active { background: var(--b6-teal-50); color: var(--primary); }
.mobile-menu-cta {
  color: var(--b6-peach-600);
}
.mobile-menu-cta:hover { background: transparent; color: var(--b6-peach-600); }
body.menu-open { overflow: hidden; }

/* ────────────────────────────────────────────────────────────
   11. Footer
   ──────────────────────────────────────────────────────────── */
.site-footer { margin-top: auto; border-top: 1px solid var(--b6-line); background: var(--b6-cream-soft); }
.footer-main { display: grid; gap: 40px; padding-block: clamp(48px, 7vw, 72px); grid-template-columns: 1.3fr 1fr 1fr 1.2fr; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { display: flex; align-items: center; }
.footer-logo img { height: 40px; width: auto; display: block; }
.footer-tagline { max-width: 240px; font-size: 14px; line-height: 1.6; color: var(--b6-ink-muted); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center; width: 36px; height: 36px;
  border-radius: 999px; border: 1px solid var(--b6-line); color: var(--b6-charcoal-soft);
  font-size: 12px; font-weight: 600; transition: color .2s, border-color .2s;
}
.footer-social a:hover { color: var(--primary); border-color: var(--primary); }
.footer-col-title { margin: 0 0 16px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--b6-charcoal); }
.footer-col-list { display: flex; flex-direction: column; gap: 12px; }
.footer-col-list a { font-size: 14px; color: var(--b6-ink-muted); transition: color .2s; }
.footer-col-list a:hover { color: var(--primary); }
.footer-newsletter-title { margin: 0 0 16px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--b6-charcoal); }

.footer-accordion { display: none; }
.footer-acc-item { border-top: 1px solid var(--b6-line); }
.footer-acc-btn {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  background: none; border: none; padding: 15px 0; font-size: 13px; font-weight: 600;
  color: var(--b6-charcoal); cursor: pointer; text-align: left;
}
.footer-acc-icon { width: 14px; height: 14px; color: var(--b6-ink-muted); transition: transform .25s; }
.footer-acc-btn[aria-expanded="true"] .footer-acc-icon { transform: rotate(45deg); }
.footer-acc-panel { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.footer-acc-panel.is-open { max-height: 300px; }
.footer-acc-panel-inner { display: flex; flex-direction: column; gap: 14px; padding: 0 0 18px; }
.footer-acc-panel a { font-size: 13px; color: var(--b6-ink-muted); }
.footer-acc-panel a:hover { color: var(--primary); }

.footer-legal-row { display: none; flex-wrap: wrap; gap: 20px 24px; border-top: 1px solid var(--b6-line); padding-block: 24px; }
.footer-legal-row a { font-size: 12px; color: var(--b6-ink-muted); }
.footer-legal-row a:hover { color: var(--primary); }

.footer-bottom {
  display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--b6-line);
  padding-block: 24px; font-size: 12px; color: var(--b6-ink-muted);
}
.footer-bottom p { margin: 0; }

@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-cols { display: none; }
  .footer-accordion { display: block; }
}
@media (min-width: 901px) {
  .footer-accordion { display: none; }
  .footer-legal-row { display: flex; }
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ────────────────────────────────────────────────────────────
   12. Cookie consent
   ──────────────────────────────────────────────────────────── */
.cookie-consent {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 950;
  border-top: 1px solid var(--b6-line); background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent-inner { display: flex; flex-direction: column; gap: 12px; padding-block: 16px; }
.cookie-consent-inner p { margin: 0; font-size: 14px; color: var(--b6-charcoal-soft); }
.cookie-consent-inner a { text-decoration: underline; }
.cookie-consent-actions { display: flex; gap: 8px; flex-shrink: 0; }
@media (min-width: 640px) {
  .cookie-consent-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ────────────────────────────────────────────────────────────
   13. Disclaimer callout
   ──────────────────────────────────────────────────────────── */
.disclaimer-callout {
  display: flex; gap: 12px; border-radius: 16px; border: 1px solid var(--b6-line);
  background: var(--b6-cream-soft); padding: 16px 20px; font-size: 14px; line-height: 1.6; color: var(--b6-charcoal-soft);
}
.disclaimer-callout svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--primary); }
.disclaimer-callout p { margin: 0; }

/* ────────────────────────────────────────────────────────────
   14. Hero
   ──────────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; background: var(--b6-cream); }
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 800px 480px at 18% -10%, rgba(147,169,127,0.28), transparent 65%),
    radial-gradient(ellipse 700px 460px at 88% 8%, rgba(185,211,228,0.35), transparent 60%),
    radial-gradient(ellipse 500px 380px at 50% 100%, rgba(182,164,201,0.16), transparent 60%);
}
.hero-inner { position: relative; padding-block: 80px; text-align: center; }
.hero-inner .t-headline { max-width: 760px; margin-inline: auto; margin-top: 16px; }
.hero-inner .t-subhead { max-width: 560px; margin-inline: auto; margin-top: 24px; }
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; }
.hero-trust { margin-top: 32px; max-width: 420px; margin-inline: auto; font-size: 14px; font-weight: 500; color: var(--b6-ink-muted); }
@media (min-width: 640px) { .hero-inner { padding-block: 112px; } }

/* ────────────────────────────────────────────────────────────
   15. Wellness area cards
   ──────────────────────────────────────────────────────────── */
.wellness-card {
  display: flex; flex-direction: column; height: 100%; padding: 28px; text-decoration: none;
}
.wellness-card .icon-badge { margin-bottom: 20px; }
.wellness-card-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--b6-charcoal); }
.wellness-card-desc { flex: 1; margin-top: 8px; font-size: 14px; line-height: 1.6; color: var(--b6-charcoal-soft); }
.wellness-card-link { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--primary); }
.wellness-card-link svg { width: 14px; height: 14px; transition: transform .2s; }
.wellness-card:hover .wellness-card-link svg { transform: translateX(2px); }

/* wellness-services.php detail sections */
.service-detail { display: grid; gap: 24px; padding: clamp(28px, 4vw, 40px); scroll-margin-top: 96px; }
.service-detail-header { display: flex; gap: 16px; align-items: flex-start; }
.service-detail-body { display: grid; gap: 24px; margin-top: 8px; }
.service-detail-col-title { margin: 0 0 12px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--primary); }
.service-detail-list { display: grid; gap: 8px; }
.service-detail-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; line-height: 1.6; color: var(--b6-charcoal-soft); }
.service-detail-list svg { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; color: var(--primary); }
@media (min-width: 640px) {
  .service-detail-body { grid-template-columns: 1fr 1fr; }
}

/* ────────────────────────────────────────────────────────────
   16. I AMM feature (home) + I AMM method page
   ──────────────────────────────────────────────────────────── */
.iamm-feature { display: grid; gap: 48px; align-items: center; }
.iamm-cards { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
.iamm-card { display: flex; flex-direction: column; gap: 12px; padding: 24px; height: 100%; }
.iamm-card-letter { font-family: var(--font-display); font-size: 32px; font-weight: 600; color: var(--primary); }
.iamm-card-word { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--b6-charcoal); }
.iamm-card-desc { font-size: 14px; line-height: 1.6; color: var(--b6-charcoal-soft); }
@media (min-width: 1024px) { .iamm-feature { grid-template-columns: 0.85fr 1.15fr; } }

.iamm-step {
  display: grid; gap: 24px; padding: clamp(32px, 5vw, 56px);
}
.iamm-step-icon {
  display: flex; align-items: center; justify-content: center; width: 64px; height: 64px;
  border-radius: 16px; background: var(--b6-teal-50); font-family: var(--font-display);
  font-size: 30px; font-weight: 600; color: var(--primary);
}
.iamm-step-title { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--b6-charcoal); }
.iamm-step-desc { margin-top: 12px; font-size: 15px; line-height: 1.6; color: var(--b6-charcoal-soft); }
.iamm-step-detail { display: grid; gap: 12px; margin-top: 20px; }
.iamm-step-detail-box { border-radius: 14px; background: var(--b6-cream-soft); padding: 16px; }
.iamm-step-detail-label { margin: 0 0 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--primary); }
.iamm-step-detail-text { font-size: 14px; line-height: 1.6; color: var(--b6-charcoal-soft); }
@media (min-width: 640px) {
  .iamm-step { grid-template-columns: auto 1fr; align-items: start; }
  .iamm-step-detail { grid-template-columns: repeat(2, 1fr); }
}

/* ────────────────────────────────────────────────────────────
   17. Coaching steps
   ──────────────────────────────────────────────────────────── */
.step-card { position: relative; height: 100%; border-radius: 16px; border: 1px solid var(--b6-line); background: var(--b6-white); padding: 24px; }
.step-number { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--b6-sage-600); }
.step-title { margin-top: 12px; font-size: 16px; font-weight: 600; color: var(--b6-charcoal); }
.step-desc { margin-top: 8px; font-size: 14px; line-height: 1.6; color: var(--b6-charcoal-soft); }

/* ────────────────────────────────────────────────────────────
   18. Product mockup / workbook promo / product page
   ──────────────────────────────────────────────────────────── */
.product-mockup {
  display: flex; align-items: center; justify-content: center; text-align: center;
  aspect-ratio: 4 / 5; width: 100%; border-radius: 28px; border: 1px solid var(--b6-line);
  box-shadow: 0 20px 60px rgba(44,51,43,0.12);
  background: linear-gradient(150deg, #93a97f 0%, #4f7c74 55%, #2c332b 100%);
  color: var(--b6-cream);
}
.product-mockup-sm { max-width: 380px; }
.product-mockup-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; opacity: .8; }
.product-mockup-title { margin-top: 12px; font-family: var(--font-display); font-size: clamp(20px, 3vw, 30px); font-weight: 600; line-height: 1.25; padding-inline: 24px; }

.promo-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .promo-grid { grid-template-columns: 1fr 1fr; } }

.benefit-list { display: grid; gap: 10px; margin-top: 24px; }
.benefit-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--b6-charcoal-soft); }
.benefit-list svg { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; color: var(--primary); }

.product-detail-grid { display: grid; gap: 48px; align-items: start; }
@media (min-width: 1024px) { .product-detail-grid { grid-template-columns: 1fr 1fr; } }
.product-included-grid { display: grid; gap: 40px; margin-top: 64px; }
@media (min-width: 1024px) { .product-included-grid { grid-template-columns: 1fr 1fr; } }

/* ────────────────────────────────────────────────────────────
   19. Product / plan cards (shop, coaching)
   ──────────────────────────────────────────────────────────── */
.product-card { display: flex; flex-direction: column; overflow: hidden; text-decoration: none; }
.product-card-image { aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; background: linear-gradient(150deg, #93a97f 0%, #4f7c74 55%, #2c332b 100%); }
.product-card-image p { padding-inline: 24px; text-align: center; font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--b6-cream); }
.product-card-body { padding: 24px; }
.product-card-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--b6-charcoal); }
.product-card-desc { margin-top: 8px; font-size: 14px; line-height: 1.6; color: var(--b6-charcoal-soft); }
.product-card-price { margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--primary); }

.plan-card { display: flex; flex-direction: column; height: 100%; padding: 32px; }
.plan-card.is-highlighted { outline: 2px solid var(--primary); }
.plan-badge {
  width: fit-content; margin-bottom: 16px; border-radius: 999px; background: var(--primary);
  padding: 4px 12px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--b6-white);
}
.plan-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--b6-charcoal); }
.plan-tagline { margin-top: 8px; font-size: 14px; line-height: 1.6; color: var(--b6-charcoal-soft); }
.plan-price-block { margin-top: 24px; }
.plan-price { font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--b6-charcoal); }
.plan-price-interval { font-size: 14px; font-weight: 400; color: var(--b6-ink-muted); }
.plan-price-custom { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--b6-charcoal); }
.plan-frequency { margin-top: 4px; font-size: 12px; font-weight: 500; color: var(--b6-ink-muted); }
.plan-features { flex: 1; display: grid; gap: 10px; margin-top: 24px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--b6-charcoal-soft); }
.plan-features svg { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; color: var(--primary); }
.plan-card .btn { margin-top: 32px; }

/* ────────────────────────────────────────────────────────────
   20. Corporate CTA / offerings
   ──────────────────────────────────────────────────────────── */
.corporate-cta-grid { display: grid; gap: 40px; padding: clamp(32px, 5vw, 48px); }
@media (min-width: 1024px) { .corporate-cta-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.offer-pill-list { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .offer-pill-list { grid-template-columns: 1fr 1fr; } }
.offer-pill { border-radius: 12px; background: var(--b6-cream-soft); padding: 12px 16px; font-size: 14px; font-weight: 500; color: var(--b6-charcoal); }
.offer-card { height: 100%; border-radius: 16px; border: 1px solid var(--b6-line); background: var(--b6-white); padding: 24px; }
.offer-card-title { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--b6-charcoal); }
.offer-card-desc { margin-top: 8px; font-size: 14px; line-height: 1.6; color: var(--b6-charcoal-soft); }

/* ────────────────────────────────────────────────────────────
   21. Testimonials
   ──────────────────────────────────────────────────────────── */
.testimonial-card { display: flex; flex-direction: column; height: 100%; padding: 28px; }
.testimonial-quote-icon { width: 32px; height: 24px; color: var(--b6-sage-300); }
.testimonial-text { flex: 1; margin-top: 12px; font-size: 15px; line-height: 1.6; color: var(--b6-charcoal); }
.testimonial-name { margin-top: 20px; font-size: 14px; font-weight: 600; color: var(--b6-charcoal); }
.testimonial-context { display: block; margin-top: 2px; font-size: 12px; font-weight: 400; color: var(--b6-ink-muted); }

/* ────────────────────────────────────────────────────────────
   22. Newsletter section / CTA section (dark bands)
   ──────────────────────────────────────────────────────────── */
.newsletter-section { background: var(--b6-charcoal); }
.newsletter-section .t-headline { color: var(--b6-cream); }
.newsletter-section p { color: rgba(250,247,241,0.75); }
.newsletter-form-wrap { margin-inline: auto; margin-top: 32px; max-width: 420px; text-align: left; }
/* Dark-background context overrides so form text stays legible */
.newsletter-section .field-label { color: var(--b6-cream); }
.newsletter-section .field-checkbox-label { color: rgba(250,247,241,0.8); }
.newsletter-section .field-hint { color: rgba(250,247,241,0.6); }

.cta-band { background: linear-gradient(150deg, #4f7c74 0%, #3e655e 100%); }
.cta-band .t-headline { color: var(--b6-cream); margin-top: 16px; }
.cta-band p { margin-top: 16px; color: rgba(250,247,241,0.8); }
.cta-band-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ────────────────────────────────────────────────────────────
   23. Forms
   ──────────────────────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 6px; }
.field-label { font-size: 14px; font-weight: 600; color: var(--b6-charcoal); }
.field-required { color: var(--primary); }
.field-input, .field-textarea, .field-select {
  width: 100%; border-radius: 12px; border: 1px solid var(--b6-line); background: var(--b6-white);
  padding: 12px 16px; font-size: 15px; color: var(--b6-charcoal); transition: border-color .2s, box-shadow .2s;
}
.field-input::placeholder, .field-textarea::placeholder { color: var(--b6-ink-muted); }
.field-input:focus, .field-textarea:focus, .field-select:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79,124,116,0.15);
}
.field-input.has-error, .field-textarea.has-error, .field-select.has-error { border-color: var(--b6-red); }
.field-textarea { resize: vertical; }
.field-hint { font-size: 12px; color: var(--b6-ink-muted); }
.field-error { font-size: 12px; font-weight: 500; color: var(--b6-red); }

.field-select-wrap { position: relative; }
.field-select { appearance: none; padding-right: 40px; }
.field-select-chevron { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; color: var(--b6-ink-muted); pointer-events: none; }

.field-checkbox-row { display: flex; align-items: flex-start; gap: 12px; }
.field-checkbox { margin-top: 2px; width: 20px; height: 20px; flex-shrink: 0; accent-color: var(--primary); cursor: pointer; }
.field-checkbox-label { font-size: 14px; line-height: 1.6; color: var(--b6-charcoal-soft); cursor: pointer; }
.field-checkbox-label a { text-decoration: underline; }

.field-row { display: grid; gap: 20px; }
@media (min-width: 640px) { .field-row-2 { grid-template-columns: 1fr 1fr; } }

.checkbox-group { display: flex; flex-direction: column; gap: 8px; }
.checkbox-group-label { font-size: 14px; font-weight: 600; color: var(--b6-charcoal); }
.checkbox-group-options { display: grid; gap: 10px; }
@media (min-width: 640px) { .checkbox-group-options.two-col { grid-template-columns: 1fr 1fr; } }
.checkbox-option {
  display: flex; align-items: center; gap: 10px; border-radius: 12px; border: 1px solid var(--b6-line);
  background: var(--b6-white); padding: 10px 16px; font-size: 14px; color: var(--b6-charcoal-soft); cursor: pointer; transition: border-color .2s, background-color .2s, color .2s;
}
.checkbox-option:hover { border-color: rgba(79,124,116,0.5); }
.checkbox-option.is-checked { border-color: var(--primary); background: var(--b6-teal-50); color: var(--b6-teal-600); }
.checkbox-option input { width: 16px; height: 16px; accent-color: var(--primary); }

.honeypot-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-banner { border-radius: 12px; padding: 12px 16px; font-size: 14px; font-weight: 500; }
.form-banner-error { border: 1px solid rgba(192,57,43,0.25); background: var(--b6-red-bg); color: var(--b6-red); }
.form-banner-success { border: 1px solid var(--b6-sage-300); background: var(--b6-sage-50); color: var(--b6-teal-600); }

.radio-pill-group { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.radio-pill {
  border-radius: 12px; border: 1px solid var(--b6-line); background: var(--b6-white);
  padding: 12px 16px; text-align: left; cursor: pointer; transition: border-color .2s, background-color .2s;
}
.radio-pill:hover { border-color: rgba(79,124,116,0.5); }
.radio-pill.is-selected { border-color: var(--primary); background: var(--b6-teal-50); }
.radio-pill-title { display: block; font-size: 14px; font-weight: 600; text-transform: capitalize; color: var(--b6-charcoal); }
.radio-pill-price { display: block; font-size: 12px; color: var(--b6-ink-muted); }

.quantity-control { display: inline-flex; align-items: center; width: fit-content; border-radius: 12px; border: 1px solid var(--b6-line); }
.quantity-btn { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; font-size: 18px; background: none; border: none; color: var(--b6-charcoal); cursor: pointer; }
.quantity-btn:hover { background: var(--b6-cream-soft); }
.quantity-value { width: 40px; text-align: center; font-size: 14px; font-weight: 600; color: var(--b6-charcoal); }

.total-row { display: flex; align-items: center; justify-content: space-between; border-radius: 12px; background: var(--b6-cream-soft); padding: 12px 16px; }
.total-row-label { font-size: 14px; font-weight: 600; color: var(--b6-charcoal); }
.total-row-value { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--primary); }

/* progress bar (coaching intake) */
.progress-wrap { margin-bottom: 32px; }
.progress-labels { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; color: var(--b6-ink-muted); }
.progress-labels .current-step { color: var(--primary); }
.progress-track { height: 8px; width: 100%; overflow: hidden; border-radius: 999px; background: var(--b6-cream-soft); }
.progress-fill { height: 100%; border-radius: 999px; background: var(--primary); transition: width .5s var(--ease-out); }

.selected-plan-box { margin-bottom: 24px; border-radius: 16px; border: 1px solid var(--b6-line); background: var(--b6-cream-soft); padding: 16px 20px; }
.selected-plan-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--primary); }
.selected-plan-name { margin-top: 4px; font-size: 14px; font-weight: 600; color: var(--b6-charcoal); }

.form-step-actions { margin-top: 8px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }

/* ────────────────────────────────────────────────────────────
   24. Accordion (FAQ)
   ──────────────────────────────────────────────────────────── */
.accordion { border-top: 1px solid var(--b6-line); }
.accordion-item { border-bottom: 1px solid var(--b6-line); }
.accordion-btn {
  display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; padding: 20px 0; text-align: left; font-weight: 600; color: var(--b6-charcoal); cursor: pointer;
}
.accordion-btn:hover { color: var(--primary); }
.accordion-icon { width: 14px; height: 14px; flex-shrink: 0; color: var(--primary); transition: transform .2s; }
.accordion-btn[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); }
.accordion-panel { display: grid; grid-template-rows: 0fr; overflow: hidden; transition: grid-template-rows .3s ease; }
.accordion-panel.is-open { grid-template-rows: 1fr; }
.accordion-panel-inner { min-height: 0; overflow: hidden; }
.accordion-panel p { padding-bottom: 20px; padding-right: 32px; font-size: 14px; line-height: 1.6; color: var(--b6-charcoal-soft); }

/* ────────────────────────────────────────────────────────────
   25. Confirmation pages
   ──────────────────────────────────────────────────────────── */
.confirmation-icon {
  margin-inline: auto; display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 999px; background: var(--b6-teal-50);
}
.confirmation-icon svg { width: 32px; height: 32px; color: var(--primary); }
.confirmation-title { margin-top: 24px; }
.confirmation-message { margin-inline: auto; margin-top: 16px; max-width: 560px; }
.confirmation-steps { margin-inline: auto; margin-top: 40px; max-width: 32rem; display: grid; gap: 16px; text-align: left; }
.confirmation-step { display: flex; gap: 16px; border-radius: 16px; border: 1px solid var(--b6-line); background: var(--b6-white); padding: 20px; }
.confirmation-step-number {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 32px; height: 32px;
  border-radius: 999px; background: var(--b6-sage-50); font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--b6-sage-600);
}
.confirmation-step-title { font-size: 14px; font-weight: 600; color: var(--b6-charcoal); }
.confirmation-step-desc { margin-top: 4px; font-size: 14px; line-height: 1.6; color: var(--b6-charcoal-soft); }
.confirmation-actions { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; }

/* ────────────────────────────────────────────────────────────
   26. Legal pages
   ──────────────────────────────────────────────────────────── */
.legal-updated { margin-top: 12px; font-size: 14px; color: var(--b6-ink-muted); }
.legal-notice {
  margin-top: 24px; border-radius: 16px; border: 1px solid rgba(226,168,120,0.4);
  background: rgba(240,198,166,0.2); padding: 20px; font-size: 14px; line-height: 1.6; color: var(--b6-charcoal);
}
.legal-body { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; font-size: 15px; line-height: 1.6; color: var(--b6-charcoal-soft); }
.legal-body h2 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--b6-charcoal); }
.legal-body ul { margin-top: 8px; display: flex; flex-direction: column; gap: 8px; padding-left: 20px; list-style: disc; }

/* ────────────────────────────────────────────────────────────
   27. Resources page
   ──────────────────────────────────────────────────────────── */
.resource-toolbar { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 640px) { .resource-toolbar { flex-direction: row; align-items: center; justify-content: space-between; } }
.resource-search {
  width: 100%; max-width: 320px; border-radius: 999px; border: 1px solid var(--b6-line);
  background: var(--b6-white); padding: 12px 20px; font-size: 14px; color: var(--b6-charcoal);
}
.resource-search:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(79,124,116,0.15); }
.resource-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.resource-filter-btn {
  border-radius: 999px; border: 1px solid var(--b6-line); background: var(--b6-white);
  padding: 8px 16px; font-size: 12px; font-weight: 600; color: var(--b6-charcoal-soft); cursor: pointer; transition: all .2s;
}
.resource-filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.resource-filter-btn.is-active { background: var(--primary); border-color: var(--primary); color: var(--b6-white); }

.resource-grid { margin-top: 40px; display: grid; gap: 20px; }
.resource-card { display: flex; flex-direction: column; height: 100%; padding: 24px; }
.resource-category-badge {
  width: fit-content; border-radius: 999px; background: var(--b6-teal-50); padding: 4px 12px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--primary);
}
.resource-card-title { margin-top: 12px; font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--b6-charcoal); }
.resource-card-excerpt { flex: 1; margin-top: 8px; font-size: 14px; line-height: 1.6; color: var(--b6-charcoal-soft); }
.resource-card-meta { margin-top: 16px; font-size: 12px; font-weight: 500; color: var(--b6-ink-muted); }
.resource-empty { margin-top: 56px; text-align: center; font-size: 14px; color: var(--b6-ink-muted); }
.resource-card[hidden] { display: none; }

/* ────────────────────────────────────────────────────────────
   28. Mock checkout (dev mode)
   ──────────────────────────────────────────────────────────── */
.mock-checkout-wrap { margin-inline: auto; max-width: 28rem; }
.mock-checkout-badge {
  border-radius: 999px; background: rgba(240,198,166,0.3); padding: 8px 16px;
  text-align: center; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--b6-peach-600);
}
.mock-checkout-card { margin-top: 24px; padding: 32px; }
.mock-checkout-brand { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--b6-ink-muted); }
.mock-checkout-line { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--b6-line); padding-bottom: 16px; margin-top: 12px; }
.mock-checkout-line-label { font-size: 14px; font-weight: 500; color: var(--b6-charcoal); }
.mock-checkout-line-value { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--b6-charcoal); }
.mock-checkout-total { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.mock-checkout-total-label { font-size: 14px; font-weight: 600; color: var(--b6-charcoal); }
.mock-checkout-total-value { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--primary); }
.mock-checkout-form { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.mock-checkout-note { text-align: center; font-size: 12px; color: var(--b6-ink-muted); }

/* ────────────────────────────────────────────────────────────
   29. About page value cards, team, etc.
   ──────────────────────────────────────────────────────────── */
.value-card { height: 100%; border-radius: 16px; border: 1px solid var(--b6-line); background: var(--b6-white); padding: 24px; }
.value-card-title { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--b6-charcoal); }
.value-card-desc { margin-top: 8px; font-size: 14px; line-height: 1.6; color: var(--b6-charcoal-soft); }
.mission-card { height: 100%; padding: 28px; }
.mission-card-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--b6-charcoal); }
.mission-card-text { margin-top: 12px; font-size: 14px; line-height: 1.6; color: var(--b6-charcoal-soft); }
.what-list { display: grid; gap: 12px; margin-top: 16px; }
.what-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 1.6; color: var(--b6-charcoal-soft); }
.what-list svg { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; }
.what-do svg { color: var(--primary); }
.what-do-not svg { color: var(--b6-peach-600); }
.team-card { padding: 28px; text-align: center; }
.team-avatar { margin-inline: auto; margin-bottom: 16px; width: 80px; height: 80px; border-radius: 999px; background: linear-gradient(135deg, var(--b6-sage), var(--primary)); }
.team-name { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--b6-charcoal); }
.team-role { font-size: 14px; font-weight: 500; color: var(--primary); }
.team-bio { margin-top: 12px; font-size: 14px; line-height: 1.6; color: var(--b6-charcoal-soft); }

/* ────────────────────────────────────────────────────────────
   30. Utility spacing helpers (small curated set)
   ──────────────────────────────────────────────────────────── */
.mt-1 { margin-top: 4px; } .mt-2 { margin-top: 8px; } .mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; } .mt-5 { margin-top: 20px; } .mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; } .mt-10 { margin-top: 40px; } .mt-12 { margin-top: 48px; }
.mx-auto { margin-inline: auto; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
