:root {
  color-scheme: light;
  --ink: #17253f;
  --ink-soft: rgba(23, 37, 63, .74);
  --paper: #f8fbff;
  --white: #ffffff;
  --mist: #eef7ff;
  --line: rgba(23, 37, 63, .16);
  --gold: #bd9460;
  --blue: #4a9ce3;
  --deep-blue: #0d3265;
  --green: #416d5a;
  --charcoal: #17202b;
  --bg-x: 0px;
  --bg-y: 0px;
  --person-x: 0px;
  --person-y: 0px;
  --person-scale: 1.10;
  --haze-x: 0px;
  --haze-y: 0px;
  --copy-opacity: 1;
  --copy-y: 0px;
  --intro-zoom: 0;
  --cursor-x: 50vw;
  --cursor-y: 50vh;
}

html.motion-ready {
  --intro-zoom: .006;
}

* { box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: 1.78;
  letter-spacing: 0;
  overflow-x: clip;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(255,255,255,.24), rgba(116,190,245,.075) 16%, rgba(189,148,96,.035) 27%, transparent 38%);
  mix-blend-mode: screen;
  opacity: .48;
}
@supports not (overflow: clip) {
  html,
  body { overflow-x: hidden; }
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: rgba(189, 148, 96, .28); }

.site-nav,
.hero,
main,
.band,
.closing,
.inner-hero,
.article,
footer {
  max-width: 100%;
}

.wrap,
.hero-copy,
.split > *,
.profile-grid > *,
.scene-pair > *,
.field-notes > *,
.article,
.chapter,
.profile-block,
.body-copy {
  min-width: 0;
}

