/* ==========================================================================
   Venture Recovery - debt recovery site
   Design system: light — white / light grey surfaces, slate-navy accent
   ========================================================================== */

:root {
  --navy-900: #16202b;
  --navy-800: #22384c;
  --navy-700: #2c4257;
  --navy-600: #3a5064;
  --teal: #3d5a73;
  --teal-light: #6f8aa3;
  --teal-faint: rgba(61, 90, 115, 0.10);
  --teal-dark: #2c4055;
  --red: #22384c;
  --red-dark: #16242f;
  --ink: #1e2733;
  --muted: #5c6672;
  --line: #e4e7eb;
  --bg: #ffffff;
  --bg-soft: #f5f6f8;
  --bg-grey: #eceef1;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-head: "Archivo", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --container: 1200px;
  --radius: 3px;
  --radius-sm: 2px;
  --shadow-md: 0 12px 32px -12px rgba(7, 28, 44, 0.18);
  --shadow-lg: 0 32px 64px -24px rgba(7, 28, 44, 0.32);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 88px;
}

/* ---------- reset / base ---------- */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--teal); color: #fff; }

:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

.skip-link {
  position: fixed;
  top: 0.6rem; left: 0.6rem;
  z-index: 1500;
  padding: 0.7rem 1.2rem;
  background: var(--navy-800);
  color: #fff;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  transform: translateY(-200%);
  transition: transform 0.3s var(--ease-out);
}
.skip-link:focus-visible { transform: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.12;
  color: var(--navy-800);
  font-weight: 700;
  letter-spacing: -0.015em;
}
/* serif display face for the primary headings — editorial, law-firm feel */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.005em;
}

.container {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}

.section { padding-block: clamp(4.5rem, 9vw, 7.5rem); }
section { scroll-margin-top: calc(var(--header-h) + 12px); }

/* ---------- post-render fx layers ---------- */

.fx-grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(4) infinite;
}

@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1.5%); }
  50% { transform: translate(1.5%, -1%); }
  75% { transform: translate(-1%, -2%); }
  100% { transform: translate(2%, 1%); }
}

.fx-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 1200;
  pointer-events: none;
}
.fx-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal-light));
  transform: scaleX(0);
  transform-origin: 0 50%;
}

/* ---------- reveal system ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* split hero title */
.split-line { display: block; overflow: hidden; padding-block: 0.06em; }
.split-word {
  display: inline-block;
  transform: translateY(115%) rotate(2deg);
  transition: transform 1s var(--ease-out);
  transition-delay: calc(120ms + var(--i, 0) * 70ms);
  will-change: transform;
}
.split-ready .split-word { transform: none; }

/* ---------- buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background-color 0.3s, border-color 0.3s;
  transform: translate(var(--mx, 0), var(--my, 0));
}
.btn::after {   /* shine sweep */
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease-out);
}
.btn:hover::after { left: 130%; }
.btn .btn-arrow {
  width: 14px; height: 12px;
  flex: none;
  transition: transform 0.35s var(--ease-out);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-red { background: var(--red); color: #fff; box-shadow: 0 10px 24px -10px rgba(214, 64, 46, 0.55); }
.btn-red:hover { background: var(--red-dark); box-shadow: 0 14px 30px -10px rgba(214, 64, 46, 0.65); }

.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 10px 24px -10px rgba(42, 167, 154, 0.55); }
.btn-teal:hover { background: var(--teal-dark); }

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { border-color: var(--teal-light); color: var(--teal-light); }

.btn-lg { padding: 1.15rem 2.1rem; font-size: 1.05rem; }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.45s var(--ease-out), box-shadow 0.3s, height 0.3s;
}
.site-header.is-hidden { transform: translateY(-100%); }
.site-header.is-scrolled { box-shadow: 0 8px 30px -18px rgba(7, 28, 44, 0.35); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: var(--header-h);
  transition: height 0.3s var(--ease-out);
}
.site-header.is-scrolled .header-inner { height: 72px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex: none;
}
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-word {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--navy-800);
  line-height: 1;
  white-space: nowrap;
}
.brand-accent { color: var(--teal); font-weight: 700; }
.brand--light .brand-word { color: #fff; }
.brand--light .brand-accent { color: var(--teal-light); }

.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 1.2vw, 1.25rem);
}
.main-nav a, .nav-drop-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.87rem;
  color: var(--navy-800);
  padding: 0.4rem 0;
  white-space: nowrap;
  transition: color 0.25s;
}
.main-nav a::after, .nav-drop-btn::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2.5px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.4s var(--ease-out);
}
.main-nav a:hover, .nav-drop-btn:hover { color: var(--teal); }
.main-nav a:hover::after,
.main-nav a.is-active::after,
.nav-drop-btn:hover::after { transform: scaleX(1); transform-origin: 0 50%; }
.main-nav a.is-active { color: var(--teal); }

