/* =========================================================
   KARUNA — Compassion Without Boundaries
   Editorial documentary website
   ========================================================= */

:root {
  /* Palette — warm whites lead. Photography carries the colour. */
  --bone:     #F5F2EC;
  --stone:    #E9E4DB;
  --paper:    #ECE7DD;
  --charcoal: #2E2E2E;
  --soft:     #4A4641;
  --walnut:   #6B5645;
  --brass:    #B29A72;
  --brass-dim:#8E7A57;
  --line:     #C9C0AE;

  --serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --sans:  'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max:   1320px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(0.16, 0.84, 0.32, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bone);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

::selection { background: var(--walnut); color: var(--bone); }

/* Subtle film grain over the whole page — very, very faint */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ====== Navigation ====================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--bone);
  transition: padding 600ms var(--ease), background 400ms var(--ease), color 400ms var(--ease);
}
.nav.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(245, 242, 236, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--charcoal);
}

.nav__mark {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.05em;
}
.nav__icon {
  width: 32px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transition: filter 360ms var(--ease);
}
.nav.is-scrolled .nav__icon {
  filter: none;
  opacity: 1;
}
.nav__name { font-weight: 500; }
.nav__sep { color: var(--brass); }
.nav__tag {
  font-family: var(--sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 400;
  opacity: 0.85;
}

.nav__links {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: opacity 240ms var(--ease);
}
.nav__links a:hover { opacity: 0.65; }
.nav__cta {
  border: 1px solid currentColor;
  padding: 8px 18px !important;
  border-radius: 999px;
}

@media (max-width: 760px) {
  .nav { padding: 18px 22px; }
  .nav__tag { display: none; }
  .nav__links { gap: 16px; font-size: 10px; }
  .nav__links a:not(.nav__cta) { display: none; }
  .nav__links .nav__cta { padding: 6px 14px !important; }
}

/* ====== Hero =========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--gutter) clamp(60px, 10vh, 120px);
  color: var(--bone);
}
.hero__image {
  position: absolute; inset: 0;
  z-index: 1;
}
.hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.78) contrast(1.05) saturate(0.85);
  transform: scale(1.08);
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,18,15,0.45) 0%, rgba(20,18,15,0.05) 35%, rgba(20,18,15,0.10) 60%, rgba(20,18,15,0.70) 100%),
    radial-gradient(80% 70% at 30% 60%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.30) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero__eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.hero.is-loaded .hero__eyebrow {
  opacity: 0.95; transform: none;
  transition-delay: 200ms;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(58px, 11vw, 168px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin-bottom: 38px;
}
.hero__title .r {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1100ms var(--ease), transform 1100ms var(--ease);
}
.hero__title em {
  font-style: italic;
  color: var(--bone);
  /* tiny brass accent dot at end */
}
.hero.is-loaded .hero__title .r {
  opacity: 1; transform: none;
}
.hero.is-loaded .hero__title .r:nth-child(1) { transition-delay: 400ms; }
.hero.is-loaded .hero__title .r:nth-child(2) { transition-delay: 600ms; }
.hero.is-loaded .hero__title .r:nth-child(3) { transition-delay: 800ms; }
.hero.is-loaded .hero__title .r:nth-child(4) { transition-delay: 1000ms; }

.hero__sub {
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  max-width: 580px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1000ms var(--ease), transform 1000ms var(--ease);
  transition-delay: 1400ms;
}
.hero.is-loaded .hero__sub { opacity: 0.95; transform: none; }

.hero__credit {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(60px, 10vh, 120px);
  z-index: 2;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  opacity: 0;
  transition: opacity 800ms var(--ease) 1700ms;
  display: flex;
  align-items: center;
  gap: 14px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero.is-loaded .hero__credit { opacity: 0.7; }
.hero__credit-line {
  display: block;
  width: 1px; height: 40px;
  background: currentColor;
}

.hero__scroll {
  position: absolute;
  left: var(--gutter);
  bottom: 36px;
  z-index: 2;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transition: opacity 800ms var(--ease) 1900ms, transform 400ms var(--ease);
}
.hero.is-loaded .hero__scroll { opacity: 0.6; }
.hero__scroll:hover { opacity: 1; transform: translateY(2px); }
.hero__scroll-line {
  display: block;
  width: 1px; height: 50px;
  background: currentColor;
  animation: scrollHint 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollHint {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

@media (max-width: 760px) {
  .hero__credit { display: none; }
  .hero__scroll { display: none; }
  .hero__title { font-size: clamp(48px, 14vw, 88px); }
  .hero { padding-bottom: 80px; }
}

/* ====== Section indices & titles ======================== */
.section__index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  color: var(--brass);
  letter-spacing: 0.05em;
  margin-bottom: 36px;
}

.section__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--charcoal);
}
.section__title em { font-style: italic; color: var(--walnut); }