.site-nav {
  position: fixed;
  inset: 18px clamp(16px, 4vw, 42px) auto;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  pointer-events: none;
}
.site-mark,
.nav-links {
  pointer-events: auto;
  border: 1px solid rgba(23, 37, 63, .14);
  background: rgba(255, 255, 255, .66);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 46px rgba(13, 50, 101, .10);
}
.site-mark {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
}
.nav-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  color: rgba(23, 37, 63, .70);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .06em;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: rgba(223, 242, 255, .86);
}
.quiet-link,
.nav-links a,
.site-mark {
  position: relative;
  overflow: hidden;
}
.quiet-link::before,
.nav-links a::before,
.site-mark::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: .55;
  transition: transform 420ms cubic-bezier(.22, 1, .36, 1);
}
.quiet-link:hover::before,
.nav-links a:hover::before,
.site-mark:hover::before {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: center;
  padding: clamp(82px, 12svh, 132px) clamp(22px, 7vw, 118px) clamp(50px, 8svh, 86px);
  background: #e9f7ff;
}
.hero-bg,
.hero-person,
.hero-person-mobile,
.hero-scrim,
.hero-haze,
.hero-light {
  position: absolute;
  pointer-events: none;
  user-select: none;
  will-change: transform, opacity;
}
.hero-bg {
  inset: -5vh -5vw;
  z-index: -5;
  background-image:
    image-set(
      url("assets/iwata_profile/generated/iwata_onboarding_fv_clean_photo_plate_v1_20260705_2x.webp") type("image/webp"),
      url("assets/iwata_profile/generated/iwata_onboarding_fv_clean_photo_plate_v1_20260705_2x.jpg") type("image/jpeg")
    );
  background-size: cover;
  background-position: right center;
  transform-origin: center center;
  transform: translate3d(var(--bg-x), var(--bg-y), 0) scale(calc(1.10 + var(--intro-zoom)));
  filter: blur(1.6px) saturate(1.02) contrast(1.01);
  transition: transform 1400ms cubic-bezier(.22, 1, .36, 1);
}
.hero-scrim {
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .78) 0%, rgba(255, 255, 255, .58) 34%, rgba(255, 255, 255, .10) 57%, rgba(255, 255, 255, .02) 100%),
    linear-gradient(180deg, rgba(244, 250, 255, .42) 0%, rgba(244, 250, 255, .02) 42%, rgba(244, 250, 255, .26) 100%);
}
.hero-person {
  inset: -5vh -5vw;
  z-index: 4;
  width: calc(100% + 10vw);
  height: calc(100% + 10vh);
  max-width: none;
  object-fit: cover;
  object-position: right center;
  transform-origin: center center;
  transform: translate3d(var(--person-x), var(--person-y), 0) scale(calc(var(--person-scale) + var(--intro-zoom)));
  transition: transform 1400ms cubic-bezier(.22, 1, .36, 1);
}
.hero-person-mobile { display: none; }
.hero-light {
  inset: -12vh -8vw auto auto;
  z-index: 1;
  width: min(46vw, 620px);
  height: min(46vw, 620px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.42) 0%, rgba(116,190,245,.18) 36%, transparent 68%);
  mix-blend-mode: screen;
  opacity: .75;
  transform: translate3d(calc(var(--haze-x) * .35), calc(var(--haze-y) * .35), 0);
}
.hero-haze {
  inset: 0;
  z-index: 5;
  opacity: .58;
  mix-blend-mode: screen;
  background:
    linear-gradient(110deg, transparent 8%, rgba(255,255,255,.22) 24%, transparent 39%),
    linear-gradient(76deg, transparent 42%, rgba(255,255,255,.12) 55%, transparent 68%);
  transform: translate3d(var(--haze-x), var(--haze-y), 0);
  animation: haze-drift 22s ease-in-out infinite alternate;
}
.hero-copy {
  position: relative;
  z-index: 6;
  width: min(680px, 48vw);
  transform: translate3d(0, var(--copy-y), 0);
  opacity: var(--copy-opacity);
}
.hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 700;
  line-height: 1.46;
  letter-spacing: .045em;
  text-wrap: balance;
  word-break: auto-phrase;
}
.hero h1 .line {
  display: block;
  opacity: 0;
  transform: translateY(14px);
  animation: text-rise 680ms cubic-bezier(.22, 1, .36, 1) forwards;
}
.hero h1 .line:nth-child(1) { animation-delay: 1000ms; }
.hero h1 .line:nth-child(2) { animation-delay: 1180ms; }
.lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(23, 37, 63, .72);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 750;
}
.scroll-prompt {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 5svh, 42px);
  z-index: 8;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: rgba(23, 37, 63, .72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: translateX(-50%);
  opacity: 0;
  animation: scroll-prompt-in 900ms cubic-bezier(.22, 1, .36, 1) 1700ms forwards;
}
.scroll-prompt::before {
  content: "";
  width: 42px;
  height: 42px;
  border: 1px solid rgba(23, 37, 63, .22);
  border-radius: 50%;
  background: rgba(255, 255, 255, .28);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 38px rgba(13, 50, 101, .12);
}
.scroll-prompt span {
  position: absolute;
  top: -20px;
  white-space: nowrap;
}
.scroll-prompt i {
  position: absolute;
  top: 14px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: scroll-arrow 1500ms ease-in-out infinite;
}
.scroll-prompt::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, rgba(23,37,63,.46), transparent);
  transform-origin: top center;
  animation: scroll-line 1500ms ease-in-out infinite;
}

