/* ============================================================
   akajlu.com — styles
   Dark, big display type, smooth motion. Video-first.
   ============================================================ */

:root {
  --bg: #0a0a0b;
  --bg-soft: #101013;
  --ink: #f2f0ec;
  --muted: #8d8d96;
  --line: rgba(242, 240, 236, 0.12);
  --accent: #ff5c33;
  --font: "Archivo", system-ui, -apple-system, sans-serif;
  --mono: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, monospace;
  --pad: clamp(1.25rem, 5vw, 5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* clip, not hidden — hidden makes body a scroll container and
     breaks anchor scrolling (#works links would do nothing) */
  overflow-x: clip;
}

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

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

.mono {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- display type ---------- */
.display {
  font-weight: 800;
  font-stretch: 118%;
  letter-spacing: -0.02em;
  line-height: 0.92;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem var(--pad);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-logo {
  font-weight: 900;
  font-stretch: 120%;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  color: var(--muted);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  /* full window: the clip plays edge to edge like before.
     vh first as a fallback for browsers without svh support. */
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media video {
  /* cover: the clip fills the whole window edge to edge */
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-media video.active { opacity: 1; }

/* fallback when no clips are present yet */
.hero.no-video .hero-media {
  background:
    radial-gradient(120% 90% at 15% 10%, #1c1c22 0%, transparent 55%),
    radial-gradient(100% 80% at 90% 85%, #16161c 0%, transparent 50%),
    linear-gradient(160deg, #0f0f13 0%, #0a0a0b 60%);
}
.hero.no-video .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 45% at 70% 30%, rgba(255, 92, 51, 0.07), transparent 70%);
  animation: heroGlow 9s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { transform: translate3d(-3%, -2%, 0) scale(1); opacity: 0.7; }
  to   { transform: translate3d(3%, 3%, 0) scale(1.08); opacity: 1; }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 10, 11, 0.95) 0%, rgba(10, 10, 11, 0.6) 45%, rgba(10, 10, 11, 0.3) 100%);
  pointer-events: none;
}
.hero-grain {
  position: absolute;
  inset: -50%;
  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)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  animation: grain 1.2s steps(4) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad) clamp(5rem, 12vh, 8rem);
  width: 100%;
}

.hero-name {
  font-weight: 900;
  font-stretch: 122%;
  font-size: clamp(5rem, 19vw, 17rem);
  line-height: 0.82;
  letter-spacing: -0.04em;
  margin-left: -0.05em;
  animation: riseIn 1.1s var(--ease) both;
}
.hero-title {
  margin-top: 3rem;
  /* same mono treatment as the corner caption */
  font-family: var(--mono);
  font-size: clamp(0.8rem, 1.35vw, 1.02rem);
  line-height: 1.95;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 240, 236, 0.82);
  max-width: 54rem;
  animation: riseIn 1.1s 0.15s var(--ease) both;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 2.4rem;
  flex-wrap: wrap;
  animation: riseIn 1.1s 0.3s var(--ease) both;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(2.2rem); }
  to   { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent); color: var(--bg); }
.btn-ghost {
  border-color: rgba(242, 240, 236, 0.35);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); }

.hero-caption {
  position: absolute;
  z-index: 2;
  left: var(--pad);
  bottom: 1.6rem;
  color: rgba(242, 240, 236, 0.75);
  transition: opacity 0.5s;
}
.hero-caption.fading { opacity: 0; }
.hero-caption::before {
  content: "● ";
  color: var(--accent);
  font-size: 0.6em;
  vertical-align: 2px;
  animation: recBlink 1.6s steps(1) infinite;
}
@keyframes recBlink { 50% { opacity: 0.15; } }

