/* =============================================================
   KS CONSULTING GROUP LLC — styles.css
   STRATEGY. STRUCTURE. CAPITAL.
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* Gold */
  --gold-1: #C9A227;
  --gold-2: #D4AF37;
  --gold-3: #E5C76B;
  --gold-line: rgba(201, 162, 39, 0.35);

  /* Black */
  --bg: #050505;
  --bg-2: #0B0B0B;
  --card: #111111;

  /* White */
  --white: #FFFFFF;
  --white-soft: #F5F5F2;
  --white-mute: rgba(245, 245, 242, 0.62);
  --white-dim: rgba(245, 245, 242, 0.38);

  /* Light section */
  --ink: #0A0A0A;
  --ink-mute: rgba(10, 10, 10, 0.62);
  --ink-dim: rgba(10, 10, 10, 0.4);
  --paper: #FFFFFF;

  --line-dark: rgba(245, 245, 242, 0.12);
  --line-light: rgba(10, 10, 10, 0.12);

  --sans: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 84px;
  --container: 1240px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--white-soft);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.02em; font-family: var(--sans); }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold-1); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--gold-2); color: var(--bg);
  border-radius: 6px; font-weight: 700; font-size: .85rem;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 720px) { .container { padding-inline: 2.5rem; } }
@media (min-width: 1280px) { .container { padding-inline: 3rem; } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-2);
}
.eyebrow::before {
  content: ""; width: 20px; height: 1px; background: var(--gold-1);
  display: inline-block;
}

.gold { color: var(--gold-2); }
.on-dark .gold, .on-light .gold { color: var(--gold-2); }

.section {
  position: relative;
  padding-block: clamp(5rem, 10vw, 9rem);
}
.section.on-dark { background: var(--bg); color: var(--white-soft); }
.section.on-light { background: var(--paper); color: var(--ink); }

.hairline {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line) 20%, var(--gold-line) 80%, transparent);
  border: 0;
}

/* =============================================================
   4. Typography components
   ============================================================= */
