/* ==========================================================================
   SALVADOR OLAGUE — cinematic scroll portfolio
   Colors: ink #080808 · cream #F5F0E8 · accent #17FCF9 · gray #666 (+light tint #A9A9B2)
   Display: Bebas Neue · Body: Inter
   ========================================================================== */

:root {
  --ink: #080808;
  --cream: #F5F0E8;
  --accent: #17FCF9;
  --gray: #666;
  --gray-light: #A9A9B2; /* captions / small labels — readable on ink */
  --display: "Bebas Neue", "Barlow Condensed", sans-serif;
  --body: "Inter", -apple-system, sans-serif;
  --pad: clamp(20px, 5vw, 96px);
}

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

html { scrollbar-width: thin; scrollbar-color: #333 var(--ink); }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: -40%;
  z-index: 9999;
  pointer-events: none;
  opacity: .05;
  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'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0) }
  20% { transform: translate(-3%,2%) }
  40% { transform: translate(2%,-3%) }
  60% { transform: translate(-2%,-2%) }
  80% { transform: translate(3%,3%) }
}

::selection { background: var(--accent); color: var(--ink); }

a { color: inherit; text-decoration: none; }
img, video, canvas { display: block; max-width: 100%; }

a:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

/* shared bits ------------------------------------------------------------ */
.eyebrow {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: clamp(24px, 4vh, 48px);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 150px);
  line-height: .92;
  letter-spacing: .01em;
  color: var(--cream);
}

.section-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,8,.82) 0%, rgba(8,8,8,.62) 50%, rgba(8,8,8,.92) 100%);
}

.bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.5) saturate(.85);
}
.bg-video.is-missing { display: none; } /* graceful fallback until videos exist */

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad);
}
.nav__logo img { width: 44px; height: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.6)); }
.nav__links {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  color: var(--cream);
  opacity: .85;
  transition: opacity .3s;
  text-shadow: 0 1px 6px rgba(0,0,0,.7);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s cubic-bezier(.65,0,.35,1);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ============ 1. HERO ============ */
.hero { position: relative; height: 300vh; } /* scroll runway for scene scrub */
.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 45%, rgba(8,8,8,.6) 100%),
    linear-gradient(180deg, rgba(8,8,8,.35) 0%, transparent 30%, transparent 75%, rgba(8,8,8,.85) 100%);
}

.hero__content {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-58%);
  text-align: center;
  padding: 0 var(--pad);
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(72px, 15vw, 240px);
  line-height: .85;
  letter-spacing: .02em;
  font-weight: 400;
  text-shadow: 0 0 60px rgba(8,8,8,.8);
}
.hero__line { display: block; }
.hero__line--accent {
  color: var(--accent);
  text-shadow: 0 0 44px rgba(23,252,249,.35);
}
.word { display: inline-block; white-space: nowrap; }
.char { display: inline-block; will-change: transform, opacity; }

.hero__sub {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gray-light); /* lighter caption gray — readable over dark scene */
}
.hero__sub-item { display: inline-block; }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); opacity: 0 }
  40% { transform: scaleY(1); opacity: 1 }
  100% { transform: scaleY(1) translateY(24px); opacity: 0 }
}

/* ============ 2. STATS ============ */
.stats {
  padding: clamp(80px, 14vh, 160px) var(--pad);
  border-top: 1px solid rgba(245,240,232,.08);
  border-bottom: 1px solid rgba(245,240,232,.08);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--display);
  font-size: clamp(56px, 6.5vw, 104px);
  line-height: 1;
  color: var(--cream);
}
.stat__label {
  display: block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-light);
}

