/* ──────────────────────────────────────────────────────────────────────────
   burtai.com — redesign layer (theme-forest)
   Applied only on .theme-forest body. Base.html.twig site-header/site-footer
   are hidden on this body since this layer ships its own nav + footer.
   ────────────────────────────────────────────────────────────────────────── */

/* Hide the legacy hardcoded header/footer on redesigned pages */
body.theme-forest > .site-header,
body.theme-forest > footer.site-footer,
body.theme-forest > canvas#stars-bg { display: none !important; }

/* Restore default page flow (the legacy CSS adds padding-top for the fixed
   header). Our nav is sticky (not fixed), so no padding compensation needed. */
body.theme-forest { padding-top: 0 !important; }
body.theme-forest .page-body { padding-top: 0 !important; }

/* CENTERED MAIN — base.html.twig wraps body block in <main class="container">.
   We constrain it to our container width and center it on the viewport.
   Everything inside (nav, hero, sections, footer) sits inside this column. */
body.theme-forest main.container,
body.theme-forest main {
  max-width: var(--container) !important;
  width: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 24px !important;
  min-height: 0 !important;
}

/* Hero / trust / deep sections — rounded edges since they sit centered */
body.theme-forest .bf-hero,
body.theme-forest .bf-trust,
body.theme-forest .bf-section--deep {
  border-radius: var(--r-xl);
  overflow: hidden;
}
body.theme-forest .bf-hero { margin-top: 16px; }

/* Mobile: full viewport, no rounded corners, no side gutter — even content
   inside containers stretches edge-to-edge. Internal element padding (cards,
   section heads, etc.) handles readability. */
@media (max-width: 640px) {
  body.theme-forest main.container,
  body.theme-forest main,
  body.theme-forest .bf-container {
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }
  body.theme-forest .bf-hero,
  body.theme-forest .bf-trust,
  body.theme-forest .bf-section--deep,
  body.theme-forest .bf-nav,
  body.theme-forest .bf-footer {
    border-radius: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: none !important;
  }
  body.theme-forest .bf-hero { margin-top: 0; }

  /* Section-level horizontal padding so text doesn't touch the edge */
  body.theme-forest .bf-section > .bf-container,
  body.theme-forest .bf-trust > .bf-container,
  body.theme-forest .bf-footer > .bf-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  /* Hero overlay text needs the gutter too */
  body.theme-forest .bf-hero__inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Mobile nav (rendered server-side via is_mobile() Twig helper) */
.bf-nav--mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(246, 244, 238, 0.96);
  border-bottom: 1px solid var(--hair);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.bf-nav__burger {
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  padding: 4px;
  display: inline-flex;
  align-items: center;
}
.bf-mobile-menu {
  display: none;
  position: sticky;
  top: 56px;
  z-index: 49;
  background: var(--bg);
  border-bottom: 1px solid var(--hair);
}
.bf-mobile-menu.is-open { display: block; }
.bf-mobile-menu nav a {
  display: block;
  padding: 14px 8px;
  color: var(--ink);
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid var(--hair);
}
.bf-mobile-menu nav a:last-child { border-bottom: 0; }

/* ─────────────────────────────────────────────────────────────
   GLOBAL CENTERING — center all section copy, keep card content left
   ───────────────────────────────────────────────────────────── */
/* Section root + section heads: center everything by default */
body.theme-forest .bf-section { text-align: center; }
body.theme-forest .bf-section-head,
body.theme-forest .bf-section-head--between {
  align-items: center !important;
  flex-direction: column !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 760px;
}
body.theme-forest .bf-section h1,
body.theme-forest .bf-section h2 {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 1000px;
  text-align: center;
}
body.theme-forest .bf-section > .bf-container > p,
body.theme-forest .bf-section > .bf-container > .bf-eyebrow {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
  max-width: 720px;
}
/* But cards and grid items keep their own (mostly left-aligned) flow */
body.theme-forest .bf-card,
body.theme-forest .bf-pcard,
body.theme-forest .bf-style-card,
body.theme-forest .bf-pcompact,
body.theme-forest .bf-bundle-card,
body.theme-forest .bf-testi,
body.theme-forest .bf-free-item,
body.theme-forest .bf-how-step,
body.theme-forest .bf-trust-item,
body.theme-forest .bf-pfeature__body,
body.theme-forest .bf-footer-grid > *,
body.theme-forest .bdl-form-wrap,
body.theme-forest form { text-align: left; }
/* Inside-card headings reset back to inheriting (left) */
body.theme-forest .bf-card h2,
body.theme-forest .bf-card h3,
body.theme-forest .bf-pcard h2,
body.theme-forest .bf-pcard h3,
body.theme-forest .bf-style-card h2,
body.theme-forest .bf-style-card h3,
body.theme-forest .bf-pcompact h2,
body.theme-forest .bf-pcompact h3,
body.theme-forest .bf-bundle-card h2,
body.theme-forest .bf-bundle-card h3,
body.theme-forest .bf-how-step h2,
body.theme-forest .bf-how-step h3,
body.theme-forest .bf-pfeature h2,
body.theme-forest .bf-pfeature h3 {
  max-width: none;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left;
}
/* Centered card variants where the card itself should be centered (e.g. zodiac/free tools) */
body.theme-forest .bf-card[style*="text-align:center"],
body.theme-forest .bf-card[style*="text-align: center"] { text-align: center; }
body.theme-forest .bf-card[style*="text-align:center"] h2,
body.theme-forest .bf-card[style*="text-align:center"] h3,
body.theme-forest .bf-card[style*="text-align: center"] h2,
body.theme-forest .bf-card[style*="text-align: center"] h3 {
  text-align: center;
}

/* ──────────────────────────────────────────────────────────────
   Tokens — forest theme (dark forest greens + sage + warm gold accent)
   ────────────────────────────────────────────────────────────── */
.theme-forest {
  /* spacing scale */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px; --sp-5: 24px;
  --sp-6: 32px; --sp-7: 48px; --sp-8: 64px; --sp-9: 96px; --sp-10: 128px;
  /* radii */
  --r-xs: 4px; --r-sm: 6px; --r-md: 10px; --r-lg: 18px; --r-xl: 28px;
  /* layout — wider container since no sidebar; desktop has visible margins,
     mobile is full-bleed via the @media rule below */
  --container: 1400px;
  --gutter: 32px;
  /* base palette */
  --bg: #F6F4EE;
  --bg-paper: #ECE7D8;
  --bg-deep: #0F1A1A;
  --bg-deep-2: #1F302D;
  --ink: #10221E;
  --ink-soft: #2F4A43;
  --ink-mute: #6B7A75;
  --hair: rgba(16, 34, 30, 0.12);
  --hair-on-deep: rgba(232, 239, 232, 0.16);
  /* accents */
  --gold: #B89A5C;
  --gold-deep: #8B7340;
  --gold-soft: #D9C68F;
  --rose: #C46F62;
  --accent: #4A8B7C;
  --accent-deep: #2D5E54;
  --accent-soft: #BFD6CF;
  /* state */
  --price: #10221E;
  --price-strike: #6B7A75;
  --success: #4A8B7C;
  /* type */
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --display-weight: 700;
  --display-tracking: -0.02em;
  --body-tracking: -0.003em;
  /* shadows */
  --shadow-card: 0 1px 2px rgba(16,34,30,.05), 0 10px 30px -10px rgba(16,34,30,.18);
  --shadow-deep: 0 20px 60px -20px rgba(15,26,26,.55);
}

body.theme-forest {
  font-family: var(--font-body);
  font-feature-settings: "ss01", "cv11";
  color: var(--ink);
  background: var(--bg);
  letter-spacing: var(--body-tracking);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body.theme-forest * { box-sizing: border-box; }

/* Override base.html.twig globals (h1/h2/h3/h4 are color:white there
   because the legacy design lived on a dark background). On theme-forest
   light cream sections we need dark ink; explicit light-text overrides
   live on the deep-bg sections below. */
body.theme-forest h1,
body.theme-forest h2,
body.theme-forest h3,
body.theme-forest h4 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  line-height: 1.05;
  margin-top: 0;
}

/* Re-apply light text for headings sitting on the dark bg sections */
body.theme-forest .bf-hero h1 { color: #FAF6EC; }
body.theme-forest .bf-section--deep h1,
body.theme-forest .bf-section--deep h2,
body.theme-forest .bf-section--deep h3,
body.theme-forest .bf-section--deep h4 { color: var(--bg-paper); }
body.theme-forest .bf-pfeature h3 { color: #FAF6EC; }
body.theme-forest .bf-final h2 { color: #FAF6EC; }
body.theme-forest .bf-trust-item__head { color: var(--bg-paper); }
body.theme-forest .bf-footer h1,
body.theme-forest .bf-footer h2,
body.theme-forest .bf-footer h3,
body.theme-forest .bf-footer h4 { color: var(--bg-paper); }

/* ──────────────────────────────────────────────────────────────
   Typography primitives
   ────────────────────────────────────────────────────────────── */
.bf-display {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  line-height: 1.05;
  font-style: normal;
}
.bf-display-it {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: var(--display-tracking);
}
.bf-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.bf-eyebrow-gold { color: var(--accent-deep); }
.bf-eyebrow-on-deep { color: rgba(232,239,232,0.65); }

.bf-t-h1 { font-size: clamp(40px, 5.6vw, 76px); }
.bf-t-h2 { font-size: clamp(32px, 4vw, 56px); }
.bf-t-h3 { font-size: clamp(22px, 2.4vw, 32px); }
.bf-t-h4 { font-size: 20px; }
.bf-t-lg { font-size: 18px; line-height: 1.55; }
.bf-t-md { font-size: 16px; }
.bf-t-sm { font-size: 14px; }
.bf-t-xs { font-size: 12px; }
.bf-text-mute { color: var(--ink-mute); }
.bf-text-soft { color: var(--ink-soft); }
.bf-text-center { text-align: center; }

/* ──────────────────────────────────────────────────────────────
   Layout helpers
   ────────────────────────────────────────────────────────────── */
.bf-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.bf-flex { display: flex; }
.bf-flex-col { display: flex; flex-direction: column; }
.bf-center { display: flex; align-items: center; justify-content: center; }
.bf-between { display: flex; align-items: center; justify-content: space-between; }
.bf-gap-2 { gap: 8px; }
.bf-gap-3 { gap: 12px; }
.bf-gap-4 { gap: 16px; }
.bf-gap-5 { gap: 24px; }
.bf-gap-6 { gap: 32px; }
.bf-gap-7 { gap: 48px; }
.bf-hr-hair { height: 1px; background: var(--hair); border: 0; margin: 0; }
.on-deep .bf-hr-hair { background: var(--hair-on-deep); }

/* ──────────────────────────────────────────────────────────────
   Buttons
   ────────────────────────────────────────────────────────────── */
.bf-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.bf-btn-primary {
  background: var(--accent-deep);
  color: #F4F7F4;
}
.bf-btn-primary:hover { transform: translateY(-1px); background: var(--accent); }
.bf-btn-gold {
  background: var(--accent);
  color: var(--bg-deep);
}
.bf-btn-gold:hover { transform: translateY(-1px); background: var(--accent-deep); color: #F4F7F4; }
.bf-btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--hair);
}
.bf-btn-ghost:hover { background: rgba(16,34,30,0.04); }
.on-deep .bf-btn-ghost { color: var(--bg-paper); border-color: var(--hair-on-deep); }
.on-deep .bf-btn-ghost:hover { background: rgba(232,239,232,0.06); }
.bf-btn-link {
  background: transparent;
  color: var(--ink);
  padding: 8px 0;
  border-radius: 0;
  border-bottom: 1px solid currentColor;
  font-weight: 600;
  font-size: 14px;
}
.bf-btn-link:hover { color: var(--accent-deep); }
.bf-btn-sm { padding: 10px 18px; font-size: 13px; }
.bf-btn-lg { padding: 20px 36px; font-size: 16px; }
.bf-btn-block { display: flex; width: 100%; }

/* ──────────────────────────────────────────────────────────────
   Price
   ────────────────────────────────────────────────────────────── */
.bf-price-now {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--price);
}
.bf-price-then {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--price-strike);
  text-decoration: line-through;
  margin-left: 8px;
}
.bf-price-row { display: inline-flex; align-items: baseline; gap: 8px; }

/* ──────────────────────────────────────────────────────────────
   Badges
   ────────────────────────────────────────────────────────────── */
.bf-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--hair);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft);
}
.bf-badge-accent {
  background: rgba(74,139,124,.12);
  border-color: rgba(74,139,124,.4);
  color: var(--accent-deep);
}
.bf-badge-gold {
  background: rgba(184,154,92,.14);
  border-color: rgba(184,154,92,.4);
  color: var(--gold-deep);
}
.on-deep .bf-badge { background: rgba(255,255,255,.06); border-color: var(--hair-on-deep); color: var(--bg-paper); }

