/* enhancements.css — design + animation polish layer for csf-preview-2026
   Loaded after the Tailwind bundle. Comprehensive editorial-tone enhancements:
   - Scroll reveals + stat counters
   - Mobile menu drawer
   - Reading progress bar
   - Sticky table of contents (article pages)
   - Pull quotes, callouts, drop caps
   - Magnetic card hovers, refined focus states
   - Page fade-in on initial paint
   - Print stylesheet
   - prefers-reduced-motion fallback
*/

/* ═══════════════════════════════════════════════════════════════
   1. PAGE LOAD — initial fade-in (avoid flash of unstyled content)
   ═══════════════════════════════════════════════════════════════ */
html { scroll-behavior: smooth; }
body {
  opacity: 0;
  animation: page-fade-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes page-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   2. SCROLL REVEAL — IntersectionObserver-driven
   ═══════════════════════════════════════════════════════════════ */
.reveal-up {
  opacity: 0 !important;
  transform: translateY(20px) !important;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.reveal-up.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.reveal-up[data-delay="100"].is-visible { transition-delay: 100ms; }
.reveal-up[data-delay="200"].is-visible { transition-delay: 200ms; }
.reveal-up[data-delay="300"].is-visible { transition-delay: 300ms; }
.reveal-up[data-delay="400"].is-visible { transition-delay: 400ms; }
.reveal-up[data-delay="500"].is-visible { transition-delay: 500ms; }

/* Stagger child reveals (used on grids) */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 80ms; }
.reveal-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 160ms; }
.reveal-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 320ms; }
.reveal-stagger.is-visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 400ms; }
.reveal-stagger.is-visible > *:nth-child(n+7) { opacity: 1; transform: none; transition-delay: 480ms; }

/* ═══════════════════════════════════════════════════════════════
   3. STAT COUNTER
   ═══════════════════════════════════════════════════════════════ */
.stat-counter {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ═══════════════════════════════════════════════════════════════
   4. CARD HOVER — refined editorial lift
   ═══════════════════════════════════════════════════════════════ */
.card-elevated {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.2s ease;
  position: relative;
}
.card-elevated:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(15, 38, 32, 0.12), 0 4px 12px -4px rgba(15, 38, 32, 0.06);
  border-color: rgba(212, 169, 60, 0.4);
}
.card-elevated::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 0.3s ease;
}
.card-elevated:hover::after {
  border-color: rgba(212, 169, 60, 0.15);
}

/* ═══════════════════════════════════════════════════════════════
   5. HEADER / NAV — scroll-elevated shadow + mobile drawer
   ═══════════════════════════════════════════════════════════════ */
header.sticky {
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
  will-change: box-shadow;
}
header.sticky.is-scrolled {
  box-shadow: 0 2px 12px rgba(15, 38, 32, 0.06);
  background: rgba(248, 244, 235, 0.97);
}

