:root {
  --ink: #1d1d1f;
  --ink-soft: #424245;
  --muted: #6e6e73;
  --faint: #86868b;
  --paper: #ffffff;
  --paper-2: #f5f5f7;
  --line: #d2d2d7;
  --line-soft: #e8e8ed;
  --dark: #1d1d1f;
  --dark-2: #000000;
  --white: #ffffff;
  --font-display: "Clash Display", "Satoshi", -apple-system, sans-serif;
  --font-body: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 50px -24px rgba(0, 0, 0, 0.22);
  --shadow-soft: 0 8px 30px -16px rgba(0, 0, 0, 0.16);
  --max: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ---------- Typography helpers ---------- */
.section-eyebrow,
.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: var(--faint);
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.section-lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 46ch;
  margin-top: 1.1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { background: #000; transform: translateY(-1px); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.45); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255,255,255,0.7); transform: translateY(-1px); }
.btn-lg { padding: 1rem 2.1rem; font-size: 1.02rem; }

/* On dark sections, the primary button inverts to white */
.hero .btn-primary,
.projects .btn-primary {
  background: #fff;
  color: var(--ink);
}
.hero .btn-primary:hover,
.projects .btn-primary:hover { background: rgba(255, 255, 255, 0.86); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: inline-flex; align-items: center; gap: 0.6rem; }
.logo-mark {
  width: 40px; height: 40px;
  object-fit: contain;
  display: block;
  filter: grayscale(1) brightness(0.25);
}
.logo-mark--footer {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  transition: color 0.2s;
}
.nav a:not(.nav-cta):hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  transition: background 0.2s;
}
.nav-cta:hover { background: #000; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  width: 24px; height: 2px; background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-video {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.28) 42%, rgba(0,0,0,0.82) 100%);
}
.hero-inner {
  padding: clamp(5rem, 13vw, 9.5rem) 28px clamp(6rem, 14vw, 10rem);
  max-width: var(--max);
}
.hero .eyebrow { color: rgba(255, 255, 255, 0.72); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  line-height: 1.0;
  letter-spacing: -0.035em;
  max-width: 15ch;
}
.hero-title span { color: #fff; }
.hero-sub {
  margin-top: 1.6rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 50ch;
}
.hero-actions { margin-top: 2.4rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.6);
}
.hero-scroll span {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.8));
  animation: scrollPulse 2s var(--ease) infinite;
}
.hero-scroll p { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ---------- Sections base ---------- */
section { padding: clamp(4.5rem, 10vw, 7.5rem) 0; }

/* ---------- Pillars ---------- */
.pillars { background: var(--paper); }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
.pillar {
  background: var(--paper-2);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); background: #fff; border-color: var(--line-soft); }
.pillar-num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--faint);
  font-weight: 600;
}
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0.9rem 0 0.6rem;
}
.pillar p { color: var(--muted); }

/* ---------- About ---------- */
.about { background: var(--paper-2); }
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}
.about-copy p { color: var(--ink-soft); margin-top: 1.1rem; font-size: 1.08rem; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.6rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--muted); margin-top: 0.5rem; display: block; }
.about-visual { display: grid; place-items: center; }
.about-card {
  background: linear-gradient(158deg, #2c2c2e 0%, #1d1d1f 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  width: 100%;
  min-height: 320px;
  display: grid;
  align-items: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 80% 0%, rgba(255,255,255,0.08), transparent 60%);
}
.about-card span {
  position: relative;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

/* ---------- Leadership ---------- */
.leadership { background: var(--paper); }
.leader-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}
.leader {
  display: flex;
  gap: 1.4rem;
  background: var(--paper-2);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), background 0.35s, border-color 0.35s;
}
.leader:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); background: #fff; border-color: var(--line-soft); }
.leader-avatar {
  flex: 0 0 132px;
  width: 132px; height: 132px;
  border-radius: 22px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 8px 22px -12px rgba(0, 0, 0, 0.4);
}
.leader-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; }
.leader-role {
  color: var(--faint);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin: 0.3rem 0 0.8rem;
}
.leader-body p:last-child { color: var(--muted); font-size: 0.97rem; }