.hero-index {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: 1.6rem;
}
.hero-scroll {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: 5rem;
  writing-mode: vertical-rl;
  animation: scrollNudge 2.4s ease-in-out infinite;
}
@keyframes scrollNudge {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
  background: var(--bg);
}
.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-weight: 750;
  font-stretch: 116%;
  font-size: clamp(1.1rem, 2.4vw, 1.8rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(242, 240, 236, 0.5);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */
.section {
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
  max-width: 1600px;
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
}
.section-num { color: var(--accent); }
.section-title {
  font-weight: 850;
  font-stretch: 120%;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.about-portrait {
  margin: 0;
  position: sticky;
  top: 6rem;
}
.about-portrait video {
  width: 100%;
  aspect-ratio: 900 / 1366;
  object-fit: cover;
  border-radius: 8px;
  background: var(--bg-soft);
  filter: saturate(0.9) contrast(1.03);
}
.about-body {
  max-width: 60rem;
}
.about-lede {
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.about-follow {
  margin-top: 2rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--muted);
  max-width: 44rem;
}

/* ---------- works ---------- */
.works-intro {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--muted);
  max-width: 40rem;
  margin-bottom: clamp(3rem, 7vh, 5rem);
}

.category { margin-bottom: clamp(4rem, 9vh, 6.5rem); }
.category.solo { border-top: 1px solid var(--line); padding-top: clamp(2rem, 5vh, 3rem); }
.category-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  margin-bottom: 2rem;
}
.category-name {
  font-weight: 800;
  font-stretch: 116%;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.category-blurb {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 34rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 21rem), 1fr));
  gap: 2rem 1.5rem;
}