/* ──────────────────────────────────────────────────────────────
   Cards & panels
   ────────────────────────────────────────────────────────────── */
.bf-card {
  background: #FBFAF4;
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  transition: border-color .2s ease, transform .25s ease, box-shadow .25s ease;
}
.bf-card:hover {
  border-color: rgba(16,34,30,0.24);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(16,34,30,.06), 0 18px 50px -16px rgba(16,34,30,.22);
}
.on-deep {
  background: var(--bg-deep);
  color: var(--bg-paper);
}
.on-deep .bf-text-mute,
.on-deep .bf-text-soft { color: rgba(232,239,232,.6); }

/* ──────────────────────────────────────────────────────────────
   Top navigation (replaces base.html.twig site-header on .theme-forest)
   ────────────────────────────────────────────────────────────── */
.bf-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--hair);
  background: var(--bg);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(246, 244, 238, 0.88);
}
.bf-nav.is-deep {
  background: rgba(15, 26, 26, 0.88);
  color: var(--bg-paper);
  border-bottom-color: var(--hair-on-deep);
}
.bf-brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: inherit; text-decoration: none;
}
.bf-brand-word {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.bf-nav-links {
  display: flex; gap: 32px;
  font-size: 14px;
}
.bf-nav-links a {
  color: inherit; text-decoration: none;
  opacity: .85;
  transition: opacity .15s;
}
.bf-nav-links a:hover { opacity: 1; color: var(--accent-deep); }
.bf-nav-actions { display: flex; align-items: center; gap: 14px; }
.bf-nav-actions a { color: inherit; display: inline-flex; align-items: center; }
.bf-nav-mobile-toggle { display: none; }

/* ──────────────────────────────────────────────────────────────
   Hero — full-bleed with overlay text
   ────────────────────────────────────────────────────────────── */
.bf-hero {
  position: relative;
  min-height: 560px;
  padding: 64px 0 72px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.bf-hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.bf-hero__bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.bf-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  /* Stronger left-side darkening for legible text over painted scene */
  background:
    linear-gradient(105deg, rgba(8,17,17,0.94) 0%, rgba(8,17,17,0.78) 38%, rgba(8,17,17,0.35) 68%, rgba(8,17,17,0.08) 100%),
    linear-gradient(180deg, rgba(8,17,17,0.35) 0%, transparent 30%, transparent 70%, rgba(8,17,17,0.55) 100%);
}
.bf-hero__inner {
  position: relative; z-index: 1;
  color: #F5EFE2;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bf-hero h1 {
  margin: 18px auto 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 6.2vw, 84px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.025em;
  max-width: 900px;
  color: #FAF6EC;
  text-shadow: 0 2px 24px rgba(8,17,17,0.55), 0 1px 2px rgba(8,17,17,0.4);
  text-align: center;
}
.bf-hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: #E8D89E;
  text-shadow: 0 2px 24px rgba(8,17,17,0.6), 0 1px 2px rgba(8,17,17,0.45);
}
.bf-hero__lead {
  margin: 20px auto 0;
  max-width: 580px;
  color: rgba(245,239,226,0.92);
  font-size: 17px;
  line-height: 1.5;
  text-shadow: 0 1px 12px rgba(8,17,17,0.65);
  text-align: center;
}
.bf-hero .bf-eyebrow-on-deep {
  color: rgba(245,239,226,0.78);
  text-shadow: 0 1px 8px rgba(8,17,17,0.6);
  letter-spacing: 0.2em;
}
.bf-hero__rating-text {
  text-shadow: 0 1px 8px rgba(8,17,17,0.6);
}
.bf-hero__ctas {
  justify-content: center;
  margin-top: 28px;
  gap: 18px;
  flex-wrap: wrap;
}
.bf-hero__rating {
  width: 100%;
  justify-content: center;
  margin-top: 14px;
}
.bf-hero__ctas {
  margin-top: 44px;
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.bf-hero__rating { display: flex; align-items: center; gap: 12px; }
.bf-hero__rating-stars { display: flex; gap: 2px; color: var(--accent); }
.bf-hero__rating-text { font-size: 14px; font-weight: 600; }

/* ──────────────────────────────────────────────────────────────
   Trust strip
   ────────────────────────────────────────────────────────────── */
.bf-trust {
  background: var(--bg-deep);
  color: var(--bg-paper);
  padding: 0;
  margin-top: 24px;
}
.bf-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 28px 8px;
}
.bf-trust-item {
  padding: 16px 28px;
  display: flex; align-items: center; gap: 16px;
  border-left: 1px solid var(--hair-on-deep);
  min-height: 64px;
}
.bf-trust-item:first-child { border-left: 0; }
.bf-trust-item__icon {
  color: var(--accent);
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(74,139,124,0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bf-trust-item__head { font-size: 14px; font-weight: 600; margin-bottom: 3px; letter-spacing: -0.005em; }
.bf-trust-item__sub { font-size: 12px; color: rgba(232,239,232,.55); line-height: 1.4; }

/* ──────────────────────────────────────────────────────────────
   Section helpers
   ────────────────────────────────────────────────────────────── */
.bf-section { padding: 120px 0; }
.bf-section--tight { padding-top: 0; padding-bottom: 120px; }
.bf-section--deep { background: var(--bg-deep); color: var(--bg-paper); }

.bf-section-head {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 56px;
}
.bf-section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  line-height: 1.05;
}
.bf-section-head--center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.bf-section-head--between {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
}

/* ──────────────────────────────────────────────────────────────
   Products magazine grid
   ────────────────────────────────────────────────────────────── */
.bf-pgrid {
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.bf-pgrid__stack { display: flex; flex-direction: column; gap: 32px; }
.bf-pgrid-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Featured (Bundle) card */
.bf-pfeature {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 540px;
  display: flex; flex-direction: column;
  background: var(--bg-deep);
  color: var(--bg-paper);
  text-decoration: none;
  transition: transform .25s ease;
}
.bf-pfeature:hover { transform: translateY(-3px); }
.bf-pfeature__bg { position: absolute; inset: 0; }
.bf-pfeature__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bf-pfeature__body {
  position: relative; z-index: 1;
  padding: 48px;
  margin-top: auto;
  background: linear-gradient(180deg, transparent 0%, rgba(8,17,17,0.7) 35%, rgba(8,17,17,0.96) 75%);
  color: #F5EFE2;
}
.bf-pfeature h3 {
  margin: 16px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.05;
  color: #FAF6EC;
}
.bf-pfeature p {
  margin: 0 0 28px;
  color: rgba(245,239,226,0.9);
  max-width: 460px;
}
.bf-pfeature__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.bf-pfeature .bf-price-now { color: var(--accent); font-size: 40px; }
.bf-pfeature .bf-price-then { color: rgba(232,239,232,0.55); font-size: 16px; }

/* Horizontal compact card (used in stack column) */
.bf-pcompact {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 20px;
  background: #FBFAF4;
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: inherit;
  min-height: 254px;
  transition: border-color .2s ease, transform .25s ease, box-shadow .25s ease;
}
.bf-pcompact:hover {
  border-color: rgba(16,34,30,0.24);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.bf-pcompact__img {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-paper);
}
.bf-pcompact__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.bf-pcompact__body {
  display: flex; flex-direction: column;
  padding: 8px 8px 8px 0;
}
.bf-pcompact h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
}
.bf-pcompact p {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--ink-soft);
}
.bf-pcompact__foot {
  margin-top: auto;
  display: flex; align-items: baseline; justify-content: space-between;
}
.bf-pcompact__more {
  color: var(--accent-deep);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex; gap: 6px; align-items: center;
}

