/* S&D Barbershop Salon, hot lather theme
   steam paper #f6f3e8 / razor ink #221e15 / fuchsia #c2279e
   Light-dominant. Display: Libre Franklin 800. Body: system stack. */

:root {
  --paper: #f6f3e8;
  --paper-deep: #ece5cf;
  --paper-warm: #faf7ec;
  --ink: #221e15;
  --ink-soft: rgba(34, 30, 21, 0.74);
  --ink-faint: rgba(34, 30, 21, 0.12);
  --accent: #c2279e;
  --accent-soft: rgba(194, 39, 158, 0.14);
  --accent-faint: rgba(194, 39, 158, 0.07);
  --radius: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.2rem, 1.08rem + 0.6vw, 1.44rem);
  --step-2: clamp(1.44rem, 1.24rem + 1vw, 1.8rem);
  --step-3: clamp(1.75rem, 1.4rem + 1.75vw, 2.5rem);
  --step-5: clamp(2.4rem, 1.7rem + 3.5vw, 4rem);
  --hero: clamp(3.4rem, 1.6rem + 9vw, 8.5rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }

h1, h2, h3, .brand-mark, .marquee-track span, .step-num, .stat-num, .final-phone {
  font-family: "Libre Franklin", -apple-system, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.02;
  text-wrap: balance;
}

h2 em, h3 em { font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 400; letter-spacing: 0; }

p { max-width: 68ch; text-wrap: pretty; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.skip {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: var(--paper);
  padding: 12px 20px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* ---------- eyebrows, titles, ledes ---------- */
.eyebrow {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--accent); font-weight: 700; margin: 0 0 18px;
}
.eyebrow-light { color: var(--paper); opacity: 0.75; }
.section-title { font-size: var(--step-5); margin: 0 0 18px; }
.lede { color: var(--ink-soft); font-size: var(--step-1); margin: 0 0 48px; max-width: 56ch; }

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 243, 232, 0.88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-faint);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-mark { font-size: 1.5rem; }
.brand-mark::after { content: ""; }
.brand-word { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--ink-soft); font-weight: 600; }
.site-nav { display: flex; gap: 26px; }
.site-nav a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.95rem; position: relative; }
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
  background: var(--accent); transition: width 180ms var(--ease);
}
.site-nav a:hover::after { width: 100%; }
.header-call {
  font-family: "Libre Franklin", sans-serif; font-weight: 800; font-size: 1.15rem;
  color: var(--ink); text-decoration: none; font-variant-numeric: tabular-nums; white-space: nowrap;
}
.header-call:hover { color: var(--accent); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 30px; border-radius: 6px; font-weight: 700; font-size: 1.02rem;
  text-decoration: none; min-height: 52px; transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease);
}
.btn-primary { background: var(--accent); color: var(--paper); border: 2px solid var(--accent); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(194, 39, 158, 0.35); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: var(--paper); border: 2px solid rgba(246, 243, 232, 0.5); }
.btn-ghost-light:hover { border-color: var(--paper); transform: translateY(-2px); }