.card {
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  text-align: left;
  padding: 0;
}
.card-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bg-soft);
}
.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.7s var(--ease), filter 0.5s;
  filter: saturate(0.92);
}
.card:hover .card-thumb img,
.card:focus-visible .card-thumb img {
  transform: scale(1.06);
  filter: saturate(1.05);
}
.card-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(10, 10, 11, 0.25);
  opacity: 0;
  transition: opacity 0.35s;
}
.card:hover .card-play,
.card:focus-visible .card-play { opacity: 1; }
.card-thumb.placeholder {
  background:
    radial-gradient(80% 90% at 30% 20%, #1a1a20 0%, transparent 60%),
    var(--bg-soft);
}
.card-thumb.placeholder .card-play { opacity: 0.65; }
.card-play span {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(242, 240, 236, 0.94);
  color: var(--bg);
  font-size: 0.9rem;
  padding-left: 3px;
}
.card-title {
  margin-top: 0.9rem;
  font-weight: 650;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.card-meta { margin-top: 0.35rem; }

.category-empty {
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 2.2rem 2rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 40rem;
}
.category-empty a { color: var(--ink); border-bottom: 1px solid var(--accent); }

/* ---------- contact ---------- */
.contact { text-align: left; }
.contact-line {
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  max-width: 36rem;
  margin-bottom: 2.6rem;
}
.contact-email {
  display: inline-block;
  font-weight: 650;
  font-size: clamp(1.3rem, 3.4vw, 2.4rem);
  letter-spacing: -0.01em;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.2rem;
  transition: color 0.3s;
}
.contact-email:hover { color: var(--accent); }
.contact-links {
  display: flex;
  gap: 2.2rem;
  margin-top: 3rem;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contact-links a {
  color: var(--muted);
  transition: color 0.3s;
}
.contact-links a:hover { color: var(--ink); }

/* ---------- footer ---------- */
.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem var(--pad);
  border-top: 1px solid var(--line);
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(6, 6, 7, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  transition: opacity 0.35s;
}
.lightbox[hidden] { display: none; }
.lightbox.open { opacity: 1; }
.lightbox-frame {
  width: min(100%, 1100px);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}
.lightbox-frame iframe,
.lightbox-frame video {
  width: 100%;
  height: 100%;
  border: 0;
}
.lightbox-close {
  position: absolute;
  top: 1.4rem;
  right: var(--pad);
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.lightbox-close:hover { background: var(--ink); color: var(--bg); }
.lightbox-meta { margin-top: 1.1rem; }

/* ---------- hero proof line ---------- */
.hero-proof {
  margin-top: 0.9rem;
  color: rgba(242, 240, 236, 0.55);
  animation: riseIn 1.1s 0.22s var(--ease) both;
}

/* ---------- featured ---------- */
.featured { margin-bottom: clamp(4rem, 9vh, 6.5rem); }
.featured-label {
  color: var(--accent);
  margin-bottom: 1.4rem;
}

/* ---------- work rows: caption beside the video ---------- */
.work-list {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vh, 4rem);
}
.work-row {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}
.work-row.vertical {
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
}
.work-media {
  display: block;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.work-row.vertical .work-media { max-width: 22rem; }
.card-thumb.vertical { aspect-ratio: 9 / 16; }
.card-thumb.vertical img.crop-wide { transform: scale(1.35); }

.work-name {
  font-weight: 750;
  font-stretch: 112%;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.work-year {
  margin: 0.4rem 0 1.1rem;
}
.cap-line {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0.55rem;
  max-width: 34rem;
}
.cap-label {
  display: inline-block;
  color: var(--accent);
  margin-right: 0.6rem;
}
.cap-line + .cap-line { margin-top: 0.1rem; }

/* ---------- reel sets ---------- */
.work-row.set { align-items: start; }
.reel-set {
  /* filmstrip: every tile shares one HEIGHT, so a group can mix
     vertical reels and horizontal teasers and still look ordered */
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.8rem;
}
.reel-item .card-thumb { height: 11rem; width: auto; }
.reel-item {
  display: block;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font: inherit;
  text-align: left;
}
.reel-item .card-thumb { border-radius: 4px; }
.reel-note {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.62rem;
}

/* ---------- more-work teaser + talk strip ---------- */
.more-teaser {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.8rem 2rem;
  margin-top: clamp(3rem, 6vh, 4.5rem);
  transition: border-color 0.3s, background 0.3s;
}
.more-teaser:hover {
  border-color: rgba(242, 240, 236, 0.4);
  background: var(--bg-soft);
}
.more-teaser-title {
  display: block;
  font-weight: 800;
  font-stretch: 116%;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}
.more-teaser-sub {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.talk-strip {
  margin-top: clamp(3rem, 6vh, 4.5rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 1.05rem;
}
.talk-strip a {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  transition: color 0.3s;
}
.talk-strip a:hover { color: var(--accent); }

/* ---------- work with me ---------- */
.services-body { max-width: 46rem; }
.services-lede {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.01em;
  max-width: 54rem;
  margin-bottom: 1.6rem;
}
.service {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
}
.service-name {
  font-weight: 750;
  font-stretch: 114%;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.service p { color: var(--muted); font-size: 1rem; max-width: 38rem; }
.services-intro {
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 38rem;
}
.services-credentials {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  line-height: 1.9;
}
.services-close {
  margin: 2rem 0 1.8rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ---------- contact form ---------- */
.contact-form {
  max-width: 40rem;
  margin-bottom: 3rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.contact-form label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form textarea { resize: vertical; }
.contact-form .btn { margin-top: 0.4rem; border: 0; cursor: pointer; }
.contact-form .btn:disabled { opacity: 0.6; cursor: default; transform: none; }
.form-note { margin-top: 1.2rem; }
/* honeypot: hidden from people, visible to bots */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form-status {
  margin-top: 1.1rem;
  font-size: 0.95rem;
  padding: 0.9rem 1.1rem;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.form-status.ok { color: var(--ink); border-color: var(--accent); }
.form-status.err { color: var(--ink); border-color: rgba(255, 92, 51, 0.5); }

/* ---------- subpage (more-work.html) ---------- */
.subpage { padding-top: clamp(7rem, 16vh, 10rem); }
.crumb { margin-bottom: 2rem; }
.crumb a { color: var(--muted); transition: color 0.3s; }
.crumb a:hover { color: var(--ink); }

/* ---------- vertical lightbox ---------- */
.lightbox-frame.vertical {
  aspect-ratio: 9 / 16;
  width: auto;
  height: min(78vh, 46rem);
  max-width: 92vw;
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { position: static; max-width: 20rem; margin-bottom: 1.5rem; }
  .work-row,
  .work-row.vertical { grid-template-columns: 1fr; }
  .work-row.vertical .work-media { max-width: 17rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero-title { letter-spacing: 0.12em; font-size: 0.74rem; margin-top: 2rem; }
  .hero-scroll { display: none; }
  .hero-index { display: none; }
  .hero-caption { bottom: 1.2rem; }
  .footer { flex-direction: column; gap: 0.3rem; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track, .hero-grain, .hero-scroll,
  .hero.no-video .hero-media::after { animation: none; }
  .hero-name, .hero-title, .hero-ctas { animation-duration: 0.01s; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media video { transition: none; }
}
