/* ============================================
   NARITA JUN — Filmmaker / Visual Journalist
   v3 design system — dark / bilingual / quiet
   EN display: Inter Tight ・ JP: Zen Kaku Gothic
   ============================================ */
:root {
  --bg: #0e0e0c;
  --bg-2: #141412;
  --panel: #181815;
  --text: #ecebe4;
  --dim: #b6b3a9;
  --faint: #8e8b81;
  --line: rgba(236, 235, 228, 0.1);
  --line-2: rgba(236, 235, 228, 0.2);
  --accent: #9db8a8;             /* 淡いセージ — 控えめに */
  --en: "Inter Tight", "Inter", "Helvetica Neue", sans-serif;
  --sans: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --serif: "Shippori Mincho", "Noto Serif JP", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--text); color: var(--bg); }

.skip-link {
  position: fixed;
  top: -64px; left: 16px;
  z-index: 400;
  background: var(--text);
  color: var(--bg);
  padding: 12px 26px;
  font-size: 12px;
  letter-spacing: 0.14em;
  transition: top 0.3s ease;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 1.5px solid var(--text); outline-offset: 3px; }
.nav a:focus-visible, .footer-nav a:focus-visible { outline-offset: 6px; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 230;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 44px;
  transition: padding 0.35s ease, background 0.35s ease, border-color 0.35s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 14px 44px;
  background: rgba(14, 14, 12, 0.82);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.brand {
  font-family: var(--en);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brand small {
  display: block;
  font-family: var(--en);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--dim);
  margin-top: 3px;
  text-transform: uppercase;
}
.nav { display: flex; gap: 34px; }
.nav a {
  font-family: var(--en);
  font-size: 12.5px;
  font-weight: 450;
  letter-spacing: 0.03em;
  color: var(--dim);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--text);
  transition: width 0.35s ease;
}
.nav a:hover, .nav a.active { color: var(--text); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 44px; height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--text);
  transition: transform 0.35s ease;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(4.25px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { transform: translateY(-4.25px) rotate(-45deg); }

/* ---------- cinematic top ---------- */
.cinema {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.cinema-bg { position: absolute; inset: 0; }
.cine-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  filter: saturate(0.7) brightness(0.5) contrast(1.04);
  transition: opacity 1.4s ease, transform 8s ease;
}
.cine-img.on { opacity: 1; transform: scale(1); }
.cinema-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 14, 12, 0.55), rgba(14, 14, 12, 0.15) 34%, rgba(14, 14, 12, 0.3) 62%, rgba(14, 14, 12, 0.94));
}
.cinema-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 160px 44px 72px;
}
.cine-kicker {
  font-family: var(--en);
  font-size: 12px;
  font-weight: 450;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}
.cine-kicker .tick { display: none; }
.cine-title { margin-top: 18px; }
.cine-title .en {
  display: block;
  font-family: var(--en);
  font-weight: 650;
  font-size: clamp(58px, 11vw, 152px);
  letter-spacing: -0.03em;
  line-height: 0.98;
  color: var(--text);
}
.cine-title .ja {
  display: block;
  margin-top: 24px;
  font-size: clamp(13px, 1.5vw, 15.5px);
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--dim);
}

/* category index */
.cine-cats {
  list-style: none;
  margin-top: clamp(36px, 5vh, 58px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-2);
}
.cine-cats a {
  display: block;
  padding: 22px 26px 24px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: opacity 0.4s ease;
}
.cine-cats a::before {
  content: "";
  position: absolute;
  left: 0; top: -1px;
  height: 1px; width: 0;
  background: var(--text);
  transition: width 0.5s ease;
}
.cine-cats a.on::before, .cine-cats a:hover::before { width: calc(100% - 26px); }
.cine-cats .no {
  display: block;
  font-family: var(--en);
  font-size: 10.5px;
  font-weight: 450;
  letter-spacing: 0.12em;
  color: var(--faint);
}
.cine-cats .cat-en {
  display: block;
  margin-top: 12px;
  font-family: var(--en);
  font-size: clamp(17px, 1.9vw, 23px);
  font-weight: 550;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--dim);
  transition: color 0.4s ease;
}
.cine-cats a.on .cat-en, .cine-cats a:hover .cat-en { color: var(--text); }
.cine-cats .cat-ja {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--faint);
}

/* credential line — no box, just type */
.cine-cred {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px 40px;
}
.cine-cred .ngo {
  font-family: var(--en);
  font-size: 12px;
  font-weight: 450;
  letter-spacing: 0.06em;
  color: var(--dim);
}
.cine-cred .ngo em {
  font-style: normal;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--faint);
  margin-left: 16px;
}
.cine-cred .field {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}

/* scroll cue */
.cine-scroll {
  position: absolute;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--faint);
  writing-mode: vertical-rl;
}
.cine-scroll .line {
  width: 1px; height: 64px;
  background: var(--line-2);
  position: relative;
  overflow: hidden;
}
.cine-scroll .line::after {
  content: "";
  position: absolute;
  left: 0; top: -40%;
  width: 100%; height: 40%;
  background: var(--text);
  animation: scrollcue 2.4s ease-in-out infinite;
}
@keyframes scrollcue { to { top: 110%; } }

/* ---------- generic sections ---------- */
.section {
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(90px, 12vw, 150px) 44px;
}
.section-head { margin-bottom: clamp(44px, 6vw, 72px); }
.section-head .en {
  font-family: var(--en);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text);
  text-transform: none;
}
.section-head h2 {
  margin-top: 20px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(14px, 1.6vw, 17px);
  letter-spacing: 0.14em;
  line-height: 2.1;
  color: var(--dim);
}
.section-head h2 br { display: none; }
.section-head p.note {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--faint);
  max-width: 620px;
  line-height: 2.2;
}
.divider { border: none; border-top: 1px solid var(--line); max-width: 1360px; margin: 0 auto; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  transition-delay: var(--d, 0s);
}
.reveal.on { opacity: 1; transform: none; }

