/* ============================================================
   UNFOLDING VALUES — DESIGN SYSTEM v2 "Quiet Authority"
   Palette: Deep Navy #11213A · Warm White #FAF8F3 ·
            Graphite #454C56 · Muted Gold #B8954F
   Display: Newsreader (serif) · Body: Inter (sans)
   NOTE: legacy token names (--liberty / --orange) are retained
   and repointed so every page re-skins from this layer.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Primary — Deep Navy (legacy: liberty) */
  --liberty: #11213A;
  --liberty-dark: #0C1830;
  --liberty-darker: #0A1326;
  --liberty-light: #2C3E5C;
  --liberty-pale: #F1EEE6;
  --navy: #11213A;
  --navy-dark: #0C1830;
  --navy-ink: #16202E;

  /* Accent — Muted Gold (legacy: orange) */
  --orange: #B8954F;
  --orange-dark: #8A6D32;
  --orange-light: #C9A96A;
  --orange-pale: #F2EAD8;
  --gold: #B8954F;
  --gold-dark: #8A6D32;
  --gold-light: #C9A96A;

  /* Neutrals — warm, graphite-led */
  --ink: #16202E;
  --ink-soft: #2B3440;
  --gray-900: #16202E;
  --gray-700: #454C56;
  --gray-500: #5E646E;
  --gray-300: #AEB3BB;
  --gray-200: #E6E0D4;
  --gray-100: #F1ECE1;
  --cream: #FAF8F3;
  --white: #FFFFFF;

  /* Spacing scale (4/8/16/24/32/48/64/96) */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 16px; --sp-4: 24px;
  --sp-5: 32px; --sp-6: 48px; --sp-7: 64px; --sp-8: 96px; --sp-9: 128px;

  /* Radius — tighter, more institutional */
  --r-0: 0; --r-1: 3px; --r-2: 6px;

  /* Shadows — softer, navy-tinted */
  --shadow-sm: 0 1px 3px rgba(17,33,58,0.06);
  --shadow-md: 0 6px 20px rgba(17,33,58,0.07);
  --shadow-lg: 0 18px 44px rgba(17,33,58,0.10);
  --shadow-liberty: 0 18px 44px rgba(17,33,58,0.14);

  /* Type families */
  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Transitions */
  --t-fast: 0.18s ease;
  --t-base: 0.28s cubic-bezier(.2,.7,.3,1);
  --t-slow: 0.6s cubic-bezier(.2,.7,.3,1);
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--liberty); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold-dark); }

::selection { background: var(--navy); color: #FAF8F3; }

/* ============================================================
   TYPOGRAPHY — serif display, sans body (Quiet Authority)
   ============================================================ */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 500; line-height: 1.16; color: var(--ink); letter-spacing: -0.01em; }

.display-1 { font-family: var(--font-display); font-size: clamp(46px, 6.5vw, 80px); font-weight: 500; line-height: 1.05; letter-spacing: -0.015em; }
.display-2 { font-family: var(--font-display); font-size: clamp(38px, 5vw, 58px); font-weight: 500; line-height: 1.08; letter-spacing: -0.012em; }
.h1 { font-family: var(--font-display); font-size: clamp(31px, 3.8vw, 46px); font-weight: 500; line-height: 1.14; letter-spacing: -0.01em; }
.h2 { font-family: var(--font-display); font-size: clamp(25px, 2.9vw, 35px); font-weight: 500; line-height: 1.2; letter-spacing: -0.008em; }
.h3 { font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 26px); font-weight: 500; line-height: 1.28; }
.h4 { font-family: var(--font-display); font-size: 19px; font-weight: 600; line-height: 1.35; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-dark);
}
.eyebrow-liberty { color: var(--navy); }
.eyebrow-white { color: rgba(255,255,255,0.65); }

.lead { font-family: var(--font-sans); font-size: clamp(18px, 1.5vw, 21px); line-height: 1.6; color: var(--gray-700); font-weight: 400; }
.lead-large { font-family: var(--font-sans); font-size: clamp(20px, 1.8vw, 25px); line-height: 1.55; color: var(--gray-700); font-weight: 400; }

.italic-accent { font-family: var(--font-display); font-style: italic; }

.text-orange { color: var(--gold-dark); }
.text-liberty { color: var(--liberty); }
.text-white { color: white; }
.text-gray { color: var(--gray-500); }
.text-ink { color: var(--ink); }

.text-center { text-align: center; }
.text-balance { text-wrap: balance; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--sp-4); }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 var(--sp-4); }
.container-reading { max-width: 720px; margin: 0 auto; padding: 0 var(--sp-4); }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 var(--sp-4); }