.band {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 140px) clamp(22px, 7vw, 118px);
  border-top: 1px solid var(--line);
}
.band.light {
  background: #fff;
}
.band.mist {
  background: linear-gradient(180deg, #f8fbff, #edf7ff);
}
.band.dark {
  color: #f9fbff;
  background:
    radial-gradient(circle at 78% 18%, rgba(74, 156, 227, .30), transparent 34%),
    linear-gradient(135deg, #17202b 0%, #223043 54%, #111821 100%);
}
.band.warm {
  background: linear-gradient(180deg, #fffaf2, #ffffff);
}
.wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(320px, 1.06fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}
.section-label {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}
.band.dark .section-label { color: #f2cb83; }
h2,
.page-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 5vw, 72px);
  line-height: 1.08;
  font-weight: 850;
  text-wrap: balance;
  line-break: strict;
  word-break: auto-phrase;
  overflow-wrap: anywhere;
}
.headline-line {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.body-copy {
  margin: 24px 0 0;
  color: rgba(23, 37, 63, .80);
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 720;
  line-height: 1.9;
  line-break: strict;
  text-wrap: pretty;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}
.band.dark .body-copy { color: rgba(249, 251, 255, .78); }
.quiet-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--deep-blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .06em;
}
.quiet-link::after {
  content: "";
  width: 40px;
  height: 1px;
  background: currentColor;
}
.band.dark .quiet-link { color: #dff2ff; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.stat {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .72);
  transition: transform 520ms cubic-bezier(.22, 1, .36, 1), box-shadow 520ms cubic-bezier(.22, 1, .36, 1), border-color 520ms ease;
}
.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(189, 148, 96, .32);
  box-shadow: 0 24px 70px rgba(13, 50, 101, .10);
}
.stat-photo::before,
.stat-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.stat-photo::before {
  z-index: 0;
  background: var(--stat-image) center / cover no-repeat;
  filter: saturate(.92) contrast(1.02);
  opacity: .24;
  transform: scale(1.04);
}
.stat-photo::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.88), rgba(255,255,255,.58)),
    radial-gradient(circle at 82% 18%, rgba(74, 156, 227, .18), transparent 46%);
}
.stat-photo > * {
  position: relative;
  z-index: 2;
}
.stat-web3 { --stat-image: url("assets/photos/x-kei-web3-profile-crop-20260706.png"); }
.stat-food { --stat-image: url("assets/photos/selected_120_quiet-food.jpg"); }
.stat-play { --stat-image: url("assets/photos/hero_candidate_03_community-group.jpg"); }
.stat-web3::before {
  background-position: center top;
  opacity: .30;
}
.stat-food::before {
  opacity: .34;
}
.stat-play::before {
  background-position: center 36%;
  opacity: .30;
}
.stat b {
  display: block;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: .12em;
}
.stat strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.1;
}
.stat span {
  display: block;
  margin-top: 10px;
  color: rgba(23, 37, 63, .64);
  font-size: 13px;
  font-weight: 760;
  text-wrap: pretty;
  word-break: auto-phrase;
}

.detour-wrap {
  overflow: hidden;
  margin-top: 42px;
}
.detour-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.detour {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(249, 251, 255, .20);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  transition: transform 560ms cubic-bezier(.22, 1, .36, 1), border-color 560ms ease;
}
.detour:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 203, 131, .38);
}
.detour-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--detour-image) center / cover no-repeat;
  filter: saturate(.76) contrast(1.02);
  opacity: .42;
  transform: scale(1.04);
}
.detour-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(23, 32, 43, .42), rgba(23, 32, 43, .86)),
    radial-gradient(circle at 22% 18%, rgba(242, 203, 131, .24), transparent 44%);
}
.detour-food { --detour-image: url("assets/photos/ramen-shoriki-ai-photo-20260706.png"); }
.detour-start { --detour-image: url("assets/photos/hero_candidate_02_room-walk.jpg"); }
.detour-appointments { --detour-image: url("assets/photos/selected_068_presenting-room.jpg"); }
.detour-event { --detour-image: url("assets/photos/selected_091_panel-stage.jpg"); }
.detour-x { --detour-image: url("assets/photos/x-kei-web3-profile-crop-20260706.png"); }
.detour-start::before,
.detour-appointments::before {
  opacity: .34;
  filter: saturate(.86) contrast(1.04) brightness(.92);
}
.detour-food::before {
  background-position: center center;
  filter: saturate(1.06) contrast(1.08);
  opacity: .92;
}
.detour-food::after {
  background:
    linear-gradient(90deg, rgba(23, 32, 43, .80) 0%, rgba(23, 32, 43, .44) 48%, rgba(23, 32, 43, .56) 100%),
    linear-gradient(180deg, rgba(23, 32, 43, .08), rgba(23, 32, 43, .54)),
    radial-gradient(circle at 68% 48%, rgba(242, 203, 131, .12), transparent 42%);
}
.detour-x::before {
  background-position: center top;
  filter: saturate(1.02) contrast(1.04) brightness(.9);
  opacity: .58;
}
.detour b {
  color: #f2cb83;
  font-size: 12px;
  letter-spacing: .14em;
}
.detour strong {
  display: block;
  margin-top: 16px;
  font-size: 24px;
  line-height: 1.34;
  overflow-wrap: anywhere;
}
.detour span {
  display: block;
  margin-top: 14px;
  color: rgba(249, 251, 255, .74);
  font-size: 14px;
  text-wrap: pretty;
  word-break: auto-phrase;
  overflow-wrap: anywhere;
}