/* ====== Manifesto ======================================= */
.manifesto {
  padding: clamp(110px, 18vh, 200px) var(--gutter);
  background: var(--bone);
}
.manifesto__inner {
  max-width: 820px;
  margin: 0 auto;
}
.manifesto__lede {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--charcoal);
  margin-bottom: 56px;
}
.manifesto__lede em { font-style: italic; }
.manifesto__body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--soft);
  margin-bottom: 28px;
  max-width: 640px;
}
.manifesto__body em { color: var(--charcoal); font-style: italic; }

.dropcap {
  float: left;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 72px;
  line-height: 0.85;
  padding: 8px 12px 0 0;
  color: var(--walnut);
}

.manifesto__signature {
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--brass-dim);
}
.manifesto__signature-line {
  display: block;
  height: 1px;
  width: 60px;
  background: var(--brass);
}

/* ====== Full-bleed frames =============================== */
.frame { padding: 0; background: var(--bone); }
.frame--full figure {
  position: relative;
  width: 100%;
  margin: 0;
}
.frame--full img {
  width: 100%;
  height: clamp(420px, 80vh, 820px);
  object-fit: cover;
  filter: brightness(0.94) contrast(1.04);
}
.frame--full figcaption {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 20px var(--gutter) 60px;
  color: var(--soft);
  font-size: 13px;
}
.cap__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--brass);
  letter-spacing: 0.05em;
}
.cap__text {
  max-width: 520px;
  text-align: right;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--soft);
}

@media (max-width: 760px) {
  .frame--full figcaption { flex-direction: column; gap: 8px; }
  .cap__text { text-align: left; font-size: 14px; }
}

/* ====== The Work ======================================== */
.work {
  padding: clamp(120px, 16vh, 180px) var(--gutter);
  background: var(--stone);
}
.work__head {
  max-width: var(--max);
  margin: 0 auto 100px;
}
.work__list {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px) clamp(40px, 6vw, 100px);
}
.pillar {
  position: relative;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.pillar__num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--brass-dim);
  margin-bottom: 22px;
}
.pillar__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--charcoal);
}
.pillar__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--soft);
  max-width: 460px;
}

@media (max-width: 760px) {
  .work__list { grid-template-columns: 1fr; gap: 56px; }
  .work__head { margin-bottom: 64px; }
}

/* ====== A Story ========================================= */
.story {
  padding: clamp(140px, 20vh, 220px) var(--gutter);
  background: var(--bone);
}
.story__intro {
  max-width: 820px;
  margin: 0 auto clamp(80px, 12vh, 140px);
}
.story__lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--soft);
  margin-top: 32px;
  max-width: 560px;
}

.story__sequence {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(100px, 14vh, 160px);
}

.chapter {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.chapter--reverse { grid-template-columns: 1fr 1.05fr; }
.chapter--reverse .chapter__media { order: 2; }
.chapter--reverse .chapter__text { order: 1; }

.chapter__media img {
  width: 100%;
  height: clamp(380px, 60vh, 620px);
  object-fit: cover;
  filter: contrast(1.03) saturate(0.92);
}
.chapter__text {
  padding: 0 8px;
}
.chapter__label {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--brass);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--brass);
  margin-bottom: 28px;
}
.chapter__body {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 300;
  line-height: 1.35;
  color: var(--charcoal);
  max-width: 460px;
}

@media (max-width: 820px) {
  .chapter,
  .chapter--reverse { grid-template-columns: 1fr; gap: 32px; }
  .chapter--reverse .chapter__media { order: 0; }
  .chapter--reverse .chapter__text { order: 1; }
  .chapter__media img { height: 60vh; }
}

/* ====== Impact ========================================== */
.impact {
  padding: clamp(140px, 20vh, 220px) var(--gutter);
  background: var(--charcoal);
  color: var(--bone);
}
.impact .section__index { color: var(--brass); }
.impact__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.impact__grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(40px, 4vw, 60px);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 56px;
}
.impact__item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.impact__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 7vw, 104px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.impact__plus {
  color: var(--brass);
  font-style: italic;
  font-size: 0.55em;
  vertical-align: top;
  margin-left: 4px;
}
.impact__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brass);
}
.impact__footnote {
  margin-top: 60px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(245,242,236,0.6);
}

@media (max-width: 760px) {
  .impact__grid { grid-template-columns: repeat(2, 1fr); gap: 50px 30px; }
}

/* ====== The Centre ====================================== */
.centre {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bone);
}
.centre__media {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}
.centre__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.92);
}
.centre__text {
  padding: clamp(80px, 14vh, 160px) clamp(40px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.centre__body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--soft);
  margin-top: 28px;
  max-width: 540px;
}
.centre__list {
  list-style: none;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 540px;
}
.centre__list li {
  position: relative;
  padding: 14px 0 14px 28px;
  font-size: 15px;
  color: var(--soft);
  border-bottom: 1px solid rgba(201,192,174,0.4);
}
.centre__list li:last-child { border-bottom: none; }
.centre__list li::before {
  content: '·';
  position: absolute;
  left: 8px; top: 11px;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--brass);
  line-height: 1;
}

@media (max-width: 880px) {
  .centre { grid-template-columns: 1fr; }
  .centre__media { min-height: 460px; }
  .centre__text { padding: 80px 24px; }
}