.nav-dropdown { position: relative; }
.nav-drop-btn svg { width: 11px; height: 8px; transition: transform 0.3s var(--ease-out); }
.nav-dropdown.is-open .nav-drop-btn svg { transform: rotate(180deg); }

.nav-drop-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 300px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
}
.nav-dropdown.is-open .nav-drop-panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav-drop-panel a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.2rem;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}
.nav-drop-panel a::after { content: none; }
.nav-drop-panel a:hover { background: var(--teal-faint); }
.nav-drop-panel a span { color: var(--teal-dark); font-weight: 600; font-variant-numeric: tabular-nums; }

/* Services mega-item: left-aligned, stacked title + descriptor */
.nav-drop-panel--wide {
  left: 0;
  right: auto;
  transform-origin: top left;
  min-width: 268px;
}
.nav-drop-panel--wide a {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}
.nav-drop-panel--wide a span {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.8rem;
  font-variant-numeric: normal;
}

.header-cta {
  flex: none;
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  margin-left: auto;
  z-index: 1101;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2.5px;
  margin-inline: auto;
  border-radius: 2px;
  background: var(--navy-800);
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 9rem;
  background:
    radial-gradient(90rem 50rem at 85% -10%, var(--navy-600), transparent 60%),
    linear-gradient(158deg, var(--navy-800) 0%, var(--navy-900) 78%);
  color: #fff;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}
.hero-glow--1 {
  width: 46rem; height: 46rem;
  right: -14rem; top: -16rem;
  background: radial-gradient(circle, rgba(42, 167, 154, 0.22), transparent 65%);
}
.hero-glow--2 {
  width: 34rem; height: 34rem;
  left: -12rem; bottom: -14rem;
  background: radial-gradient(circle, rgba(23, 70, 95, 0.55), transparent 65%);
}

.hero-chevron-field {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.5;
}
.hero-chevron-field path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 26;
  stroke-linejoin: round;
}
.chevron-drift { animation: drift 26s ease-in-out infinite alternate; }
@keyframes drift {
  from { transform: translateY(-24px); }
  to { transform: translateY(24px); }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 40%, transparent 55%, rgba(4, 14, 22, 0.55));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.hero-chevrons { width: 88px; margin-bottom: 1.6rem; }