/* Three-across card */
.bf-pcard {
  padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
  background: #FBFAF4;
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, transform .25s ease, box-shadow .25s ease;
}
.bf-pcard:hover {
  border-color: rgba(16,34,30,0.24);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.bf-pcard__img {
  aspect-ratio: 5 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-paper);
  position: relative;
}
.bf-pcard__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Portrait card mosaic — pack many examples into one card to spark curiosity */
.bf-pcard__img--mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
  background: var(--bg-deep);
}
.bf-pcard__img--mosaic img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease, filter .3s ease;
}
.bf-pcard:hover .bf-pcard__img--mosaic img {
  transform: scale(1.04);
}
.bf-pcard__img--mosaic img:nth-child(odd) { filter: brightness(.98) saturate(1.05); }
.bf-pcard__mosaic-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 5px 10px;
  background: rgba(15, 28, 24, .82);
  color: #FBFAF4;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px -4px rgba(0,0,0,.4);
  z-index: 2;
  pointer-events: none;
}
.bf-pcard h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
}
.bf-pcard p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
}
.bf-pcard__foot {
  margin-top: auto;
  display: flex; align-items: baseline; justify-content: space-between;
}

/* ──────────────────────────────────────────────────────────────
   How it works (timeline on deep bg)
   ────────────────────────────────────────────────────────────── */
.bf-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 80px;
  position: relative;
}
.bf-how-grid::before {
  content: '';
  position: absolute;
  top: 22px; left: 12%; right: 12%;
  height: 1px;
  background: var(--hair-on-deep);
}
.bf-how-step__num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.bf-how-step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
}
.bf-how-step p {
  margin-top: 12px;
  opacity: .8;
  max-width: 320px;
}
.bf-how-step__when {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: .55;
}

/* ──────────────────────────────────────────────────────────────
   Astrologer feature
   ────────────────────────────────────────────────────────────── */
.bf-astro {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.bf-astro__quote-mark {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.7;
  color: var(--accent);
}
.bf-astro__quote {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.18;
}
.bf-astro__quote em { font-style: italic; color: var(--accent); }
.bf-astro__author { display: flex; align-items: center; gap: 16px; margin-top: 32px; }
.bf-astro__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent-soft);
  flex-shrink: 0;
  overflow: hidden;
}
.bf-astro__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.bf-astro__img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ──────────────────────────────────────────────────────────────
   Testimonials
   ────────────────────────────────────────────────────────────── */
.bf-testis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bf-testi {
  margin: 0;
  padding: 32px;
  background: var(--bg-paper);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.bf-testi__stars { display: flex; gap: 4px; color: var(--accent); }
.bf-testi blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 400;
}
.bf-testi blockquote em { color: var(--accent); font-style: italic; }
.bf-testi figcaption {
  margin-top: auto;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
}
.bf-testi__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  flex-shrink: 0;
}
.bf-testi__name { font-weight: 600; }
.bf-testi__city { font-size: 12px; color: var(--ink-mute); }

/* ──────────────────────────────────────────────────────────────
   Free tools
   ────────────────────────────────────────────────────────────── */
.bf-free {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.bf-free-item {
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--hair);
  background: #FBFAF4;
  display: flex; align-items: center; gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, transform .15s ease;
}
.bf-free-item:hover { border-color: var(--accent); transform: translateY(-2px); }
.bf-free-item__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-deep);
  flex-shrink: 0;
}
.bf-free-item__body { flex: 1; }
.bf-free-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}
.bf-free-item p {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--ink-soft);
}
.bf-free-item__arrow { opacity: .4; flex-shrink: 0; }

/* ──────────────────────────────────────────────────────────────
   FAQ accordion
   ────────────────────────────────────────────────────────────── */
.bf-faq {
  max-width: 820px;
  margin: 56px auto 0;
}
.bf-faq__item { border-bottom: 1px solid var(--hair); }
.bf-faq__trigger {
  width: 100%; text-align: left;
  padding: 22px 0;
  background: transparent; border: 0;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  letter-spacing: var(--display-tracking);
  color: var(--ink);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.bf-faq__icon { width: 24px; height: 24px; flex-shrink: 0; opacity: .55; transition: transform .2s; }
.bf-faq__item[open] .bf-faq__icon { transform: rotate(45deg); }
.bf-faq__body { padding: 0 0 22px; color: var(--ink-soft); font-size: 16px; line-height: 1.6; max-width: 60ch; }

/* Hide native details marker */
.bf-faq__item summary { list-style: none; }
.bf-faq__item summary::-webkit-details-marker { display: none; }

/* ──────────────────────────────────────────────────────────────
   Final CTA section (deep bg)
   ────────────────────────────────────────────────────────────── */
.bf-final {
  padding: 88px 64px;
  border-radius: var(--r-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
  color: var(--bg-paper);
}
.bf-final__bg { position: absolute; inset: 0; }
.bf-final__bg img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .42; }
.bf-final__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(8,17,17,0.55) 0%, rgba(8,17,17,0.88) 100%),
    linear-gradient(180deg, rgba(8,17,17,0.4) 0%, rgba(8,17,17,0.82) 100%);
}
.bf-final__inner {
  position: relative; z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  color: #F5EFE2;
}
.bf-final h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.02;
  color: #FAF6EC;
  text-shadow: 0 2px 18px rgba(8,17,17,0.55);
}
.bf-final h2 em {
  color: #E8D89E;
  font-style: italic;
  text-shadow: 0 2px 18px rgba(8,17,17,0.65);
}
.bf-final p {
  margin-top: 24px;
  color: rgba(245,239,226,0.94);
  font-size: 18px;
  text-shadow: 0 1px 10px rgba(8,17,17,0.55);
}

/* ──────────────────────────────────────────────────────────────
   Footer
   ────────────────────────────────────────────────────────────── */