.closing {
  min-height: 78svh;
  display: grid;
  align-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.96)),
    image-set(
      url("assets/iwata_profile/generated/iwata_onboarding_fv_clean_photo_plate_v1_20260705_2x.webp") type("image/webp"),
      url("assets/iwata_profile/generated/iwata_onboarding_fv_clean_photo_plate_v1_20260705_2x.jpg") type("image/jpeg")
    ) right center / cover no-repeat;
}
.closing h2 {
  margin: 0 auto;
  max-width: 960px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}
.closing p {
  max-width: 720px;
  margin: 26px auto 0;
}
.text-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.inner-hero {
  padding: 144px clamp(22px, 7vw, 118px) 70px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.74)),
    image-set(
      url("assets/iwata_profile/generated/iwata_onboarding_fv_clean_photo_plate_v1_20260705_2x.webp") type("image/webp"),
      url("assets/iwata_profile/generated/iwata_onboarding_fv_clean_photo_plate_v1_20260705_2x.jpg") type("image/jpeg")
    ) right center / cover no-repeat;
}
.inner-hero.story-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.70) 48%, rgba(255,255,255,.24)),
    url("assets/photos/selected_002_stage-side.jpg") right center / cover no-repeat;
}
.inner-hero.profile-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.78) 52%, rgba(255,255,255,.30)),
    url("assets/photos/selected_014_outdoor-confident.jpg") right 42% center / cover no-repeat;
}
.inner-hero.scenes-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.72) 48%, rgba(255,255,255,.22)),
    url("assets/photos/hero_candidate_01_blue-stage-close.jpg") right center / cover no-repeat;
}
.inner-hero .wrap {
  min-height: 280px;
  display: grid;
  align-items: end;
}
.scenes-hero .wrap {
  grid-template-columns: minmax(0, 760px);
}
.inner-hero p {
  max-width: 740px;
}
.article {
  width: min(880px, calc(100% - 44px));
  margin: 0 auto;
  padding: 54px 0 92px;
}
.chapter {
  padding: 44px 0;
  border-top: 1px solid var(--line);
}
.chapter:first-child { border-top: 0; }
.chapter h2 {
  font-size: clamp(26px, 3.6vw, 44px);
}
.chapter p {
  margin: 18px 0 0;
  color: rgba(23, 37, 63, .74);
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
  line-break: strict;
  text-wrap: pretty;
  word-break: auto-phrase;
  overflow-wrap: break-word;
}
.mini-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--deep-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
}
.mini-link::after {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  transform: scaleX(.62);
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(.22, 1, .36, 1);
}
.mini-link:hover::after {
  transform: scaleX(1);
}
.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: start;
  margin-top: 34px;
}
.profile-block {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.profile-block h2 {
  font-size: clamp(24px, 3vw, 36px);
}
.fact-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.fact-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(23, 37, 63, .10);
}
.fact-list li:first-child { border-top: 0; }
.fact-list b {
  color: var(--gold);
}
.fact-list span {
  color: rgba(23, 37, 63, .74);
  font-weight: 700;
  text-wrap: pretty;
  word-break: auto-phrase;
  overflow-wrap: anywhere;
}
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  color: var(--deep-blue);
  font-weight: 900;
  white-space: nowrap;
}
.inline-link::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