@media (min-width: 768px) {
  .container, .container-narrow, .container-reading, .container-wide { padding: 0 var(--sp-6); }
}

section { padding: var(--sp-8) 0; position: relative; }
@media (max-width: 768px) { section { padding: var(--sp-7) 0; } }

.section-light { background: var(--cream); }
.section-white { background: var(--white); }
.section-pale { background: var(--liberty-pale); }
.section-cream { background: #F4EFE5; }
.section-dark { background: var(--ink); color: white; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: white; }
.section-liberty { background: var(--liberty); color: white; }
.section-liberty h1, .section-liberty h2, .section-liberty h3 { color: white; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,247,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), background var(--t-base);
}
.nav.scrolled { border-bottom-color: var(--gray-200); }

.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 18px var(--sp-4);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
}
@media (min-width: 768px) { .nav-inner { padding: 20px var(--sp-6); } }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 32px; width: auto; }
.nav-logo-text { font-weight: 800; letter-spacing: 0.05em; font-size: 15px; color: var(--ink); }
.nav-logo-text .vals { color: var(--orange); }

.nav-links { display: none; gap: 28px; align-items: center; }
@media (min-width: 880px) { .nav-links { display: flex; } }

.nav-link {
  color: var(--gray-700); font-size: 15px; font-weight: 600;
  position: relative; padding: 6px 0; transition: color var(--t-fast);
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link.active { font-weight: 600; }
.nav-link { font-weight: 500; }
.nav-link.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold);
}

.nav-cta {
  background: var(--navy); color: #FAF8F3 !important; font-weight: 600; font-size: 14px;
  padding: 11px 20px; border-radius: var(--r-2);
  transition: all var(--t-base);
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(17,33,58,0.28); }

.nav-burger { display: flex; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; background: none; border: none; }
@media (min-width: 880px) { .nav-burger { display: none; } }
.nav-burger span { width: 22px; height: 2px; background: var(--navy); transition: all var(--t-base); }

.nav-mobile {
  display: none; padding: var(--sp-4); border-top: 1px solid var(--gray-200);
  background: var(--cream);
}
.nav-mobile.open { display: block; }
.nav-mobile a { display: block; padding: 12px 0; color: var(--ink); font-weight: 600; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: var(--r-2); font-weight: 600; font-size: 15.5px;
  letter-spacing: 0.005em; cursor: pointer; border: none;
  transition: all var(--t-base); text-align: center; line-height: 1;
}
.btn svg { transition: transform var(--t-base); }
.btn:hover svg { transform: translateX(3px); }

/* Primary = navy (was orange). Solid, calm, no heavy shadow. */
.btn-orange { background: var(--navy); color: #FAF8F3; }
.btn-orange:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); color: #FAF8F3; }

.btn-liberty { background: var(--navy); color: #FAF8F3; }
.btn-liberty:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: var(--shadow-liberty); color: #FAF8F3; }

/* Gold accent button — navy text for AA contrast on gold */
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); color: #FAF8F3; }

.btn-outline { background: transparent; color: var(--navy); border: 1px solid var(--gray-300); }
.btn-outline:hover { border-color: var(--navy); transform: translateY(-1px); color: var(--navy); }