.hero-chevrons svg { width: 100%; overflow: visible; }
.hc {
  fill: none;
  stroke-width: 13;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: chevron-draw 0.9s var(--ease-out) forwards;
}
.hc-1 { stroke: #47606f; animation-delay: 0.15s; }
.hc-2 { stroke: #1d8177; animation-delay: 0.3s; }
.hc-3 { stroke: #6fd0c3; animation-delay: 0.45s; }
@keyframes chevron-draw { to { stroke-dashoffset: 0; } }

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1.1rem;
}
.eyebrow-dark { color: var(--teal-dark); }

.hero-title {
  color: #fff;
  font-size: clamp(2.7rem, 5.4vw, 4.3rem);
  font-weight: 700;
  max-width: 17ch;
  margin-bottom: 1.6rem;
}

.hero-lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
  margin-bottom: 1.4rem;
}
.hero-lede strong { color: var(--teal-light); font-weight: 600; }

.hero-reg {
  max-width: 50ch;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.2rem;
}
.hero-reg strong { font-weight: 700; }

.tel-link {
  color: var(--teal-light);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 0.25s;
  white-space: nowrap;
}
.tel-link:hover { color: #fff; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* hero visual: floating letters scene */

.hero-visual {
  position: relative;
  height: clamp(24rem, 42vw, 34rem);
}
.hero-visual::before {
  /* angled panel echoing the photo block of the reference layout */
  content: "";
  position: absolute;
  inset: -18% -40vw -30% 6%;
  background: linear-gradient(140deg, rgba(23, 70, 95, 0.55), rgba(12, 42, 64, 0.2) 55%);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  border-left: 1px solid rgba(111, 208, 195, 0.12);
}

.hv-ring {
  position: absolute;
  inset: 8% 4% auto auto;
  width: clamp(18rem, 26vw, 24rem);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid rgba(111, 208, 195, 0.28);
  box-shadow: inset 0 0 80px rgba(42, 167, 154, 0.12);
}
.hv-ring::after {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px dashed rgba(111, 208, 195, 0.22);
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hv-letters { position: absolute; inset: 0; }

.hv-letter {
  position: absolute;
  width: clamp(170px, 17vw, 225px);
  aspect-ratio: 0.78;
  background: linear-gradient(175deg, #ffffff, #eef4f6);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 1.1rem;
  will-change: transform;
}
.hv-letter--1 { left: 6%; top: 16%; rotate: -9deg; animation: float 7s ease-in-out infinite alternate; }
.hv-letter--2 { left: 34%; top: 28%; rotate: 2deg; animation: float 8.5s 0.6s ease-in-out infinite alternate; }
.hv-letter--3 { left: 60%; top: 10%; rotate: 11deg; animation: float 7.6s 1.1s ease-in-out infinite alternate; }
@keyframes float {
  from { transform: translateY(-7px); }
  to { transform: translateY(9px); }
}

.hvl-head { display: flex; align-items: center; gap: 0.45rem; margin-bottom: 0.9rem; }
.hvl-mark {
  width: 17px; height: 17px;
  border-radius: 50%;
  background:
    conic-gradient(from 210deg, var(--teal) 0 90deg, transparent 0) ,
    var(--navy-800);
}
.hvl-brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--navy-800);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.hvl-brand .brand-accent { font-weight: 700; }
.hvl-line {
  height: 7px;
  border-radius: 4px;
  background: #d8e2e7;
  margin-bottom: 0.55rem;
}
.w-50 { width: 50%; } .w-55 { width: 55%; } .w-60 { width: 60%; }
.w-65 { width: 65%; } .w-70 { width: 70%; } .w-80 { width: 80%; } .w-85 { width: 85%; }

.hvl-stamp {
  position: absolute;
  right: 0.9rem; bottom: 1rem;
  padding: 0.3rem 0.55rem;
  border: 2px solid var(--red);
  border-radius: 4px;
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  rotate: -7deg;
  opacity: 0.85;
}

.hvl-badge {
  position: absolute;
  left: 0.9rem; bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: var(--teal-faint);
  color: var(--teal-dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}
.hvl-badge svg { width: 13px; height: 13px; }

/* ---------- quote form ---------- */

.quote { position: relative; z-index: 5; }

.quote-card {
  position: relative;
  margin-top: -6.5rem;
  background: #fff;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  overflow: hidden;
}
.quote-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(var(--teal), var(--teal-dark));
}

.quote-intro h2 { font-size: clamp(1.35rem, 2vw, 1.7rem); margin-bottom: 0.5rem; }
.quote-intro p { color: var(--muted); font-size: 0.98rem; }

.quote-fields {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 0.9rem;
  align-items: center;
}

.field { position: relative; }
.field input {
  width: 100%;
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  padding: 1.35rem 1rem 0.55rem;
  background: var(--bg-soft);
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.25s, background-color 0.25s, box-shadow 0.25s;
}
.field input:hover { background: #ecf2f5; }
.field input:focus {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px var(--teal-faint);
}
.field label {
  position: absolute;
  left: 1rem; top: 50%;
  translate: 0 -50%;
  color: var(--muted);
  font-size: 0.95rem;
  pointer-events: none;
  transition: all 0.22s var(--ease-out);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label {
  top: 0.72rem;
  translate: 0 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
}
.field input:invalid:not(:placeholder-shown):not(:focus) { border-color: rgba(214, 64, 46, 0.5); }

.quote-submit { justify-content: center; white-space: nowrap; align-self: stretch; }

.quote-success {
  display: none;
  align-items: center;
  gap: 0.6rem;
  grid-column: 1 / -1;
  color: var(--teal-dark);
  font-weight: 600;
}
.quote-success svg { width: 22px; height: 22px; flex: none; }
.quote-card.is-sent .quote-fields { display: none; }
.quote-card.is-sent .quote-success { display: flex; animation: pop-in 0.5s var(--ease-out); }
@keyframes pop-in {
  from { opacity: 0; transform: translateY(8px) scale(0.97); }
}

/* ---------- trust marquee ---------- */

.trust { padding-block: 3.2rem 3.6rem; border-bottom: 1px solid var(--line); }

.trust-head {
  text-align: center;
  margin-bottom: 1.8rem;
}
.trust-head span {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.3rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 6px 18px -12px rgba(7, 28, 44, 0.25);
  white-space: nowrap;
}
.badge svg { width: 26px; height: 26px; color: var(--teal); flex: none; }
.badge span { display: flex; flex-direction: column; line-height: 1.25; font-size: 0.8rem; color: var(--muted); }
.badge strong { font-family: var(--font-head); font-size: 0.92rem; color: var(--navy-800); }

/* ---------- stats ---------- */

.stats {
  background:
    radial-gradient(60rem 30rem at 15% 120%, rgba(42, 167, 154, 0.15), transparent 60%),
    var(--navy-800);
  color: #fff;
  padding-block: clamp(3.5rem, 6vw, 5rem);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat {
  position: relative;
  padding-left: 1.4rem;
}
.stat::before {
  content: "";
  position: absolute;
  left: 0; top: 0.4rem; bottom: 0.4rem;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(var(--teal-light), var(--teal-dark));
}
.stat-value {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--teal-light);
  line-height: 1.05;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 0.94rem; color: rgba(255, 255, 255, 0.75); max-width: 24ch; display: block; }

/* ---------- section heads ---------- */

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2.6rem, 5vw, 4rem);
}
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.section-sub { color: var(--muted); margin-top: 0.9rem; font-size: 1.05rem; }
.section-head--light h2 { color: #fff; }

/* ---------- why grid ---------- */

.why { background: var(--bg-soft); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}

.why-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem 1.8rem;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.3s;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.5s var(--ease-out);
}
.why-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--teal-faint);
  color: var(--teal-dark);
  margin-bottom: 1.1rem;
  transition: background-color 0.3s, color 0.3s, transform 0.45s var(--ease-out);
}
.why-icon svg { width: 26px; height: 26px; }
.why-card:hover .why-icon {
  background: var(--teal);
  color: #fff;
  transform: scale(1.06) rotate(-4deg);
}

.why-card h3 { font-size: 1.08rem; margin-bottom: 0.55rem; }
.why-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }

/* ---------- process timeline ---------- */

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
  counter-reset: step;
}

.timeline::before,
.timeline::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 26px; left: calc(100% / 12); right: calc(100% / 12);
  height: 3px;
  border-radius: 2px;
}
.timeline::before { background: var(--line); }
.timeline::after {
  background: linear-gradient(90deg, var(--teal-dark), var(--teal-light));
  transform: scaleX(var(--tl, 0));
  transform-origin: 0 50%;
  transition: transform 0.15s linear;
}

.step { position: relative; text-align: center; padding-top: 0.2rem; }
.step-num {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--teal);
  color: var(--navy-800);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 0 0 6px #fff;
  transition: transform 0.5s var(--ease-out), background-color 0.3s, color 0.3s;
}
.step:hover .step-num {
  background: var(--teal);
  color: #fff;
  transform: scale(1.12);
}
.step h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.87rem; color: var(--muted); line-height: 1.55; max-width: 22ch; margin-inline: auto; }

/* ---------- services ---------- */

.services { background: var(--bg-soft); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0));
}
.service-card:hover {
  --ty: -6px;
  box-shadow: var(--shadow-lg);
}

.sc-art {
  position: relative;
  height: 150px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.95);
  overflow: hidden;
}
.sc-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M20 12 L48 40 L20 68' fill='none' stroke='rgba(255,255,255,0.09)' stroke-width='10' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 80px;
  transition: transform 0.8s var(--ease-out);
}
.service-card:hover .sc-art::before { transform: scale(1.18) rotate(-3deg); }
.sc-art svg {
  position: relative;
  width: 52px; height: 52px;
  transition: transform 0.5s var(--ease-out);
}
.service-card:hover .sc-art svg { transform: translateY(-4px) scale(1.08); }