.text-link { color: var(--ink); font-weight: 700; text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.text-link:hover { color: var(--accent); }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: calc(100svh - 68px);
  display: flex; align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(900px 480px at 12% 8%, rgba(194, 39, 158, 0.10), transparent 60%),
    radial-gradient(700px 500px at 88% 90%, rgba(194, 39, 158, 0.07), transparent 60%),
    var(--paper);
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.hero-bars { position: absolute; left: 0; right: 0; bottom: 0; display: flex; gap: 10px; align-items: flex-end; height: 150px; padding: 0 24px; pointer-events: none; }
.hero-bars span {
  flex: 1; border-radius: 6px 6px 0 0;
  background: linear-gradient(to top, rgba(194, 39, 158, 0.28), rgba(194, 39, 158, 0));
  transform-origin: bottom;
}
.hero-bars span:nth-child(1) { height: 38%; animation: barBreathe 7s var(--ease) infinite alternate; }
.hero-bars span:nth-child(2) { height: 62%; animation: barBreathe 9s var(--ease) infinite alternate-reverse; }
.hero-bars span:nth-child(3) { height: 28%; animation: barBreathe 8s var(--ease) infinite alternate; }
.hero-bars span:nth-child(4) { height: 74%; animation: barBreathe 10s var(--ease) infinite alternate-reverse; }
.hero-bars span:nth-child(5) { height: 48%; animation: barBreathe 7.5s var(--ease) infinite alternate; }
.hero-bars span:nth-child(6) { height: 66%; animation: barBreathe 8.5s var(--ease) infinite alternate-reverse; }
.hero-bars span:nth-child(7) { height: 34%; animation: barBreathe 9.5s var(--ease) infinite alternate; }
.hero-bars span:nth-child(8) { height: 55%; animation: barBreathe 7.2s var(--ease) infinite alternate-reverse; }
@keyframes barBreathe { from { transform: scaleY(0.82); } to { transform: scaleY(1.08); } }

.hero-swirl { position: absolute; color: var(--accent); opacity: 0.35; pointer-events: none; animation: swirlDrift 9s var(--ease) infinite alternate; }
.swirl-a { width: 90px; top: 12%; right: 8%; }
.swirl-b { width: 64px; bottom: 22%; left: 5%; animation-delay: -4s; opacity: 0.25; }
@keyframes swirlDrift { from { transform: translateY(10px); } to { transform: translateY(-14px); } }

.hero-inner { position: relative; max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }
.hero-eyebrow { margin-bottom: 22px; }
.hero-title { font-size: var(--hero); margin: 0 0 6px; text-transform: uppercase; }
.hero-title .mask { display: block; overflow: hidden; }
.hero-title .mask > span { display: inline-block; animation: heroRise 0.7s var(--ease) both; }
.hero-title .mask:nth-child(2) > span { animation-delay: 90ms; }
@keyframes heroRise { from { transform: translateY(112%); } to { transform: translateY(0); } }
.accent-dot { color: var(--accent); font-style: normal; }
.lather-underline { width: min(560px, 88%); height: auto; display: block; margin: 2px 0 26px; animation: fadeIn 0.8s var(--ease) 0.35s both; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.hero-sub { font-size: var(--step-1); color: var(--ink-soft); margin: 0 0 30px; max-width: 52ch; animation: heroFadeUp 0.6s var(--ease) 0.45s both; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; animation: heroFadeUp 0.6s var(--ease) 0.55s both; }
.trust-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 0.98rem; color: var(--ink-soft); animation: heroFadeUp 0.6s var(--ease) 0.65s both; }
.trust-row strong { color: var(--ink); font-variant-numeric: tabular-nums; }
.stars { color: var(--accent); letter-spacing: 3px; font-size: 1.05rem; }
.trust-sep { color: var(--accent); }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- marquee divider ---------- */
.marquee-band { background: var(--ink); color: var(--paper); overflow: hidden; padding: 18px 0; }
.marquee-track { display: flex; gap: 28px; width: max-content; animation: marquee 30s linear infinite; }
.marquee-track span { font-size: 1.15rem; text-transform: uppercase; white-space: nowrap; }
.marquee-track i { color: var(--accent); font-style: normal; font-size: 1.15rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- steam-rise divider (transition 2) ---------- */
.steam-divider {
  display: flex; justify-content: center; gap: clamp(24px, 6vw, 70px);
  padding: 26px 0 6px; color: var(--accent); opacity: 0;
}
.steam-divider svg { width: 60px; height: auto; opacity: 0.55; }
.steam-divider.on { opacity: 1; transition: opacity 0.6s var(--ease); }
.steam-divider.on svg { animation: steamRise 2.2s var(--ease) infinite; }
.steam-divider.on svg:nth-child(2) { animation-delay: 0.35s; }
.steam-divider.on svg:nth-child(3) { animation-delay: 0.7s; }
@keyframes steamRise {
  0% { transform: translateY(14px); opacity: 0.15; }
  50% { opacity: 0.6; }
  100% { transform: translateY(-16px); opacity: 0.15; }
}

/* ---------- fade-gradient band divider (transition 1) ---------- */
.fade-band {
  display: flex; gap: 8px; align-items: center; justify-content: center;
  padding: 8px 24px; max-width: 1200px; margin: 0 auto;
}
.fade-band span {
  height: 46px; flex: 1; border-radius: 23px;
  background: linear-gradient(90deg, rgba(194, 39, 158, 0.32), rgba(194, 39, 158, 0.05));
  transform: scaleX(0); transform-origin: left; opacity: 0;
}
.fade-band.on span {
  animation: bandSweep 0.7s var(--ease) forwards;
}
.fade-band.on span:nth-child(1) { animation-delay: 0ms; } .fade-band.on span:nth-child(2) { animation-delay: 60ms; }
.fade-band.on span:nth-child(3) { animation-delay: 120ms; } .fade-band.on span:nth-child(4) { animation-delay: 180ms; }
.fade-band.on span:nth-child(5) { animation-delay: 240ms; } .fade-band.on span:nth-child(6) { animation-delay: 300ms; }
.fade-band.on span:nth-child(7) { animation-delay: 360ms; } .fade-band.on span:nth-child(8) { animation-delay: 420ms; }
.fade-band.on span:nth-child(9) { animation-delay: 480ms; } .fade-band.on span:nth-child(10) { animation-delay: 540ms; }
.fade-band.on span:nth-child(11) { animation-delay: 600ms; } .fade-band.on span:nth-child(12) { animation-delay: 660ms; }
@keyframes bandSweep { to { transform: scaleX(1); opacity: 1; } }

/* ---------- services: price-list layout ---------- */
.services-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.price-group { margin-bottom: 36px; }
.price-group h3 { font-size: var(--step-2); margin: 0 0 6px; }
.price-group ul { list-style: none; margin: 0; padding: 0; }
.price-group li { display: flex; align-items: baseline; gap: 10px; padding: 13px 0; border-bottom: 1px solid var(--ink-faint); }
.svc-name { font-weight: 600; font-size: 1.05rem; }
.svc-name small { display: block; font-weight: 400; color: var(--ink-soft); font-size: 0.85rem; }
.svc-leader { flex: 1; border-bottom: 2px dotted rgba(194, 39, 158, 0.4); transform: translateY(-4px); min-width: 24px; }
.svc-price { font-family: "Libre Franklin", sans-serif; font-weight: 800; font-size: 1.25rem; font-variant-numeric: tabular-nums; }
.price-note { color: var(--ink-soft); font-size: 0.92rem; margin-top: 18px; }
.services-photo { margin: 0; position: relative; }
.services-photo img { box-shadow: 0 24px 60px rgba(34, 30, 21, 0.16); transition: transform 400ms var(--ease); }
.services-photo:hover img { transform: scale(1.02); }
.services-photo figcaption { margin-top: 12px; font-size: 0.9rem; color: var(--ink-soft); }
.section-cta { margin-top: 44px; }

/* ---------- about ---------- */
.about { background: var(--paper-warm); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.about-text p { color: var(--ink-soft); }
.about-points { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.about-points li { padding-left: 30px; position: relative; font-weight: 600; }
.about-points li::before { content: ""; position: absolute; left: 0; top: 8px; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); opacity: 0.85; }
.about-photo { margin: 0; transform: rotate(1.5deg); }
.about-photo img { box-shadow: 0 24px 60px rgba(34, 30, 21, 0.16); transition: transform 400ms var(--ease); }
.about-photo:hover img { transform: scale(1.02) rotate(-1.5deg); }
.about-photo figcaption { margin-top: 12px; font-size: 0.9rem; color: var(--ink-soft); transform: rotate(-1.5deg); }

/* ---------- process: numbered rows ---------- */
.steps { list-style: none; margin: 40px 0 0; padding: 0; display: grid; gap: 0; }
.steps li {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 4vw, 48px);
  padding: 34px 0; border-top: 1px solid var(--ink-faint); align-items: baseline;
  transition: background 200ms var(--ease), padding-left 200ms var(--ease);
}
.steps li:last-child { border-bottom: 1px solid var(--ink-faint); }
.steps li:hover { background: var(--accent-faint); padding-left: 14px; }
.step-num {
  font-size: var(--step-5); color: transparent; -webkit-text-stroke: 1.5px var(--accent);
  opacity: 0.85; line-height: 1;
}
.steps h3 { font-size: var(--step-2); margin: 0 0 8px; }
.steps p { margin: 0; color: var(--ink-soft); max-width: 60ch; }

/* ---------- reviews ---------- */
.reviews { background: var(--paper-deep); }
.review-stats { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 36px); margin: 44px 0; }
.review-stat {
  background: var(--paper); border-radius: var(--radius); padding: clamp(28px, 4vw, 48px);
  text-align: left; border: 1px solid var(--ink-faint);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.review-stat:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(34, 30, 21, 0.14); }
.review-stat .stars { font-size: 1.4rem; }
.stat-num { display: block; font-size: var(--step-5); margin: 10px 0 4px; font-variant-numeric: tabular-nums; }
.stat-label { color: var(--ink-soft); display: block; margin-bottom: 14px; }
.stat-link { color: var(--accent); font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--accent); }
.stat-link:hover { color: var(--ink); border-color: var(--ink); }
.reviews-photo { margin: 0 0 8px; }
.reviews-photo img { width: 100%; max-height: 420px; object-fit: cover; }