/* ---------- Projects ---------- */
.projects { background: var(--dark); color: #fff; }
.projects .section-eyebrow { color: rgba(255, 255, 255, 0.55); }
.projects .section-title { color: #fff; }
.project-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.project-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
.project-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.project-tag {
  position: absolute; top: 1.4rem; left: 1.4rem;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.project-copy { padding: 2.5rem 2.5rem 2.5rem 0; }
.project-copy h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.15; }
.project-by { color: rgba(255,255,255,0.55); font-weight: 600; margin: 0.5rem 0 1.2rem; }
.project-copy p { color: rgba(255,255,255,0.78); margin-bottom: 1.8rem; }

.project-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: clamp(150px, 17vw, 235px);
  grid-auto-flow: dense;
  gap: 16px;
  margin-top: 3rem;
}
/* Bento mosaic — tiles fit edge to edge with no gaps */
.g-a { grid-column: span 4; grid-row: span 2; }
.g-b { grid-column: span 2; }
.g-c { grid-column: span 2; }
.g-d { grid-column: span 2; grid-row: span 2; }
.g-e { grid-column: span 4; }
.g-f { grid-column: span 2; }
.g-g { grid-column: span 2; }
.g-h { grid-column: span 6; }

.project-shot {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 60px -42px rgba(0, 0, 0, 0.9);
  transform-style: preserve-3d;
  will-change: transform;
}
/* Hover highlight ring */
.project-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0);
  transition: box-shadow 0.45s var(--ease);
  pointer-events: none;
  z-index: 3;
}
.project-shot:hover::after { box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.4); }
.project-shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease), filter 0.6s var(--ease);
  filter: saturate(1.03);
}
.project-shot:hover img { transform: scale(1.07); }
.project-shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.4rem 1.5rem 1.3rem;
  color: #fff;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 8%,
    rgba(0, 0, 0, 0.28) 55%,
    transparent
  );
  transform: translateY(10px);
  transition: transform 0.5s var(--ease);
  z-index: 2;
}
.project-shot:hover figcaption { transform: translateY(0); }
.project-shot .cap-k {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.4rem;
}
.project-shot .cap-t {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

/* ---------- Facilities ---------- */
.facilities { background: var(--paper); }
.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
.facility {
  background: var(--paper-2);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 2rem 1.9rem 2.1rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.35s, border-color 0.35s;
}
.facility:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  background: #fff;
  border-color: var(--line-soft);
}
.facility-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid var(--line-soft);
  color: var(--ink);
  margin-bottom: 1.3rem;
  box-shadow: 0 6px 16px -12px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s var(--ease);
}
.facility:hover .facility-ico { transform: translateY(-2px) scale(1.04); }
.facility-ico svg { width: 24px; height: 24px; display: block; }
.facility h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.facility p { color: var(--muted); margin-top: 0.55rem; font-size: 0.97rem; }