/* ---------- page hero (sub pages) ---------- */
.page-hero {
  max-width: 1360px;
  margin: 0 auto;
  padding: 190px 44px 80px;
}
.page-hero .en {
  font-family: var(--en);
  font-weight: 600;
  font-size: clamp(42px, 7vw, 92px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
  text-transform: none;
}
.page-hero h1 {
  margin-top: 26px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(16px, 2vw, 21px);
  letter-spacing: 0.16em;
  line-height: 2;
  color: var(--text);
}
.page-hero p.lead {
  margin-top: 20px;
  max-width: 640px;
  color: var(--dim);
  font-size: 13px;
  line-height: 2.3;
}

/* ---------- stories ---------- */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 32px;
}
.story-card { display: block; }
.story-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
}
.story-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition: transform 1.1s ease, filter 0.6s ease;
}
.story-card:hover .story-thumb img { transform: scale(1.04); filter: saturate(1); }
.story-thumb.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--line-2);
  color: var(--faint);
  font-size: 11px;
  letter-spacing: 0.3em;
}
.story-pair {
  margin-top: 22px;
  font-family: var(--sans);
  font-size: 17.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.9;
  transition: color 0.4s ease;
}
.story-pair .x { color: var(--faint); margin: 0 7px; font-size: 13px; font-weight: 300; }
.story-card:hover .story-pair { color: var(--accent); }
.story-place {
  margin-top: 6px;
  font-family: var(--en);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}
.story-issues { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.story-issues span {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--dim);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 3px 13px;
}
.story-desc {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--dim);
  line-height: 2.1;
}

/* ---------- statement ---------- */
.statement {
  text-align: center;
  padding: clamp(110px, 15vw, 170px) 44px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.statement p {
  font-family: var(--serif);
  font-size: clamp(15px, 1.9vw, 21px);
  line-height: 2.8;
  letter-spacing: 0.16em;
  color: var(--text);
}
.statement .sign {
  margin-top: 44px;
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--faint);
}

/* ---------- screening ---------- */
.screening { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.screening-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 110px 44px;
  text-align: center;
}
.screening .en {
  font-family: var(--en);
  font-weight: 600;
  font-size: clamp(30px, 4.4vw, 54px);
  letter-spacing: -0.02em;
  color: var(--text);
}
.screening h2 {
  margin-top: 20px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(14px, 1.7vw, 18px);
  letter-spacing: 0.16em;
  color: var(--dim);
}
.screening p.note { margin-top: 20px; font-size: 13px; color: var(--dim); line-height: 2.3; }

/* ---------- works ---------- */
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 64px 36px;
}
.work-card { display: block; }
.work-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-2);
}
.work-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition: transform 1.1s ease, filter 0.6s ease;
}
.work-card:hover .work-thumb img { transform: scale(1.04); filter: saturate(1); }
.work-meta { padding-top: 20px; }
.work-tags {
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--faint);
  text-transform: uppercase;
}
.work-title {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.9;
  margin-top: 10px;
  transition: color 0.4s ease;
}
.work-card:hover .work-title { color: var(--accent); }
.work-client {
  font-family: var(--en);
  font-size: 10.5px;
  color: var(--faint);
  letter-spacing: 0.12em;
  margin-top: 8px;
}
.work-desc {
  font-size: 12.5px;
  color: var(--dim);
  line-height: 2.1;
  margin-top: 12px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  margin-top: 44px;
  padding: 15px 46px;
  border: 1px solid var(--line-2);
  color: var(--text);
  font-family: var(--en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background 0.4s, color 0.4s, border-color 0.4s;
}
.btn::after {
  content: "\2192";
  display: inline-block;
  margin-left: 12px;
  transition: transform 0.35s ease;
}
.btn:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn:hover::after { transform: translateX(5px); }

/* ---------- about / profile ---------- */
.profile-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.profile-photo img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
  filter: saturate(0.85);
}
.profile-name {
  font-family: var(--en);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.profile-name span {
  display: block;
  font-family: var(--en);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--dim);
  margin-top: 10px;
  text-transform: uppercase;
}
.profile-role {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.profile-bio {
  margin-top: 32px;
  font-size: 13.5px;
  color: var(--dim);
  line-height: 2.4;
}
.profile-bio p + p { margin-top: 1.6em; }
.profile-bio strong { color: var(--text); font-weight: 500; }

.affil { margin-top: 44px; border-top: 1px solid var(--line); padding-top: 30px; }
.affil h3 {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--faint);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
}
.affil ul { list-style: none; }
.affil li {
  font-size: 13px;
  color: var(--dim);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.affil li b { color: var(--text); font-weight: 500; margin-right: 12px; }

/* ---------- timeline ---------- */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--line);
}
.tl-item { position: relative; padding-bottom: 64px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -43px; top: 14px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--text);
}
.tl-year {
  font-family: var(--en);
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.tl-item h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 12px;
  color: var(--text);
}
.tl-item p {
  margin-top: 10px;
  font-size: 13px;
  color: var(--dim);
  line-height: 2.2;
  max-width: 680px;
}

/* ---------- journal list ---------- */
.journal-list { display: flex; flex-direction: column; }
.journal-item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.journal-item:first-child { border-top: 1px solid var(--line); }
.journal-thumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-2); }
.journal-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s; }
.journal-item:hover .journal-thumb img { transform: scale(1.04); }
.journal-date { font-family: var(--en); font-size: 11px; letter-spacing: 0.2em; color: var(--faint); }
.journal-item h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 10px;
  line-height: 1.9;
}
.journal-item p { margin-top: 12px; font-size: 13px; color: var(--dim); line-height: 2.2; max-width: 640px; }