.bf-footer {
  background: var(--bg-deep);
  color: var(--bg-paper);
  padding: 72px 0 40px;
  /* Full-bleed: break out of the constrained <main> max-width */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.bf-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.bf-footer__brand-lede {
  margin-top: 16px;
  font-size: 14px;
  max-width: 320px;
  opacity: .75;
}
.bf-footer__badges {
  display: flex; gap: 12px; margin-top: 20px;
}
.bf-footer__col-head {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,239,232,0.55);
  margin-bottom: 18px;
}
.bf-footer__col-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.bf-footer__col-list a {
  color: inherit; text-decoration: none;
  font-size: 14px;
  opacity: .8;
  transition: opacity .15s;
}
.bf-footer__col-list a:hover { opacity: 1; color: var(--accent); }
.bf-footer__bottom {
  display: flex; justify-content: space-between;
  font-size: 12px;
  opacity: .6;
  margin-top: 24px;
}

/* ──────────────────────────────────────────────────────────────
   Sticky mobile CTA bar
   ────────────────────────────────────────────────────────────── */
.bf-sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(246,244,238,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--hair);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: none;
  align-items: center; gap: 12px;
  z-index: 100;
}
.bf-sticky-cta .bf-btn { flex: 1; }

/* ──────────────────────────────────────────────────────────────
   Responsive — mobile-first refinement
   ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bf-nav { padding: 16px 20px; }
  .bf-nav-links { display: none; }
  .bf-nav-mobile-toggle { display: inline-flex; }

  .bf-section { padding: 80px 20px; }
  .bf-section--tight { padding-top: 0; padding-bottom: 80px; }
  .bf-hero { min-height: 640px; padding: 64px 20px 80px; }
  .bf-container { padding: 0 20px; }

  .bf-trust .bf-container { padding: 0 20px; }
  .bf-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .bf-trust-item { padding: 18px 22px; }
  .bf-trust-item:nth-child(2) { border-left: 1px solid var(--hair-on-deep); }
  .bf-trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--hair-on-deep); }
  .bf-trust-item:nth-child(4) { border-top: 1px solid var(--hair-on-deep); }

  .bf-pgrid { grid-template-columns: 1fr; }
  .bf-pgrid-row { grid-template-columns: repeat(2, 1fr); }
  .bf-pfeature { min-height: 460px; }
  .bf-pfeature__body { padding: 32px; }

  .bf-astro { grid-template-columns: 1fr; gap: 48px; }
  .bf-testis { grid-template-columns: 1fr; }
  .bf-free { grid-template-columns: repeat(2, 1fr); }

  .bf-section-head--between { flex-direction: column; align-items: flex-start; }

  .bf-how-grid { grid-template-columns: 1fr; gap: 48px; margin-top: 56px; }
  .bf-how-grid::before { display: none; }

  .bf-final { padding: 56px 32px; }

  .bf-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .bf-footer__bottom { flex-direction: column; gap: 6px; margin-top: 16px; }
}

@media (max-width: 640px) {
  /* MOBILE — prevent overflow, scale type down, keep buttons inside viewport */
  body.theme-forest { padding-bottom: 76px !important; overflow-x: hidden; }

  .bf-container { padding: 0 16px; }
  .bf-section { padding: 56px 0; }
  .bf-section--tight { padding-bottom: 56px; }

  .bf-nav { padding: 14px 16px; }
  .bf-nav-links { display: none; }
  .bf-nav-actions { gap: 10px; }
  .bf-nav-actions > span { display: none !important; }

  .bf-hero { min-height: 0; padding: 0; }
  .bf-hero__inner,
  body.theme-forest .bf-hero__inner.bf-container {
    padding: 48px 24px !important;
  }
  .bf-hero h1 {
    font-size: 36px !important;
    line-height: 1.05;
    margin-top: 20px;
    padding-left: 4px;
    padding-right: 4px;
  }
  .bf-hero__lead {
    margin-top: 24px;
    font-size: 15px;
    padding-left: 4px;
    padding-right: 4px;
    max-width: 100%;
  }
  .bf-hero__ctas { margin-top: 28px; padding-left: 4px; padding-right: 4px; }
  .bf-hero__rating { margin-top: 20px; }
  .bf-hero__lead { font-size: 15px; margin-top: 20px; }
  .bf-hero__ctas { margin-top: 28px; gap: 10px; flex-direction: column; align-items: stretch; }
  .bf-hero__ctas .bf-btn { width: 100%; padding: 16px 18px; font-size: 14px; min-width: 0; white-space: normal; line-height: 1.25; }
  .bf-hero__rating { width: 100%; justify-content: center; margin-top: 8px; }
  .bf-hero h1 em { display: inline; }

  /* Generic inline-styled hero headings on paid pages */
  [data-hero-grid] h1 { font-size: 38px !important; line-height: 1.05; }
  [data-hero-grid] { gap: 32px !important; }

  /* Section heads */
  .bf-section-head { margin-bottom: 32px; }
  .bf-section-head h2 { font-size: 30px !important; line-height: 1.1; }

  /* Buttons in general — wrap text on small screens */
  .bf-btn { white-space: normal; line-height: 1.25; }
  .bf-btn-lg { padding: 16px 20px; font-size: 14px; }

  /* Trust strip — 1 col */
  .bf-trust-grid { grid-template-columns: 1fr; }
  .bf-trust-item { border-left: 0 !important; border-top: 1px solid var(--hair-on-deep); padding: 16px 16px; }
  .bf-trust-item:first-child { border-top: 0; }

  /* Products magazine grid */
  .bf-pgrid-row { grid-template-columns: 1fr; }
  .bf-pfeature__body { padding: 24px; }
  .bf-pfeature h3 { font-size: 26px; }
  .bf-pfeature .bf-price-now { font-size: 30px; }

  .bf-pcompact { grid-template-columns: 1fr; min-height: 0; }
  .bf-pcompact__img { aspect-ratio: 16/10; height: auto; min-height: 0; }

  .bf-free { grid-template-columns: 1fr; }

  .bf-final { padding: 40px 20px; }
  .bf-final h2 { font-size: 32px !important; }

  .bf-footer { padding: 40px 0 24px; }
  .bf-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .bf-footer__bottom { flex-direction: column; gap: 6px; align-items: flex-start; }

  /* Sticky mobile CTA — only on mobile */
  .bf-sticky-cta { display: flex; }
  .bf-sticky-cta .bf-btn { font-size: 13px; padding: 14px 16px; white-space: normal; line-height: 1.2; }

  /* How-it-works on deep bg */
  .bf-how-grid { gap: 32px; margin-top: 40px; }
  .bf-how-step h3 { font-size: 24px; }

  /* Astrologer feature */
  .bf-astro { gap: 32px; }

  /* Tables/long content overflow protection */
  img, video, iframe { max-width: 100%; height: auto; }

  /* GENERAL OVERFLOW & FIT — prevent buttons/headlines/badges from blowing
     the viewport. Everything must fit inside 100% width. */
  body.theme-forest * { min-width: 0; }
  body.theme-forest h1,
  body.theme-forest h2,
  body.theme-forest h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
  }
  body.theme-forest .bf-btn,
  body.theme-forest .bf-sticky-cta .bf-btn,
  body.theme-forest button {
    max-width: 100%;
    white-space: normal;
    line-height: 1.25;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
  }
  body.theme-forest .bf-btn-lg { padding: 14px 18px !important; font-size: 14px !important; }
  body.theme-forest .bf-sticky-cta .bf-btn { font-size: 13px !important; padding: 12px 14px !important; gap: 6px; }
  body.theme-forest .bf-hero__ctas {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  body.theme-forest .bf-hero__ctas > .bf-btn { width: 100%; }
  body.theme-forest .bf-badge { white-space: normal; }
  body.theme-forest .bf-price-now { font-size: 22px !important; }
  body.theme-forest .bf-card,
  body.theme-forest .bf-pcard,
  body.theme-forest .bf-style-card,
  body.theme-forest .bf-pcompact,
  body.theme-forest .bf-bundle-card,
  body.theme-forest .bf-pfeature {
    max-width: 100%;
    overflow: hidden;
  }
  /* Inline 2-col grids force to single column to avoid overflow */
  body.theme-forest [data-hero-grid] { grid-template-columns: 1fr !important; gap: 24px !important; }
  body.theme-forest .bf-astro { grid-template-columns: 1fr !important; gap: 24px !important; }
  /* Prevent horizontal scroll altogether */
  html, body { max-width: 100vw; overflow-x: hidden; }
}

/* ═══════════════════════════════════════════════════════════════════
   SOFT CTA — fancy bordered card nudging toward free tools
   ═══════════════════════════════════════════════════════════════════ */