/* ====== Quote =========================================== */
.quote {
  padding: clamp(120px, 18vh, 200px) var(--gutter);
  background: var(--stone);
  text-align: center;
}
.quote blockquote {
  max-width: 900px;
  margin: 0 auto;
}
.quote blockquote p {
  font-family: var(--serif);
  font-weight: 300;
  font-style: normal;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.3;
  color: var(--charcoal);
}
.quote em { font-style: italic; color: var(--walnut); }
.quote__mark {
  font-style: italic;
  color: var(--brass);
  font-size: 1.4em;
  vertical-align: -0.05em;
}
.quote blockquote footer {
  margin-top: 32px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--brass-dim);
}

/* ====== Volunteer ====================================== */
.volunteer {
  padding: clamp(140px, 20vh, 220px) var(--gutter);
  background: var(--bone);
}
.volunteer__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.volunteer__lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--soft);
  margin-top: 32px;
  max-width: 620px;
  line-height: 1.5;
}
.volunteer__grid {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(30px, 4vw, 50px);
  border-top: 1px solid var(--line);
  padding-top: 60px;
}
.vol__item h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 14px 0 12px;
  color: var(--charcoal);
}
.vol__item p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--soft);
}
.vol__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--brass);
  letter-spacing: 0.1em;
}

@media (max-width: 880px) {
  .volunteer__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 540px) {
  .volunteer__grid { grid-template-columns: 1fr; }
}

/* ====== Buttons ========================================= */
.btn {
  display: inline-block;
  margin-top: 56px;
  padding: 18px 38px;
  border: 1px solid var(--charcoal);
  background: transparent;
  color: var(--charcoal);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  border-radius: 999px;
  transition: all 360ms var(--ease);
}
.btn:hover {
  background: var(--charcoal);
  color: var(--bone);
}
.btn--dark {
  background: var(--charcoal);
  color: var(--bone);
}
.btn--dark:hover {
  background: var(--walnut);
  border-color: var(--walnut);
}

/* ====== Give ============================================ */
.give {
  padding: clamp(140px, 20vh, 220px) var(--gutter);
  background: var(--charcoal);
  color: var(--bone);
}
.give__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.give__index { color: var(--brass); }
.give__title { color: var(--bone); }
.give__title em { color: var(--brass); }
.give__lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: rgba(245,242,236,0.7);
  margin-top: 32px;
  max-width: 620px;
  line-height: 1.5;
}

.give__tiers {
  margin-top: 100px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.tier {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 36px 0;
  align-items: baseline;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 360ms var(--ease);
}
.tier:hover {
  background: rgba(178,154,114,0.04);
  padding-left: 12px;
  padding-right: 12px;
}
.tier__amount {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4vw, 56px);
  color: var(--brass);
  letter-spacing: -0.01em;
}
.tier__what {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--bone);
  max-width: 600px;
}

.give__cta {
  margin-top: 80px;
}
.give .btn--dark {
  background: var(--bone);
  color: var(--charcoal);
  border-color: var(--bone);
}
.give .btn--dark:hover {
  background: var(--brass);
  color: var(--charcoal);
  border-color: var(--brass);
}
.give__note {
  margin-top: 32px;
  font-size: 14px;
  color: rgba(245,242,236,0.55);
  max-width: 560px;
}
.give__note a {
  color: var(--brass);
  border-bottom: 1px solid var(--brass-dim);
}

@media (max-width: 680px) {
  .tier { grid-template-columns: 1fr; gap: 8px; }
  .tier__amount { font-size: 32px; }
}

/* ====== Footer ========================================== */
.foot {
  padding: clamp(80px, 12vh, 140px) var(--gutter) 40px;
  background: var(--bone);
  color: var(--charcoal);
}

.foot__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 56px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}

.foot__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.foot__logo {
  width: auto;
  max-width: 240px;
  height: auto;
  display: block;
}

.foot__script {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--walnut);
  letter-spacing: 0.06em;
  font-weight: 400;
}

.foot__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.foot__contact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--brass-dim);
  font-weight: 500;
}

.foot__contact-email {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: color 240ms var(--ease), border-color 240ms var(--ease);
}

.foot__contact-email:hover {
  color: var(--walnut);
  border-color: var(--walnut);
}

.foot__bottom {
  max-width: var(--max);
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--brass-dim);
  letter-spacing: 0.08em;
}

@media (max-width: 760px) {
  .foot__inner { gap: 40px; padding-bottom: 60px; }
  .foot__logo { max-width: 200px; }
  .foot__script { font-size: 18px; }
  .foot__contact-email { font-size: 20px; }
  .foot__bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ====== Reveals (scroll) ================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1100ms var(--ease), transform 1100ms var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
/* Hero children handle their own reveals — bypass */
.hero__content.reveal,
.hero__credit.reveal,
.hero__scroll.reveal { opacity: 1; transform: none; transition: none; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__image img { transform: scale(1); }
  .reveal { opacity: 1; transform: none; }
}