.btn-outline-white { background: transparent; color: #FAF8F3; border: 1px solid rgba(250,248,243,0.4); }
.btn-outline-white:hover { border-color: var(--gold-light); background: rgba(250,248,243,0.06); color: #FAF8F3; }

.btn-text {
  color: var(--navy); font-weight: 600; padding: 0;
  border-bottom: 1.5px solid var(--gold); padding-bottom: 2px; border-radius: 0;
  display: inline-flex; gap: 6px; align-items: center;
}
.btn-text:hover { color: var(--gold-dark); border-color: var(--gold-dark); }

.btn-lg { padding: 20px 36px; font-size: 17px; }
.btn-sm { padding: 11px 18px; font-size: 14px; }

/* Primary CTA on DARK grounds must be GOLD — a navy button vanishes on navy.
   Turns the primary action gold wherever it sits on a dark surface. */
.page-hero .btn-orange, .page-hero .btn-liberty,
.section-dark .btn-orange, .section-dark .btn-liberty,
.hero-dark .btn-orange, .hero-dark .btn-liberty,
.section-liberty .btn-orange,
.cs-uv-callout .btn-orange, .cs-uv-callout .btn-liberty,
.cta-banner .btn-orange, .cta-mega2 .btn-orange,
.founder-dense .btn-orange { background: var(--gold); color: var(--navy); }
.page-hero .btn-orange:hover, .page-hero .btn-liberty:hover,
.section-dark .btn-orange:hover, .section-dark .btn-liberty:hover,
.hero-dark .btn-orange:hover, .section-liberty .btn-orange:hover,
.cs-uv-callout .btn-orange:hover, .cta-banner .btn-orange:hover,
.cta-mega2 .btn-orange:hover, .founder-dense .btn-orange:hover { background: var(--gold-dark); color: #FAF8F3; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: var(--sp-8) 0 var(--sp-8); position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, #F2F2EE 100%);
}
.hero-dark {
  background: linear-gradient(135deg, var(--liberty-darker) 0%, var(--liberty) 60%, var(--liberty-dark) 100%);
  color: white;
}
.hero-dark h1, .hero-dark .display-1 { color: white; }
.hero-dark .lead, .hero-dark p { color: rgba(255,255,255,0.86); }

.hero-grid {
  position: absolute; inset: 0; opacity: 0.08; pointer-events: none;
  background-image: linear-gradient(rgba(17,33,58,0.35) 0.5px, transparent 0.5px), linear-gradient(90deg, rgba(17,33,58,0.35) 0.5px, transparent 0.5px);
  background-size: 64px 64px;
}
.hero-dark .hero-grid { opacity: 0.1; background-image: linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px); }

/* Glows retired in Quiet Authority — kept as no-op so existing markup is harmless */
.hero-glow { display: none; }
.hero-glow.top-right, .hero-glow.bot-left { display: none; }

.hero-content { position: relative; z-index: 1; max-width: 920px; }

.hero-tagline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 100px; margin-bottom: 28px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em;
  background: var(--gold-pale, #F2EAD8); color: var(--gold-dark);
  border: 1px solid rgba(184,149,79,0.28);
}
.hero-dark .hero-tagline { background: rgba(184,149,79,0.16); color: var(--gold-light); border-color: rgba(184,149,79,0.34); }
.hero-tagline .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: white; border-radius: var(--r-2); padding: var(--sp-5);
  border: 1px solid var(--gray-200); transition: all var(--t-base);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--liberty-light); }

.card-feature {
  background: white; border-radius: var(--r-2); padding: 32px 28px;
  border: 1px solid var(--gray-200); transition: all var(--t-base);
  position: relative; overflow: hidden;
  height: 100%; display: flex; flex-direction: column;
}
.card-feature::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform var(--t-slow);
}
.card-feature:hover::before { transform: scaleX(1); }
.card-feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }

.card-feature .icon-box {
  width: 48px; height: 48px; border-radius: var(--r-2);
  background: var(--liberty-pale); color: var(--liberty);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: all var(--t-base);
}
.card-feature:hover .icon-box { background: var(--liberty); color: white; }

.card-service-link {
  margin-top: auto; padding-top: 20px;
  color: var(--liberty); font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--t-base);
}
.card-feature:hover .card-service-link { gap: 12px; color: var(--orange); }

.card-quote {
  background: white; border-left: 3px solid var(--orange);
  padding: var(--sp-5); border-radius: 0 var(--r-2) var(--r-2) 0;
  border-top: 1px solid var(--gray-200); border-right: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200);
}
.card-quote .quote-mark { font-family: Georgia, serif; font-size: 64px; color: var(--orange); line-height: 0.5; margin-bottom: 8px; display: block; }
.card-quote p { font-size: 17px; line-height: 1.55; color: var(--ink-soft); font-style: italic; }
.card-quote cite { display: block; margin-top: 16px; font-style: normal; font-weight: 700; font-size: 14px; color: var(--ink); }
.card-quote cite span { display: block; font-weight: 400; color: var(--gray-500); font-size: 13px; margin-top: 2px; }

/* ============================================================
   GRIDS
   ============================================================ */
.grid { display: grid; gap: var(--sp-4); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   STAT / NUMBERS
   ============================================================ */
.stat-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-5); }
@media (min-width: 640px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }

.stat { padding: var(--sp-4) 0; border-top: 2px solid var(--ink); }
.section-dark .stat, .section-liberty .stat { border-top-color: var(--orange); }
.stat-number {
  font-size: clamp(40px, 5vw, 56px); font-weight: 800; line-height: 1; letter-spacing: -0.02em;
  color: var(--liberty); margin-bottom: 8px;
}
.section-dark .stat-number, .section-liberty .stat-number { color: white; }
.stat-label { font-size: 14px; line-height: 1.4; color: var(--gray-700); font-weight: 600; }
.section-dark .stat-label, .section-liberty .stat-label { color: rgba(255,255,255,0.8); }