.display-xl {
  font-size: clamp(2.6rem, 7.2vw, 6.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
  text-wrap: balance;
}
.display-lg {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.display-md {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.lede {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: var(--white-mute);
  max-width: 46ch;
  line-height: 1.65;
}
.on-light .lede { color: var(--ink-mute); }
.body-copy {
  font-size: 1rem;
  color: var(--white-mute);
  max-width: 52ch;
  line-height: 1.75;
}
.on-light .body-copy { color: var(--ink-mute); }
.body-copy + .body-copy { margin-top: 1.1rem; }

/* =============================================================
   5. Buttons & CTAs
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: 1rem 1.7rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 999px;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), background-color .4s var(--ease-out), color .4s var(--ease-out);
  white-space: nowrap;
}
.btn-arrow { transition: transform .45s var(--ease-out); display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-3), var(--gold-1));
  color: #0A0700;
  box-shadow: 0 10px 30px -8px rgba(201,162,39,0.45);
}
.btn-gold:hover {
  background: var(--white);
  color: var(--bg);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px -10px rgba(245,245,242,0.35);
}

.btn-outline-light {
  border: 1px solid rgba(10,10,10,0.18);
  color: var(--ink);
  background: transparent;
}
.btn-outline-light:hover {
  border-color: var(--gold-1);
  color: #7a611a;
  transform: translateY(-3px);
}

.link-underline {
  position: relative; display: inline-flex; align-items: center; gap: .4rem;
  font-size: .84rem; font-weight: 700; letter-spacing: .04em;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }
.link-underline:hover .btn-arrow { transform: translateX(4px); }

/* =============================================================
   6. Navigation
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: background-color .5s var(--ease-out), border-color .5s var(--ease-out), backdrop-filter .5s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(5,5,5,0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--gold-line);
}
.nav-inner {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav-logo { display: flex; align-items: center; gap: .6rem; }
.nav-logo img { height: 58px; width: auto; }

.nav-links { display: none; align-items: center; gap: 2.1rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link {
  position: relative; padding: .3rem 0;
  font-size: .8rem; font-weight: 600; letter-spacing: .03em; color: var(--white-mute);
  transition: color .35s var(--ease-out);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--gold-2); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { display: none; }
@media (min-width: 720px) { .nav-cta { display: inline-flex; } }
.nav-cta .btn { padding: .78rem 1.35rem; font-size: .72rem; }

.nav-burger {
  display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center;
  border: 1px solid var(--gold-line); border-radius: 50%;
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger-lines { position: relative; width: 16px; height: 10px; }
.nav-burger-lines span {
  position: absolute; left: 0; right: 0; height: 1px; background: var(--white-soft);
  transition: transform .35s var(--ease-out), opacity .3s var(--ease-out);
}
.nav-burger-lines span:first-child { top: 0; }
.nav-burger-lines span:last-child { bottom: 0; }
.nav-burger[aria-expanded="true"] .nav-burger-lines span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] .nav-burger-lines span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 400;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .7s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile a { font-size: 1.6rem; font-weight: 800; color: var(--white); }
.nav-mobile a:hover { color: var(--gold-2); }
.nav-mobile a.btn-gold {
  font-size: .82rem; font-weight: 700; color: #0A0700;
  margin-top: 1rem;
}
.nav-mobile a.btn-gold:hover { color: var(--bg); }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 3rem;
  overflow: hidden;
  background: var(--bg);
}
.hero-texture {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 82% 18%, rgba(201,162,39,0.10), transparent 60%),
    radial-gradient(55% 45% at 12% 85%, rgba(201,162,39,0.06), transparent 65%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; gap: 2.5rem; align-items: center;
  width: 100%;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 3.5rem; }
}
.hero-copy, .hero-photo-wrap { min-width: 0; }
.hero-eyebrow { margin-bottom: 1.3rem; }
.hero-title { color: var(--white); margin-bottom: 1.2rem; }
.hero-title .accent-gold { color: var(--gold-2); }
.hero-sub { margin-bottom: 1.9rem; }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 1.6rem; }
.hero-ctas .link-underline { color: var(--white-soft); }

.hero-photo-wrap {
  position: relative;
  max-width: 420px;
  width: 100%;
  margin-inline: auto;
}
.hero-photo-wrap::before {
  content: ""; position: absolute; z-index: 0;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--gold-line);
  border-radius: 26px;
}
.hero-photo {
  position: relative; z-index: 1;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

.hero-foot {
  position: relative; z-index: 1;
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
}
.hero-scroll-cue {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--white-dim);
}

/* =============================================================
   8. Reveal / split-text system
   ============================================================= */
/* Gated behind .js (set by an inline head script) so content is fully visible
   by default — including with JavaScript disabled — and only animates in for
   users whose browser actually runs the reveal script. */
.js [data-reveal] {
  opacity: 0; transform: translateY(34px);
  transition: opacity .85s var(--ease-soft), transform .85s var(--ease-soft);
}
.js [data-reveal].is-revealed { opacity: 1; transform: none; }
.js [data-reveal][data-split] { opacity: 1; transform: none; } /* defensive: split handles its own reveal */

.split-word, .split-char {
  display: inline-block;
  will-change: transform, opacity;
}

/* =============================================================
   9. About (02) — dark, photo + copy
   ============================================================= */
.about-grid {
  display: grid; gap: 2.75rem;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 4rem; align-items: center; } }
.about-photo, .about-text { min-width: 0; }
.about-photo {
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  max-width: 420px;
  margin-inline: auto;
}
@media (min-width: 900px) { .about-photo { margin-inline: 0; } }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.about-text .eyebrow { margin-bottom: 1.3rem; }
.about-text h2 { color: var(--white); margin-bottom: 1.4rem; }
.about-text .body-copy { margin-bottom: 1rem; }
.about-text .link-underline { margin-top: .8rem; }

/* =============================================================
   10. Services (03) — light
   ============================================================= */
.services-head { max-width: 700px; margin-bottom: 3.5rem; }
.services-head .eyebrow { color: #8a6f1c; margin-bottom: 1.2rem; }
.services-head .eyebrow::before { background: var(--gold-1); }

.services-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }

.service-card {
  position: relative; isolation: isolate; overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  padding: 2.1rem 1.8rem;
  background: var(--paper); color: var(--ink);
  transition: background-color .55s var(--ease-out), color .55s var(--ease-out), border-color .4s;
  min-height: 190px;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.service-card::before {
  content: ""; position: absolute; left: 1.8rem; right: 1.8rem; bottom: 0; height: 1px;
  background: var(--gold-1); transform: scaleX(0); transform-origin: left;
  transition: transform .55s var(--ease-out);
}
.service-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--gold-1);
  margin-bottom: 1.2rem; flex: none;
}
.service-icon svg {
  width: 22px; height: 22px;
  fill: none; stroke: var(--gold-2); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.service-card h3 { font-size: 1.08rem; margin-bottom: .55rem; }
.service-card p {
  font-size: .88rem; color: var(--ink-mute); line-height: 1.6;
  transition: color .5s var(--ease-out);
}
.service-card:hover {
  background: var(--ink); color: var(--white-soft);
  border-color: var(--ink);
}
.service-card:hover p { color: var(--white-mute); }
.service-card:hover::before { transform: scaleX(1); }

/* =============================================================
   11. Approach / Framework (04) — dark
   ============================================================= */
.framework-head { max-width: 640px; margin-bottom: 3.5rem; }
.framework-head .eyebrow { margin-bottom: 1.2rem; }
.framework-head h2 { color: var(--white); }

.approach-section .split-grid {
  display: grid; gap: 2rem; align-items: center;
  margin-top: 3.5rem;
}
@media (min-width: 900px) {
  .approach-section .split-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 4rem; }
  .approach-section .split-grid.is-reversed .split-photo { order: 2; }
}
.split-photo, .split-text-block { min-width: 0; }
.split-photo {
  aspect-ratio: 3 / 2; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line-dark);
}
.split-photo img { width: 100%; height: 100%; object-fit: cover; }
.split-text-block .eyebrow { margin-bottom: 1.1rem; }
.split-text-block h3 { color: var(--white); margin-bottom: 1rem; }
.split-text-block .body-copy { max-width: 46ch; }