/* ============ 3. PILLARS ============ */
.pillars { position: relative; height: 400vh; } /* pin runway: 3 steps */
.pillars__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.pillars__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--pad);
  max-width: 1100px;
}
.pillars__list { position: relative; min-height: 52vh; }
.pillar {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
}
.pillar__head {
  display: flex;
  align-items: center;
  gap: 22px;
}
.pillar__num {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  color: var(--accent);
  letter-spacing: .1em;
}
.pillar__icon {
  width: clamp(44px, 4.4vw, 64px);
  height: clamp(44px, 4.4vw, 64px);
  color: var(--accent);
  filter: drop-shadow(0 0 12px rgba(23,252,249,.35));
}
.icon-draw {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
}
.pillar.is-active .icon-draw {
  animation: iconDraw 1.4s cubic-bezier(.65,0,.35,1) forwards;
}
@keyframes iconDraw { to { stroke-dashoffset: 0 } }
.pillar__title {
  font-family: var(--display);
  font-size: clamp(80px, 12vw, 200px);
  line-height: .9;
  text-transform: uppercase;
  margin: 8px 0 20px;
}
.pillar__pitch {
  max-width: 520px;
  font-size: clamp(15px, 1.3vw, 19px);
  color: var(--cream);
  opacity: .82;
}

/* ============ 4. CASE STUDY ============ */
.case {
  padding: clamp(100px, 16vh, 200px) var(--pad);
  border-bottom: 1px solid rgba(245,240,232,.08);
}
.case__inner { max-width: 1400px; margin: 0 auto; }
.case__lede {
  margin-top: 28px;
  max-width: 640px;
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--gray-light);
}
.case__lede strong { color: var(--accent); font-weight: 600; }

.case__stats {
  margin-top: clamp(40px, 7vh, 72px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(245,240,232,.1);
  border-bottom: 1px solid rgba(245,240,232,.1);
  padding: clamp(28px, 4vh, 44px) 0;
}
.case-stat { text-align: center; }
.case-stat__num {
  display: block;
  font-family: var(--display);
  font-size: clamp(40px, 4.6vw, 76px);
  line-height: 1;
  color: var(--accent);
}
.case-stat__label {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.case__grid {
  margin-top: clamp(48px, 8vh, 88px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4.5vw, 72px);
  align-items: start;
}
.case__media { display: grid; gap: 18px; }
.case__media img, .case__proof {
  width: 100%;
  border: 1px solid rgba(245,240,232,.1);
  aspect-ratio: 16/10;
  object-fit: cover;
}
.case__media img[data-missing] { display: none; }
.case__h3 {
  font-family: var(--display);
  font-size: clamp(26px, 2.4vw, 38px);
  letter-spacing: .03em;
  color: var(--cream);
  margin-top: 34px;
}
.case__h3:first-child { margin-top: 0; }
.case__list { list-style: none; margin-top: 16px; }
.case__list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--cream);
  opacity: .85;
}
.case__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.case__p { margin-top: 14px; font-size: 15px; color: var(--gray-light); }

/* ============ 5. WORK ============ */
.work { position: relative; padding: clamp(100px, 16vh, 200px) var(--pad); }
.work__bg { position: absolute; inset: 0; overflow: hidden; }
.work__inner { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; }
.work__cards {
  margin-top: clamp(48px, 8vh, 96px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
}
.card {
  display: block;
  background: rgba(8,8,8,.72);
  border: 1px solid rgba(245,240,232,.1);
  overflow: hidden;
  transition: transform .5s cubic-bezier(.22,1,.36,1), border-color .5s, box-shadow .5s;
}
.card:hover {
  transform: scale(1.02) translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(23,252,249,.18);
}
.card__media {
  aspect-ratio: 16/10;
  background: #101010 url("./images/logo.png") center/38% no-repeat;
  overflow: hidden;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.card__media img[data-missing] { display: none; }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 26px 26px 30px; }
.card__title {
  font-family: var(--display);
  font-size: clamp(26px, 2.4vw, 36px);
  letter-spacing: .03em;
  line-height: 1;
}
.card__pitch { margin-top: 12px; font-size: 14px; color: var(--gray-light); }
.card__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* work index — editorial rows */
.work-index { margin-top: clamp(64px, 10vh, 120px); }
.work-index__title {
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 48px);
  letter-spacing: .03em;
  margin-bottom: 24px;
}
.work-index__list { list-style: none; border-top: 1px solid rgba(245,240,232,.12); }
.work-index__list li { border-bottom: 1px solid rgba(245,240,232,.12); }
.work-index__list a {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 16px 8px;
  transition: background .3s, padding-left .3s;
}
.work-index__list a:hover {
  background: rgba(23,252,249,.05);
  padding-left: 18px;
}
.wi-name { font-family: var(--display); font-size: clamp(20px, 1.8vw, 28px); letter-spacing: .04em; }
.wi-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.wi-arrow { color: var(--accent); transition: transform .3s; }
.work-index__list a:hover .wi-arrow { transform: translate(3px, -3px); }
.work-index__all {
  display: inline-block;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}