/* ============================================================
   PROBLEM / SOLUTION BLOCKS
   ============================================================ */
.problem-list { display: grid; gap: 18px; margin-top: 32px; }
.problem-item {
  display: flex; gap: 16px; padding: 18px 20px;
  background: white; border-radius: var(--r-2);
  border-left: 3px solid var(--orange);
  border-top: 1px solid var(--gray-200); border-right: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200);
}
.problem-item .mark { color: var(--orange); font-weight: 800; flex-shrink: 0; font-size: 18px; line-height: 1.4; }
.problem-item p { font-size: 16px; color: var(--ink-soft); line-height: 1.55; }

/* ============================================================
   PRICING TIER CARDS
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); margin-top: var(--sp-6); }
@media (min-width: 880px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  background: white; border-radius: var(--r-2); padding: 36px 32px;
  border: 1px solid var(--gray-200); position: relative;
  transition: all var(--t-base);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card.featured {
  border-color: var(--liberty); background: var(--liberty); color: white;
  transform: scale(1.02);
}
.pricing-card.featured h3, .pricing-card.featured .price-num { color: white; }
.pricing-card.featured .price-suffix { color: rgba(255,255,255,0.7); }
.pricing-card.featured ul li { color: rgba(255,255,255,0.92); }
.pricing-card.featured ul li svg { color: var(--orange-light); }

.pricing-tag {
  position: absolute; top: -12px; right: 24px;
  background: var(--orange); color: white; padding: 4px 12px;
  border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-row { display: flex; align-items: baseline; gap: 6px; margin: 16px 0 8px; }
.price-num { font-size: 44px; font-weight: 800; line-height: 1; color: var(--ink); letter-spacing: -0.02em; }
.price-suffix { font-size: 14px; color: var(--gray-500); font-weight: 600; }
.price-context { font-size: 13px; color: var(--gray-500); margin-bottom: 24px; }
.pricing-card.featured .price-context { color: rgba(255,255,255,0.7); }

.pricing-card ul { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 10px; }
.pricing-card ul li { display: flex; gap: 10px; font-size: 14.5px; line-height: 1.5; color: var(--ink-soft); }
.pricing-card ul li svg { color: var(--liberty); flex-shrink: 0; margin-top: 3px; }

/* ============================================================
   FOUNDER / CREDIBILITY
   ============================================================ */
.founder-block {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-5);
  align-items: center;
}
@media (min-width: 768px) { .founder-block { grid-template-columns: 280px 1fr; gap: var(--sp-6); } }

.founder-photo {
  width: 100%; max-width: 280px; aspect-ratio: 1; border-radius: var(--r-2); overflow: hidden;
  background: linear-gradient(135deg, var(--liberty), var(--liberty-dark));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 80px; font-weight: 800; letter-spacing: -0.03em;
  box-shadow: var(--shadow-liberty);
}

.credentials {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0;
}
.credential-pill {
  background: var(--liberty-pale); color: var(--liberty);
  padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 700;
}
.section-dark .credential-pill, .section-liberty .credential-pill {
  background: rgba(255,255,255,0.12); color: white;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: grid; gap: 12px; max-width: 880px; margin: var(--sp-6) auto 0; }
.faq-item {
  background: white; border: 1px solid var(--gray-200); border-radius: var(--r-2);
  overflow: hidden; transition: all var(--t-base);
}
.faq-item:hover { border-color: var(--liberty-light); }
.faq-item summary {
  padding: 22px 24px; cursor: pointer; font-weight: 700; font-size: 17px;
  color: var(--ink); 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-size: 26px; color: var(--orange); font-weight: 400;
  transition: transform var(--t-base); flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] { background: var(--liberty-pale); border-color: var(--liberty); }
.faq-body { padding: 0 24px 24px; color: var(--gray-700); line-height: 1.65; font-size: 16px; }

/* ============================================================
   CTA BANNERS
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--liberty) 0%, var(--liberty-darker) 100%);
  color: white; border-radius: var(--r-2); padding: var(--sp-7) var(--sp-5);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before { display: none; }
.cta-banner h2 { color: white; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.85); position: relative; max-width: 620px; margin: 18px auto 32px; }
.cta-banner .hero-actions { justify-content: center; position: relative; }

.cta-strip {
  background: var(--ink); color: white; padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  flex-wrap: wrap; border-radius: var(--r-2);
  padding-left: var(--sp-5); padding-right: var(--sp-5);
}
.cta-strip h3 { color: white; font-size: 22px; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-grid { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; margin-top: var(--sp-6); }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-step { position: relative; padding-top: 56px; }
.process-step-number {
  position: absolute; top: 0; left: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--liberty); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
}
.process-step h3 { margin-bottom: 10px; font-size: 18px; }
.process-step p { font-size: 15px; color: var(--gray-700); line-height: 1.6; }

/* ============================================================
   DELIVERABLES LIST
   ============================================================ */