/* ---------- media ---------- */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.media-card {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: 36px 32px;
  transition: border-color 0.4s, transform 0.4s;
}
.media-card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.media-kind {
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--faint);
  text-transform: uppercase;
}
.media-card h3 {
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 14px;
  line-height: 1.9;
}
.media-card p { margin-top: 12px; font-size: 12.5px; color: var(--dim); line-height: 2.1; }

/* ---------- voices ---------- */
.voice-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.voice { background: var(--bg-2); border: 1px solid var(--line); padding: 36px 32px; }
.voice p.quote { font-size: 13.5px; line-height: 2.2; letter-spacing: 0.05em; color: var(--text); }
.voice .who { margin-top: 22px; font-size: 11px; letter-spacing: 0.14em; color: var(--faint); }

/* ---------- news ---------- */
.news-list { list-style: none; }
.news-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.news-list li:first-child { border-top: 1px solid var(--line); }
.news-date { font-family: var(--en); color: var(--faint); letter-spacing: 0.1em; font-size: 12px; }
.news-list a { color: var(--dim); transition: color 0.3s; }
.news-list a:hover { color: var(--text); }

/* ---------- WAVE band ---------- */
.wave-band { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.wave-band-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 100px 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.wave-band h2 {
  font-family: var(--en);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.wave-band p { margin-top: 16px; font-size: 13px; color: var(--dim); max-width: 560px; line-height: 2.2; }

/* ---------- contact ---------- */
.contact-wrap { text-align: center; padding: 60px 44px 150px; }
.contact-wrap .msg {
  font-size: clamp(14px, 1.8vw, 18px);
  letter-spacing: 0.14em;
  line-height: 2.7;
  color: var(--dim);
}
.contact-links {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.contact-links a {
  padding: 15px 40px;
  border: 1px solid var(--line-2);
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: background 0.4s, color 0.4s, border-color 0.4s;
}
.contact-links a:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
.contact-note { margin-top: 44px; font-size: 11.5px; color: var(--faint); letter-spacing: 0.1em; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 80px 44px 48px;
  text-align: center;
  background: var(--bg);
}
.footer-brand {
  font-family: var(--en);
  letter-spacing: 0.02em;
  font-size: 17px;
  font-weight: 600;
}
.footer-tag { margin-top: 12px; font-size: 11px; color: var(--faint); letter-spacing: 0.22em; }
.footer-nav {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
}
.footer-nav a {
  font-family: var(--en);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--dim);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--text); }
.copyright { margin-top: 44px; font-family: var(--en); font-size: 10.5px; color: var(--faint); letter-spacing: 0.1em; }

/* ---------- prose / origin ---------- */
.prose {
  max-width: 760px;
  font-size: clamp(14px, 1.5vw, 16.5px);
  line-height: 2.6;
  letter-spacing: 0.07em;
  color: var(--text);
  font-weight: 300;
}
.prose strong { color: var(--accent); font-weight: 500; }
.prose + .prose { margin-top: 1.8em; }
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: center;
}
.origin-grid .frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: saturate(0.85);
}
.origin-grid .frame figcaption {
  margin-top: 12px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--faint);
}

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: marq var(--dur, 46s) linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marq { to { transform: translateX(-50%); } }
.marquee.rev .marquee-track { animation-direction: reverse; }

/* logo wall — 白抜きで馴染ませる */
.logo-item { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; padding: 0 44px; height: 76px; }
.logo-item img {
  height: 40px; width: auto; max-width: 150px;
  object-fit: contain;
  filter: grayscale(1) invert(1) brightness(1.4);
  opacity: 0.45;
  transition: opacity 0.4s;
}
.logo-item:hover img { opacity: 0.9; }

/* voice marquee cards */
.vcard { flex: 0 0 auto; width: 360px; margin: 0 10px; background: var(--bg-2); border: 1px solid var(--line); padding: 28px 30px; }
.vcard .vq { font-size: 13px; line-height: 2.15; letter-spacing: 0.03em; color: var(--text); }
.vcard .vw { margin-top: 16px; font-size: 11px; letter-spacing: 0.1em; color: var(--faint); }

/* trust stats */
.stat-row { display: flex; gap: clamp(40px, 8vw, 110px); justify-content: center; flex-wrap: wrap; }
.stat { text-align: center; }
.stat .num {
  font-family: var(--en);
  font-weight: 600;
  font-size: clamp(40px, 5.4vw, 66px);
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat .num small { font-size: 0.4em; margin-left: 4px; color: var(--dim); font-weight: 500; }
.stat .lbl {
  margin-top: 14px;
  font-family: var(--en);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--faint);
  text-transform: uppercase;
}

/* media badges */
.badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 8px; }
.badge {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--dim);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  padding: 10px 24px;
  transition: border-color 0.3s, color 0.3s;
}
.badge:hover { border-color: var(--text); color: var(--text); }
.badge b { color: var(--text); font-weight: 500; }

/* section label (small EN over grids) */
.sec-label {
  font-family: var(--en);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ---------- journal / essays ---------- */
.essay-list { display: flex; flex-direction: column; }
.essay-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 40px;
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.essay-card:first-child { border-top: 1px solid var(--line); }
.essay-card .no {
  font-family: var(--en);
  font-size: 15px;
  font-weight: 500;
  color: var(--faint);
  letter-spacing: 0.06em;
  padding-top: 6px;
}
.essay-card .em {
  font-family: var(--en);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--faint);
  text-transform: uppercase;
}
.essay-card h3 {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.8;
  margin-top: 10px;
  transition: color 0.4s;
}
.essay-card .ex { margin-top: 14px; font-size: 13px; color: var(--dim); line-height: 2.2; max-width: 640px; }
.essay-card .go {
  margin-top: 18px;
  font-family: var(--en);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--dim);
}
.essay-card.soon { opacity: 0.45; }
a.essay-card:hover:not(.soon) h3 { color: var(--accent); }