.work-index__all:hover { text-decoration: underline; }

/* ============ 6. ABOUT ============ */
.about { padding: clamp(100px, 18vh, 220px) var(--pad); }
.about__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 6vw, 100px);
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}
.about__media { display: grid; gap: 18px; }
.about__shot { display: none; }
.about__shot.has-img { display: block; }
.about__shot img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid rgba(245,240,232,.1);
}
.about__shot figcaption {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.about__portrait {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.02);
  will-change: transform;
}
.about__copy .reveal-line { overflow: hidden; }
.about__copy .reveal-line p {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 54px);
  line-height: 1.12;
  letter-spacing: .02em;
  color: var(--cream);
  transform: translateY(110%);
  will-change: transform;
  padding-bottom: .08em;
}
.about__copy .reveal-line + .reveal-line { margin-top: clamp(14px, 2.4vh, 28px); }
.about__copy .reveal-line:nth-child(odd) p { color: var(--gray-light); }

.about__signature {
  display: inline-block;
  position: relative;
  margin-top: clamp(36px, 6vh, 64px);
  font-family: var(--display);
  font-size: clamp(34px, 3vw, 48px);
  color: var(--accent);
  letter-spacing: .06em;
  transform: rotate(-2deg);
}
.about__signature::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}
.about__signature.is-drawn::after {
  animation: drawLine 1.2s cubic-bezier(.65,0,.35,1) forwards;
}
@keyframes drawLine { to { transform: scaleX(1) } }

/* ============ 7. TESTIMONIALS ============ */
.quotes {
  padding: clamp(100px, 16vh, 200px) var(--pad);
  border-top: 1px solid rgba(245,240,232,.08);
}
.quotes .eyebrow { text-align: center; }

.quotes__videos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  justify-content: center;
  gap: clamp(20px, 2.5vw, 40px);
  margin-bottom: clamp(40px, 7vh, 72px);
}
.vcard {
  border: 1px solid rgba(245,240,232,.12);
  background: rgba(245,240,232,.02);
  padding: 14px;
  transition: border-color .4s, box-shadow .4s;
}
.vcard:hover { border-color: var(--accent); box-shadow: 0 0 32px rgba(23,252,249,.12); }
.vcard video {
  width: 100%;
  aspect-ratio: 9/13;
  object-fit: cover;
  background: #000;
}
.vcard figcaption {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
}

.quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
  max-width: 1400px;
  margin: 0 auto;
}
.quote {
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid rgba(245,240,232,.1);
  background: linear-gradient(160deg, rgba(245,240,232,.03), transparent 60%);
  opacity: 0;
  transform: translateY(48px);
}
.quote p {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
  color: var(--cream);
}
.quote cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============ 8. FINALE ============ */
.finale {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(100px, 10vh, 160px) var(--pad) 0;
  position: relative;
}
.finale__title {
  font-family: var(--display);
  font-size: clamp(64px, 13vw, 220px);
  line-height: .9;
}
.finale__title .char { display: inline-block; will-change: transform, opacity; }
.finale__sub {
  margin-top: 24px;
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--gray-light);
  letter-spacing: .04em;
}
.finale__actions {
  margin-top: clamp(36px, 6vh, 60px);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-block;
  padding: 18px 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  transition: background .35s, color .35s, box-shadow .35s, transform .35s;
}
.btn--primary { background: var(--accent); color: var(--ink); }
.btn--primary:hover { background: transparent; color: var(--cream); box-shadow: 0 0 32px rgba(23,252,249,.35); transform: translateY(-2px); }
.btn--ghost { color: var(--cream); border-color: rgba(245,240,232,.25); }
.btn--ghost:hover { border-color: var(--accent); box-shadow: 0 0 32px rgba(23,252,249,.2); transform: translateY(-2px); }