.sc-art--1 { background: linear-gradient(135deg, var(--navy-700), var(--navy-900)); }
.sc-art--2 { background: linear-gradient(135deg, var(--teal-dark), var(--navy-800)); }
.sc-art--3 { background: linear-gradient(135deg, var(--navy-600), var(--navy-800)); }
.sc-art--4 { background: linear-gradient(135deg, #14615c, var(--navy-900)); }

.sc-body { padding: 1.5rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.sc-body h3 { font-size: 1.08rem; margin-bottom: 0.55rem; }
.sc-body p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.2rem; }

.sc-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal-dark);
}
.sc-more svg { width: 13px; height: 11px; transition: transform 0.35s var(--ease-out); }
.service-card:hover .sc-more svg { transform: translateX(5px); }

/* ---------- testimonials ---------- */

.testimonials {
  position: relative;
  background:
    radial-gradient(70rem 40rem at 110% 0%, rgba(42, 167, 154, 0.14), transparent 60%),
    var(--navy-900);
  color: #fff;
  overflow: hidden;
}
.t-bg { position: absolute; inset: 0; pointer-events: none; }

.carousel {
  position: relative;
  max-width: 54rem;
}
.carousel-quote {
  width: 64px;
  color: var(--teal);
  opacity: 0.6;
  margin-bottom: 1.6rem;
}

.carousel-viewport { overflow: hidden; cursor: grab; }
.carousel-viewport.is-dragging { cursor: grabbing; }

.carousel-track {
  display: flex;
  transition: transform 0.7s var(--ease-out);
}
.slide {
  flex: 0 0 100%;
  min-width: 0;
  padding-right: 6%;
  opacity: 0.25;
  transition: opacity 0.6s var(--ease-out);
}
.slide.is-active { opacity: 1; }

.slide blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
}
.slide figcaption { display: flex; flex-direction: column; gap: 0.15rem; }
.slide figcaption strong { font-family: var(--font-head); font-size: 1rem; }
.slide figcaption span { color: var(--teal-light); font-size: 0.9rem; }

.carousel-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2.4rem;
}
.c-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  color: #fff;
  transition: border-color 0.3s, background-color 0.3s, transform 0.3s var(--ease-out);
}
.c-arrow svg { width: 15px; height: 13px; }
.c-arrow:hover {
  border-color: var(--teal-light);
  background: rgba(42, 167, 154, 0.15);
  transform: scale(1.07);
}

.c-dots { display: flex; gap: 0.5rem; }
.c-dot {
  width: 9px; height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  transition: width 0.4s var(--ease-out), background-color 0.3s;
}
.c-dot.is-active { width: 30px; background: var(--teal-light); }

/* ---------- approach ---------- */

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}

.pillar {
  position: relative;
  padding: 1.9rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.pillar::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(var(--teal), var(--teal-dark));
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition: transform 0.5s var(--ease-out);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pillar:hover::before { transform: scaleY(1); }

.pillar-index {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(42, 167, 154, 0.4);
  margin-bottom: 1.1rem;
}
.pillar h3 { font-size: 1.1rem; margin-bottom: 0.55rem; }
.pillar p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }

/* ---------- CTA ---------- */