/* =============================================================
   12. Mid CTA strip (05) — light, photo + copy
   ============================================================= */
.mid-cta-grid {
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 900px) { .mid-cta-grid { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 4rem; } }
.mid-cta-photo, .mid-cta-text { min-width: 0; }
.mid-cta-photo {
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  max-width: 380px;
  margin-inline: auto;
}
@media (min-width: 900px) { .mid-cta-photo { margin-inline: 0; } }
.mid-cta-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.mid-cta-text h2 { color: var(--ink); margin: 1rem 0 1.2rem; }
.mid-cta-text .body-copy { margin-bottom: 1.8rem; }

/* =============================================================
   13. FAQ (06) — dark
   ============================================================= */
.faq-head { max-width: 640px; margin-bottom: 3rem; }
.faq-head h2 { color: var(--white); }
.faq-list { border-top: 1px solid var(--line-dark); max-width: 880px; }
.faq-item { border-bottom: 1px solid var(--line-dark); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.6rem 0; text-align: left;
  font-size: 1.02rem; font-weight: 600; color: var(--white-soft);
}
.faq-q:hover { color: var(--gold-2); }
.faq-icon {
  flex: none; width: 26px; height: 26px; position: relative;
  color: var(--gold-2);
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: currentColor; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .4s var(--ease-out);
}
.faq-icon::before { width: 14px; height: 1.4px; }
.faq-icon::after { width: 1.4px; height: 14px; }
.faq-item[data-open="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .5s var(--ease-out), opacity .4s var(--ease-out), padding .5s var(--ease-out);
}
.faq-item[data-open="true"] .faq-a { max-height: 220px; opacity: 1; padding-bottom: 1.6rem; }
.faq-a p { color: var(--white-mute); font-size: .95rem; line-height: 1.7; max-width: 62ch; }