/* Mobile menu trigger button */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid #d4cab3;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #16352b;
}
.mobile-menu-toggle:hover { border-color: #d4a93c; color: #997220; }
.mobile-menu-toggle svg { width: 18px; height: 18px; }
@media (min-width: 1024px) { .mobile-menu-toggle { display: none; } }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(90vw, 360px);
  background: #f8f4eb;
  z-index: 60;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(15, 38, 32, 0.18);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  visibility: hidden;
}
.mobile-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 38, 32, 0);
  z-index: 55;
  pointer-events: none;
  transition: background-color 0.32s ease;
}
.mobile-drawer-overlay.is-open {
  background: rgba(15, 38, 32, 0.4);
  pointer-events: auto;
}
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e8e0cf;
}
.mobile-drawer-close {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #d4cab3;
  border-radius: 2px;
  cursor: pointer;
}
.mobile-drawer-close svg { width: 16px; height: 16px; color: #16352b; }
.mobile-drawer-nav {
  padding: 1.5rem;
  flex: 1;
}
.mobile-drawer-nav a {
  display: block;
  padding: 0.85rem 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: #16352b;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 200, 178, 0.4);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mobile-drawer-nav a:hover,
.mobile-drawer-nav a:focus-visible {
  color: #997220;
  padding-left: 0.5rem;
}
.mobile-drawer-cta {
  padding: 1.5rem;
  border-top: 1px solid #e8e0cf;
}
body.drawer-open { overflow: hidden; }

/* ═══════════════════════════════════════════════════════════════
   6. READING PROGRESS BAR — top-fixed amber sliver
   ═══════════════════════════════════════════════════════════════ */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #d4a93c, #b88c2a);
  z-index: 70;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   7. FLOATING TABLE OF CONTENTS (article pages, XL screens only)
   ═══════════════════════════════════════════════════════════════ */
.toc-floating-wrap {
  position: fixed;
  top: 7rem;
  right: 2rem;
  width: 15rem;
  z-index: 30;
  display: none;
}
@media (min-width: 1380px) {
  .toc-floating-wrap { display: block; }
}
.toc-sidebar {
  max-height: calc(100vh - 9rem);
  overflow-y: auto;
  padding: 1rem 0 1rem 1.25rem;
  border-left: 2px solid #e8e0cf;
  background: rgba(248, 244, 235, 0.85);
  backdrop-filter: blur(4px);
  border-radius: 0 4px 4px 0;
}
.toc-sidebar-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #997220;
  margin-bottom: 0.85rem;
  display: block;
}
.toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.toc-list li {
  margin: 0;
  padding: 0;
}
.toc-list a {
  display: block;
  padding: 0.4rem 0 0.4rem 0.75rem;
  margin-left: -1.5rem;
  padding-left: 1.5rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #5d6a64;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.toc-list a:hover {
  color: #16352b;
  background: rgba(244, 238, 226, 0.4);
}
.toc-list a.is-active {
  color: #16352b;
  border-left-color: #d4a93c;
  font-weight: 500;
}
.toc-list .toc-h3 a {
  padding-left: 2.25rem;
  font-size: 0.82rem;
  color: #6e7872;
}

@media (max-width: 1023px) {
  .toc-sidebar { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   8. EDITORIAL TYPOGRAPHY — drop cap, pull quote, callout
   ═══════════════════════════════════════════════════════════════ */
/* Drop cap on first paragraph of long-form articles */
.has-drop-cap > p:first-of-type::first-letter,
.drop-cap::first-letter {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 4em;
  line-height: 0.85;
  float: left;
  margin: 0.05em 0.12em 0 0;
  color: #16352b;
  background: linear-gradient(180deg, #d4a93c 0%, #b88c2a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Pull quote */
.pull-quote {
  position: relative;
  margin: 3rem 0;
  padding: 2rem 1rem 2rem 3rem;
  border-left: 3px solid #d4a93c;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #16352b;
  font-style: italic;
}
.pull-quote::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 0.5rem;
  font-size: 4rem;
  color: rgba(212, 169, 60, 0.3);
  line-height: 1;
}
.pull-quote cite {
  display: block;
  margin-top: 1rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: #6e7872;
  font-style: normal;
  text-transform: uppercase;
}

/* Callout boxes — info, warning, note */
.callout {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  border-radius: 4px;
  border-left: 3px solid;
  background: #faf7ee;
  position: relative;
}
.callout-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.callout-info { border-left-color: #d4a93c; }
.callout-info .callout-label { color: #997220; }
.callout-note { border-left-color: #16352b; background: #f4eee2; }
.callout-note .callout-label { color: #16352b; }
.callout-warn { border-left-color: #c97c4d; background: #fbf3eb; }
.callout-warn .callout-label { color: #b06030; }
.callout > p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════════
   9. SECTION DIVIDERS — refined transitions between sections
   ═══════════════════════════════════════════════════════════════ */
.section-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #d4cab3 50%, transparent 100%);
  margin: 0;
  border: 0;
}

/* ═══════════════════════════════════════════════════════════════
   10. HERO DECORATIONS
   ═══════════════════════════════════════════════════════════════ */
.hero-glow {
  position: absolute;
  pointer-events: none;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 169, 60, 0.10) 0%, transparent 60%);
  filter: blur(48px);
  z-index: 0;
}
.hero-glow.top-right { top: -150px; right: -100px; }
.hero-glow.bottom-left { bottom: -150px; left: -100px; }

/* ═══════════════════════════════════════════════════════════════
   11. TRUST PILL
   ═══════════════════════════════════════════════════════════════ */
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  background: rgba(244, 238, 226, 0.6);
  border: 1px solid rgba(232, 224, 207, 0.8);
  border-radius: 2px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: #16352b;
  transition: all 0.2s ease;
}
.trust-pill:hover {
  background: rgba(248, 237, 204, 0.9);
  border-color: rgba(212, 169, 60, 0.5);
  transform: translateY(-1px);
}
.trust-pill svg {
  width: 14px;
  height: 14px;
  color: #997220;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   12. PROCESS STEP / NUMBERED LIST
   ═══════════════════════════════════════════════════════════════ */
.process-step {
  position: relative;
  padding-left: 4rem;
  counter-increment: step;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: #d4a93c;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.process-step:hover::before {
  opacity: 1;
  transform: scale(1.05);
}

/* ═══════════════════════════════════════════════════════════════
   13. ICON CARD
   ═══════════════════════════════════════════════════════════════ */
.icon-card { position: relative; }
.icon-card .icon-decoration {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(248, 237, 204, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.icon-card .icon-decoration svg { width: 20px; height: 20px; color: #997220; }
.icon-card:hover .icon-decoration {
  background: rgba(212, 169, 60, 0.95);
  transform: rotate(-4deg) scale(1.06);
}
.icon-card:hover .icon-decoration svg { color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   14. PULSE / GRADIENT UNDERLINE
   ═══════════════════════════════════════════════════════════════ */
@keyframes pulse-amber {
  0%, 100% { color: #16352b; }
  50% { color: #997220; }
}
.pulse-on-load { animation: pulse-amber 1.6s ease-in-out 0.4s 1; }
.gradient-underline {
  background-image: linear-gradient(90deg, #d4a93c 0%, #d4a93c 20%, transparent 100%);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   15. TESTIMONIAL CARD
   ═══════════════════════════════════════════════════════════════ */
.testimonial-card {
  background: linear-gradient(180deg, #faf7ee 0%, #f4eee2 100%);
  border: 1px solid #e8e0cf;
  padding: 2rem;
  border-radius: 4px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(15, 38, 32, 0.10);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  color: rgba(212, 169, 60, 0.25);
  line-height: 1;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════
   16. SECTION DIVIDER WITH ORNAMENT
   ═══════════════════════════════════════════════════════════════ */
.divider-ornate {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 4rem 0;
}
.divider-ornate::before, .divider-ornate::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4cab3, transparent);
}
.divider-ornate svg {
  width: 24px;
  height: 24px;
  color: #d4a93c;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   17. PATTERNS
   ═══════════════════════════════════════════════════════════════ */
.dots-bg {
  background-image: radial-gradient(circle at 1px 1px, rgba(22, 53, 43, 0.06) 1px, transparent 0);
  background-size: 16px 16px;
}
.diagonal-bg {
  background-image: repeating-linear-gradient(135deg, transparent 0px, transparent 14px, rgba(212, 169, 60, 0.05) 14px, rgba(212, 169, 60, 0.05) 15px);
}

/* ═══════════════════════════════════════════════════════════════
   18. LINK / FOCUS — refined
   ═══════════════════════════════════════════════════════════════ */
a:not(.btn-primary):not(.btn-ghost):not(.no-underline):not([class*="hover:text-"]) {
  position: relative;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
*:focus-visible {
  outline: 2px solid #d4a93c;
  outline-offset: 3px;
  border-radius: 2px;
}
.btn-primary:focus-visible,
.btn-ghost:focus-visible {
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   19. BACK-TO-TOP BUTTON
   ═══════════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #16352b;
  color: #d4a93c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 50;
  box-shadow: 0 8px 20px rgba(15, 38, 32, 0.18);
  pointer-events: none;
}
.back-to-top svg { width: 18px; height: 18px; }
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: #0f2620; }

/* ═══════════════════════════════════════════════════════════════
   20. ARTICLE LAYOUT (insights, case studies, resources)
   ═══════════════════════════════════════════════════════════════ */
.article-body h2 {
  scroll-margin-top: 6rem;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  position: relative;
}
.article-body h2::before {
  content: '';
  position: absolute;
  left: -1.25rem;
  top: 0.6em;
  width: 3px;
  height: 0.85em;
  background: #d4a93c;
  border-radius: 1px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.article-body h2:hover::before { opacity: 1; }
.article-body h3 {
  scroll-margin-top: 6rem;
  margin-top: 2rem;
  margin-bottom: 0.85rem;
}
.article-body p { line-height: 1.75; }
.article-body p + p { margin-top: 1rem; }
.article-body ul, .article-body ol { margin: 1.25rem 0; padding-left: 1.5rem; }
.article-body li { margin: 0.5rem 0; line-height: 1.65; }
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}
.article-body th, .article-body td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e8e0cf;
}
.article-body th {
  background: #faf7ee;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #16352b;
}

/* ═══════════════════════════════════════════════════════════════
   21. FOOTER ACCENT
   ═══════════════════════════════════════════════════════════════ */
footer.bg-forest-900 {
  position: relative;
}
footer.bg-forest-900::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #d4a93c 30%, #d4a93c 70%, transparent 100%);
}

/* ═══════════════════════════════════════════════════════════════
   22. PRINT
   ═══════════════════════════════════════════════════════════════ */
@media print {
  header, footer, .mobile-menu-toggle, .reading-progress, .back-to-top, .toc-sidebar,
  nav[aria-label="breadcrumb"], .hidden, .btn-primary, .btn-ghost {
    display: none !important;
  }
  body { font-size: 11pt; line-height: 1.5; color: #000; background: #fff; }
  h1, h2, h3 { page-break-after: avoid; }
  p, li { orphans: 3; widows: 3; }
  a { color: #000; text-decoration: underline; }
}

/* ═══════════════════════════════════════════════════════════════
   24. HERO GRADIENT MESH — refined paper-bg with depth
   ═══════════════════════════════════════════════════════════════ */
.hero-mesh {
  position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(212, 169, 60, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(22, 53, 43, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, #faf7ee 0%, #f4eee2 100%);
  overflow: hidden;
}
.hero-mesh::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(22, 53, 43, 0.05) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.6;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
}

/* Hero badge — small accent above headline */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: rgba(248, 237, 204, 0.5);
  border: 1px solid rgba(212, 169, 60, 0.35);
  border-radius: 99px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #997220;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4a93c;
  box-shadow: 0 0 0 0 rgba(212, 169, 60, 0.7);
  animation: badge-pulse 2.4s ease-out infinite;
}
@keyframes badge-pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 169, 60, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(212, 169, 60, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 169, 60, 0); }
}

/* ═══════════════════════════════════════════════════════════════
   25. STICKY MOBILE CTA — bottom of viewport on small screens
   ═══════════════════════════════════════════════════════════════ */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #16352b;
  color: #f8f4eb;
  padding: 0.85rem 1rem;
  display: none;
  z-index: 45;
  box-shadow: 0 -4px 20px rgba(15, 38, 32, 0.12);
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 2px solid #d4a93c;
}
.sticky-mobile-cta.is-visible { transform: translateY(0); }
.sticky-mobile-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.sticky-mobile-cta-text {
  font-size: 0.85rem;
  line-height: 1.3;
  flex: 1;
}
.sticky-mobile-cta-text strong {
  display: block;
  color: #f0d894;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
}
.sticky-mobile-cta-btn {
  background: #d4a93c;
  color: #16352b;
  padding: 0.65rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.sticky-mobile-cta-btn:hover { background: #f0d894; }
@media (max-width: 767px) {
  .sticky-mobile-cta { display: block; }
  body.has-sticky-cta { padding-bottom: 4.5rem; }
}

/* ═══════════════════════════════════════════════════════════════
   26. HUB TOC PILLS — in-page section nav for hub pages
   ═══════════════════════════════════════════════════════════════ */
.hub-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 0 0;
  margin: 2rem 0 0;
  border-top: 1px solid #e8e0cf;
}
.hub-toc-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #997220;
  margin-right: 0.5rem;
  align-self: center;
}
.hub-toc a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  background: #faf7ee;
  border: 1px solid #e8e0cf;
  border-radius: 99px;
  color: #16352b;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.hub-toc a:hover, .hub-toc a:focus-visible {
  background: #f8edcc;
  border-color: #d4a93c;
  color: #997220;
  transform: translateY(-1px);
}
.hub-toc a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d4a93c;
  opacity: 0.5;
}
.hub-toc a:hover::before { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   27. COMPARISON TABLES — financial structure cross-reference
   ═══════════════════════════════════════════════════════════════ */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2.5rem 0;
  font-size: 0.92rem;
  background: #faf7ee;
  border: 1px solid #e8e0cf;
  border-radius: 4px;
  overflow: hidden;
}
.comparison-table th, .comparison-table td {
  padding: 1rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid #e8e0cf;
  vertical-align: top;
}
.comparison-table thead th {
  background: #16352b;
  color: #f8edcc;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 0;
}
.comparison-table tbody tr:hover { background: rgba(248, 237, 204, 0.4); }
.comparison-table tbody tr:last-child td { border-bottom: 0; }
.comparison-table .col-label {
  font-weight: 500;
  color: #16352b;
  width: 22%;
}
.comparison-table .yes {
  color: #2c6b53;
  font-weight: 500;
}
.comparison-table .yes::before { content: '✓ '; color: #d4a93c; font-weight: 700; }
.comparison-table .no {
  color: #8a6e58;
}
.comparison-table .no::before { content: '✗ '; color: #c97c4d; font-weight: 700; }
.comparison-table .partial {
  color: #997220;
}
.comparison-table .partial::before { content: '◐ '; color: #d4a93c; }

/* ═══════════════════════════════════════════════════════════════
   28. CASE STUDY STAT BADGES — pull-out impact figures
   ═══════════════════════════════════════════════════════════════ */
.impact-stat {
  display: inline-flex;
  flex-direction: column;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #16352b 0%, #0f2620 100%);
  color: #f8edcc;
  border-radius: 4px;
  border: 1px solid rgba(212, 169, 60, 0.25);
  min-width: 140px;
  position: relative;
  overflow: hidden;
}
.impact-stat::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(212, 169, 60, 0.15) 0%, transparent 70%);
}
.impact-stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
  color: #f0d894;
  letter-spacing: -0.01em;
}
.impact-stat-label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 237, 204, 0.7);
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   29. REFINED BREADCRUMBS — chevron + better hierarchy
   ═══════════════════════════════════════════════════════════════ */
.breadcrumb-refined {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #6e7872;
  margin-bottom: 2rem;
}
.breadcrumb-refined a {
  color: #5d6a64;
  text-decoration: none;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  transition: all 0.2s ease;
}
.breadcrumb-refined a:hover {
  color: #997220;
  background: rgba(248, 237, 204, 0.4);
}
.breadcrumb-refined .sep {
  color: #c5b89a;
  font-size: 0.7rem;
  user-select: none;
}
.breadcrumb-refined .current {
  color: #16352b;
  font-weight: 500;
  padding: 0.2rem 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   30. LOGO HOVER ANIMATION
   ═══════════════════════════════════════════════════════════════ */
header a[href="/"] svg rect { transition: fill 0.3s ease; }
header a[href="/"]:hover svg rect { fill: #0f2620; }
header a[href="/"] svg circle { transition: fill 0.3s ease, transform 0.4s ease; transform-origin: 30px 14px; }
header a[href="/"]:hover svg circle {
  animation: logo-pulse 1.2s ease-in-out;
}
@keyframes logo-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

/* ═══════════════════════════════════════════════════════════════
   31. EYEBROW ACCENT RULE — small leading line
   ═══════════════════════════════════════════════════════════════ */
.eyebrow.eyebrow-rule {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow.eyebrow-rule::before {
  content: '';
  width: 18px;
  height: 1px;
  background: #d4a93c;
}

/* ═══════════════════════════════════════════════════════════════
   32. SECTION TRANSITION — soft gradient between blocks
   ═══════════════════════════════════════════════════════════════ */
.section-fade-top {
  position: relative;
}
.section-fade-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(212, 200, 178, 0.15) 0%, transparent 100%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   33. STAT GROUP — refined number presentation on home/hub heroes
   ═══════════════════════════════════════════════════════════════ */
.stat-group {
  border-top: 1px solid #d4cab3;
  padding-top: 2rem;
  position: relative;
}
.stat-group .stat-item {
  position: relative;
  padding-left: 1rem;
  border-left: 2px solid transparent;
  transition: border-color 0.3s ease, padding-left 0.3s ease;
}
.stat-group .stat-item:hover {
  border-left-color: #d4a93c;
  padding-left: 1.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   34. RIBBON / FEATURED MARKER (insights, case studies)
   ═══════════════════════════════════════════════════════════════ */
.ribbon-featured {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #d4a93c;
  color: #16352b;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   35. BIG NUMBER CALLOUT — in-line key stat for editorial flow
   ═══════════════════════════════════════════════════════════════ */
.big-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  color: #16352b;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 1rem 0 0.5rem;
}
.big-number-suffix {
  font-size: 0.4em;
  color: #997220;
  vertical-align: super;
  margin-left: 0.2em;
}

/* ═══════════════════════════════════════════════════════════════
   36. RESPONSIVE TYPOGRAPHY — better mobile hierarchy
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  h1 { font-size: clamp(1.85rem, 7vw, 2.5rem); line-height: 1.15; letter-spacing: -0.01em; }
  h2 { font-size: clamp(1.4rem, 5vw, 1.85rem); line-height: 1.2; }
  .article-body p { font-size: 1rem; line-height: 1.7; }
  .article-body h2::before { display: none; }
  .pull-quote { font-size: 1.15rem; padding: 1.5rem 1rem 1.5rem 2rem; margin: 2rem 0; }
}

/* ═══════════════════════════════════════════════════════════════
   37. HERO HEADLINE ANIMATION — word-reveal + accent emphasis
   ═══════════════════════════════════════════════════════════════ */
.hero-headline {
  position: relative;
  display: block;
}
.hero-accent {
  display: inline-block;
  position: relative;
}
.hero-accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  background: linear-gradient(90deg, #d4a93c 0%, transparent 100%);
  transform-origin: left center;
  animation: hero-accent-line 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}
@keyframes hero-accent-line {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

/* Word-stagger entrance for hero h1 */
.hero-words > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
  animation: hero-word-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-words > span:nth-child(1) { animation-delay: 0.05s; }
.hero-words > span:nth-child(2) { animation-delay: 0.12s; }
.hero-words > span:nth-child(3) { animation-delay: 0.19s; }
.hero-words > span:nth-child(4) { animation-delay: 0.26s; }
.hero-words > span:nth-child(5) { animation-delay: 0.33s; }
.hero-words > span:nth-child(6) { animation-delay: 0.40s; }
.hero-words > span:nth-child(7) { animation-delay: 0.47s; }
.hero-words > span:nth-child(8) { animation-delay: 0.54s; }
.hero-words > span:nth-child(n+9) { animation-delay: 0.62s; }
@keyframes hero-word-up {
  to { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════════
   38. SECTION ORNAMENT — small decorative mark between sections
   ═══════════════════════════════════════════════════════════════ */
.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
  opacity: 0.7;
}
.section-ornament::before, .section-ornament::after {
  content: '';
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4a93c, transparent);
}
.section-ornament svg {
  width: 14px;
  height: 14px;
  color: #d4a93c;
}

/* Decorative corner SVG - subtle accents in section corners */
.corner-accent {
  position: absolute;
  width: 80px;
  height: 80px;
  pointer-events: none;
  opacity: 0.15;
}
.corner-accent.top-right { top: 1rem; right: 1rem; }
.corner-accent.bottom-left { bottom: 1rem; left: 1rem; transform: rotate(180deg); }

/* ═══════════════════════════════════════════════════════════════
   39. INLINE HORIZONTAL DATA BARS — for cost/saving comparisons
   ═══════════════════════════════════════════════════════════════ */
.data-bar-row {
  display: grid;
  grid-template-columns: 8rem 1fr auto;
  gap: 1rem;
  align-items: center;
  margin: 0.75rem 0;
  font-size: 0.92rem;
}
.data-bar-label {
  color: #16352b;
  font-weight: 500;
  font-size: 0.88rem;
}
.data-bar-track {
  position: relative;
  height: 10px;
  background: #e8e0cf;
  border-radius: 5px;
  overflow: hidden;
}
.data-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  background: linear-gradient(90deg, #16352b 0%, #2c6b53 100%);
  width: 0;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
.data-bar-row.is-visible .data-bar-fill { width: var(--bar-width, 50%); }
.data-bar-fill.amber { background: linear-gradient(90deg, #b88c2a 0%, #d4a93c 100%); }
.data-bar-fill.muted { background: linear-gradient(90deg, #8a6e58 0%, #b09581 100%); }
.data-bar-value {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.82rem;
  color: #16352b;
  font-weight: 500;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════
   40. FEATURED SPOTLIGHT — large featured card on hub pages
   ═══════════════════════════════════════════════════════════════ */
.spotlight-card {
  display: grid;
  grid-template-columns: 1fr;
  background: linear-gradient(135deg, #16352b 0%, #0f2620 100%);
  color: #f8edcc;
  padding: 2.5rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(212, 169, 60, 0.3);
}
.spotlight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -12px rgba(15, 38, 32, 0.25);
}
.spotlight-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 169, 60, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.spotlight-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f0d894;
  margin-bottom: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.spotlight-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: #d4a93c;
}
.spotlight-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  line-height: 1.15;
  color: #faf7ee;
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.spotlight-meta {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(248, 237, 204, 0.7);
}
.spotlight-cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #d4a93c;
  font-weight: 500;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════════
   41. FOOTER REDESIGN — more breathing room + accent dividers
   ═══════════════════════════════════════════════════════════════ */
footer.bg-forest-900 .container-prose { padding-top: 4.5rem; padding-bottom: 2.5rem; }
footer.bg-forest-900 h4 {
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
}
footer.bg-forest-900 h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 1px;
  background: rgba(212, 169, 60, 0.4);
}
footer.bg-forest-900 ul li { margin: 0.45rem 0; }
footer.bg-forest-900 a {
  position: relative;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
footer.bg-forest-900 ul a:hover {
  padding-left: 0.4rem;
}
footer.bg-forest-900 ul a:hover::before {
  content: '›';
  position: absolute;
  left: -0.5rem;
  color: #d4a93c;
}

/* ═══════════════════════════════════════════════════════════════
   42. GLOSSARY TOOLTIP — hover term to reveal definition
   ═══════════════════════════════════════════════════════════════ */
.glossary-term {
  position: relative;
  border-bottom: 1px dotted #d4a93c;
  cursor: help;
  color: inherit;
}
.glossary-term::after {
  content: attr(data-definition);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #16352b;
  color: #f8edcc;
  padding: 0.65rem 0.9rem;
  border-radius: 4px;
  font-size: 0.82rem;
  line-height: 1.45;
  font-family: 'Inter', ui-sans-serif, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  width: max-content;
  max-width: 280px;
  white-space: normal;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: 1px solid rgba(212, 169, 60, 0.3);
  box-shadow: 0 8px 20px -6px rgba(15, 38, 32, 0.3);
}
.glossary-term:hover::after,
.glossary-term:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   43. 404 PAGE STYLING
   ═══════════════════════════════════════════════════════════════ */
.error-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.error-code {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 500;
  line-height: 0.85;
  color: #16352b;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #16352b 0%, rgba(22, 53, 43, 0.4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   44. CARD SHIMMER (subtle attention prompt on featured items)
   ═══════════════════════════════════════════════════════════════ */
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.card-shimmer {
  position: relative;
  overflow: hidden;
}
.card-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 169, 60, 0.08) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   45. STAT TICKER ANIMATION — used on home hero
   ═══════════════════════════════════════════════════════════════ */
.stat-tick-container {
  position: relative;
  height: 1.2em;
  overflow: hidden;
  display: inline-block;
}

/* ═══════════════════════════════════════════════════════════════
   46. KEYBOARD ACCESSIBILITY — visible focus on all interactive
   ═══════════════════════════════════════════════════════════════ */
.btn-primary:focus-visible {
  box-shadow: 0 0 0 3px rgba(212, 169, 60, 0.4);
}
.card-elevated:focus-visible,
.card-elevated:focus-within {
  outline: 2px solid #d4a93c;
  outline-offset: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   47. FORMSPREE SUCCESS / ERROR PANELS + SUBMIT SPINNER
   ═══════════════════════════════════════════════════════════════ */
.formspree-success,
.formspree-error {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 2rem 2.25rem;
  border-radius: 4px;
  margin-top: 1.5rem;
  position: relative;
  border-left: 3px solid;
  animation: panel-slide-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.formspree-success {
  background: linear-gradient(135deg, #f0f8e9 0%, #e6f0db 100%);
  border-left-color: #2c6b53;
  color: #16352b;
}
.formspree-error {
  background: linear-gradient(135deg, #fbf3eb 0%, #f7e8d8 100%);
  border-left-color: #c97c4d;
  color: #6b3e1f;
}
.formspree-success-icon,
.formspree-error-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}
.formspree-success-icon {
  background: rgba(44, 107, 83, 0.12);
  color: #2c6b53;
}
.formspree-error-icon {
  background: rgba(201, 124, 77, 0.12);
  color: #c97c4d;
}
.formspree-success-icon svg,
.formspree-error-icon svg { width: 24px; height: 24px; }
.formspree-success h3,
.formspree-error h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  margin: 0 0 0.25rem;
  color: inherit;
}
.formspree-success p,
.formspree-error p {
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
  color: inherit;
}
.formspree-success a,
.formspree-error a {
  color: inherit;
  text-decoration: underline;
}
@keyframes panel-slide-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* Submit spinner */
.fs-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: fs-spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 0.4rem;
}
@keyframes fs-spin {
  to { transform: rotate(360deg); }
}

/* Disabled submit during AJAX */
button[type="submit"][aria-busy="true"] {
  opacity: 0.7;
  cursor: progress;
}

/* ═══════════════════════════════════════════════════════════════
   23. REDUCED MOTION FALLBACK
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-up, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-words > span { opacity: 1 !important; transform: none !important; }
  .hero-accent::after { animation: none; transform: scaleX(1); opacity: 1; }
  body { opacity: 1; animation: none; }
}