/* article lead image */
.article-lead { max-width: 860px; margin: 8px auto 4px; padding: 0 28px; }
.article-lead img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 4px; display: block; }
.article-lead figcaption { margin-top: 10px; font-size: 11px; letter-spacing: 0.18em; color: var(--ink-faint); text-align: center; }

/* article reading view */
.article { max-width: 720px; margin: 0 auto; padding: 180px 28px 40px; }
.article .a-kicker {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--faint);
  text-transform: uppercase;
}
.article h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 4.2vw, 40px);
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-top: 24px;
  color: var(--text);
}
.article .a-meta { margin-top: 22px; font-family: var(--en); font-size: 11px; letter-spacing: 0.16em; color: var(--faint); }
.article-body { max-width: 720px; margin: 0 auto; padding: 30px 28px 90px; }
.article-body p {
  font-family: var(--serif);
  font-size: clamp(15px, 1.6vw, 16.5px);
  line-height: 2.6;
  letter-spacing: 0.05em;
  color: rgba(236, 235, 228, 0.88);
  margin-top: 1.8em;
}
.article-body p:first-child { margin-top: 0; }
.article-body p.big-first::first-letter {
  font-size: 3.2em;
  float: left;
  line-height: 0.9;
  padding: 6px 12px 0 0;
  color: var(--accent);
  font-weight: 600;
}
.article-body h2 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-top: 2.2em;
  color: var(--text);
}
.article-body blockquote {
  margin: 2em 0;
  padding: 6px 0 6px 26px;
  border-left: 1px solid var(--accent);
  font-family: var(--serif);
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.article-nav {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 28px 120px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--en);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--dim);
}
.article-nav a:hover { color: var(--text); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .cine-cats { grid-template-columns: repeat(2, 1fr); }
  .cine-cats a { padding-right: 32px; }
}
@media (max-width: 960px) {
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .site-header { padding: 18px 24px; }
  .site-header.is-scrolled { padding: 12px 24px; background: rgba(14, 14, 12, 0.95); backdrop-filter: none; }
  .nav-toggle { display: flex; position: relative; z-index: 240; }
  .nav {
    position: fixed;
    inset: 0;
    z-index: 210;
    background: rgba(14, 14, 12, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .nav a { font-size: 17px; }
  .nav-open .nav { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }
  .cinema-inner { padding: 140px 24px 60px; }
  .cine-scroll { display: none; }
  .page-hero, .section, .statement, .contact-wrap, .screening-inner, .wave-band-inner { padding-left: 24px; padding-right: 24px; }
  .page-hero { padding-top: 150px; }
  .article { padding-top: 150px; }
  .profile-grid { grid-template-columns: 1fr; gap: 44px; }
  .profile-photo { max-width: 340px; }
  .journal-item { grid-template-columns: 1fr; gap: 22px; }
  .news-list li { grid-template-columns: 1fr; gap: 4px; }
  .stories-grid { grid-template-columns: 1fr; }
  .wave-band-inner { grid-template-columns: 1fr; }
  .origin-grid { grid-template-columns: 1fr; gap: 40px; }
  .origin-grid .frame { max-width: 320px; }
}
@media (max-width: 640px) {
  .section { padding: 76px 22px; }
  .page-hero { padding: 140px 22px 56px; }
  .statement { padding: 100px 26px; }
  .cinema-inner { padding: 130px 22px 54px; }
  .cine-cats { grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-2); gap: 0 20px; }
  .cine-cats a { padding: 13px 20px 15px 0; }
  .cine-cats a.on::before, .cine-cats a:hover::before { width: calc(100% - 20px); }
  .cine-cats .no { font-size: 9.5px; }
  .cine-cats .cat-en { margin-top: 6px; font-size: 15.5px; }
  .cine-cats .cat-ja { margin-top: 4px; font-size: 10px; }
  .cine-cred { flex-direction: column; align-items: flex-start; gap: 6px; }
  .stories-grid { gap: 48px; }
  .vcard { width: 300px; padding: 22px 24px; }
  .essay-card { grid-template-columns: 1fr; gap: 8px; padding: 42px 0; }
  .timeline { padding-left: 28px; }
  .tl-item::before { left: -31px; }
  .tl-item { padding-bottom: 50px; }
  .contact-links { flex-direction: column; align-items: stretch; }
  .contact-links a { text-align: center; }
  .btn { display: block; text-align: center; padding: 16px 20px; }
}

/* ============================================
   v4 — video / cover story / field notes / motion / i18n
   ============================================ */

/* ---------- hero video ---------- */
.cine-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.7) brightness(0.5) contrast(1.04);
  transition: opacity 1.4s ease;
}
.cine-video.on { opacity: 1; }

/* film grain on hero */
.cinema::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ---------- field note metadata ---------- */
.fnote {
  margin-top: 12px;
  font-family: var(--en);
  font-size: 10px;
  font-weight: 450;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  line-height: 1.9;
}
.fnote b { font-weight: 500; color: var(--dim); }

/* ---------- cover story ---------- */
.cover-label {
  font-family: var(--en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 22px;
}
.story-feature {
  display: block;
  margin-bottom: clamp(56px, 8vw, 96px);
}
.story-feature .feat-thumb {
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
}
.story-feature .feat-thumb img,
.story-feature .feat-thumb video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition: transform 1.4s ease, opacity 0.8s ease, filter 0.6s ease;
}
.story-feature .feat-thumb video { opacity: 0; }
.story-feature .feat-thumb video.playing { opacity: 1; }
.story-feature:hover .feat-thumb img { transform: scale(1.03); filter: saturate(1); }
.story-feature .feat-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px 60px;
  padding-top: 28px;
  align-items: start;
}
.story-feature .story-pair { margin-top: 0; font-size: clamp(20px, 2.6vw, 28px); }
.story-feature .story-desc { max-width: 620px; font-size: 13px; }
.story-feature:hover .story-pair { color: var(--accent); }