.scene-pair,
.field-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.scene-card,
.story-photo,
.profile-portrait,
.field-note {
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 18px 50px rgba(13, 50, 101, .08);
}
.scene-card,
.field-note {
  min-width: 0;
}
.scene-card img,
.story-photo img,
.profile-portrait img,
.field-note img {
  width: 100%;
  object-fit: cover;
}
.scene-card img { aspect-ratio: 4 / 3; }
.story-photo img { aspect-ratio: 16 / 9; }
.profile-portrait img { aspect-ratio: 4 / 5; }
.field-note img { aspect-ratio: 4 / 3; }
.scene-card figcaption,
.story-photo figcaption,
.profile-portrait figcaption,
.field-note figcaption {
  position: relative;
  z-index: 3;
  padding: 12px 14px 14px;
  color: rgba(23, 37, 63, .68);
  background: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
  text-wrap: pretty;
  word-break: auto-phrase;
}
.story-photo {
  margin: 8px 0 36px;
}
.story-photo-wide {
  margin-top: -10px;
}
.profile-portrait {
  margin-top: 26px;
}
.field-notes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}
.compact-stats,
.scenes-stats {
  margin-top: 26px;
}
.article-links {
  justify-content: flex-start;
  margin-top: 18px;
}
.scenes-pair {
  margin-top: 28px;
}
.develop-photo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.develop-photo::before {
  content: "";
  position: absolute;
  inset: -24%;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--light-x, 50%) var(--light-y, 50%), rgba(255, 255, 255, .56), rgba(203, 230, 255, .17) 27%, transparent 58%),
    linear-gradient(120deg, transparent 18%, rgba(255,255,255,.12) 34%, transparent 48%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: scale(.94);
  transition: opacity 680ms ease, transform 900ms cubic-bezier(.22, 1, .36, 1);
}
.develop-photo img {
  filter: saturate(.84) contrast(1) brightness(.98);
  transform: scale(1.015);
  transition: filter 900ms cubic-bezier(.22, 1, .36, 1), transform 1100ms cubic-bezier(.22, 1, .36, 1);
}
.develop-photo:hover::before,
.develop-photo:focus-within::before,
.develop-photo.is-lit::before {
  opacity: .46;
  transform: scale(1);
}
.develop-photo:hover img,
.develop-photo:focus-within img,
.develop-photo.is-lit img {
  filter: saturate(1.02) contrast(1.03) brightness(1.01);
  transform: scale(1);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms ease, transform 720ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

footer {
  padding: 28px clamp(22px, 7vw, 118px);
  border-top: 1px solid var(--line);
  color: rgba(23, 37, 63, .58);
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}

@keyframes text-rise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes haze-drift {
  from { transform: translate3d(calc(var(--haze-x) - 10px), calc(var(--haze-y) - 4px), 0); }
  to { transform: translate3d(calc(var(--haze-x) + 12px), calc(var(--haze-y) + 6px), 0); }
}
@keyframes wind {
  0%, 100% { opacity: .12; transform: translateZ(90px) translateX(-44px) rotateZ(var(--r, 0deg)) scaleX(.72); }
  45% { opacity: .88; transform: translateZ(90px) translateX(34px) rotateZ(var(--r, 0deg)) scaleX(1.04); }
  70% { opacity: .28; transform: translateZ(90px) translateX(58px) rotateZ(var(--r, 0deg)) scaleX(.82); }
}
@keyframes scroll-prompt-in {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to { opacity: .9; transform: translate(-50%, 0); }
}
@keyframes scroll-arrow {
  0%, 100% { opacity: .38; transform: translateY(-4px) rotate(45deg); }
  50% { opacity: 1; transform: translateY(7px) rotate(45deg); }
}
@keyframes scroll-line {
  0%, 100% { opacity: .22; transform: scaleY(.34); }
  50% { opacity: .76; transform: scaleY(1); }
}

@media (max-width: 980px) {
  body::before {
    display: none;
  }
  .hero {
    min-height: 100svh;
    align-items: start;
    padding: clamp(94px, 14svh, 128px) 20px 0;
  }
  .hero-bg {
    inset: 0;
    background-size: auto 100%;
    background-position: 68% center;
    filter: saturate(1.02) contrast(1.02);
    transform: translate3d(calc(var(--bg-x) * .18), calc(var(--bg-y) * .24), 0) scale(calc(1.01 + var(--intro-zoom)));
  }
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.80) 31%, rgba(255,255,255,.18) 52%, rgba(255,255,255,.05) 100%),
      linear-gradient(90deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.56) 48%, rgba(255,255,255,.10) 100%);
  }
  .hero-person { display: none; }
  .hero-person-mobile {
    display: none;
    left: 50%;
    right: auto;
    bottom: -1svh;
    z-index: 2;
    width: min(116vw, 540px);
    max-width: none;
    opacity: .86;
    transform-origin: 50% 64%;
    transform: translate3d(calc(-50% + (var(--person-x) * .24)), calc(var(--person-y) * .34), 0) scale(calc(1.02 + var(--intro-zoom)));
    transition: transform 1400ms cubic-bezier(.22, 1, .36, 1);
  }
  .hero-copy {
    width: min(100%, 370px);
    margin-top: clamp(12px, 4svh, 44px);
  }
  .hero h1 {
    max-width: 342px;
    font-size: clamp(27px, 7.7vw, 34px);
    line-height: 1.58;
  }
  .lead {
    max-width: 330px;
    margin-top: 18px;
    font-size: 14px;
  }
  .scroll-prompt {
    bottom: clamp(26px, 8svh, 58px);
  }
  .split,
  .profile-grid {
    grid-template-columns: 1fr;
  }
  .stat-row {
    grid-template-columns: 1fr;
  }
  .detour-rail {
    grid-template-columns: 1fr;
  }
  .scene-pair,
  .field-notes {
    grid-template-columns: 1fr;
  }
  .profile-portrait {
    max-width: 460px;
  }
  h2,
  .page-title,
  .body-copy,
  .chapter p,
  .stat span,
  .detour span,
  .scene-card figcaption,
  .story-photo figcaption,
  .profile-portrait figcaption,
  .field-note figcaption {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 620px) {
  .site-nav {
    inset: 10px 10px auto;
    align-items: flex-start;
  }
  .site-mark { display: none; }
  .nav-links {
    width: 100%;
    justify-content: center;
  }
  .nav-links a {
    flex: 1;
    justify-content: center;
    padding: 0 8px;
  }
  .hero {
    min-height: 100svh;
    padding: 96px 18px 0;
  }
  .hero-copy {
    width: 100%;
    max-width: 342px;
    margin-top: clamp(14px, 5svh, 42px);
  }
  .hero-person-mobile {
    left: 52%;
    width: min(122vw, 470px);
    bottom: -1svh;
    opacity: .88;
  }
  .band { padding-inline: 18px; }
  .wrap { width: 100%; }
  .fact-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .scene-card figcaption,
  .story-photo figcaption,
  .profile-portrait figcaption,
  .field-note figcaption {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hero-bg,
  .hero-person,
  .hero-haze,
  .hero-light,
  .hero-copy,
  .reveal {
    transform: none !important;
  }
  body::before {
    display: none !important;
  }
  .reveal {
    opacity: 1 !important;
  }
  .develop-photo::before {
    display: none !important;
  }
  .develop-photo img {
    filter: none !important;
    transform: none !important;
  }
}