body.theme-forest .bf-soft-cta {
  position: relative;
  margin-top: 64px;
  padding: 40px 44px;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(74,139,124,.10) 0%, transparent 55%),
    radial-gradient(120% 140% at 100% 100%, rgba(139,115,64,.10) 0%, transparent 55%),
    var(--bg-paper);
  border: 1px solid rgba(139,115,64,.22);
  border-radius: var(--r-xl);
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 24px 48px -32px rgba(45,60,55,.25);
  overflow: hidden;
}
body.theme-forest .bf-soft-cta::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(139,115,64,.18);
  border-radius: calc(var(--r-xl) - 8px);
  pointer-events: none;
}
body.theme-forest .bf-soft-cta__ornament {
  position: absolute;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  opacity: .55;
  pointer-events: none;
}
body.theme-forest .bf-soft-cta__ornament--tl { top: 18px; left: 22px; }
body.theme-forest .bf-soft-cta__ornament--br { bottom: 18px; right: 22px; transform: rotate(-12deg); }

body.theme-forest .bf-soft-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
body.theme-forest .bf-soft-cta__copy { min-width: 0; }
body.theme-forest .bf-soft-cta__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
  color: var(--ink);
  margin: 10px 0 8px;
  letter-spacing: -0.01em;
}
body.theme-forest .bf-soft-cta__title em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}
body.theme-forest .bf-soft-cta__lede {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 560px;
}
body.theme-forest .bf-soft-cta__chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
body.theme-forest .bf-soft-cta__chips li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 8px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(74,90,80,.14);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .005em;
}
body.theme-forest .bf-soft-cta__chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: rgba(74,139,124,.12);
  color: var(--accent-deep, #2f6b5d);
}
body.theme-forest .bf-soft-cta__action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
body.theme-forest .bf-soft-cta__hint {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: .75;
}
@media (max-width: 720px) {
  body.theme-forest .bf-soft-cta { padding: 28px 22px; margin-top: 40px; }
  body.theme-forest .bf-soft-cta__inner { grid-template-columns: 1fr; gap: 22px; }
  body.theme-forest .bf-soft-cta__action { align-items: stretch; }
  body.theme-forest .bf-soft-cta__action .bf-btn { width: 100%; justify-content: center; }
  body.theme-forest .bf-soft-cta__hint { text-align: center; }
  body.theme-forest .bf-soft-cta__ornament--tl { top: 12px; left: 12px; width: 28px; height: 28px; }
  body.theme-forest .bf-soft-cta__ornament--br { bottom: 12px; right: 12px; width: 28px; height: 28px; }
}

/* ═══════════════════════════════════════════════════════════════════
   FREE TOOLS PAGE — cozy layout
   ═══════════════════════════════════════════════════════════════════ */

/* — HERO — */
body.theme-forest .bf-ft-hero {
  position: relative;
  padding: 72px 0 48px;
  text-align: center;
  background:
    radial-gradient(60% 80% at 20% 10%, rgba(74,139,124,.08) 0%, transparent 60%),
    radial-gradient(50% 70% at 80% 90%, rgba(139,115,64,.10) 0%, transparent 60%);
  overflow: hidden;
}
body.theme-forest .bf-ft-hero__orn {
  position: absolute;
  color: var(--gold-deep);
  opacity: .35;
  pointer-events: none;
}
body.theme-forest .bf-ft-hero__orn--1 { top: 14%; left: 8%; transform: rotate(-18deg); }
body.theme-forest .bf-ft-hero__orn--2 { top: 22%; right: 10%; opacity: .25; }
body.theme-forest .bf-ft-hero__orn--3 { bottom: 28%; left: 15%; opacity: .5; }
body.theme-forest .bf-ft-hero__orn--4 { bottom: 18%; right: 18%; transform: rotate(20deg); }

body.theme-forest .bf-ft-today-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 12px;
  margin-bottom: 22px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(139,115,64,.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--ink);
  backdrop-filter: blur(4px);
}
body.theme-forest .bf-ft-today-chip svg { color: var(--gold-deep); }

body.theme-forest .bf-ft-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
body.theme-forest .bf-ft-hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}

body.theme-forest .bf-ft-hero__lede {
  margin: 18px auto 0;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
}

body.theme-forest .bf-ft-hero__stats {
  margin-top: 24px;
  font-size: 13.5px;
  color: var(--ink-soft);
  letter-spacing: .01em;
}
body.theme-forest .bf-ft-hero__stats strong { color: var(--ink); font-weight: 600; }
body.theme-forest .bf-ft-hero__dot { margin: 0 10px; opacity: .4; }

/* — TODAY'S SKY STRIP — */
body.theme-forest .bf-today {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  gap: 0;
  padding: 28px 32px;
  background:
    linear-gradient(135deg, rgba(74,139,124,.08) 0%, rgba(255,253,247,1) 40%, rgba(139,115,64,.06) 100%);
  border: 1px solid rgba(139,115,64,.18);
  border-radius: var(--r-xl);
  box-shadow: 0 24px 48px -36px rgba(45,60,55,.25);
  overflow: hidden;
}
body.theme-forest .bf-today__col {
  padding: 8px 28px;
  border-left: 1px dashed rgba(139,115,64,.22);
  min-width: 0;
}
body.theme-forest .bf-today__col:first-child { border-left: none; padding-left: 8px; }
body.theme-forest .bf-today__col--moon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
body.theme-forest .bf-today__eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
body.theme-forest .bf-today__moon-glyph {
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,253,247,1), rgba(232,222,196,.6));
  color: var(--gold-deep);
  margin-bottom: 8px;
  box-shadow: 0 8px 18px -10px rgba(139,115,64,.45), inset 0 0 0 1px rgba(139,115,64,.22);
}
body.theme-forest .bf-today__moon-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
}
body.theme-forest .bf-today__moon-meta {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 2px;
}

body.theme-forest .bf-today__names {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}
body.theme-forest .bf-today__names li a {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .15s;
}
body.theme-forest .bf-today__names li a:hover { border-bottom-color: var(--gold-deep); }
body.theme-forest .bf-today__empty { font-size: 14px; color: var(--ink-soft); margin: 0; }
body.theme-forest .bf-today__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-deep);
  text-decoration: none;
}

body.theme-forest .bf-today__quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
body.theme-forest .bf-today__quick {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(74,90,80,.12);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: transform .15s, border-color .15s, background .15s;
}
body.theme-forest .bf-today__quick:hover {
  transform: translateY(-1px);
  border-color: rgba(139,115,64,.35);
  background: #fff;
}
body.theme-forest .bf-today__quick svg { color: var(--accent-deep); flex-shrink: 0; }

@media (max-width: 920px) {
  body.theme-forest .bf-today { grid-template-columns: 1fr; padding: 22px 24px; }
  body.theme-forest .bf-today__col {
    border-left: none;
    border-top: 1px dashed rgba(139,115,64,.22);
    padding: 18px 0 0;
    margin-top: 18px;
  }
  body.theme-forest .bf-today__col:first-child { border-top: none; padding-top: 0; margin-top: 0; }
}

/* — TOOLS GRID — */
body.theme-forest .bf-ft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 18px;
}
body.theme-forest .bf-ft-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 24px 22px;
  background: var(--bg-paper);
  border: 1px solid rgba(74,90,80,.12);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
body.theme-forest .bf-ft-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,253,247,0) 0%, rgba(255,253,247,.5) 100%);
  pointer-events: none;
}
body.theme-forest .bf-ft-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 38px -22px rgba(45,60,55,.22);
  border-color: rgba(139,115,64,.35);
}
body.theme-forest .bf-ft-card__icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(74,139,124,.12);
  color: var(--accent-deep);
  box-shadow: inset 0 0 0 1px rgba(74,139,124,.18);
}
body.theme-forest .bf-ft-card__body { position: relative; z-index: 1; flex: 1; }
body.theme-forest .bf-ft-card__cat {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 4px;
}
body.theme-forest .bf-ft-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.2;
}
body.theme-forest .bf-ft-card__desc {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
body.theme-forest .bf-ft-card__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-deep);
}
body.theme-forest .bf-ft-card__cta svg { transition: transform .15s; }
body.theme-forest .bf-ft-card:hover .bf-ft-card__cta svg { transform: translateX(3px); }
body.theme-forest .bf-ft-card__corner {
  position: absolute;
  top: 14px; right: 14px;
  color: var(--gold-deep);
  opacity: .25;
  pointer-events: none;
}