.footer {
  margin-top: auto;
  padding: clamp(48px, 8vh, 96px) 0 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.footer a:hover { color: var(--accent); }
.footer__dot { color: var(--accent); }

/* ==========================================================================
   TABLET — 768px to 1023px
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1023px) {
  .stats__grid { grid-template-columns: repeat(3, 1fr); gap: 48px 24px; }
  .case__stats { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .case__grid { grid-template-columns: 1fr; gap: 48px; }
  .work__cards { grid-template-columns: repeat(2, 1fr); }
  .work__cards .card:last-child { grid-column: 1 / -1; max-width: 60%; margin: 0 auto; width: 100%; }
  .quotes__grid { grid-template-columns: repeat(2, 1fr); }
  .quotes__grid .quote:last-child { grid-column: 1 / -1; max-width: 60%; margin: 0 auto; width: 100%; }
  .about__grid { gap: 40px; }
}

/* ==========================================================================
   MOBILE — designed for 375px, not shrunk
   ========================================================================== */
@media (max-width: 767px) {

  .nav { padding: 16px 20px; }
  .nav__logo img { width: 36px; }
  .nav__links { gap: 18px; font-size: 11px; }

  .eyebrow { text-align: center; }
  .section-title { font-size: clamp(40px, 12vw, 60px); text-align: center; }

  /* hero: single viewport, scene animates on time (no scrub runway) */
  .hero { height: 100svh; }
  .hero__sticky { position: relative; height: 100svh; }
  .hero__content { top: 50%; transform: translateY(-56%); }
  .hero__title { font-size: clamp(56px, 18vw, 88px); }
  .hero__sub { flex-direction: column; gap: 6px; margin-top: 22px; }

  .stats { padding: 72px 20px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 44px 16px; }
  .stat:last-child { grid-column: 1 / -1; }

  /* pillars: static stacked cards, centered, dark backdrop */
  .pillars { height: auto; }
  .pillars__sticky { position: relative; height: auto; overflow: visible; }
  .pillars__video { display: none; }
  .pillars__sticky .section-scrim { background: rgba(8,8,8,1); }
  .pillars__inner { padding: 88px 20px; }
  .pillars__list { min-height: 0; }
  .pillar { position: relative; opacity: 1; visibility: visible; text-align: center; }
  .pillar__head { justify-content: center; }
  .pillar__pitch { margin: 0 auto; }
  .pillar + .pillar { margin-top: 64px; }
  .pillar__title { font-size: clamp(56px, 18vw, 84px); }

  .case { padding: 88px 20px; }
  .case__lede { text-align: center; margin-left: auto; margin-right: auto; }
  .case__stats { grid-template-columns: repeat(2, 1fr); gap: 32px 12px; }
  .case__grid { grid-template-columns: 1fr; gap: 40px; }
  .case__h3 { text-align: center; }
  .case__p { text-align: center; }

  /* work: static bg, stacked cards */
  .work { padding: 88px 20px; }
  .work__video { display: none; }
  .work__bg .section-scrim { background: rgba(8,8,8,.96); }
  .work__cards { grid-template-columns: 1fr; gap: 24px; }
  .work-index__title { text-align: center; }
  .work-index__all { display: block; text-align: center; }
  .work-index__list a { grid-template-columns: 1fr auto; }
  .wi-meta { display: none; }

  .about { padding: 88px 20px; }
  .about__grid { grid-template-columns: 1fr; gap: 44px; }
  .about__copy { text-align: center; }
  .about__copy .reveal-line p { font-size: clamp(24px, 7.4vw, 32px); }

  .quotes { padding: 88px 20px; }
  .quotes__videos { grid-template-columns: 1fr; justify-items: center; }
  .vcard { width: min(100%, 320px); }
  .quotes__grid { grid-template-columns: 1fr; gap: 20px; }
  .quote { text-align: center; }

  .finale { min-height: 100svh; padding: 100px 20px 0; }
  .finale__title { font-size: clamp(44px, 14vw, 72px); }
  .finale__actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; text-align: center; }
}

/* reduced motion: kill animation, show everything */
@media (prefers-reduced-motion: reduce) {
  body::after { animation: none; }
  .hero__scroll-line { animation: none; }
  .pillar { position: relative; opacity: 1 !important; visibility: visible !important; }
  .pillar .icon-draw { stroke-dashoffset: 0; }
  .quote { opacity: 1; transform: none; }
  .about__copy .reveal-line p { transform: none; }
}