.deliverables { display: grid; gap: 14px; margin-top: var(--sp-5); }
.deliverable {
  display: flex; gap: 16px; padding: 18px 22px;
  background: white; border-radius: var(--r-2); border: 1px solid var(--gray-200);
  transition: all var(--t-base);
}
.deliverable:hover { border-color: var(--liberty); background: var(--liberty-pale); }
.deliverable .num {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--liberty-pale); color: var(--liberty);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
}
.deliverable:hover .num { background: var(--liberty); color: white; }
.deliverable .body h4 { font-size: 16px; margin-bottom: 4px; }
.deliverable .body p { font-size: 14.5px; color: var(--gray-700); line-height: 1.55; }

/* ============================================================
   BLOG / EDITORIAL
   ============================================================ */
.article-hero {
  padding: var(--sp-7) 0 var(--sp-6); background: var(--cream);
  border-bottom: 1px solid var(--gray-200);
}
.article-meta { display: flex; gap: 16px; font-size: 13px; color: var(--gray-500); margin-bottom: 24px; align-items: center; }
.article-meta .badge {
  background: var(--orange-pale); color: var(--orange-dark);
  padding: 4px 12px; border-radius: 100px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; font-size: 11px;
}

.article-body { padding: var(--sp-6) 0; }
.article-body p { margin-bottom: 22px; font-size: 18px; line-height: 1.75; color: var(--ink-soft); }
.article-body h2 { margin: 48px 0 20px; font-size: 28px; color: var(--ink); }
.article-body h3 { margin: 36px 0 14px; font-size: 22px; color: var(--ink); }
.article-body ul, .article-body ol { margin: 0 0 22px 22px; }
.article-body li { margin-bottom: 10px; line-height: 1.7; font-size: 18px; color: var(--ink-soft); }
.article-body blockquote {
  border-left: 3px solid var(--orange);
  padding: 16px 0 16px 28px; margin: 32px 0;
  font-family: 'Open Sans', sans-serif; font-style: italic; font-weight: 600; font-size: 21px;
  color: var(--ink); line-height: 1.5; letter-spacing: -0.01em;
}
.article-body strong { color: var(--ink); font-weight: 700; }

.callout {
  background: var(--liberty-pale); border-radius: var(--r-2);
  padding: 24px 28px; margin: 32px 0; border-left: 3px solid var(--liberty);
}
.callout p { margin: 0; font-size: 16px; color: var(--ink); }
.callout strong { color: var(--liberty); }

.blog-card {
  background: white; border-radius: var(--r-2); overflow: hidden;
  border: 1px solid var(--gray-200); transition: all var(--t-base);
  display: flex; flex-direction: column; height: 100%;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--liberty-light); }
.blog-card-image {
  height: 8px;
  background: var(--gold);
}
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; gap: 12px; font-size: 12px; color: var(--gray-500); margin-bottom: 14px; align-items: center; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.blog-card-meta .badge { background: var(--orange-pale); color: var(--orange-dark); padding: 3px 10px; border-radius: 100px; }
.blog-card h3 { font-size: 19px; line-height: 1.3; margin-bottom: 12px; color: var(--ink); }
.blog-card p { font-size: 15px; color: var(--gray-700); line-height: 1.55; margin-bottom: 18px; flex: 1; }
.blog-card .read-more { margin-top: auto; color: var(--liberty); font-weight: 700; font-size: 14px; display: inline-flex; gap: 6px; align-items: center; transition: gap var(--t-base); }
.blog-card:hover .read-more { gap: 12px; color: var(--orange); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--liberty-darker); color: rgba(255,255,255,0.7); padding: var(--sp-7) 0 var(--sp-5); }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-5);
  padding-bottom: var(--sp-6); border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--sp-6); } }