/* ---------- heading rise ---------- */
.rise-mask { display: block; overflow: hidden; }
.rise {
  display: inline-block;
  transform: translateY(112%);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.08s;
}
.on .rise, .reveal.on .rise { transform: none; }

/* ---------- page transition ---------- */
html.js body { opacity: 0; transition: opacity 0.5s ease; }
html.js body.ready { opacity: 1; }
html.js body.leaving { opacity: 0; transition: opacity 0.28s ease; }

/* ---------- parallax ---------- */
.plx-wrap { overflow: hidden; }
.plx { will-change: transform; }

/* ---------- language toggle ---------- */
.lang {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-left: 34px;
}
.lang span { color: var(--faint); }
.lang a { color: var(--faint); transition: color 0.3s; }
.lang a:hover { color: var(--text); }
.lang a.on { color: var(--text); }
.header-right { display: flex; align-items: center; }

@media (max-width: 860px) {
  .story-feature .feat-body { grid-template-columns: 1fr; gap: 14px; }
  .story-feature .feat-thumb { aspect-ratio: 16 / 9; }
  .lang { margin-left: 0; margin-right: 16px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal { opacity: 1; transform: none; }
  .rise { transform: none; }
  html.js body { opacity: 1; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
}

/* ============================================
   v5 — now band / approach / field log / works filter / lightbox
   ============================================ */

/* ---------- NOW IN THE FIELD ---------- */
.now-band {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.now-band-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 15px 44px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
}
.now-band .pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  flex: 0 0 auto;
}
.now-band .pulse::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(0.4); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }
.now-band .now-ja { font-family: var(--sans); text-transform: none; letter-spacing: 0.14em; color: var(--text); font-weight: 400; }
.now-band .now-date { margin-left: auto; color: var(--faint); }

/* ---------- approach (3 pillars) ---------- */
.approach-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line-2);
}
.approach {
  padding: 40px 36px 46px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.approach + .approach { padding-left: 36px; border-left: 1px solid var(--line); }
.approach .no {
  font-family: var(--en);
  font-size: 10.5px;
  font-weight: 450;
  letter-spacing: 0.12em;
  color: var(--faint);
}
.approach .main-tag {
  display: inline-block;
  margin-left: 12px;
  font-family: var(--en);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(157, 184, 168, 0.4);
  border-radius: 99px;
  padding: 2px 10px;
  vertical-align: 2px;
}
.approach h3 {
  margin-top: 14px;
  font-family: var(--en);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.approach .ap-ja {
  margin-top: 6px;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  color: var(--dim);
}
.approach p.ap-desc {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--dim);
  line-height: 2.2;
  max-width: 340px;
}
.approach .ap-go {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--faint);
  transition: color 0.3s;
}
.approach:hover .ap-go { color: var(--text); }

/* ---------- field log (expedition map) ---------- */
.fieldlog-wrap {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: clamp(20px, 3vw, 40px);
}
.fieldlog-svg { width: 100%; height: auto; display: block; }
.fieldlog-svg .grid-line { stroke: rgba(236, 235, 228, 0.06); stroke-width: 1; }
.fieldlog-svg .grid-label { fill: var(--faint); font-family: "Inter Tight", sans-serif; font-size: 11px; letter-spacing: 0.08em; }

/* land: one path rendered as a dot-matrix (round caps + zero-length dashes) */
.fieldlog-svg .land-dots {
  fill: none;
  stroke: rgba(236, 235, 228, 0.19);
  stroke-width: 2.9;
  stroke-linecap: round;
  stroke-dasharray: 0.01 8.5;
  opacity: 0;
  transition: opacity 1.6s ease 0.2s;
}
.fieldlog-wrap.on .land-dots { opacity: 1; }

/* expedition routes: draw in when scrolled into view */
.fieldlog-svg .route-arc {
  fill: none;
  stroke: rgba(157, 184, 168, 0.38);
  stroke-width: 1;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1) calc(var(--i, 0) * 0.18s + 0.7s);
}
.fieldlog-wrap.on .route-arc { stroke-dashoffset: 0; }

/* pins */
.fieldlog-svg .pin { fill: var(--accent); }
.fieldlog-svg .pin-g { opacity: 0; transition: opacity 0.8s ease; }
.fieldlog-wrap.on .pin-g { opacity: 1; }
.fieldlog-wrap.on .pin-g:nth-child(1) { transition-delay: 0.9s; }
.fieldlog-wrap.on .pin-g:nth-child(2) { transition-delay: 1.05s; }
.fieldlog-wrap.on .pin-g:nth-child(3) { transition-delay: 1.2s; }
.fieldlog-wrap.on .pin-g:nth-child(4) { transition-delay: 1.35s; }
.fieldlog-wrap.on .pin-g:nth-child(5) { transition-delay: 1.5s; }
.fieldlog-wrap.on .pin-g:nth-child(6) { transition-delay: 1.65s; }
.fieldlog-wrap.on .pin-g:nth-child(7) { transition-delay: 1.8s; }
.fieldlog-wrap.on .pin-g:nth-child(8) { transition-delay: 1.95s; }
.fieldlog-wrap.on .pin-g:nth-child(9) { transition-delay: 2.1s; }
.fieldlog-svg .pin-pulse {
  fill: none;
  stroke: rgba(157, 184, 168, 0.55);
  stroke-width: 1;
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
}
.fieldlog-wrap.on .pin-pulse { animation: flPulse 3.4s ease-out infinite; }
.fieldlog-wrap.on .pin-g:nth-child(odd) .pin-pulse { animation-delay: 1.7s; }
@keyframes flPulse {
  0% { transform: scale(1); opacity: 0.65; }
  70%, 100% { transform: scale(4.6); opacity: 0; }
}
.fieldlog-svg .is-base .pin { fill: var(--text); }
.fieldlog-svg .is-base .pin-pulse { stroke: rgba(236, 235, 228, 0.6); }

