:root {
  --color-ink: #090b0f;
  --color-ink-soft: #11151d;
  --color-paper: #f3efe5;
  --color-paper-deep: #e6dfcf;
  --color-gold: #d7b85e;
  --color-gold-light: #f1d98b;
  --color-copper: #a97843;
  --color-text: #25221c;
  --color-muted: #6d685e;
  --color-white: #fffdf7;
  --color-line: rgba(112, 91, 45, 0.24);
  --font-sans: "Noto Sans JP", system-ui, sans-serif;
  --font-display: "Roboto Slab", "Noto Sans JP", serif;
  --content-max: 1180px;
  --content-narrow: 760px;
  --header-height: 72px;
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --shadow-soft: 0 18px 60px rgba(24, 19, 8, 0.12);
  --section-space: clamp(5rem, 10vw, 9rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; }
h1, h2, h3, p, dl, dd { margin-top: 0; }
h1, h2, h3 { line-height: 1.35; }

.skip-link {
  position: fixed;
  inset: 0 auto auto 1rem;
  z-index: 1000;
  padding: 0.6rem 1rem;
  color: var(--color-ink);
  background: var(--color-gold-light);
  transform: translateY(-120%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 0 3vw;
  color: var(--color-white);
  background: linear-gradient(to bottom, rgba(6, 8, 12, 0.9), rgba(6, 8, 12, 0));
  transition: background 240ms ease, box-shadow 240ms ease;
}
.site-header.is-scrolled {
  background: rgba(8, 10, 14, 0.94);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand b { color: var(--color-gold-light); }
.global-nav { display: flex; align-items: center; gap: clamp(0.8rem, 1.8vw, 2rem); }
.global-nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.global-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.4rem;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.global-nav a:hover::after, .global-nav a:focus-visible::after { transform: scaleX(1); }
.menu-button { display: none; }

.hero {
  position: relative;
  display: grid;
  min-height: max(760px, 100svh);
  place-items: center;
  overflow: hidden;
  color: var(--color-white);
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.95) 0%, rgba(5, 7, 12, 0.62) 54%, rgba(5, 7, 12, 0.8) 100%),
    url("../img/fvbg.webp") center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 42%, rgba(215, 184, 94, 0.16), transparent 28%), linear-gradient(to top, var(--color-ink), transparent 24%);
}
.hero__stars, .hero__stars::before, .hero__stars::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(#fff 0.7px, transparent 0.7px);
  background-size: 49px 49px;
  opacity: 0.3;
}
.hero__stars::before { transform: translate(17px, 11px); background-size: 73px 73px; opacity: 0.45; }
.hero__stars::after { transform: translate(31px, 27px); background-size: 113px 113px; opacity: 0.65; }
.hero__inner {
  position: relative;
  z-index: 2;
  width: min(92%, var(--content-max));
  padding: calc(var(--header-height) + 3rem) 0 5rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.2rem 0.9rem;
  border: 1px solid var(--color-gold);
  border-radius: 999px;
  color: var(--color-gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.hero__edition {
  margin: 1.5rem 0 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero__edition span { color: var(--color-gold-light); }
.hero h1 {
  margin-bottom: 1.35rem;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 8.5vw, 7.6rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow: 0 10px 44px rgba(0, 0, 0, 0.45);
}
.hero__subcopy {
  margin-bottom: 1rem;
  color: var(--color-gold-light);
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.hero__description { max-width: 660px; color: rgba(255, 255, 255, 0.82); font-size: 0.98rem; }
.deadline {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  width: fit-content;
  margin: 2rem 0;
  padding: 0.65rem 1.1rem 0.55rem;
  border-block: 1px solid rgba(215, 184, 94, 0.65);
}
.deadline span { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.15em; }
.deadline strong { font-family: var(--font-display); font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 500; letter-spacing: 0.04em; }
.deadline small { color: var(--color-gold-light); font-family: var(--font-display); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.75rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}
.button--gold { color: #19150d; background: linear-gradient(135deg, var(--color-gold-light), var(--color-copper)); box-shadow: 0 10px 30px rgba(215, 184, 94, 0.22); }
.button--gold:hover, .button--gold:focus-visible { filter: brightness(1.08); transform: translateY(-1px); }
.button--ghost { border-color: rgba(255, 255, 255, 0.4); color: var(--color-white); background: rgba(255, 255, 255, 0.06); }
.button--disabled, .is-disabled { cursor: default; opacity: 0.74; }
.button--outline { border-color: var(--color-copper); color: var(--color-copper); background: transparent; }
.button--outline:hover, .button--outline:focus-visible { background: rgba(169, 120, 67, 0.12); }
.button--disabled { width: 100%; border-color: var(--color-line); color: var(--color-muted); background: var(--color-paper); }
.scroll-cue {
  position: absolute;
  right: 2rem;
  bottom: 3rem;
  z-index: 2;
  margin: 0;
  padding-right: 3.3rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  transform: rotate(90deg);
  transform-origin: right bottom;
}
.scroll-cue::after { content: ""; position: absolute; right: 0; top: 50%; width: 2.6rem; height: 1px; background: var(--color-gold); }

.section { position: relative; padding: var(--section-space) 0; overflow: hidden; }
.section__inner { position: relative; z-index: 2; width: min(90%, var(--content-max)); margin: 0 auto; }
.narrow { max-width: var(--content-narrow); }
.section--ink { color: var(--color-white); background: var(--color-ink); }
.section--ink::before, .section--contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 22%, rgba(215, 184, 94, 0.09), transparent 30%), radial-gradient(circle at 82% 72%, rgba(79, 93, 132, 0.12), transparent 30%);
}
.section--paper { background: var(--color-paper); }
.section--paper::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: linear-gradient(rgba(140, 117, 67, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(140, 117, 67, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.section-heading { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-heading__en {
  margin-bottom: 0.65rem;
  color: var(--color-copper);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
}
.section-heading h2 { margin: 0; font-size: clamp(1.8rem, 3.2vw, 2.8rem); letter-spacing: 0.05em; }
.section-heading--light .section-heading__en { color: var(--color-gold); }
.section-heading--light h2 { color: var(--color-white); }
.section-lead, .overview-lead { font-size: clamp(1rem, 1.6vw, 1.1rem); }
.overview-lead { margin-bottom: 4rem; }
.message-copy { color: rgba(255, 255, 255, 0.8); }
.message-copy p + p { margin-top: 1.5rem; }
.signature { margin: 3rem 0; text-align: right; color: rgba(255, 255, 255, 0.74); }
.signature strong { color: var(--color-white); font-size: 1.12rem; }
.producer-card {
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid rgba(215, 184, 94, 0.32);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}
.producer-card__role, .team-card__label { color: var(--color-gold-light); font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; }
.producer-card h3 { font-size: 1.65rem; }
.producer-card h3 span { color: rgba(255, 255, 255, 0.58); font-size: 0.85rem; font-weight: 500; }
.producer-card > p:last-child { margin-bottom: 0; }
.producer-card::after { display: block; clear: both; content: ""; }
.producer-card__portrait { float: left; width: 140px; height: 140px; margin: 0 2rem 1rem 0; border: 1px solid rgba(215, 184, 94, 0.45); border-radius: 50%; object-fit: cover; }
.pending-note { color: #b9b4a9; font-size: 0.76rem; }

.section--movie { background: var(--color-paper-deep); }
.video-frame {
  position: relative;
  margin-top: 2.5rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: #0b0d12;
  box-shadow: var(--shadow-soft);
}
.video-frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.video-frame__placeholder {
  display: grid;
  place-content: center;
  gap: 0.7rem;
  height: 100%;
  padding: 2rem;
  text-align: center;
  color: rgba(255, 253, 247, 0.74);
  background: linear-gradient(rgba(8, 10, 14, 0.84), rgba(8, 10, 14, 0.94)), url("../img/bg5.webp") center / cover;
}
.video-frame__placeholder span { color: var(--color-gold-light); font-family: var(--font-display); letter-spacing: 0.3em; }
.video-frame__placeholder p { margin: 0; font-size: 0.92rem; }

.program-flow { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin: 0; padding: 1px; list-style: none; background: var(--color-line); }
.program-flow li { display: grid; grid-template-columns: 56px 1fr; gap: 1rem; min-height: 230px; padding: clamp(1.5rem, 3vw, 2.4rem); background: rgba(255, 253, 247, 0.9); }
.program-flow li:last-child { grid-column: 1 / -1; }
.program-flow li > span { color: var(--color-copper); font-family: var(--font-display); font-size: 1.4rem; }
.program-flow b { color: var(--color-copper); font-size: 0.78rem; letter-spacing: 0.14em; }
.program-flow h3 { margin: 0.35rem 0 0.8rem; font-size: 1.15rem; }
.program-flow p { margin: 0; color: var(--color-muted); font-size: 0.9rem; }

.section--results {
  color: var(--color-white);
  background: linear-gradient(rgba(5, 7, 11, 0.84), rgba(5, 7, 11, 0.94)), url("../img/bg6.webp") center / cover fixed;
}
.results-lead, .results-story { color: rgba(255, 255, 255, 0.78); }
.metrics { display: grid; grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 4rem auto 2rem; border-block: 1px solid rgba(215, 184, 94, 0.35); }
.metrics div { padding: 2.4rem 1rem; text-align: center; }
.metrics div + div { border-left: 1px solid rgba(215, 184, 94, 0.24); }
.metrics dt { color: var(--color-gold-light); font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5.4rem); line-height: 1; }
.metrics dt small { margin-left: 0.2rem; font-family: var(--font-sans); font-size: 0.9rem; }
.metrics dd { margin: 0.9rem 0 0; color: rgba(255, 255, 255, 0.76); font-size: 0.85rem; line-height: 1.6; }
.results-note { margin-bottom: 3.5rem; text-align: center; color: var(--color-gold-light); font-size: 0.9rem; }
.results-story { margin-bottom: 2.5rem; }
.text-link { display: inline-flex; gap: 0.8rem; align-items: center; font-weight: 700; text-underline-offset: 0.35em; }
.text-link--light { color: var(--color-gold-light); }

.timeline { position: relative; max-width: 900px; margin: 4rem auto 0; padding: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; left: 156px; top: 1rem; bottom: 1rem; width: 1px; background: var(--color-line); }
.timeline li { position: relative; display: grid; grid-template-columns: 130px 1fr; gap: 52px; min-height: 136px; }
.timeline li::before { content: ""; position: absolute; left: 151px; top: 0.75rem; width: 11px; height: 11px; border: 2px solid var(--color-paper); border-radius: 50%; background: var(--color-copper); box-shadow: 0 0 0 1px var(--color-copper); }
.timeline time { color: var(--color-copper); font-family: var(--font-display); font-size: 1.18rem; font-weight: 700; text-align: right; }
.timeline time small { display: block; font-size: 0.62rem; letter-spacing: 0.14em; }
.timeline h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.timeline p { color: var(--color-muted); font-size: 0.9rem; }
.timeline__deadline h3, .timeline__deadline time { color: #8e3f2b; }

.team-grid, .entry-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 4rem; }
.team-card { min-height: 260px; padding: 2rem; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.04); }
.team-card--producer { border-color: rgba(215, 184, 94, 0.48); }
.team-card h3 { margin: 2.5rem 0 0.3rem; font-size: 1.55rem; }
.team-card h3 small { font-size: 0.68em; }
.team-card p:not(.team-card__label) { color: rgba(255, 255, 255, 0.72); }
.team-card span { color: rgba(255, 255, 255, 0.5); font-size: 0.8rem; }
.team-card--mentor { display: flex; flex-direction: column; align-items: center; text-align: center; }
.team-card__portrait { width: 112px; height: 112px; margin-bottom: 1.3rem; border: 1px solid rgba(215, 184, 94, 0.45); border-radius: 50%; object-fit: cover; }
.team-card--mentor h3 { margin: 0.5rem 0 0.25rem; font-size: 1.28rem; }
.team-card--mentor p:not(.team-card__label) { margin-bottom: 0.55rem; }
.team-card--mentor span { line-height: 1.65; }
.team-card--pending { grid-column: span 3; display: grid; grid-template-columns: 110px 1fr; column-gap: 2rem; align-items: center; min-height: 190px; }
.team-card--pending img { grid-row: 1 / 3; border-radius: 50%; opacity: 0.55; }
.team-card--pending h3 { margin: 0; }

.section--entry { color: var(--color-white); background: linear-gradient(rgba(8, 10, 14, 0.84), rgba(8, 10, 14, 0.92)), url("../img/bg7.webp") center / cover; }
.entry-card { display: flex; flex-direction: column; padding: clamp(1.5rem, 3vw, 2.2rem); border-radius: var(--radius-md); color: var(--color-text); background: rgba(255, 253, 247, 0.96); box-shadow: var(--shadow-soft); }
.entry-card__number { color: var(--color-copper); font-family: var(--font-display); font-size: 1.8rem; }
.entry-card h3 { min-height: 3.1rem; font-size: 1.2rem; }
.entry-card > p:not(.entry-card__number) { flex: 1; color: var(--color-muted); font-size: 0.9rem; }
.entry-card .button { width: 100%; margin-top: 1.4rem; }
.contact-action { margin-top: 2rem; }
.alumni-callout { margin-top: 1.2rem; padding: clamp(2rem, 5vw, 4rem); border: 1px solid rgba(215, 184, 94, 0.38); border-radius: var(--radius-md); background: rgba(5, 7, 11, 0.66); }
.alumni-callout h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
.alumni-callout > p:last-child { max-width: 760px; margin-bottom: 0; color: rgba(255, 255, 255, 0.72); }

.faq-list { border-top: 1px solid var(--color-line); }
.faq-list details { border-bottom: 1px solid var(--color-line); }
.faq-list summary { position: relative; padding: 1.6rem 3rem 1.6rem 0; cursor: pointer; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0.5rem; top: 1.25rem; color: var(--color-copper); font-family: var(--font-display); font-size: 1.8rem; font-weight: 300; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 2rem 1.7rem; color: var(--color-muted); }

.section--contact { color: var(--color-white); text-align: center; background: var(--color-ink-soft); }
.section--contact .section-heading { text-align: left; }
.section--contact p { color: rgba(255, 255, 255, 0.72); }
.status-chip { display: inline-flex; margin: 1rem 0 0; padding: 0.45rem 0.9rem; border: 1px solid rgba(215, 184, 94, 0.4); border-radius: 99px; color: var(--color-gold-light) !important; font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.12em; }
.site-footer { display: grid; grid-template-columns: 1fr auto; gap: 1rem 3rem; align-items: center; padding: 3rem 5vw; border-top: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.65); background: #050609; }
.brand--footer { color: var(--color-white); }
.site-footer nav { display: flex; gap: 1.5rem; font-size: 0.78rem; }
.site-footer small { font-size: 0.7rem; }
.site-footer .pending-note { margin: 0; text-align: right; }

:focus-visible { outline: 2px solid var(--color-gold-light); outline-offset: 4px; }

@media (max-width: 980px) {
  :root { --header-height: 64px; }
  .site-header { padding-inline: 4vw; }
  .menu-button { position: relative; z-index: 2; display: grid; grid-template-columns: auto 26px; align-items: center; gap: 0.55rem; border: 0; color: var(--color-white); background: transparent; }
  .menu-button__label { grid-row: span 2; font-size: 0.7rem; letter-spacing: 0.12em; }
  .menu-button__line { display: block; width: 26px; height: 1px; background: currentColor; transition: transform 180ms ease; }
  .menu-button[aria-expanded="true"] .menu-button__line:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] .menu-button__line:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .global-nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 1.3rem; visibility: hidden; opacity: 0; background: rgba(6, 8, 12, 0.98); transition: opacity 180ms ease, visibility 180ms ease; }
  .global-nav.is-open { visibility: visible; opacity: 1; }
  .global-nav a { font-size: 1.05rem; }
  .team-grid, .entry-grid { grid-template-columns: 1fr 1fr; }
  .team-card--pending { grid-column: span 2; }
  .entry-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  :root { --section-space: 5rem; }
  body { font-size: 15px; line-height: 1.85; }
  .brand span { font-size: 0.75rem; }
  .hero { min-height: 820px; align-items: start; }
  .hero__inner { width: 88%; padding-top: 8.2rem; }
  .hero h1 { font-size: clamp(2.4rem, 12vw, 3rem); letter-spacing: -0.02em; white-space: nowrap; }
  .hero__subcopy br { display: none; }
  .hero__description { font-size: 0.88rem; }
  .deadline { gap: 0.45rem; padding-inline: 0.7rem; }
  .deadline strong { font-size: 1.75rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .scroll-cue { display: none; }
  .section__inner { width: 88%; }
  .section-heading__en { font-size: clamp(2.5rem, 14vw, 4rem); }
  .section-heading h2 { font-size: 1.65rem; }
  .producer-card__portrait { float: none; width: 112px; height: 112px; margin: 0 0 1.25rem; }
  .program-flow { grid-template-columns: 1fr; }
  .program-flow li { grid-template-columns: 44px 1fr; min-height: 0; }
  .program-flow li:last-child { grid-column: auto; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metrics dt { font-size: 3.5rem; }
  .timeline::before { left: 9px; }
  .timeline li { grid-template-columns: 1fr; gap: 0.3rem; min-height: 150px; padding-left: 36px; }
  .timeline li::before { left: 4px; }
  .timeline time { text-align: left; }
  .timeline time small { display: inline; margin-left: 0.4rem; }
  .team-grid, .entry-grid { grid-template-columns: 1fr; }
  .team-card--pending, .entry-card:last-child { grid-column: auto; }
  .team-card--pending { grid-template-columns: 70px 1fr; }
  .team-card--pending img { width: 70px; height: 70px; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { flex-direction: column; gap: 0.5rem; }
  .site-footer .pending-note { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .section--results { background-attachment: scroll; }
}