/* ---------- visit ---------- */
.visit-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(24px, 4vw, 48px); margin: 40px 0 12px; align-items: start; }
.visit-main { background: #fbf7ea; border: 1px solid rgba(34, 30, 21, 0.2); border-radius: var(--radius); padding: clamp(28px, 4vw, 44px); box-shadow: 0 14px 36px rgba(34, 30, 21, 0.07); }
.visit-main h3, .visit-side h3 { font-size: var(--step-1); margin: 0 0 12px; }
.visit-main p { margin: 0 0 14px; font-size: 1.1rem; }
.visit-side { display: grid; gap: 24px; }
.visit-mini { background: #fbf7ea; border: 1px solid rgba(34, 30, 21, 0.2); border-radius: var(--radius); padding: 28px; box-shadow: 0 14px 36px rgba(34, 30, 21, 0.07); }
.hours { margin: 0; }
.hours div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--ink-faint); }
.hours div:last-child { border-bottom: none; }
.hours dt { font-weight: 600; }
.hours dd { margin: 0; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.area-note { color: var(--ink-soft); margin: 28px 0 0; font-size: 0.98rem; }
.visit-photo { margin: 36px 0 0; }
.visit-photo img { width: 100%; max-height: 380px; object-fit: cover; }

/* ---------- faq ---------- */
.faq { background: var(--paper-warm); }
.faq-inner { max-width: 820px; }
.accordion { display: grid; gap: 12px; margin-top: 36px; }
.faq-item { background: var(--paper); border: 1px solid var(--ink-faint); border-radius: 14px; overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 20px 24px; font-weight: 700; font-size: 1.06rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: "Libre Franklin", sans-serif; font-weight: 800; font-size: 1.5rem;
  color: var(--accent); flex-shrink: 0; transition: transform 200ms var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 24px 22px; color: var(--ink-soft); }
.faq-body p { margin: 0; }

/* ---------- final cta ---------- */
.final-cta { background: var(--ink); color: var(--paper); text-align: center; padding: clamp(5rem, 10vw, 8.5rem) 0; position: relative; overflow: hidden; }
.final-cta::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.final-cta .container { position: relative; }
.final-title { font-size: var(--step-5); margin: 0 0 10px; }
.final-title em { color: var(--accent); }
.final-phone {
  display: inline-block; font-size: clamp(2rem, 1.2rem + 5.5vw, 4.5rem); color: var(--paper);
  text-decoration: none; margin: 14px 0 30px; font-variant-numeric: tabular-nums;
  border-bottom: 5px solid var(--accent); padding-bottom: 6px; transition: color 180ms var(--ease);
}
.final-phone:hover { color: var(--accent); }
.final-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-note { margin: 26px auto 0; opacity: 0.65; font-size: 0.95rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--paper); border-top: 1px solid var(--ink-faint); padding: 44px 0 110px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-grid p { margin: 6px 0; color: var(--ink-soft); font-size: 0.95rem; }
.footer-brand { font-family: "Libre Franklin", sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--ink) !important; }
.footer-grid a { color: var(--ink); text-decoration: none; font-weight: 600; }
.footer-grid a:hover { color: var(--accent); }
.footer-fine { text-align: center; color: var(--ink-soft); font-size: 0.82rem; margin-top: 36px; opacity: 0.7; }