.footer h4 { color: white; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.footer ul { list-style: none; display: grid; gap: 10px; padding: 0; }
.footer ul a { color: rgba(255,255,255,0.7); font-size: 14.5px; transition: color var(--t-fast); }
.footer ul a:hover { color: var(--orange); }

.footer-brand { padding-right: var(--sp-5); }
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.footer-brand .email { color: var(--orange); font-weight: 700; }

.footer-bottom {
  padding-top: var(--sp-5); display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: var(--sp-3);
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.6); margin-left: 20px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(.2,.7,.3,1), transform 0.6s cubic-bezier(.2,.7,.3,1); }
.reveal-stagger.in > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.reveal-stagger.in > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }
.reveal-stagger.in > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.65s; }
.reveal-stagger.in > *:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 0.75s; }

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-rise { animation: hero-rise 0.9s cubic-bezier(.2,.7,.3,1) forwards; }
.hero-rise-1 { animation: hero-rise 0.9s cubic-bezier(.2,.7,.3,1) 0.05s both; }
.hero-rise-2 { animation: hero-rise 0.9s cubic-bezier(.2,.7,.3,1) 0.18s both; }
.hero-rise-3 { animation: hero-rise 0.9s cubic-bezier(.2,.7,.3,1) 0.32s both; }
.hero-rise-4 { animation: hero-rise 0.9s cubic-bezier(.2,.7,.3,1) 0.46s both; }
.hero-rise-5 { animation: hero-rise 0.9s cubic-bezier(.2,.7,.3,1) 0.60s both; }
.hero-rise-6 { animation: hero-rise 0.9s cubic-bezier(.2,.7,.3,1) 0.74s both; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,149,79,0.45); }
  50% { box-shadow: 0 0 0 12px rgba(184,149,79,0); }
}
.pulse { animation: pulse-glow 2.6s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.mt-1 { margin-top: var(--sp-1); } .mt-2 { margin-top: var(--sp-2); } .mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); } .mt-5 { margin-top: var(--sp-5); } .mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); } .mt-8 { margin-top: var(--sp-8); }
.mb-3 { margin-bottom: var(--sp-3); } .mb-4 { margin-bottom: var(--sp-4); } .mb-5 { margin-bottom: var(--sp-5); } .mb-6 { margin-bottom: var(--sp-6); }

.divider { height: 1px; background: var(--gray-200); margin: var(--sp-6) 0; }

.badge-soft { display: inline-block; padding: 6px 12px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; background: var(--liberty-pale); color: var(--liberty); border-radius: 100px; }

.split { display: grid; grid-template-columns: 1fr; gap: var(--sp-6); align-items: center; }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; gap: var(--sp-7); } }

/* No-JS fallback: show all reveals */
.no-js .reveal, .no-js .reveal-stagger > * { opacity: 1; transform: none; }

/* ============================================================
   MOTION UTILITIES v2 — GSAP + ScrollTrigger + Lenis layer
   Initial states are set by JS (gsap.set/fromTo), never CSS,
   so content stays visible if the CDN fails. These classes
   only provide supporting styles.
   ============================================================ */

/* Word-split headline reveal (data-split="words") */
.split-w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.split-w-in { display: inline-block; will-change: transform; }

/* Reading progress bar (data-progress) */
.read-progress-track {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: transparent; z-index: 200; pointer-events: none;
}
.read-progress {
  height: 100%; width: 0%;
  background: var(--gold);
}

/* Lenis recommended base styles */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* Page transitions — native cross-document View Transitions where supported,
   JS fade-out fallback elsewhere (uv.js adds .page-exit before navigating) */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vt-fade-out 0.22s ease both; }
::view-transition-new(root) { animation: vt-fade-in 0.32s ease both; }
@keyframes vt-fade-out { to { opacity: 0; } }
@keyframes vt-fade-in { from { opacity: 0; } }
html.page-exit body { opacity: 0; transition: opacity 0.22s ease; }

/* 3D tilt cards (GSAP-driven; class added by uv.js during hover).
   Disables CSS transform transitions so per-frame GSAP updates stay 60fps. */
.tilting { transition: box-shadow 0.28s ease, border-color 0.28s ease !important; }

/* GSAP takeover of scroll reveals: CSS transitions off, GSAP owns the motion */
.gsap-ready .reveal, .gsap-ready .reveal-stagger > * { transition: none !important; }

/* Hover micro-interactions */
.img-zoom-wrap { overflow: hidden; border-radius: var(--r-2); }
.img-zoom-wrap img { transition: transform 0.8s cubic-bezier(.2,.7,.3,1); }
.img-zoom-wrap:hover img { transform: scale(1.045); }

.underline-sweep { position: relative; }
.underline-sweep::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--orange); transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s cubic-bezier(.2,.7,.3,1);
}
.underline-sweep:hover::after { transform: scaleX(1); transform-origin: left; }

/* Animated bar (data-bar) */
.stat-bar-track { height: 8px; background: var(--gray-100); border-radius: 100px; overflow: hidden; }
.stat-bar { height: 100%; border-radius: 100px; background: var(--gold); }