.cta {
  position: relative;
  background: linear-gradient(120deg, var(--navy-800), var(--navy-900) 55%, #0c3b3f);
  color: #fff;
  padding-block: clamp(4rem, 7vw, 6rem);
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-chevrons {
  position: absolute;
  right: 0; top: 0;
  height: 100%;
  opacity: 0.8;
}
.cta-chevrons path {
  fill: none;
  stroke: rgba(111, 208, 195, 0.1);
  stroke-width: 22;
  stroke-linejoin: round;
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cta-inner h2 { color: #fff; font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 0.6rem; }
.cta-inner p { color: rgba(255, 255, 255, 0.78); font-size: 1.06rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.75);
  padding-top: clamp(3.5rem, 6vw, 5rem);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(1.8rem, 3.5vw, 3rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.f-brand p { margin: 1.1rem 0 1.4rem; max-width: 30ch; line-height: 1.6; }

.socials { display: flex; gap: 0.7rem; }
.socials a {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.8);
  transition: background-color 0.3s, border-color 0.3s, transform 0.3s var(--ease-out), color 0.3s;
}
.socials svg { width: 17px; height: 17px; }
.socials a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: translateY(-3px);
}

.f-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}
.f-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.f-col ul a {
  position: relative;
  display: inline-block;
  transition: color 0.25s, transform 0.3s var(--ease-out);
}
.f-col ul a:hover { color: var(--teal-light); transform: translateX(4px); }

.f-offices li { display: flex; flex-direction: column; margin-bottom: 0.35rem; }
.f-offices strong { color: rgba(255, 255, 255, 0.92); font-size: 0.88rem; }
.f-offices a { color: var(--teal-light); font-variant-numeric: tabular-nums; overflow-wrap: anywhere; }
.f-offices a:hover { color: #fff; transform: none; }

.f-accreds { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.f-accreds span {
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  font-size: 0.75rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: border-color 0.3s, color 0.3s;
}
.f-accreds span:hover { border-color: var(--teal); color: var(--teal-light); }

.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 1.6rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-base ul { display: flex; gap: 1.6rem; }
.footer-base a:hover { color: var(--teal-light); }

/* ==========================================================================
   LIGHT SCHEME — inverts the former dark bands to white / light grey.
   Kept as a trailing block so it overrides the base rules above; the
   responsive @media rules below still win where they match.
   ========================================================================== */

/* selection + buttons */
::selection { background: var(--navy-800); color: #fff; }
.btn-red { box-shadow: 0 10px 24px -12px rgba(34, 56, 76, 0.45); }
.btn-teal { box-shadow: 0 10px 24px -12px rgba(61, 90, 115, 0.4); }
.btn-ghost {
  border: 1.5px solid var(--line);
  color: var(--ink);
  background: #fff;
}
.btn-ghost:hover { border-color: var(--navy-800); background: var(--bg-soft); }

/* ---- hero: dark navy -> light ---- */
.hero {
  background:
    radial-gradient(90rem 50rem at 85% -10%, #eef1f4, transparent 60%),
    linear-gradient(158deg, #ffffff 0%, var(--bg-soft) 100%);
  color: var(--ink);
}
.hero-glow--1 { background: radial-gradient(circle, rgba(61, 90, 115, 0.10), transparent 65%); }
.hero-glow--2 { background: radial-gradient(circle, rgba(140, 158, 173, 0.14), transparent 65%); }
.hero-chevron-field path { stroke: rgba(34, 56, 76, 0.04); }
.hero-vignette { background: none; }
.hc-1 { stroke: #9aa8b4; }
.hc-2 { stroke: var(--teal); }
.hc-3 { stroke: var(--navy-800); }
.eyebrow { color: var(--teal-dark); }
.hero-title { color: var(--ink); }
.hero-lede { color: var(--muted); }
.hero-lede strong { color: var(--teal-dark); }
.hero-reg { color: var(--ink); }
.tel-link { color: var(--teal-dark); }
.tel-link:hover { color: var(--navy-900); }
.hero-visual::before {
  background: linear-gradient(140deg, rgba(58, 80, 100, 0.10), rgba(58, 80, 100, 0.02) 55%);
  border-left: 1px solid rgba(34, 56, 76, 0.08);
}
.hv-ring { border-color: rgba(34, 56, 76, 0.14); box-shadow: inset 0 0 80px rgba(61, 90, 115, 0.06); }
.hv-ring::after { border-color: rgba(34, 56, 76, 0.12); }

/* ---- stats band: navy -> light grey ---- */
.stats {
  background:
    radial-gradient(60rem 30rem at 15% 120%, rgba(61, 90, 115, 0.08), transparent 60%),
    var(--bg-grey);
  color: var(--ink);
  border-block: 1px solid var(--line);
}
.stat-value { color: var(--navy-800); }
.stat-label { color: var(--muted); }

.section-head--light h2 { color: var(--ink); }

/* ---- service card art tiles: navy gradients -> light greys ---- */
.sc-art { color: var(--navy-800); }
.sc-art::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M20 12 L48 40 L20 68' fill='none' stroke='rgba(34,56,76,0.07)' stroke-width='10' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.sc-art--1 { background: linear-gradient(135deg, #eef1f4, #dfe4ea); }
.sc-art--2 { background: linear-gradient(135deg, #e7ecf1, #d6dde5); }
.sc-art--3 { background: linear-gradient(135deg, #eceff2, #dde2e8); }
.sc-art--4 { background: linear-gradient(135deg, #e9edf1, #d8dee6); }

/* ---- testimonials: navy -> white ---- */
.testimonials {
  background:
    radial-gradient(70rem 40rem at 110% 0%, rgba(61, 90, 115, 0.07), transparent 60%),
    var(--bg-soft);
  color: var(--ink);
}
.slide figcaption span { color: var(--teal-dark); }
.c-arrow { border-color: var(--line); color: var(--navy-800); }
.c-arrow:hover { border-color: var(--navy-800); background: var(--teal-faint); }
.c-dot { background: rgba(34, 56, 76, 0.2); }
.c-dot.is-active { background: var(--navy-800); }

/* ---- CTA band: navy -> light grey ---- */
.cta {
  background: linear-gradient(120deg, var(--bg-grey), var(--bg-soft) 55%, #eef1f4);
  color: var(--ink);
  border-block: 1px solid var(--line);
}
.cta-chevrons path { stroke: rgba(34, 56, 76, 0.05); }
.cta-inner h2 { color: var(--ink); }
.cta-inner p { color: var(--muted); }

/* ---- footer: navy -> light grey ---- */
.site-footer { background: var(--bg-grey); color: var(--muted); border-top: 1px solid var(--line); }
.footer-grid { border-bottom: 1px solid var(--line); }
.socials a { border-color: var(--line); color: var(--muted); }
.socials a:hover { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.f-col h4 { color: var(--ink); }
.f-col ul a:hover { color: var(--teal-dark); }
.f-offices strong { color: var(--ink); }
.f-offices a { color: var(--teal-dark); }
.f-offices a:hover { color: var(--navy-900); }
.f-accreds span { border-color: var(--line); color: var(--muted); }
.f-accreds span:hover { border-color: var(--navy-800); color: var(--teal-dark); }
.footer-base { color: var(--muted); border-top: 1px solid var(--line); }
.footer-base a:hover { color: var(--teal-dark); }
.brand--light .brand-word { color: var(--ink); }
.brand--light .brand-accent { color: var(--teal); }

/* ---- sharpening: square corners, restrained motion, structural rules ---- */
.btn::after { display: none; }              /* drop the glossy shine sweep */
.site-header { border-bottom: 1px solid var(--line); }
.badge { border-radius: 2px; }
.f-accreds span { border-radius: 2px; }
.socials a { border-radius: 2px; }
.c-arrow { border-radius: 2px; }
.why-icon { border-radius: 2px; }
.step-num { border-radius: 3px; box-shadow: 0 0 0 6px var(--bg); }
.hv-letter { border-radius: 2px; }
.hvl-stamp { border-radius: 2px; }
.hvl-mark { border-radius: 2px; }
.eyebrow { letter-spacing: 0.26em; }

/* ---------- responsive ---------- */

@media (max-width: 1180px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 2.6rem; }
  .timeline::before, .timeline::after { content: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1100;
    background:
      radial-gradient(60rem 40rem at 80% -10%, rgba(61, 90, 115, 0.10), transparent 60%),
      #ffffff;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; }
  .main-nav ul {
    flex-direction: column;
    gap: 1.4rem;
    text-align: center;
  }
  .main-nav a, .nav-drop-btn {
    color: var(--ink);
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.25s;
    transition-delay: calc(var(--i, 0) * 60ms + 100ms);
  }
  .main-nav.is-open a, .main-nav.is-open .nav-drop-btn { opacity: 1; transform: none; }
  .nav-dropdown { display: flex; flex-direction: column; align-items: center; }
  .nav-drop-panel {
    position: static;
    margin-top: 0.8rem;
    box-shadow: none;
    transform: none;
    display: none;
  }
  .nav-dropdown.is-open .nav-drop-panel { display: block; }
  .nav-toggle { display: flex; }
  .main-nav.is-open ~ .nav-toggle span,
  .nav-toggle.is-open span { background: var(--navy-800); }
  .header-cta { margin-left: auto; }
}

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-title { max-width: 16ch; }
  .hero-scroll { display: none; }

  .quote-card { grid-template-columns: 1fr; }
  .quote-fields { grid-template-columns: 1fr 1fr; }
  .quote-submit { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --header-h: 74px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-word { font-size: 1.6rem; }
  .header-cta { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .quote-fields { grid-template-columns: 1fr; }

  .timeline { grid-template-columns: 1fr; row-gap: 2rem; }
  .step { text-align: left; padding-left: 4.2rem; }
  .step-num { position: absolute; left: 0; top: 0; margin: 0; }
  .step p { margin-inline: 0; max-width: none; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; text-align: center; }

  .cta-inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  [data-reveal], .split-word { opacity: 1 !important; transform: none !important; }
  .fx-grain { display: none; }
}