/* Category accent tints */
body.theme-forest .bf-ft-card--astrologija .bf-ft-card__icon { background: rgba(74,139,124,.14); color: #2f6b5d; }
body.theme-forest .bf-ft-card--mistika    .bf-ft-card__icon { background: rgba(108,80,150,.13); color: #5a3e8a; }
body.theme-forest .bf-ft-card--numerologija .bf-ft-card__icon { background: rgba(180,120,50,.13); color: #8a5a20; }
body.theme-forest .bf-ft-card--vardadieniai .bf-ft-card__icon { background: rgba(150,90,90,.13); color: #7a3e3e; }
body.theme-forest .bf-ft-card--kita .bf-ft-card__icon { background: rgba(90,100,110,.13); color: #495966; }

/* — HOROSCOPES — */
body.theme-forest .bf-ft-horo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
body.theme-forest .bf-ft-horo {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 22px 18px;
  background: var(--bg-paper);
  border: 1px solid rgba(74,90,80,.12);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color .15s, transform .15s;
}
body.theme-forest .bf-ft-horo:hover {
  border-color: rgba(139,115,64,.35);
  transform: translateY(-2px);
}
body.theme-forest .bf-ft-horo__glyph {
  position: absolute;
  top: 10px; right: 10px;
  color: var(--gold-deep);
  opacity: .35;
}
body.theme-forest .bf-ft-horo__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding-right: 24px;
}
body.theme-forest .bf-ft-horo__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
}
body.theme-forest .bf-ft-horo__range {
  font-size: 11.5px;
  color: var(--ink-soft);
  letter-spacing: .03em;
}
body.theme-forest .bf-ft-horo__text {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.theme-forest .bf-ft-horo__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-deep);
  margin-top: 4px;
}

/* — TWO-COL PANELS (moon + names) — */
body.theme-forest .bf-ft-twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
body.theme-forest .bf-ft-panel {
  position: relative;
  padding: 30px 28px;
  background: var(--bg-paper);
  border: 1px solid rgba(139,115,64,.18);
  border-radius: 18px;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset;
  overflow: hidden;
}
body.theme-forest .bf-ft-panel__corner {
  position: absolute;
  top: 18px; right: 22px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,253,247,.8);
  color: var(--gold-deep);
  opacity: .7;
}
body.theme-forest .bf-ft-panel__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin: 8px 0 22px;
}
body.theme-forest .bf-ft-panel__stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px dashed rgba(139,115,64,.22);
  border-bottom: 1px dashed rgba(139,115,64,.22);
}
body.theme-forest .bf-ft-panel__stat-label {
  display: block;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
body.theme-forest .bf-ft-panel__stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
}
body.theme-forest .bf-ft-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
body.theme-forest .bf-ft-panel__search {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
body.theme-forest .bf-ft-panel__search input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--hair);
  background: #fff;
  font-size: 14px;
  color: var(--ink);
}
body.theme-forest .bf-ft-panel__names {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
body.theme-forest .bf-ft-panel__names li a {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  text-decoration: none;
}
body.theme-forest .bf-ft-panel__names li span {
  display: block;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 2px;
  line-height: 1.45;
}
@media (max-width: 820px) {
  body.theme-forest .bf-ft-twocol { grid-template-columns: 1fr; }
  body.theme-forest .bf-ft-panel__stats { grid-template-columns: 1fr; gap: 12px; }
}

/* — ZODIAC STRIP — */
body.theme-forest .bf-ft-zodiac {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}
body.theme-forest .bf-ft-zodiac__card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-paper);
  border: 1px solid rgba(74,90,80,.12);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, transform .15s;
}
body.theme-forest .bf-ft-zodiac__card:hover {
  border-color: rgba(139,115,64,.35);
  transform: translateY(-1px);
}
body.theme-forest .bf-ft-zodiac__icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(139,115,64,.14);
  color: var(--gold-deep);
  box-shadow: inset 0 0 0 1px rgba(139,115,64,.22);
}
body.theme-forest .bf-ft-zodiac__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
}
body.theme-forest .bf-ft-zodiac__range {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 1px;
}

/* ═══════════════════════════════════════════════════════════════════
   TAROT INDEX PAGE — interactive, with strong tarokortos.com nudges
   ═══════════════════════════════════════════════════════════════════ */

/* — HERO with floating card fan — */
body.theme-forest .bf-tarot-hero {
  position: relative;
  padding: 64px 0 32px;
  overflow: hidden;
  background:
    radial-gradient(60% 80% at 18% 20%, rgba(74,139,124,.08) 0%, transparent 60%),
    radial-gradient(50% 80% at 82% 80%, rgba(139,115,64,.12) 0%, transparent 60%);
}
body.theme-forest .bf-tarot-hero__orn {
  position: absolute;
  color: var(--gold-deep);
  opacity: .35;
  pointer-events: none;
}
body.theme-forest .bf-tarot-hero__orn--1 { top: 18%; left: 6%; transform: rotate(-12deg); }
body.theme-forest .bf-tarot-hero__orn--2 { top: 50%; right: 4%; opacity: .22; }
body.theme-forest .bf-tarot-hero__orn--3 { bottom: 14%; left: 38%; opacity: .55; }

body.theme-forest .bf-tarot-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
body.theme-forest .bf-tarot-hero__copy {
  text-align: left;
}
body.theme-forest .bf-tarot-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 12px 0 0;
  color: var(--ink);
}
body.theme-forest .bf-tarot-hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}
body.theme-forest .bf-tarot-hero__lede {
  margin: 18px 0 0;
  max-width: 520px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Floating fanned cards in hero */
body.theme-forest .bf-tarot-fan {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.theme-forest .bf-tarot-fan__card {
  position: absolute;
  width: 150px;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 36px -16px rgba(15,28,24,.45), 0 4px 12px -4px rgba(15,28,24,.25);
  border: 1px solid rgba(139,115,64,.35);
  background: #1a2a26;
  transition: transform .35s ease, box-shadow .35s ease;
}
body.theme-forest .bf-tarot-fan__card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
body.theme-forest .bf-tarot-fan__card--1 { transform: translate(-110px, 10px) rotate(-12deg); animation: bf-fan-float-a 6s ease-in-out infinite; z-index: 1; }
body.theme-forest .bf-tarot-fan__card--2 { transform: translate(0, -10px) rotate(0deg); animation: bf-fan-float-b 6s ease-in-out infinite; z-index: 3; }
body.theme-forest .bf-tarot-fan__card--3 { transform: translate(110px, 10px) rotate(12deg); animation: bf-fan-float-c 6s ease-in-out infinite; z-index: 2; }
body.theme-forest .bf-tarot-fan:hover .bf-tarot-fan__card--1 { transform: translate(-130px, 0) rotate(-18deg); }
body.theme-forest .bf-tarot-fan:hover .bf-tarot-fan__card--3 { transform: translate(130px, 0) rotate(18deg); }
body.theme-forest .bf-tarot-fan:hover .bf-tarot-fan__card--2 { transform: translate(0, -20px) rotate(0); }

@keyframes bf-fan-float-a {
  0%,100% { transform: translate(-110px, 10px) rotate(-12deg); }
  50%     { transform: translate(-110px, -2px) rotate(-12deg); }
}
@keyframes bf-fan-float-b {
  0%,100% { transform: translate(0, -10px) rotate(0deg); }
  50%     { transform: translate(0, -22px) rotate(0deg); }
}
@keyframes bf-fan-float-c {
  0%,100% { transform: translate(110px, 10px) rotate(12deg); }
  50%     { transform: translate(110px, -2px) rotate(12deg); }
}
@media (max-width: 880px) {
  body.theme-forest .bf-tarot-hero__grid { grid-template-columns: 1fr; gap: 24px; }
  body.theme-forest .bf-tarot-hero__copy { text-align: center; }
  body.theme-forest .bf-tarot-hero__lede { margin-left: auto; margin-right: auto; }
  body.theme-forest .bf-tarot-fan { height: 260px; }
  body.theme-forest .bf-tarot-fan__card { width: 120px; height: 200px; }
  body.theme-forest .bf-tarot-fan__card--1 { transform: translate(-80px, 8px) rotate(-10deg); }
  body.theme-forest .bf-tarot-fan__card--3 { transform: translate(80px, 8px) rotate(10deg); }
  @keyframes bf-fan-float-a {
    0%,100% { transform: translate(-80px, 8px) rotate(-10deg); }
    50%     { transform: translate(-80px, -2px) rotate(-10deg); }
  }
  @keyframes bf-fan-float-c {
    0%,100% { transform: translate(80px, 8px) rotate(10deg); }
    50%     { transform: translate(80px, -2px) rotate(10deg); }
  }
}

/* — ALERT BANNER (must not be missed) — */
body.theme-forest .bf-tarot-alert {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 26px 28px;
  background: linear-gradient(135deg, #fff7e6 0%, #fdf2d3 100%);
  border: 2px solid #c9a76b;
  border-radius: 18px;
  box-shadow: 0 12px 28px -16px rgba(139,115,64,.4);
  text-align: left;
}
body.theme-forest .bf-tarot-alert__badge {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #c9a76b;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 4px rgba(201,167,107,.18);
}
body.theme-forest .bf-tarot-alert__body { flex: 1; min-width: 0; }
body.theme-forest .bf-tarot-alert__head {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 6px;
}
body.theme-forest .bf-tarot-alert__tag {
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 10px; background: #c9a76b; color: #fff; border-radius: 999px;
}
body.theme-forest .bf-tarot-alert__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: #5c4515;
  line-height: 1.3;
}
body.theme-forest .bf-tarot-alert__title em { color: #8b5a16; font-style: italic; font-weight: 700; }
body.theme-forest .bf-tarot-alert__text {
  margin: 8px 0 14px;
  color: #6b5a30;
  font-size: 15px;
  line-height: 1.55;
}
body.theme-forest .bf-tarot-alert__text strong { color: #5c4515; }
body.theme-forest .bf-tarot-alert__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  background: #5c4515;
  color: #fff7e6;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s;
}
body.theme-forest .bf-tarot-alert__cta:hover {
  background: #3f2f0f;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -8px rgba(60,40,10,.5);
}
body.theme-forest .bf-tarot-alert__brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .005em;
}
@media (max-width: 640px) {
  body.theme-forest .bf-tarot-alert { padding: 22px 20px; gap: 16px; flex-direction: column; }
  body.theme-forest .bf-tarot-alert__cta { width: 100%; justify-content: center; }
}

/* — 6 READING CARDS — */
body.theme-forest .bf-tarot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 18px;
}
body.theme-forest .bf-tarot-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 24px 20px;
  background: var(--bg-paper);
  border: 1px solid rgba(74,90,80,.14);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
body.theme-forest .bf-tarot-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255,253,247,.5) 100%);
  pointer-events: none;
}
body.theme-forest .bf-tarot-card:hover {
  transform: translateY(-3px) rotate(-.4deg);
  border-color: rgba(139,115,64,.4);
  box-shadow: 0 22px 38px -22px rgba(45,60,55,.22);
}
body.theme-forest .bf-tarot-card__top {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: center;
}
body.theme-forest .bf-tarot-card__icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(108,80,150,.13);
  color: #5a3e8a;
  box-shadow: inset 0 0 0 1px rgba(108,80,150,.2);
}
body.theme-forest .bf-tarot-card__badge {
  font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 10px;
  background: rgba(74,139,124,.12);
  color: var(--accent-deep);
  border-radius: 999px;
}
body.theme-forest .bf-tarot-card__title {
  position: relative; z-index: 1;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  color: var(--ink);
  line-height: 1.2;
}
body.theme-forest .bf-tarot-card__desc {
  position: relative; z-index: 1;
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  flex: 1;
}
body.theme-forest .bf-tarot-card__foot {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 4px;
}
body.theme-forest .bf-tarot-card__hint {
  font-size: 12px;
  font-style: italic;
  color: var(--gold-deep);
}
body.theme-forest .bf-tarot-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600;
  color: var(--accent-deep);
}
body.theme-forest .bf-tarot-card__cta svg { transition: transform .15s; }
body.theme-forest .bf-tarot-card:hover .bf-tarot-card__cta svg { transform: translateX(3px); }
body.theme-forest .bf-tarot-card__corner {
  position: absolute; top: 12px; right: 12px;
  color: var(--gold-deep); opacity: .22;
  pointer-events: none;
}