@media (prefers-reduced-motion: reduce) {
  .split-w-in { transform: none !important; }
}

/* ============================================================
   INNER-PAGE TEMPLATE COMPONENTS
   Shared by service pages, case studies, blog posts, about
   ============================================================ */

/* Page hero (dark, matches homepage hero language) */
.page-hero {
  position: relative; padding: 92px 0 68px; overflow: hidden; color: #FAF8F3;
  background: var(--navy);
  border-bottom: 1px solid var(--gold);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: 0.05; pointer-events: none;
  background-image: linear-gradient(rgba(250,248,243,0.5) 0.5px, transparent 0.5px), linear-gradient(90deg, rgba(250,248,243,0.5) 0.5px, transparent 0.5px);
  background-size: 60px 60px;
}
/* Glow blobs retired — flat navy reads calmer and more institutional */
.page-hero .hero-glow-o, .page-hero .hero-glow-l { display: none; }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: #FAF8F3; }
.page-hero .lead { color: rgba(250,248,243,0.82); }

/* Breadcrumbs */
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.78); margin-bottom: 22px; }
.breadcrumbs a { color: rgba(255,255,255,0.85); }
.breadcrumbs a:hover { color: var(--orange-light); }
.breadcrumbs .sep { opacity: 0.45; }
.breadcrumbs-light { color: var(--gray-500); }
.breadcrumbs-light a { color: var(--gray-700); }
.breadcrumbs-light a:hover { color: var(--orange); }

/* Case study: giant headline number */
.cs-keynumber {
  font-size: clamp(56px, 9vw, 128px); font-weight: 800; line-height: 0.95;
  letter-spacing: -0.04em; color: #FAF8F3; margin: 12px 0 18px;
}
.cs-keynumber-caption { font-size: clamp(17px, 1.6vw, 21px); color: rgba(255,255,255,0.82); max-width: 680px; line-height: 1.55; }

/* Case study meta strip under hero */
.cs-meta-strip {
  display: flex; flex-wrap: wrap; gap: 0; margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.14); border-bottom: 1px solid rgba(255,255,255,0.14);
}
.cs-meta-strip .cm { padding: 18px 28px 18px 0; margin-right: 28px; border-right: 1px solid rgba(255,255,255,0.1); }
.cs-meta-strip .cm:last-child { border-right: none; margin-right: 0; }
.cs-meta-strip .cm-l { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.75); font-weight: 700; margin-bottom: 4px; }
.cs-meta-strip .cm-v { font-size: 15px; font-weight: 700; color: white; }
@media (max-width: 640px) { .cs-meta-strip .cm { border-right: none; padding: 10px 0; margin-right: 0; width: 100%; } }

/* Numbered section label for case study body */
.cs-section-label {
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
}
.cs-section-label .num {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--liberty); color: white; font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.cs-section-label .lab { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--liberty); font-weight: 700; }

/* Timeline */
.cs-timeline { position: relative; margin: 36px 0; padding-left: 28px; display: grid; gap: 26px; }
.cs-timeline::before { content: ''; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--gold); border-radius: 2px; }
.cs-tl-item { position: relative; }
.cs-tl-item::before {
  content: ''; position: absolute; left: -28px; top: 5px; width: 16px; height: 16px;
  border-radius: 50%; background: white; border: 3px solid var(--liberty);
}
.cs-tl-item.crisis::before { border-color: var(--orange); }
.cs-tl-item .tl-date { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 800; color: var(--orange-dark); margin-bottom: 4px; }
.cs-tl-item .tl-body { font-size: 16px; color: var(--ink-soft); line-height: 1.6; }
.cs-tl-item .tl-body strong { color: var(--ink); }

/* Standard / citation block */
.cs-standard {
  background: var(--liberty-pale); border: 1px solid rgba(17,33,58,0.18);
  border-left: 4px solid var(--liberty); border-radius: 0 var(--r-2) var(--r-2) 0;
  padding: 22px 26px; margin: 28px 0;
}
.cs-standard .std-tag { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 800; color: var(--liberty); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.cs-standard h4 { font-size: 17px; margin-bottom: 8px; }
.cs-standard p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin: 0; }
.cs-standard a { font-weight: 700; }

/* UV positioning callout */
.cs-uv-callout {
  background: linear-gradient(135deg, var(--liberty-darker), var(--liberty)); color: white;
  border-radius: var(--r-2); padding: 36px 32px; margin: 44px 0; position: relative; overflow: hidden;
}
.cs-uv-callout::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--gold); pointer-events: none; }
.cs-uv-callout .uvc-tag { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 800; color: var(--orange-light); margin-bottom: 12px; position: relative; }
.cs-uv-callout h3 { color: white; font-size: clamp(20px, 2.4vw, 28px); margin-bottom: 12px; position: relative; }
.cs-uv-callout p { color: rgba(255,255,255,0.86); font-size: 16px; line-height: 1.65; position: relative; margin-bottom: 18px; }
.cs-uv-callout .btn { position: relative; }