/* ---------- sticky mobile call bar ---------- */
.mobile-callbar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  background: var(--ink); padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-callbar a { flex: 1; text-align: center; padding: 14px 10px; border-radius: 6px; font-weight: 800; text-decoration: none; font-size: 1rem; min-height: 48px; }
.callbar-call { background: var(--accent); color: var(--paper); }
.callbar-book { background: transparent; color: var(--paper); border: 2px solid rgba(246, 243, 232, 0.45); flex: 0.6; }

/* ---------- scroll reveals (JS adds .reveal-init; never hidden by default) ---------- */
.reveal-init { opacity: 0; transform: translateY(16px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal-init.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .site-nav { display: none; }
  .services-grid, .about-grid, .visit-grid, .review-stats { grid-template-columns: 1fr; }
  .about-photo { transform: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 56px 0 120px; }
  .site-footer { padding-bottom: 130px; }
  .mobile-callbar { display: flex; }
}
@media (min-width: 901px) {
  .mobile-callbar { display: none !important; }
}

/* ---------- screenshot mode (activated by ?shot=1, for verification captures) ---------- */
body.shot-mode .hero { min-height: 0; }
body.shot-mode *, body.shot-mode *::before, body.shot-mode *::after { animation: none !important; transition: none !important; }
body.shot-mode .hero-title .mask > span { transform: none; }
body.shot-mode .steam-divider { opacity: 1; }
body.shot-mode .steam-divider svg { opacity: 0.5; }
body.shot-mode .fade-band span { transform: scaleX(1); opacity: 1; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero-title .mask > span, .lather-underline, .hero-sub, .hero-cta, .trust-row { animation: none !important; }
  .reveal-init { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .steam-divider { opacity: 1; }
  .steam-divider svg { opacity: 0.5; }
  .fade-band span { transform: scaleX(1); opacity: 1; }
}