/* =============================================================
   14. Final CTA (07) — photo background
   ============================================================= */
.final-cta {
  position: relative; text-align: center; overflow: hidden;
  padding-block: clamp(6rem, 13vw, 11rem);
  color: var(--white-soft);
}
.final-cta-bg {
  position: absolute; inset: 0; z-index: 0;
}
.final-cta-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
}
.final-cta-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(60% 55% at 50% 40%, rgba(5,5,5,0.72), rgba(5,5,5,0.9) 70%),
    linear-gradient(180deg, rgba(5,5,5,0.93) 0%, rgba(5,5,5,0.9) 45%, rgba(5,5,5,0.97) 100%);
}
.final-cta-inner { position: relative; z-index: 2; max-width: 760px; margin-inline: auto; }
.final-cta .eyebrow { justify-content: center; margin-bottom: 1.6rem; }
.final-cta .eyebrow::before { display: none; }
.final-cta h2 { color: var(--white); margin-bottom: 1.6rem; }
.final-cta p.lede { margin: 0 auto 2.6rem; text-align: center; color: var(--white-mute); }
.final-cta-note {
  margin-top: 1.6rem; font-size: .78rem; letter-spacing: .06em; color: var(--white-dim);
}

/* =============================================================
   15. Footer
   ============================================================= */
.footer { background: var(--bg); border-top: 1px solid var(--line-dark); padding-block: 3.5rem 2.5rem; }
.footer-top {
  display: grid; gap: 2.5rem; padding-bottom: 2.5rem; margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-dark);
}
@media (min-width: 860px) { .footer-top { grid-template-columns: 1.2fr 1fr; align-items: start; } }
.footer-logo { display: flex; align-items: center; gap: .55rem; margin-bottom: .9rem; }
.footer-logo img { height: 46px; width: auto; }
.footer-tagline { font-size: .88rem; color: var(--white-dim); max-width: 34ch; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.6rem 2.2rem; }
.footer-links a { font-size: .84rem; color: var(--white-mute); transition: color .3s var(--ease-out); }
.footer-links a:hover { color: var(--gold-2); }

.footer-contact {
  display: grid; gap: 1.8rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 720px) { .footer-contact { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.footer-contact-item { display: flex; align-items: flex-start; gap: .9rem; }
.footer-contact-icon {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--gold-line);
  display: inline-flex; align-items: center; justify-content: center;
}
.footer-contact-icon svg {
  width: 17px; height: 17px; fill: none; stroke: var(--gold-2);
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.footer-contact-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: .35rem;
}
.footer-contact-value { font-size: .86rem; color: var(--white-mute); line-height: 1.55; }
.footer-contact-value a { color: var(--white-mute); transition: color .3s var(--ease-out); }
.footer-contact-value a:hover { color: var(--gold-2); }

.footer-bottom {
  display: flex; flex-direction: column; gap: 1.2rem;
}
@media (min-width: 720px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: flex-start; } }
.footer-copy { font-size: .76rem; color: var(--white-dim); }
.footer-disclaimer { font-size: .72rem; color: var(--white-dim); line-height: 1.6; max-width: 56ch; }

/* =============================================================
   16. Tilt (JS-driven custom property)
   ============================================================= */
.has-tilt {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
}

/* =============================================================
   17. Reduced motion — intrusive effects only
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .final-cta-bg img { transform: none; }
}