@media (max-width: 900px) { .facility-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .facility-grid { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact { background: var(--paper-2); text-align: center; }
.contact-inner { max-width: 720px; margin: 0 auto; }
.contact h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.contact p { color: var(--muted); font-size: 1.15rem; margin: 1.1rem 0 2.2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 3rem 0; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.6rem; color: #fff; }
.footer-nav { display: flex; gap: 1.8rem; }
.footer-nav a { font-size: 0.95rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-nav a:hover { color: #fff; }
.footer-copy { font-size: 0.9rem; opacity: 0.6; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--line-soft);
    padding: 0.5rem 0 1.2rem;
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease);
    box-shadow: var(--shadow);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 0.9rem 28px; width: 100%; }
  .nav-cta { margin: 0.6rem 28px; text-align: center; }
  .menu-toggle { display: flex; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .pillar-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .leader-grid { grid-template-columns: 1fr; }
  .project-feature { grid-template-columns: 1fr; }
  .project-media { min-height: 240px; }
  .project-copy { padding: 2rem; }
  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(150px, 30vw, 200px);
  }
  .g-a { grid-column: span 2; grid-row: span 2; }
  .g-d { grid-column: span 2; grid-row: span 1; }
  .g-e, .g-h { grid-column: span 2; }
  .g-b, .g-c, .g-f, .g-g { grid-column: span 1; grid-row: span 1; }
  .stat-row { grid-template-columns: 1fr; gap: 1.2rem; }
}

@media (max-width: 560px) {
  .project-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(200px, 60vw, 260px);
  }
  .project-gallery > * {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

@media (max-width: 480px) {
  .leader { flex-direction: column; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   BLING — animations, interactions, WebGL
   ============================================================ */

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #1d1d1f, #86868b);
  z-index: 100;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ---------- Header scroll states ---------- */
.site-header {
  transition: transform 0.4s var(--ease), height 0.3s var(--ease),
    background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 10px 30px -22px rgba(0, 0, 0, 0.4);
}
.site-header.scrolled .header-inner { height: 60px; }
.header-inner { transition: height 0.3s var(--ease); }
.site-header.hide { transform: translateY(-100%); }

/* ---------- Nav underline grow ---------- */
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -4px;
  height: 1.5px;
  background: var(--ink);
  transition: right 0.3s var(--ease);
}
.nav a:not(.nav-cta):hover::after { right: 0; }

/* ---------- Magnetic + shine buttons ---------- */
.btn {
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.6s var(--ease);
  pointer-events: none;
}
.btn:hover::after { left: 140%; }
.btn-primary.btn::after { background: linear-gradient(100deg, transparent, rgba(255,255,255,0.25), transparent); }

/* ---------- Text intro (hero words + sections) handled by motion.js ---------- */
.mword { display: inline-block; will-change: transform, opacity; }

/* ---------- 3D tilt cards ---------- */
.pillar, .leader, .project-shot {
  transform-style: preserve-3d;
  will-change: transform;
}
.tilt-sheen {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  background: radial-gradient(
    220px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.45),
    transparent 60%
  );
  z-index: 1;
}
.pillar, .leader, .facility { position: relative; }
.pillar:hover .tilt-sheen,
.leader:hover .tilt-sheen,
.facility:hover .tilt-sheen { opacity: 1; }
/* darker sheen reads better on the dark gallery */
.project-shot .tilt-sheen {
  background: radial-gradient(
    260px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.22),
    transparent 60%
  );
}
.project-shot:hover .tilt-sheen { opacity: 1; }

/* ---------- Cursor spotlight on dark sections ---------- */
.spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  background: radial-gradient(
    600px circle at var(--sx, 50%) var(--sy, 50%),
    rgba(255, 255, 255, 0.08),
    transparent 55%
  );
}
.projects { position: relative; }
.projects:hover .spotlight { opacity: 1; }
.projects .container { position: relative; z-index: 1; }

/* keep hero content above its spotlight */
.hero .spotlight {
  z-index: 1;
  mix-blend-mode: screen;
  background: radial-gradient(
    700px circle at var(--sx, 50%) var(--sy, 50%),
    rgba(255, 255, 255, 0.12),
    transparent 55%
  );
}
.hero-inner { position: relative; z-index: 2; }
.hero:hover .spotlight { opacity: 1; }

/* ---------- Stat count-up ---------- */
.stat-num { font-variant-numeric: tabular-nums; }

/* ---------- WebGL contact backdrop ---------- */
.contact { position: relative; overflow: hidden; }
.contact-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.9;
  pointer-events: none;
}
.contact-inner { position: relative; z-index: 1; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress,
  .tilt-sheen,
  .spotlight,
  .contact-canvas { display: none !important; }
  .hero-title .word > span,
  .hero .eyebrow,
  .hero-sub,
  .hero-actions { transform: none !important; opacity: 1 !important; }
  .btn::after { display: none; }
  * { scroll-behavior: auto !important; }
}