/* Key stat band (inside articles) */
.cs-stat-band { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 32px 0; }
@media (min-width: 640px) { .cs-stat-band { grid-template-columns: repeat(3, 1fr); } }
.cs-stat-band .sb {
  background: white; border: 1px solid var(--gray-200); border-top: 3px solid var(--orange);
  border-radius: var(--r-2); padding: 20px 22px;
}
.cs-stat-band .sb-n { font-size: 28px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 6px; }
.cs-stat-band .sb-l { font-size: 12.5px; color: var(--gray-500); line-height: 1.45; }

/* Sources / footnotes */
.cs-sources { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--gray-200); }
.cs-sources h4 { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 14px; }
.cs-sources ol { margin: 0 0 0 18px; padding: 0; }
.cs-sources li { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; margin-bottom: 8px; }
.cs-sources a { color: var(--liberty); word-break: break-word; }

/* Coming-soon card state (blog index) */
.blog-card.coming-soon { opacity: 0.78; pointer-events: none; position: relative; }
.blog-card.coming-soon .blog-card-image { background: var(--gray-200); }
.soon-badge {
  display: inline-block; background: var(--gray-100); color: var(--gray-500);
  padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* Structured contact ask block */
.contact-ask {
  background: white; border: 1px solid var(--gray-200); border-radius: var(--r-2);
  padding: 32px 30px; box-shadow: var(--shadow-sm);
}
.contact-ask .ca-tag { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 800; color: var(--orange); margin-bottom: 14px; }
.contact-ask ol { margin: 0 0 22px 20px; display: grid; gap: 10px; }
.contact-ask li { font-size: 15.5px; color: var(--ink-soft); line-height: 1.55; }
.contact-ask li strong { color: var(--ink); }
.contact-ask .ca-note { font-size: 13px; color: var(--gray-500); margin-top: 14px; line-height: 1.55; }

/* Testimonial placeholder */
.testimonial-placeholder {
  background: var(--gray-100); border: 1.5px dashed var(--gray-300); border-radius: var(--r-2);
  padding: 28px; color: var(--gray-500); font-size: 14.5px; line-height: 1.6; font-style: italic;
}

/* Service page: scope list */
.scope-list { display: grid; gap: 12px; margin: 28px 0; }
.scope-item {
  display: flex; gap: 14px; align-items: flex-start; padding: 16px 20px;
  background: white; border: 1px solid var(--gray-200); border-radius: var(--r-2);
  transition: all var(--t-base);
}
.scope-item:hover { border-color: var(--liberty); transform: translateX(4px); }
.scope-item svg { color: var(--orange); flex-shrink: 0; margin-top: 4px; }
.scope-item p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.55; margin: 0; }
.scope-item p strong { color: var(--ink); }

/* Prev / next pagination for case studies */
.cs-pagination { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
@media (max-width: 640px) { .cs-pagination { grid-template-columns: 1fr; } }
.cs-page-link {
  display: block; padding: 22px 24px; background: white; border: 1px solid var(--gray-200);
  border-radius: var(--r-2); transition: all var(--t-base);
}
.cs-page-link:hover { border-color: var(--liberty); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.cs-page-link .pl-dir { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); font-weight: 700; margin-bottom: 6px; }
.cs-page-link .pl-title { font-size: 15.5px; font-weight: 700; color: var(--ink); line-height: 1.35; }
.cs-page-link.next { text-align: right; }

/* Keyboard focus visibility (WCAG 2.4.7) */
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; border-radius: 2px; }


/* ============================================================
   GLOBAL POLISH (appended 2026-06-11) — site-wide refinement.
   Safe, additive: smoother scroll, branded focus, selection,
   font smoothing, image rendering. Honors reduced-motion.
   ============================================================ */
@media (prefers-reduced-motion: no-preference){ html{ scroll-behavior: smooth; } }
:where(a,button,input,textarea,select,summary,[tabindex]):focus-visible{
  outline: 2px solid var(--gold, #B8954F);
  outline-offset: 3px;
  border-radius: 4px;
}
:where(a,button):focus:not(:focus-visible){ outline: none; }
::selection{ background: var(--gold, #B8954F); color: var(--navy, #11213A); }
body{ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
img{ image-rendering: auto; }
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}