/* — INTERACTIVE PICK-A-CARD DEMO — */
body.theme-forest .bf-tarot-demo {
  position: relative;
  padding: 44px 36px 36px;
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(74,139,124,.08) 0%, transparent 60%),
    var(--bg-paper);
  border: 1px solid rgba(139,115,64,.18);
  border-radius: 22px;
  text-align: center;
  overflow: hidden;
}
body.theme-forest .bf-tarot-demo__head { margin-bottom: 28px; }
body.theme-forest .bf-tarot-demo__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 38px);
  margin: 10px 0 8px;
  color: var(--ink);
}
body.theme-forest .bf-tarot-demo__title em { font-style: italic; color: var(--gold-deep); font-weight: 500; }
body.theme-forest .bf-tarot-demo__lede {
  margin: 0 auto;
  max-width: 520px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

body.theme-forest .bf-tarot-demo__deck {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 16px;
  perspective: 1200px;
  margin-bottom: 8px;
}
body.theme-forest .bf-tarot-demo__card {
  width: 120px;
  height: 200px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: transform .2s ease, opacity .3s ease;
}
body.theme-forest .bf-tarot-demo__card:hover:not(.is-flipped):not(.is-dimmed) {
  transform: translateY(-8px) rotate(-1.5deg);
}
body.theme-forest .bf-tarot-demo__card.is-dimmed {
  opacity: .35;
  filter: grayscale(.6);
  pointer-events: none;
}
body.theme-forest .bf-tarot-demo__card-inner {
  display: block;
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.6,.05,.2,1);
}
body.theme-forest .bf-tarot-demo__card.is-flipped .bf-tarot-demo__card-inner {
  transform: rotateY(180deg);
}
body.theme-forest .bf-tarot-demo__card-back,
body.theme-forest .bf-tarot-demo__card-face {
  position: absolute; inset: 0;
  border-radius: 10px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  box-shadow: 0 12px 24px -10px rgba(15,28,24,.4), 0 2px 6px -2px rgba(15,28,24,.25);
}
body.theme-forest .bf-tarot-demo__card-back {
  background:
    radial-gradient(circle at 50% 50%, #2f4a42 0%, #1a2a26 70%),
    #1a2a26;
  border: 1.5px solid rgba(201,167,107,.55);
  display: flex; align-items: center; justify-content: center;
  color: rgba(201,167,107,.85);
}
body.theme-forest .bf-tarot-demo__card-back-deco {
  position: absolute; inset: 6px;
  border: 1px dashed rgba(201,167,107,.35);
  border-radius: 7px;
  pointer-events: none;
}
body.theme-forest .bf-tarot-demo__card-face {
  transform: rotateY(180deg);
  background: #1a2a26;
  border: 1.5px solid rgba(201,167,107,.55);
  display: flex; flex-direction: column;
}
body.theme-forest .bf-tarot-demo__card-face img {
  width: 100%; height: calc(100% - 28px); object-fit: cover; display: block;
}
body.theme-forest .bf-tarot-demo__card-name {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: #f4e8c8;
  text-align: center;
  padding: 6px 4px;
  background: #1a2a26;
  letter-spacing: .03em;
}

body.theme-forest .bf-tarot-demo__result {
  margin-top: 28px;
  padding: 26px 24px;
  background: #fff;
  border: 1px solid rgba(139,115,64,.25);
  border-radius: 16px;
  box-shadow: 0 18px 32px -20px rgba(45,60,55,.25);
  animation: bf-fade-up .4s ease;
}
@keyframes bf-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
body.theme-forest .bf-tarot-demo__result-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
body.theme-forest .bf-tarot-demo__result-msg {
  margin: 0 0 18px;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.55;
  max-width: 580px;
  margin-left: auto; margin-right: auto;
}
body.theme-forest .bf-tarot-demo__result-actions {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px;
}
body.theme-forest .bf-tarot-demo__result-note {
  margin: 18px 0 0;
  font-size: 12.5px;
  color: var(--ink-soft);
  font-style: italic;
}
body.theme-forest .bf-tarot-demo__result-note a {
  color: var(--gold-deep);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(139,115,64,.4);
}
@media (max-width: 640px) {
  body.theme-forest .bf-tarot-demo { padding: 30px 18px 26px; }
  body.theme-forest .bf-tarot-demo__card { width: 92px; height: 154px; }
}

/* — COMPARE TABLE — */
body.theme-forest .bf-tarot-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
body.theme-forest .bf-tarot-compare__col {
  padding: 28px 28px 26px;
  border-radius: 18px;
  text-align: left;
}
body.theme-forest .bf-tarot-compare__col--free {
  background: var(--bg-paper);
  border: 1px solid rgba(74,90,80,.16);
}
body.theme-forest .bf-tarot-compare__col--premium {
  background: linear-gradient(180deg, #fff8e8 0%, #faf0d4 100%);
  border: 2px solid #c9a76b;
  box-shadow: 0 18px 32px -20px rgba(139,115,64,.4);
  display: flex; flex-direction: column;
}
body.theme-forest .bf-tarot-compare__head { margin-bottom: 18px; }
body.theme-forest .bf-tarot-compare__chip {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 10px;
  background: rgba(74,139,124,.16);
  color: var(--accent-deep);
  border-radius: 999px;
  margin-bottom: 10px;
}
body.theme-forest .bf-tarot-compare__chip--gold {
  background: #c9a76b;
  color: #fff;
}
body.theme-forest .bf-tarot-compare__col h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
  line-height: 1.25;
}
body.theme-forest .bf-tarot-compare__col ul {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: flex; flex-direction: column; gap: 10px;
}
body.theme-forest .bf-tarot-compare__col li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.45;
}
body.theme-forest .bf-tarot-compare__col li svg {
  flex-shrink: 0; margin-top: 2px;
  color: var(--accent-deep);
}
body.theme-forest .bf-tarot-compare__cross svg { color: #c4584a; transform: rotate(45deg); }
body.theme-forest .bf-tarot-compare__cross { color: var(--ink-soft); }
body.theme-forest .bf-tarot-compare__col--premium li svg { color: #8b5a16; }
body.theme-forest .bf-tarot-compare__col--premium { color: #5c4515; }
body.theme-forest .bf-tarot-compare__col--premium li { color: #5c4515; }
body.theme-forest .bf-tarot-compare__col--premium li strong { color: #3f2f0f; font-weight: 700; }
@media (max-width: 760px) {
  body.theme-forest .bf-tarot-compare { grid-template-columns: 1fr; }
}

/* — FINAL CTA — dark, gold accent — */
body.theme-forest .bf-tarot-final {
  position: relative;
  padding: 48px 44px;
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(201,167,107,.18) 0%, transparent 55%),
    linear-gradient(135deg, #0f1c18 0%, #1c2e28 100%);
  border-radius: 22px;
  color: #f4e8c8;
  overflow: hidden;
  box-shadow: 0 28px 56px -32px rgba(15,28,24,.6);
}
body.theme-forest .bf-tarot-final::before {
  content: "";
  position: absolute; inset: 10px;
  border: 1px dashed rgba(201,167,107,.22);
  border-radius: calc(22px - 10px);
  pointer-events: none;
}
body.theme-forest .bf-tarot-final__orn {
  position: absolute;
  color: #c9a76b;
  opacity: .35;
  pointer-events: none;
}
body.theme-forest .bf-tarot-final__orn--1 { top: 24px; left: 28px; }
body.theme-forest .bf-tarot-final__orn--2 { top: 36px; right: 40px; opacity: .25; }
body.theme-forest .bf-tarot-final__orn--3 { bottom: 28px; left: 50%; transform: translateX(-50%) rotate(-12deg); opacity: .2; }

body.theme-forest .bf-tarot-final__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
body.theme-forest .bf-tarot-final__eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #c9a76b;
  margin-bottom: 14px;
}
body.theme-forest .bf-tarot-final__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 12px;
  color: #fffcf2;
}
body.theme-forest .bf-tarot-final__title em {
  font-style: italic;
  color: #e5c98a;
  font-weight: 500;
}
body.theme-forest .bf-tarot-final__lede {
  margin: 0 0 18px;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(244,232,200,.85);
  max-width: 540px;
}
body.theme-forest .bf-tarot-final__points {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
body.theme-forest .bf-tarot-final__points li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px;
  color: rgba(244,232,200,.92);
}
body.theme-forest .bf-tarot-final__points li svg { color: #c9a76b; flex-shrink: 0; }

body.theme-forest .bf-tarot-final__action {
  display: flex; flex-direction: column; align-items: stretch; gap: 12px;
}
body.theme-forest .bf-tarot-final__brand {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: #fffcf2;
  text-align: center;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
body.theme-forest .bf-tarot-final__brand span { color: #c9a76b; }
body.theme-forest .bf-tarot-final__action .bf-btn { width: 100%; justify-content: center; }
body.theme-forest .bf-tarot-final__hint {
  text-align: center;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(244,232,200,.55);
}
@media (max-width: 880px) {
  body.theme-forest .bf-tarot-final { padding: 36px 26px; }
  body.theme-forest .bf-tarot-final__inner { grid-template-columns: 1fr; gap: 28px; }
  body.theme-forest .bf-tarot-final__lede { max-width: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   BREADCRUMBS — subtle nav path above hero
   ═══════════════════════════════════════════════════════════════════ */
body.theme-forest .bf-crumbs {
  padding: 18px 0 0;
  font-size: 13px;
  color: var(--ink-soft);
}
body.theme-forest .bf-crumbs__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
body.theme-forest .bf-crumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
body.theme-forest .bf-crumbs__item a {
  color: var(--ink-soft);
  text-decoration: none;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
  transition: color .15s, border-color .15s;
}
body.theme-forest .bf-crumbs__item a:hover {
  color: var(--gold-deep);
  border-bottom-color: rgba(139,115,64,.45);
}
body.theme-forest .bf-crumbs__item--current span[itemprop="name"] {
  color: var(--ink);
  font-weight: 500;
}
body.theme-forest .bf-crumbs__sep {
  display: inline-flex;
  align-items: center;
  color: var(--ink-mute, var(--ink-soft));
  opacity: .4;
}
@media (max-width: 540px) {
  body.theme-forest .bf-crumbs { font-size: 12px; padding-top: 12px; }
  body.theme-forest .bf-crumbs__sep svg { width: 10px; height: 10px; }
}

/* ═══════════════════════════════════════════════════════════
   Sidebar layout — used by /menulio-* and other cluster pages
   ═══════════════════════════════════════════════════════════ */

.bf-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px;
  align-items: start;
}

.bf-layout__main { min-width: 0; }

.bf-layout__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 88px;
}

/* Sidebar cards reused across moon/names/dreams/etc. */
.moon-side__card,
.bf-side__card {
  padding: 24px;
}

.moon-side__today {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 14px 0 18px;
}

.moon-side__glyph {
  font-size: 40px;
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(226, 193, 107, 0.3));
}

.moon-side__stats {
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.moon-side__stats > div { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.moon-side__stats dt { text-transform: uppercase; letter-spacing: 2px; margin: 0; }
.moon-side__stats dd { margin: 0; font-weight: 600; text-align: right; }

.moon-side__nav,
.bf-side__nav {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.moon-side__nav a,
.bf-side__nav a {
  display: block;
  padding: 10px 12px;
  margin: 0 -12px;
  border-radius: var(--r-sm);
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  transition: background 0.15s ease, color 0.15s ease;
}

.moon-side__nav a:hover,
.bf-side__nav a:hover {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.moon-side__nav a[aria-current="page"],
.bf-side__nav a[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 600;
}

@media (max-width: 960px) {
  .bf-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .bf-layout__side {
    position: static;
  }
}

/* Generic card grids used by listing pages */
.bf-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.bf-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.bf-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }

@media (max-width: 1100px) {
  .bf-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bf-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .bf-grid-4, .bf-grid-3, .bf-grid-2 { grid-template-columns: 1fr; }
}

/* Sidebar — tag list (chips) and letter grid */
.bf-side__taglist {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bf-side__taglist a {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg-paper);
  border-radius: 50px;
  font-size: 12px;
  color: inherit;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.bf-side__taglist a:hover {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.bf-side__letters {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 12px;
}
.bf-side__letter {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  background: var(--bg-paper);
  color: inherit;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  transition: background 0.15s ease, color 0.15s ease;
}
.bf-side__letter:hover {
  background: var(--accent-soft);
  color: var(--accent-deep);
}
.bf-side__letter--active {
  background: var(--accent-deep);
  color: var(--bg);
}

/* Generic listing card used by names/dreams/wishes etc. */
.bf-listing-card {
  padding: 22px 16px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  position: relative;
  transition: transform 0.15s ease, background 0.15s ease;
}
.bf-listing-card:hover {
  transform: translateY(-2px);
  background: var(--bg-paper);
}
.bf-listing-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}
.bf-listing-card__sub {
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}
.bf-listing-card__meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* Pagination */
.bf-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.bf-pagination a, .bf-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: var(--r-sm);
  background: var(--bg-paper);
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.15s ease, color 0.15s ease;
}
.bf-pagination a:hover { background: var(--accent-soft); color: var(--accent-deep); }
.bf-pagination .bf-pagination__active {
  background: var(--accent-deep);
  color: var(--bg);
  font-weight: 600;
}
.bf-pagination__ellipsis {
  background: transparent;
  color: var(--ink-mute);
}

/* Form input — reused on calculator/search/etc. */
.bf-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--r-md);
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.bf-input:focus {
  outline: none;
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* Prose for long-form content */
.bf-prose { line-height: 1.7; }
.bf-prose p { margin: 0 0 14px; }
.bf-prose p:last-child { margin-bottom: 0; }
.bf-prose h2, .bf-prose h3 { margin: 24px 0 12px; font-family: var(--font-display); font-weight: 600; }
.bf-prose ul, .bf-prose ol { margin: 0 0 14px 1.4em; padding: 0; }
.bf-prose li { margin: 6px 0; }
.bf-prose a { color: var(--accent-deep); }

/* Inline today links inside sidebar today card */
.moon-side__link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted rgba(139, 115, 64, 0.4);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.moon-side__link:hover {
  color: var(--accent-deep);
  border-bottom-color: var(--accent-deep);
}

/* Today inline links (used on home/free_tools panels) */
.bf-today__link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted rgba(139, 115, 64, 0.4);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.bf-today__link:hover {
  color: var(--accent-deep);
  border-bottom-color: var(--accent-deep);
}