/* labels with halo so they stay readable over dots */
.fieldlog-svg .pin-label {
  fill: var(--text);
  font-family: "Inter Tight", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  paint-order: stroke;
  stroke: var(--bg-2);
  stroke-width: 4;
  stroke-linejoin: round;
}
.fieldlog-svg .pin-sub {
  fill: var(--dim);
  font-family: "Inter Tight", sans-serif;
  font-size: 10px;
  letter-spacing: 0.06em;
  paint-order: stroke;
  stroke: var(--bg-2);
  stroke-width: 4;
  stroke-linejoin: round;
}
@media (prefers-reduced-motion: reduce) {
  .fieldlog-svg .land-dots, .fieldlog-svg .pin-g { opacity: 1; transition: none; }
  .fieldlog-svg .route-arc { stroke-dashoffset: 0; transition: none; }
  .fieldlog-wrap.on .pin-pulse { animation: none; }
}
.fieldlog-foot {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  font-family: var(--en);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ---------- works filter ---------- */
.wf-cats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-2);
  margin-bottom: 26px;
}
.wf-cats button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 20px 24px 22px 0;
  cursor: pointer;
  position: relative;
  color: inherit;
}
.wf-cats button::before {
  content: "";
  position: absolute;
  left: 0; top: -1px;
  height: 1px; width: 0;
  background: var(--text);
  transition: width 0.5s ease;
}
.wf-cats button.on::before, .wf-cats button:hover::before { width: calc(100% - 24px); }
.wf-cats .no {
  display: block;
  font-family: var(--en);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--faint);
}
.wf-cats .wc-en {
  display: block;
  margin-top: 10px;
  font-family: var(--en);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 550;
  letter-spacing: -0.01em;
  color: var(--dim);
  transition: color 0.4s;
}
.wf-cats button.on .wc-en, .wf-cats button:hover .wc-en { color: var(--text); }
.wf-cats .wc-ja {
  display: block;
  margin-top: 6px;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--faint);
}
.wf-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
  min-height: 38px;
}
.wf-tags button {
  background: none;
  border: 1px solid var(--line-2);
  border-radius: 99px;
  color: var(--dim);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 7px 18px;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.wf-tags button:hover { color: var(--text); border-color: var(--text); }
.wf-tags button.on { background: var(--text); color: var(--bg); border-color: var(--text); }
.work-card.hide, .counsel-panel.hide { display: none; }

/* counseling panel */
.counsel-panel {
  border: 1px solid var(--line);
  background: var(--bg-2);
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.counsel-panel .cp-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text);
}
.counsel-panel .cp-sub {
  margin-top: 14px;
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}
.counsel-panel p { font-size: 13px; color: var(--dim); line-height: 2.4; }
.counsel-panel p + p { margin-top: 1.4em; }
.counsel-panel .cp-note { margin-top: 20px; font-size: 11px; color: var(--faint); letter-spacing: 0.1em; }

/* ---------- video lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10, 10, 9, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vmin;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox .lb-frame {
  width: min(1100px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
}
.lightbox iframe { width: 100%; height: 100%; border: 0; }
.lightbox .lb-close {
  position: absolute;
  top: 22px; right: 26px;
  background: none;
  border: 0;
  color: var(--dim);
  font-family: var(--en);
  font-size: 13px;
  letter-spacing: 0.14em;
  cursor: pointer;
  padding: 10px;
}
.lightbox .lb-close:hover { color: var(--text); }
.play-link { cursor: pointer; }

/* ---------- story detail ---------- */
.story-hero {
  position: relative;
  min-height: 74svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.story-hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.55);
}
.story-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,14,12,0.5), transparent 40%, rgba(14,14,12,0.92));
}
.story-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 180px 44px 64px;
}
.story-hero .en {
  font-family: var(--en);
  font-weight: 600;
  font-size: clamp(34px, 5.6vw, 72px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text);
}
.story-hero .ja { margin-top: 18px; font-size: clamp(14px, 1.8vw, 18px); letter-spacing: 0.16em; color: var(--dim); }
.story-hero .fnote { margin-top: 22px; }
.story-figure { max-width: 1100px; margin: clamp(48px, 7vw, 90px) auto; padding: 0 28px; }
.story-figure img { width: 100%; filter: saturate(0.85); }
.story-figure figcaption { margin-top: 12px; font-family: var(--en); font-size: 10.5px; letter-spacing: 0.14em; color: var(--faint); text-transform: uppercase; }
.watch-film {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  font-family: var(--en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
  border: 1px solid var(--line-2);
  padding: 14px 30px;
  transition: background 0.4s, color 0.4s;
}
.watch-film:hover { background: var(--text); color: var(--bg); }
.watch-film .tri {
  width: 0; height: 0;
  border-left: 8px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

@media (max-width: 860px) {
  .approach-grid { grid-template-columns: 1fr; }
  .approach { padding: 32px 0; }
  .approach + .approach { padding-left: 0; border-left: none; }
  .wf-cats { grid-template-columns: repeat(2, 1fr); }
  .counsel-panel { grid-template-columns: 1fr; gap: 24px; }
  .now-band-inner { padding: 13px 24px; flex-wrap: wrap; gap: 8px 14px; }
  .now-band .now-date { margin-left: 0; width: 100%; }
  .fieldlog-svg .pin-sub { display: none; }
  .story-hero-inner { padding: 150px 24px 54px; }
}

/* ============ v5 additions ============ */
/* word motion */
.wm { display: inline-block; opacity: 0; transform: translateY(0.55em); filter: blur(3px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease; }
.wm.on { opacity: 1; transform: none; filter: none; }
.statement .verse { font-family: var(--en); font-size: clamp(14px, 1.7vw, 18px); letter-spacing: 0.05em;
  color: var(--dim); margin-top: 34px; line-height: 2; font-style: italic; }

/* journal filter tabs */
.jf-tabs { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }
.jf-tabs button { background: none; border: 1px solid var(--line-2); color: var(--dim); cursor: pointer;
  padding: 10px 22px; font-family: var(--en); font-size: 12px; letter-spacing: 0.06em;
  transition: color 0.3s, border-color 0.3s; border-radius: 999px; }
.jf-tabs button span { display: block; font-family: var(--sans); font-size: 9.5px; letter-spacing: 0.2em; color: var(--faint); }
.jf-tabs button.on, .jf-tabs button:hover { color: var(--text); border-color: var(--text); }

/* media / talks marquee cards */
.mq-card { display: inline-flex; flex-direction: column; gap: 4px; min-width: 280px;
  border: 1px solid var(--line); background: var(--panel); padding: 18px 24px; margin-right: 16px;
  transition: border-color 0.4s; }
.mq-card:hover { border-color: var(--line-2); }
.mq-card .k { font-family: var(--en); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
.mq-card .t { font-size: 12.5px; color: var(--text); letter-spacing: 0.04em; }
.mq-rev .marquee-track { animation-direction: reverse; }

/* field log pin links */
.fieldlog-svg .pin-link { cursor: pointer; }
.fieldlog-svg .pin-link:hover .pin-label { fill: var(--accent); }
.fieldlog-svg .pin-link:hover .pin { r: 4.5; }

/* work detail */
.wd-hero { max-height: 62vh; overflow: hidden; }
.wd-hero img { width: 100%; object-fit: cover; }
.thumb-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: var(--panel); border: 1px solid var(--line); }
.thumb-ph span { font-family: var(--en); font-size: 11px; letter-spacing: 0.35em; color: var(--faint); }

/* floating CTA */
.cta-float { position: fixed; right: 20px; bottom: 20px; z-index: 300; display: flex; flex-direction: column;
  gap: 8px; align-items: flex-end; opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease; }
.cta-float.show { opacity: 1; transform: none; pointer-events: auto; }
.cta-line { display: inline-flex; align-items: center; gap: 9px; background: #1a1a17; color: var(--text);
  border: 1px solid rgba(157,184,168,0.5); border-radius: 999px; padding: 13px 26px;
  font-size: 12.5px; letter-spacing: 0.08em; box-shadow: 0 8px 30px rgba(0,0,0,0.45);
  transition: background 0.3s, border-color 0.3s; }
.cta-line:hover { background: #22221e; border-color: var(--accent); }
.cta-line .dot { width: 8px; height: 8px; border-radius: 50%; background: #6fbf73;
  box-shadow: 0 0 0 0 rgba(111,191,115,0.5); animation: ctaPulse 2.4s ease-out infinite; }
@keyframes ctaPulse { 0% { box-shadow: 0 0 0 0 rgba(111,191,115,0.45); } 70%, 100% { box-shadow: 0 0 0 9px rgba(111,191,115,0); } }
.cta-mail { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.14em; color: var(--dim);
  background: rgba(14,14,12,0.8); padding: 6px 14px; border-radius: 999px; border: 1px solid var(--line); }
.cta-mail:hover { color: var(--text); }
@media (max-width: 860px) { .cta-float { right: 14px; bottom: 14px; } }
@media (prefers-reduced-motion: reduce) { .wm { transition: none; opacity: 1; transform: none; filter: none; } }

/* contact form */
.cform { max-width: 680px; margin: 0 auto; text-align: left; }
.cform .chips { display: flex; flex-wrap: wrap; gap: 10px; }
.cform .chip { border: 1px solid var(--line-2); border-radius: 999px; padding: 12px 22px; cursor: pointer;
  font-size: 13px; letter-spacing: 0.06em; color: var(--dim); transition: all 0.3s; user-select: none; }
.cform .chip input { position: absolute; opacity: 0; pointer-events: none; }
.cform .chip.on { color: var(--bg); background: var(--text); border-color: var(--text); }
.cform label.fl { display: block; margin-top: 34px; font-family: var(--en); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); }
.cform input[type="text"], .cform input[type="email"], .cform textarea {
  width: 100%; margin-top: 10px; background: var(--panel); border: 1px solid var(--line);
  color: var(--text); padding: 16px 18px; font-family: var(--sans); font-size: 14px; letter-spacing: 0.04em; }
.cform input:focus, .cform textarea:focus { outline: none; border-color: var(--accent); }
.cform textarea { min-height: 120px; resize: vertical; }
.cform .submit { margin-top: 40px; width: 100%; background: var(--text); color: var(--bg); border: 0;
  padding: 18px; font-size: 13px; letter-spacing: 0.3em; cursor: pointer; font-family: var(--sans); transition: opacity 0.3s; }
.cform .submit:hover { opacity: 0.85; }
.cform .hint { margin-top: 12px; font-size: 11px; color: var(--faint); letter-spacing: 0.08em; text-align: center; }
.line-hero { max-width: 680px; margin: 0 auto 56px; border: 1px solid rgba(157,184,168,0.35); background: var(--panel);
  padding: 36px 34px; text-align: center; }
.line-hero h2 { font-family: var(--serif); font-size: 20px; font-weight: 600; letter-spacing: 0.1em; }
.line-hero p { margin-top: 12px; font-size: 12.5px; color: var(--dim); line-height: 2.1; }
.line-hero .btn-line { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px;
  background: #2f9e44; color: #fff; border-radius: 999px; padding: 16px 44px; font-size: 14px;
  letter-spacing: 0.12em; transition: opacity 0.3s; }
.line-hero .btn-line:hover { opacity: 0.88; }
.voice-article { border: 1px solid var(--line); background: var(--panel); padding: 44px 40px; margin-bottom: 28px; }
.voice-article h3 { font-family: var(--serif); font-size: 19px; font-weight: 600; letter-spacing: 0.08em; line-height: 1.9; }
.voice-article .vmeta { margin-top: 10px; font-size: 11px; letter-spacing: 0.16em; color: var(--accent); }
.voice-article .vbody { margin-top: 20px; font-size: 13.5px; color: var(--dim); line-height: 2.4; }

.voice-article .vlabel { margin-top: 26px; font-family: var(--en); font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--faint); border-top: 1px solid var(--line); padding-top: 18px; }
.voice-article .vlabel:first-of-type { border-top: none; padding-top: 0; }

/* voices photos */
.vhead { display: flex; gap: 24px; align-items: flex-start; }
.vphoto { position: relative; flex: 0 0 84px; width: 84px; height: 84px; border-radius: 50%;
  overflow: hidden; border: 1px solid var(--line-2); background: var(--bg-2); }
.vphoto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vphoto span { display: none; position: absolute; inset: 0; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 30px; color: var(--faint); }
.vphoto.noimg img { display: none; }
.vphoto.noimg span { display: flex; }
.voice-article .vabout { border-left: 2px solid var(--line-2); padding-left: 16px; margin-top: 24px; font-size: 12.5px; }
@media (max-width: 640px) { .vhead { flex-direction: column; } }

/* TOP voice marquee with faces */
.vcard2 { display: inline-flex; gap: 18px; align-items: flex-start; width: 400px; white-space: normal;
  border: 1px solid var(--line); background: var(--panel); padding: 24px 26px; margin-right: 18px;
  transition: border-color 0.4s; }
.vcard2:hover { border-color: var(--line-2); }
.vcard2 .vphoto { flex: 0 0 56px; width: 56px; height: 56px; }
.vcard2 .vphoto span { font-size: 22px; }
.vcard2 .vq { font-family: var(--serif); font-size: 13.5px; line-height: 2; letter-spacing: 0.04em; color: var(--text); }
.vcard2 .vw { margin-top: 10px; font-size: 10.5px; letter-spacing: 0.12em; color: var(--faint); }

.media-card .mthumb { aspect-ratio: 16/9; overflow: hidden; margin: -34px -32px 20px; border-bottom: 1px solid var(--line); }
.media-card .mthumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s ease; }
a.media-card:hover .mthumb img { transform: scale(1.04); }

/* works article body */
.prose p { margin-top: 1.3em; }
.prose .wlist { margin: 1.4em 0 0 2px; list-style: none; }
.prose .wlist li { position: relative; padding-left: 22px; margin-top: 10px; font-size: 13.5px; color: var(--dim); line-height: 2; }
.prose .wlist li::before { content: "・"; position: absolute; left: 0; color: var(--accent); }
.prose .wq { margin-top: 1.6em; border-left: 2px solid rgba(157,184,168,0.5); padding: 6px 0 6px 20px;
  font-family: var(--serif); font-size: 13.5px; color: var(--dim); line-height: 2.2; }

/* ============ v6 readability — 読み物の視認性 ============ */
/* 読み物本文は大きく・明るく・ウェイトを上げる */
.prose p, .journal-item > div > p, .voice-article .vbody,
.essay-card .ex, .article .prose p {
  font-size: 15px;
  line-height: 2.15;
  color: #cfccc2;
  font-weight: 400;
}
.prose .wlist li { font-size: 14.5px; color: #c5c2b8; font-weight: 400; }
.prose .wq { font-size: 14.5px; color: #c5c2b8; }
.voice-article .vabout { font-size: 13.5px; color: #b6b3a9; }
.voice-article .vlabel, .prose .vlabel { font-size: 11px; color: #a89f7d; letter-spacing: 0.22em; }
.voice-article h3 { color: var(--text); }
.voice-article .vmeta { font-size: 11.5px; color: #b6b3a9; }
/* カード類の説明文 */
.work-desc, .story-desc, .media-card p, .journal-item p { font-size: 13.5px; }
.media-card p { color: #c0bdb3; }
.work-client, .story-place { color: #b6b3a9; font-size: 11.5px; }
/* 座標・注記などの極小テキスト */
.fnote, .journal-date { color: #a89f7d; }
.fnote { font-size: 11px; }
/* リード文 */
.page-hero p.lead, .section-head p.note { font-size: 14.5px; color: #c5c2b8; }
/* マーキーの声 */
.vcard2 .vq { color: #e2dfd6; }
.vcard2 .vw { color: #a5a298; font-size: 11px; }
/* フォーム・ヒント */
.cform .hint { color: #9d9a90; font-size: 12px; }
.contact-note { color: #9d9a90; }
/* フッター */
.footer-nav a { color: #a5a298; }

/* field log: NGO派遣（金） */
.fieldlog-svg .route-arc.ngo { stroke: rgba(201, 168, 106, 0.4); }
.fieldlog-svg .is-ngo .pin { fill: #c9a86a; }
.fieldlog-svg .is-ngo .pin-pulse { stroke: rgba(201, 168, 106, 0.55); }
.fieldlog-foot .lg { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 7px; vertical-align: baseline; }
.fieldlog-foot .lg-field { background: #9db8a8; }
.fieldlog-foot .lg-ngo { background: #c9a86a; }

/* EN nav: Japanese-only marker */
.jp-tag { font-size: 7.5px; letter-spacing: 0.1em; color: var(--faint); margin-left: 4px; vertical-align: super; }

/* voices: 記事内フォト */
.vgal { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 26px; }
.vgal .work-thumb { aspect-ratio: 16/10; }
.vgal .work-thumb:only-child { grid-column: 1 / -1; }

/* voices: 現場写真向けに角丸スクエア＆大きめ */
.voice-article .vphoto { flex: 0 0 118px; width: 118px; height: 118px; border-radius: 14px; }
.voice-article .vphoto span { font-size: 38px; }
@media (max-width: 640px) { .voice-article .vphoto { flex-basis: auto; width: 100%; height: 180px; border-radius: 10px; } }
