:root {
  --c-paper: #f3ede4;
  --c-paper-2: #e8ded1;
  --c-paper-3: #d9cbbc;
  --c-ink: #191817;
  --c-ink-2: #302d2a;
  --c-muted: #756d65;
  --c-line: #b6a797;
  --c-white: #fffdf9;
  --c-orange: #d96f1d;
  --c-purple: #6d43a5;
  --c-live: #c9413a;
  --c-video: #7450a8;
  --font-serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  --font-sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  --shadow-paper: 0 12px 30px rgba(35, 28, 23, .12);
  --shell: 1280px;
  --gutter: clamp(20px, 3.2vw, 48px);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 82px; }

body {
  margin: 0;
  background: #1a1918;
  color: var(--c-ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: .2em; }
button, input, textarea, select { font: inherit; }

:focus-visible {
  outline: 3px solid #ee9b48;
  outline-offset: 4px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 16px;
  background: var(--c-ink);
  color: var(--c-white);
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.content-shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.paper-section {
  position: relative;
  isolation: isolate;
  background-color: var(--c-paper);
  background-image:
    radial-gradient(circle at 13% 22%, rgba(81, 65, 52, .055) 0 1px, transparent 1.5px),
    radial-gradient(circle at 82% 71%, rgba(81, 65, 52, .04) 0 1px, transparent 1.5px),
    linear-gradient(102deg, transparent 0 48%, rgba(255,255,255,.18) 50%, transparent 52%);
  background-size: 19px 23px, 27px 31px, 100% 100%;
}

.ruled-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .22;
  pointer-events: none;
  background:
    linear-gradient(15deg, transparent 0 86%, rgba(70,58,48,.18) 86.2%, transparent 86.6%) left bottom / 44% 100% no-repeat,
    radial-gradient(circle at 97% 22%, transparent 0 66px, rgba(83,70,59,.17) 67px 68px, transparent 69px 79px, rgba(83,70,59,.12) 80px 81px, transparent 82px);
}

.dark-section {
  position: relative;
  background-color: #1c1b1a;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.035) 0 1px, transparent 1.5px),
    linear-gradient(120deg, rgba(255,255,255,.025), transparent 40%);
  background-size: 17px 19px, 100% 100%;
  color: var(--c-white);
}

.section-kicker {
  margin: 0;
  color: inherit;
  font: 700 clamp(.98rem, 1.3vw, 1.2rem)/1 var(--font-serif);
  letter-spacing: .08em;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  margin: 0 0 30px;
}
.section-heading > div { display: flex; align-items: baseline; gap: 18px; }
.section-heading h2,
.about-copy h2,
.document-page h1 {
  margin: 0;
  font: 700 clamp(1.4rem, 2.2vw, 2rem)/1.25 var(--font-serif);
  letter-spacing: .06em;
}
.section-heading > p { margin: 0 0 2px; color: var(--c-muted); font-family: var(--font-serif); font-size: .83rem; }
.section-heading--light > p { color: rgba(255,255,255,.38); }
.section-heading--compact { margin-bottom: 12px; }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid currentColor;
  border-radius: 2px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: .9rem;
  line-height: 1.2;
  letter-spacing: .04em;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--paper { background: var(--c-white); color: var(--c-ink); }
.button--paper:hover { background: var(--c-ink); color: var(--c-white); }
.button--ink { background: var(--c-ink); color: var(--c-white); border-color: rgba(255,255,255,.7); }
.button--ink:hover { background: #332f2b; }
.button--glass { background: rgba(16,15,15,.68); color: var(--c-white); border-color: rgba(255,255,255,.65); backdrop-filter: blur(6px); }
.button small { font-size: .62rem; opacity: .72; }
.button.is-disabled { cursor: not-allowed; opacity: .72; }

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: 76px;
  background-color: rgba(243,237,228,.97);
  background-image: radial-gradient(circle, rgba(60,50,43,.05) 0 1px, transparent 1.2px);
  background-size: 22px 25px;
  border-bottom: 1px solid rgba(63,54,47,.38);
  box-shadow: 0 3px 12px rgba(29,24,20,.08);
}
.site-header__inner {
  width: min(100%, 1400px);
  min-height: 76px;
  margin: 0 auto;
  padding: 0 clamp(18px, 2.2vw, 36px);
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 54px);
}
.site-brand { flex: 0 0 auto; display: flex; flex-direction: column; color: var(--c-ink); text-decoration: none; }
.site-brand__title { font: 800 clamp(1.4rem, 2vw, 2rem)/1 var(--font-serif); letter-spacing: -.06em; }
.site-brand__sub { margin-top: 4px; font-size: .45rem; letter-spacing: .22em; text-align: center; }
.custom-logo-link { display: block; }
.custom-logo { width: auto; max-width: 220px; max-height: 55px; }
.site-nav { min-width: 0; flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.site-nav__list { display: flex; align-items: center; justify-content: flex-end; gap: clamp(11px, 1.25vw, 21px); list-style: none; margin: 0; padding: 0; }
.site-nav__list a {
  position: relative;
  display: block;
  padding: 28px 0 24px;
  font: 700 clamp(.57rem, .63vw, .7rem)/1 var(--font-serif);
  letter-spacing: .02em;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav__list a::after { content: ""; position: absolute; right: 50%; bottom: 18px; left: 50%; height: 2px; background: var(--c-orange); transition: left .2s ease, right .2s ease; }
.site-nav__list a:hover::after,
.site-nav__list a:focus-visible::after { right: 0; left: 0; }
.site-nav__social { display: flex; gap: 12px; font-weight: 800; font-size: .72rem; }
.site-nav__social a { text-decoration: none; }
.menu-toggle { display: none; }

/* Hero */
.hero {
  min-height: clamp(610px, 53vw, 760px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--c-paper-2);
  border-bottom: 1px solid rgba(63,54,47,.5);
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 53%; }
.hero__wash {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom, transparent 0 62%, rgba(11,11,11,.08) 73%, rgba(11,11,11,.56) 100%);
}
.hero__content { min-height: inherit; display: flex; flex-direction: column; justify-content: space-between; padding-top: 28px; padding-bottom: 30px; }
.hero__copy { align-self: flex-end; max-width: 360px; text-align: right; }
.hero__eyebrow { margin: 0; font: 700 .7rem/1.2 var(--font-serif); letter-spacing: .14em; }
.hero__lead { display: inline-block; margin: 12px 0 0; padding: 8px 13px; background: rgba(243,237,228,.82); box-shadow: 0 5px 15px rgba(20,18,16,.08); font: 700 1.2rem/1.5 var(--font-serif); }
.hero__lead--pending { font-family: var(--font-sans); font-size: .75rem; opacity: .78; }
.hero__actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; width: min(940px, 88%); margin-inline: auto; }

/* About */
.about-section { padding: clamp(70px, 8vw, 108px) 0; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: .78fr 1.3fr; align-items: center; gap: clamp(50px, 8vw, 120px); }
.about-copy { position: relative; }
.about-copy::before { content: "FILE 001"; position: absolute; top: -34px; right: 0; color: rgba(49,42,36,.19); font: 700 .68rem/1 var(--font-sans); letter-spacing: .16em; }
.about-copy .section-kicker { margin-bottom: 10px; color: var(--c-muted); }
.ink-rule { width: min(100%, 340px); height: 1px; margin: 17px 0 18px; background: linear-gradient(90deg, var(--c-ink), transparent); }
.about-copy > p:last-child { margin: 0; }
.content-placeholder,
.empty-state { color: var(--c-muted); font-size: .9rem; }
.content-placeholder { padding-left: 16px; border-left: 3px double var(--c-line); }
.case-board { min-height: 285px; position: relative; transform: rotate(-1.2deg); }
.case-board::before { content: ""; position: absolute; inset: 19px 0 7px 6%; transform: rotate(2.2deg); background: #d9cbb9; border: 1px solid #a99988; box-shadow: var(--shadow-paper); }
.case-board__photo { position: absolute; z-index: 2; top: 6px; left: 0; width: 48%; height: 88%; padding: 12px; transform: rotate(-4deg); background: #d8d0c5; border: 10px solid #eee7dd; border-bottom-width: 28px; box-shadow: 0 10px 22px rgba(31,27,23,.24); }
.case-board__photo::before { content: ""; position: absolute; inset: 8px; background: repeating-linear-gradient(90deg, #181817 0 7%, transparent 7% 10%), linear-gradient(145deg, #292724, #777067); opacity: .9; }
.case-board__photo span { position: absolute; z-index: 1; inset: 0; display: grid; place-content: center; color: #f5efe7; font: 700 .72rem/1.7 var(--font-serif); letter-spacing: .12em; text-align: center; }
.case-board__paper { position: absolute; z-index: 1; right: 1%; bottom: 2px; width: 58%; min-height: 235px; padding: 38px 28px 24px; transform: rotate(3deg); background: #d8c9b7; background-image: repeating-linear-gradient(0deg, transparent 0 29px, rgba(74,59,48,.14) 30px); box-shadow: 0 10px 22px rgba(31,27,23,.22); color: #4e463f; font: italic .8rem/1.5 var(--font-serif); }
.case-board__paper strong { position: absolute; right: -7px; bottom: 46px; padding: 9px 18px; background: var(--c-ink); color: var(--c-white); font-style: normal; letter-spacing: .1em; transform: rotate(-4deg); }
.case-board__clip { position: absolute; z-index: 5; top: -12px; right: 15%; width: 18px; height: 74px; border: 3px solid #65605b; border-radius: 12px; transform: rotate(31deg); box-shadow: 0 0 0 2px rgba(255,255,255,.3); }
.case-board__stamp { position: absolute; z-index: 4; right: 2%; bottom: -18px; padding: 7px 12px; border: 3px double #1f1c1a; color: #1f1c1a; font: 900 .66rem/1.1 var(--font-sans); letter-spacing: .1em; text-align: center; transform: rotate(-5deg); opacity: .72; }

/* Members */
.members-section { padding: clamp(65px, 7vw, 92px) 0; }
.members-section::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .12; background: linear-gradient(109deg, transparent 15%, #fff 15.2%, transparent 15.6%, transparent 78%, #fff 78.2%, transparent 78.7%); }
.members-track { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 17px; overflow: auto hidden; padding: 4px 2px 10px; scrollbar-width: thin; scrollbar-color: #665e57 transparent; }
.member-card { --member-accent: var(--c-orange); min-width: 0; background: #111; border: 1px solid rgba(255,255,255,.5); box-shadow: 0 8px 18px rgba(0,0,0,.32); transition: transform .2s ease, border-color .2s ease; }
.member-card:hover { transform: translateY(-3px); border-color: var(--member-accent); }
.member-card__visual { aspect-ratio: 4 / 4.9; overflow: hidden; background: radial-gradient(circle at 72% 18%, color-mix(in srgb, var(--member-accent) 25%, transparent), transparent 34%), linear-gradient(145deg, #302d2a, #111); border-bottom: 4px solid var(--member-accent); }
.member-card__visual img { width: 100%; height: 100%; object-fit: cover; }
.member-card__placeholder { width: 100%; height: 100%; display: grid; place-content: center; gap: 12px; color: rgba(255,255,255,.5); font-size: .7rem; letter-spacing: .08em; text-align: center; background: repeating-linear-gradient(135deg, transparent 0 14px, rgba(255,255,255,.025) 14px 15px); }
.member-card__placeholder span { font: 700 1.1rem/1 var(--font-serif); color: rgba(255,255,255,.78); }
.member-card__body { padding: 14px; }
.member-card__body h3 { margin: 0 0 10px; font: 700 clamp(1.2rem, 1.8vw, 1.7rem)/1.2 var(--font-serif); }
.member-card__body a { min-height: 34px; display: flex; align-items: center; justify-content: space-between; border: 1px solid rgba(255,255,255,.75); padding: 7px 11px; font-size: .69rem; text-decoration: none; }
.member-card__body a:hover { background: var(--c-white); color: var(--c-ink); }
.member-card__pending { display: block; color: rgba(255,255,255,.45); font-size: .68rem; }
.member-card--placeholder:nth-child(2) { --member-accent: #aaa3a0; }
.member-card--placeholder:nth-child(3) { --member-accent: var(--c-purple); }
.member-card--placeholder:nth-child(4) { --member-accent: #9da6ae; }
.member-card--placeholder:nth-child(5) { --member-accent: #9c632c; }
.track-dots { display: none; }

/* Movies */
.movies-section { padding: clamp(70px, 7vw, 96px) 0 clamp(55px, 6vw, 78px); }
.movies-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 18px; }
.movie-card { min-width: 0; }
.movie-card__media { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: #24211f; border: 1px solid #312d2a; color: var(--c-white); text-decoration: none; box-shadow: 0 5px 13px rgba(48,40,34,.16); }
.movie-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.movie-card:hover .movie-card__media img { transform: scale(1.025); }
.movie-card__placeholder { position: absolute; inset: 0; display: grid; place-content: center; color: rgba(255,255,255,.66); font: 700 .68rem/1.7 var(--font-serif); letter-spacing: .12em; text-align: center; background: radial-gradient(circle at center, rgba(109,67,165,.25), transparent 45%), repeating-linear-gradient(135deg, transparent 0 14px, rgba(255,255,255,.035) 14px 15px); }
.movie-card__play { position: absolute; left: 10px; bottom: 9px; display: grid; place-content: center; width: 28px; height: 28px; padding-left: 2px; background: rgba(15,14,14,.82); border-radius: 50%; font-size: .65rem; }
.movie-card__duration { position: absolute; right: 7px; bottom: 7px; padding: 2px 6px; background: rgba(10,10,10,.86); color: #fff; font-size: .65rem; }
.movie-card h3 { margin: 10px 0 0; font: 700 .85rem/1.55 var(--font-serif); }
.movie-card h3 a { text-decoration: none; }
.movie-card h3 a:hover { text-decoration: underline; }

/* Case file */
.case-file-section { padding: 72px 0; }
.case-timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case-entry { position: relative; padding: 26px 24px; border: 1px solid rgba(255,255,255,.38); background: rgba(255,255,255,.035); }
.case-entry::after { content: ""; position: absolute; top: 14px; right: 15px; width: 28px; height: 28px; border: 1px solid var(--c-orange); border-radius: 50%; opacity: .45; }
.case-entry__number { margin: 0 0 18px; color: var(--c-orange); font: 700 .72rem/1 var(--font-sans); letter-spacing: .16em; }
.case-entry time { color: rgba(255,255,255,.52); font-size: .74rem; }
.case-entry h3 { margin: 7px 0 0; font: 700 1.15rem/1.4 var(--font-serif); }
.case-entry a { text-decoration: none; }

/* Schedule/news */
.briefing-section { padding: 20px 0 clamp(70px, 7vw, 98px); }
.briefing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.briefing-panel { min-width: 0; padding: clamp(24px, 3vw, 38px); background: rgba(255,253,249,.7); border: 1px solid rgba(85,70,58,.25); box-shadow: 0 9px 25px rgba(67,52,42,.08); }
.briefing-panel:only-child { grid-column: 1 / -1; }
.briefing-list { border-top: 1px solid var(--c-ink); }
.briefing-row { display: grid; grid-template-columns: 112px 1fr; gap: 16px; padding: 17px 4px; border-bottom: 1px dotted var(--c-line); }
.briefing-row > time { font-size: .78rem; }
.briefing-row > time strong { font: 700 1.3rem/1 var(--font-serif); }
.briefing-row h3 { display: inline; margin: 0; font: 700 .86rem/1.5 var(--font-serif); }
.briefing-row h3 a { text-decoration: none; }
.briefing-row p { margin: 3px 0 0; color: var(--c-muted); font-size: .72rem; line-height: 1.45; }
.briefing-row--news { grid-template-columns: 90px 1fr; }
.type-label { display: inline-block; margin: 0 8px 4px 0; padding: 2px 7px; color: #fff; font: 800 .58rem/1.4 var(--font-sans); }
.type-label--live { background: var(--c-live); }
.type-label--video { background: var(--c-video); }
.type-label--event { background: var(--c-orange); }
.briefing-list > .empty-state { min-height: 142px; margin: 0; padding: 28px 4px; }

/* Lower cards */
.link-panels-section { padding: 0 0 clamp(75px, 8vw, 110px); }
.link-panels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.link-panel { min-height: 230px; position: relative; isolation: isolate; overflow: hidden; padding: 28px 30px; background: #1c1b1a; color: var(--c-white); border: 1px solid rgba(32,28,25,.6); box-shadow: var(--shadow-paper); }
.link-panel::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 82% 68%, rgba(109,67,165,.5), transparent 28%), linear-gradient(105deg, rgba(12,12,12,.96), rgba(20,18,17,.6)); }
.link-panel--fan::before { background: radial-gradient(circle at 78% 73%, rgba(217,111,29,.32), transparent 26%), linear-gradient(105deg, rgba(12,12,12,.96), rgba(39,30,24,.62)); }
.link-panel--contact::before { background: radial-gradient(circle at 82% 68%, rgba(255,255,255,.18), transparent 26%), linear-gradient(105deg, rgba(12,12,12,.96), rgba(20,18,17,.58)); }
.link-panel__motif { position: absolute; right: 22px; bottom: -22px; color: rgba(255,255,255,.14); font: 400 9rem/1 var(--font-serif); transform: rotate(-9deg); }
.link-panel .section-kicker { margin-bottom: 12px; }
.link-panel h2 { max-width: 82%; margin: 0 0 12px; font: 700 1.15rem/1.35 var(--font-serif); }
.link-panel > p:last-child { max-width: 78%; margin: 0; font-size: .78rem; line-height: 1.6; }
.link-panel__pending { color: rgba(255,255,255,.58); }

/* Footer */
.site-footer { position: relative; background: #1b1a19; color: #f6f1e9; border-top: 1px solid rgba(255,255,255,.18); }
.site-footer::before { content: ""; position: absolute; inset: 0; opacity: .12; background: radial-gradient(circle, #fff 0 1px, transparent 1.2px); background-size: 25px 28px; }
.site-footer__inner { min-height: 180px; position: relative; width: min(100%, 1400px); margin: auto; padding: 42px var(--gutter); display: grid; grid-template-columns: auto 1fr auto; align-items: start; gap: 20px 50px; }
.site-footer__brand { font: 700 1.8rem/1 var(--font-serif); text-decoration: none; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 10px 18px; margin: 0; padding: 0; list-style: none; font-size: .65rem; }
.site-footer__links a { text-decoration: none; }
.site-footer__social { display: flex; gap: 18px; font-size: .72rem; font-weight: 700; }
.site-footer__copy { grid-column: 2; margin: 0; color: rgba(255,255,255,.55); font-size: .62rem; }
.site-footer__motto { grid-column: 3; grid-row: 1 / span 2; margin: 0; color: rgba(255,255,255,.26); font: italic 1rem/1.45 var(--font-serif); transform: rotate(-5deg); }

/* Generic documents */
.document-page { min-height: 65vh; padding-top: 90px; padding-bottom: 100px; background: var(--c-paper); }
.document-page__header { margin-bottom: 40px; }
.document-page__header .section-kicker { margin-bottom: 12px; color: var(--c-muted); }
.document-list { border-top: 1px solid var(--c-ink); }
.document-list__item { display: grid; grid-template-columns: 120px 1fr; gap: 0 24px; padding: 24px 0; border-bottom: 1px solid var(--c-line); }
.document-list__item h2 { margin: 0; font: 700 1.2rem/1.4 var(--font-serif); }
.document-list__item p { grid-column: 2; margin: 8px 0 0; color: var(--c-muted); }
.document-page--center { text-align: center; }
.document-page--center .button { margin-top: 24px; }

.reveal-item { opacity: 1; transform: none; }
.reveal-item.is-visible { animation: yorozu-reveal .45s ease both; }

@keyframes yorozu-reveal {
  from { opacity: .35; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1199px) {
  .site-header__inner { gap: 24px; }
  .site-nav__list { gap: 10px; }
  .site-nav__list a { font-size: .56rem; }
  .site-nav__social { display: none; }
  .hero { min-height: 620px; }
  .about-grid { gap: 55px; }
  .movies-grid { grid-template-columns: repeat(4, 1fr); }
  .movie-card:nth-child(5) { display: none; }
}

@media (max-width: 991px) {
  html { scroll-padding-top: 68px; }
  .site-header, .site-header__inner { min-height: 66px; }
  .site-header__inner { justify-content: space-between; }
  .site-brand__title { font-size: 1.55rem; }
  .menu-toggle { width: 54px; height: 48px; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 0; background: transparent; color: var(--c-ink); cursor: pointer; }
  .menu-toggle__label { font-size: .5rem; letter-spacing: .12em; }
  .menu-toggle__icon { display: grid; gap: 5px; width: 26px; }
  .menu-toggle__icon i { display: block; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 66px 0 0; display: block; padding: 24px var(--gutter) 40px; overflow: auto; background: var(--c-paper); visibility: hidden; opacity: 0; transform: translateY(-10px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .site-nav__list { display: block; }
  .site-nav__list li { border-bottom: 1px solid var(--c-line); }
  .site-nav__list a { padding: 15px 4px; font-size: .86rem; }
  .site-nav__list a::after { display: none; }
  .site-nav__social { display: flex; margin-top: 24px; font-size: .85rem; }
  .hero { min-height: 540px; }
  .hero__actions { width: 100%; gap: 12px; }
  .hero__actions .button { padding-inline: 14px; font-size: .8rem; white-space: nowrap; }
  .hero__actions .button small { display: none; }
  .about-grid { grid-template-columns: 1fr 1.15fr; gap: 38px; }
  .members-track { grid-template-columns: repeat(5, 31vw); margin-right: calc(var(--gutter) * -1); padding-right: var(--gutter); }
  .movies-grid { grid-template-columns: repeat(3, 1fr); }
  .movie-card:nth-child(4), .movie-card:nth-child(5) { display: none; }
  .briefing-grid { gap: 18px; }
  .briefing-row { grid-template-columns: 90px 1fr; }
  .briefing-row--news { grid-template-columns: 80px 1fr; }
  .link-panel { padding: 24px 22px; }
}

@media (max-width: 767px) {
  :root { --gutter: 20px; }
  body { font-size: 15px; }
  .site-header { position: sticky; }
  .hero { min-height: 0; display: flex; flex-direction: column; padding: 0; background: var(--c-paper); }
  .hero__media { position: relative; inset: auto; z-index: 0; width: 100%; }
  .hero__media img { width: 100%; height: auto; object-fit: contain; }
  .hero__wash { display: none; }
  .hero__content { min-height: 0; width: 100%; position: relative; z-index: 1; padding-top: 18px; padding-bottom: 24px; background: linear-gradient(var(--c-paper), #e6dbce); }
  .hero__copy { align-self: stretch; max-width: none; text-align: center; }
  .hero__eyebrow { color: var(--c-muted); font-size: .58rem; }
  .hero__lead { margin-top: 8px; padding: 6px 10px; background: transparent; box-shadow: none; font-size: 1rem; }
  .hero__lead--pending { font-size: .68rem; }
  .hero__actions { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 16px; }
  .hero__actions .button { min-height: 48px; width: 100%; }
  .hero__actions .button small { display: inline; }
  .hero__actions .button--glass { background: rgba(36,32,29,.7); }
  .about-section { padding: 58px 0 50px; }
  .about-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-copy::before { top: -25px; }
  .about-copy .section-kicker { font-size: 1.05rem; }
  .case-board { display: none; }
  .section-heading { align-items: baseline; gap: 12px; margin-bottom: 20px; }
  .section-heading > div { gap: 12px; }
  .section-heading > p { display: none; }
  .members-section { padding: 58px 0 52px; }
  .members-track { grid-template-columns: repeat(5, minmax(250px, 82vw)); gap: 12px; margin-right: calc(var(--gutter) * -1); scroll-snap-type: x mandatory; }
  .member-card { scroll-snap-align: start; }
  .member-card__visual { aspect-ratio: 16 / 10; }
  .member-card__body { padding: 12px 14px; }
  .member-card__body h3 { font-size: 1.35rem; }
  .track-dots { display: flex; justify-content: center; gap: 7px; margin-top: 17px; }
  .track-dots i { width: 7px; height: 7px; background: rgba(255,255,255,.34); border-radius: 50%; }
  .track-dots i:first-child { background: #fff; }
  .movies-section { padding: 60px 0 52px; }
  .movies-grid { display: block; }
  .movie-card { margin-bottom: 18px; }
  .movie-card:nth-child(4), .movie-card:nth-child(5) { display: block; }
  .movie-card--placeholder:nth-child(n+2) { display: none; }
  .movie-card h3 { font-size: .92rem; }
  .case-timeline { grid-template-columns: 1fr; }
  .briefing-section { padding: 0 0 48px; }
  .briefing-grid { grid-template-columns: 1fr; gap: 18px; }
  .briefing-panel { padding: 26px 18px; }
  .briefing-row { grid-template-columns: 90px 1fr; gap: 12px; padding: 14px 2px; }
  .briefing-row--news { grid-template-columns: 80px 1fr; }
  .link-panels-section { padding-bottom: 54px; }
  .link-panels-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 5px; }
  .link-panel { min-height: 128px; padding: 13px 9px; }
  .link-panel .section-kicker { margin-bottom: 7px; font-size: clamp(.55rem, 2.6vw, .72rem); }
  .link-panel h2 { max-width: 100%; margin: 0; font-size: clamp(.65rem, 3vw, .82rem); }
  .link-panel > p:last-child { display: none; }
  .link-panel__motif { right: 6px; bottom: -6px; font-size: 4.2rem; }
  .site-footer__inner { min-height: 0; display: flex; flex-direction: column; align-items: center; padding-top: 38px; padding-bottom: 34px; text-align: center; }
  .site-footer__brand { font-size: 1.55rem; }
  .site-footer__nav { display: none; }
  .site-footer__copy { margin: 0; }
  .site-footer__motto { display: none; }
  .document-page { padding-top: 64px; }
  .document-list__item { grid-template-columns: 1fr; }
  .document-list__item p { grid-column: 1; }
}

@media (max-width: 390px) {
  :root { --gutter: 18px; }
  .site-brand__title { font-size: 1.42rem; }
  .site-brand__sub { font-size: .4rem; }
  .hero__actions .button { min-height: 46px; font-size: .8rem; }
  .members-track { grid-template-columns: repeat(5, 84vw); }
  .member-card__visual { aspect-ratio: 16 / 10.5; }
  .briefing-row { grid-template-columns: 78px 1fr; }
  .briefing-row > time strong { font-size: 1.12rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal-item { opacity: 1; transform: none; }
}

/* Member profile — asymmetric personnel dossier */
.member-profile {
  --member-accent: var(--c-purple);
  background: var(--c-paper);
}

.member-profile-hero {
  position: relative;
  min-height: clamp(650px, 51vw, 760px);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(112deg, rgba(255,255,255,.035) 0 1px, transparent 1px) 0 0 / 21px 17px,
    radial-gradient(circle at 14% 32%, #302d31 0, #1a181b 42%, #121113 100%);
  color: var(--c-white);
}

.member-profile-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -8vw -31vw 28vw;
  height: 58vw;
  min-height: 650px;
  border-radius: 50% 0 0;
  background: var(--member-accent);
  transform: rotate(-7deg);
  opacity: .96;
}

.member-profile-hero::after {
  content: "";
  position: absolute;
  z-index: 4;
  right: -5vw;
  bottom: -13px;
  width: 61vw;
  height: 58px;
  background: var(--c-paper);
  clip-path: polygon(0 80%, 12% 45%, 28% 66%, 43% 20%, 61% 55%, 78% 26%, 100% 48%, 100% 100%, 0 100%);
}

.member-profile-hero__orbit {
  position: absolute;
  z-index: -1;
  top: -27vw;
  right: -12vw;
  width: min(79vw, 1120px);
  aspect-ratio: 1;
  border: clamp(42px, 6vw, 86px) solid rgba(255,255,255,.075);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255,255,255,.16), inset 0 0 0 1px rgba(255,255,255,.12);
}

.member-profile-hero__grid {
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(330px, .78fr) minmax(530px, 1.22fr);
  align-items: stretch;
  gap: clamp(12px, 2vw, 34px);
}

.member-profile-hero__copy {
  position: relative;
  z-index: 5;
  align-self: center;
  padding: 55px 0 70px;
}

.member-profile__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(42px, 5.5vw, 78px);
  color: rgba(255,255,255,.7);
  font: 700 .7rem/1 var(--font-serif);
  letter-spacing: .16em;
  text-decoration: none;
}
.member-profile__back:hover { color: #fff; }

.member-profile__file-label {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 0 0 20px;
  color: rgba(255,255,255,.48);
  font: 700 .62rem/1 var(--font-sans);
  letter-spacing: .2em;
}
.member-profile__file-label::before { content: ""; width: 46px; height: 1px; background: var(--member-accent); }
.member-profile__file-label span { color: #fff; }

.member-profile__tagline {
  width: fit-content;
  margin: 0 0 -7px 20px;
  padding: 7px 17px 8px;
  background: var(--member-accent);
  color: #fff;
  font: 800 clamp(.72rem, 1vw, .9rem)/1 var(--font-serif);
  letter-spacing: .07em;
  transform: rotate(-2deg);
  box-shadow: 8px 7px 0 rgba(0,0,0,.2);
}

.member-profile__name { width: min(100%, 480px); margin: 0; }
.member-profile__name img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(11px 12px 0 rgba(0,0,0,.19));
}
.member-profile__name > span:not(.screen-reader-text) {
  font: 900 clamp(4.6rem, 9vw, 8.5rem)/.85 var(--font-serif);
}

.member-profile__roman {
  margin: -20px 0 15px 8px;
  color: rgba(255,255,255,.42);
  font: 800 .68rem/1 var(--font-sans);
  letter-spacing: .42em;
}

.member-profile__subtitle {
  max-width: 420px;
  margin: 18px 0 0;
  padding-left: 20px;
  border-left: 2px solid var(--member-accent);
  color: rgba(255,255,255,.78);
  font: 600 clamp(.9rem, 1.2vw, 1.05rem)/1.9 var(--font-serif);
  letter-spacing: .04em;
}

.member-profile-hero__visual { position: relative; z-index: 3; min-width: 0; }
.member-profile-hero__portrait {
  position: absolute;
  z-index: 3;
  right: clamp(-52px, -2.5vw, -20px);
  bottom: -27px;
  width: auto;
  height: min(46vw, 700px);
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(-24px 24px 28px rgba(0,0,0,.25));
}
.member-profile-hero__ring {
  position: absolute;
  z-index: 1;
  top: 16%;
  right: 1%;
  width: min(38vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  box-shadow: 0 0 0 17px rgba(255,255,255,.035), 0 0 0 18px rgba(255,255,255,.1);
}
.member-profile-hero__ring::before,
.member-profile-hero__ring::after { content: ""; position: absolute; background: rgba(255,255,255,.25); }
.member-profile-hero__ring::before { top: 50%; left: -12%; width: 124%; height: 1px; }
.member-profile-hero__ring::after { top: -12%; left: 50%; width: 1px; height: 124%; }
.member-profile-hero__badge {
  position: absolute;
  z-index: 4;
  top: 16%;
  left: 0;
  width: clamp(86px, 9.4vw, 138px);
  border: 7px solid rgba(255,255,255,.92);
  border-radius: 50%;
  box-shadow: 7px 10px 0 rgba(17,14,18,.28);
  transform: rotate(-7deg);
}
.member-profile-hero__side-type {
  position: absolute;
  z-index: 2;
  right: -10px;
  top: 16%;
  margin: 0;
  color: rgba(255,255,255,.16);
  font: 900 clamp(2.8rem, 5vw, 5rem)/.8 var(--font-sans);
  letter-spacing: -.08em;
  text-align: right;
  writing-mode: vertical-rl;
}

.member-dossier { overflow: hidden; padding: clamp(105px, 10vw, 155px) 0 clamp(90px, 9vw, 135px); }
.member-dossier__curve {
  position: absolute;
  z-index: -1;
  top: -215px;
  left: -16%;
  width: 70%;
  height: 390px;
  border: 1px solid rgba(69,57,49,.16);
  border-radius: 0 0 55% 45%;
  background: rgba(255,255,255,.28);
  transform: rotate(5deg);
}
.member-dossier__curve::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: -17px;
  width: 64%;
  height: 42px;
  border-bottom: 3px solid var(--member-accent);
  border-radius: 50%;
  opacity: .55;
}
.member-dossier__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .76fr);
  gap: clamp(60px, 9vw, 135px);
  align-items: start;
}
.member-dossier__profile { max-width: 710px; padding-top: 25px; }
.member-dossier__heading { position: relative; margin-bottom: 43px; }
.member-dossier__heading::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -25px;
  width: 7px;
  height: 73px;
  background: var(--member-accent);
  transform: rotate(7deg);
}
.member-dossier__heading p,
.member-quote__label {
  margin: 0 0 12px;
  color: var(--member-accent);
  font: 800 .67rem/1 var(--font-sans);
  letter-spacing: .17em;
}
.member-dossier__heading h2 {
  margin: 0;
  font: 800 clamp(2rem, 3.2vw, 3.2rem)/1.25 var(--font-serif);
  letter-spacing: .06em;
}
.member-dossier__points { list-style: none; margin: 0; padding: 0; }
.member-dossier__points li {
  position: relative;
  margin: 0;
  padding: 18px 10px 18px 42px;
  border-bottom: 1px solid rgba(80,67,57,.22);
  font: 600 clamp(.94rem, 1.13vw, 1.08rem)/1.9 var(--font-serif);
}
.member-dossier__points li::before {
  content: counter(list-item, decimal-leading-zero);
  position: absolute;
  top: 23px;
  left: 0;
  color: var(--member-accent);
  font: 900 .66rem/1 var(--font-sans);
  letter-spacing: .08em;
}

.member-dossier__facts {
  position: relative;
  z-index: 3;
  margin-top: -205px;
  padding: clamp(35px, 4vw, 55px) clamp(28px, 3.4vw, 48px) 44px;
  background:
    linear-gradient(125deg, rgba(255,255,255,.035), transparent 52%),
    #201e21;
  color: #fff;
  box-shadow: 22px 25px 0 color-mix(in srgb, var(--member-accent) 75%, transparent), 0 25px 55px rgba(34,27,23,.23);
  transform: rotate(1.2deg);
}
.member-dossier__facts::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,.12);
  pointer-events: none;
}
.member-dossier__clip {
  position: absolute;
  z-index: 2;
  top: -25px;
  right: 19%;
  width: 22px;
  height: 72px;
  border: 3px solid #9b948d;
  border-bottom-color: transparent;
  border-radius: 13px 13px 3px 3px;
  transform: rotate(7deg);
}
.member-dossier__stamp {
  position: absolute;
  right: 17px;
  top: 8px;
  margin: 0;
  padding: 5px 9px;
  border: 2px solid var(--member-accent);
  color: var(--member-accent);
  font: 900 .56rem/1 var(--font-sans);
  letter-spacing: .14em;
  transform: rotate(8deg);
}
.member-dossier__facts h2 {
  margin: 0 0 30px;
  font: 900 clamp(1.5rem, 2.1vw, 2rem)/1 var(--font-sans);
  letter-spacing: .13em;
}
.member-dossier__facts dl { margin: 0; }
.member-dossier__facts dl > div { padding: 17px 0; border-top: 1px solid rgba(255,255,255,.17); }
.member-dossier__facts dt { margin-bottom: 7px; color: rgba(255,255,255,.48); font: 700 .62rem/1.4 var(--font-sans); letter-spacing: .08em; }
.member-dossier__facts dd { margin: 0; font: 700 clamp(.9rem, 1.05vw, 1rem)/1.65 var(--font-serif); }

.member-quote {
  position: relative;
  display: grid;
  grid-template-columns: clamp(110px, 13vw, 176px) minmax(0, 1fr) minmax(140px, 230px);
  align-items: center;
  gap: clamp(26px, 5vw, 68px);
  margin-top: clamp(95px, 10vw, 145px);
  padding-block: 45px;
}
.member-quote::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 calc(var(--gutter) * -1) 0 7%;
  border-radius: 48% 8px 8px 52%;
  background: color-mix(in srgb, var(--member-accent) 13%, var(--c-paper));
  transform: rotate(-1.2deg);
}
.member-quote__icon {
  width: 100%;
  border-radius: 50%;
  filter: drop-shadow(10px 14px 0 rgba(35,28,23,.12));
  transform: rotate(-5deg);
}
.member-quote__body { min-width: 0; }
.member-quote blockquote {
  position: relative;
  margin: 0;
  font: 800 clamp(1.35rem, 2.25vw, 2.25rem)/1.65 var(--font-serif);
  letter-spacing: .04em;
}
.member-quote blockquote::before {
  content: "“";
  position: absolute;
  top: -.75em;
  left: -.38em;
  color: var(--member-accent);
  font: 900 4.6rem/1 Georgia, serif;
  opacity: .28;
}
.member-quote__side {
  align-self: end;
  margin: 0 0 5px;
  padding-left: 16px;
  border-left: 1px solid rgba(69,57,49,.3);
  color: var(--c-muted);
  font: 700 .74rem/1.8 var(--font-serif);
  writing-mode: vertical-rl;
  min-height: 150px;
}

.member-movies { padding: clamp(75px, 8vw, 110px) 0; }
.member-movies::before { content: ""; position: absolute; inset: 0 0 auto; height: 9px; background: var(--member-accent); }
.member-movies__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.member-profile-footer { padding: 60px 0 72px; }
.member-profile-footer__inner { display: flex; align-items: center; justify-content: center; gap: 14px; }
.member-profile-footer .button { min-width: 230px; }

@media (max-width: 1100px) {
  .member-profile-hero { min-height: 660px; }
  .member-profile-hero__grid { grid-template-columns: minmax(310px, .88fr) minmax(420px, 1.12fr); }
  .member-profile-hero__portrait { right: -60px; height: min(57vw, 640px); }
  .member-profile-hero__badge { left: 2%; }
  .member-profile__name { width: min(100%, 390px); }
  .member-dossier__grid { gap: 55px; }
  .member-dossier__facts { margin-top: -155px; }
}

@media (max-width: 800px) {
  .member-profile-hero { min-height: 650px; }
  .member-profile-hero::before { inset: auto -24vw -35vw 23vw; width: 108vw; height: 85vw; }
  .member-profile-hero__grid { grid-template-columns: minmax(270px, .92fr) minmax(330px, 1.08fr); gap: 0; }
  .member-profile-hero__copy { padding-bottom: 60px; }
  .member-profile__back { margin-bottom: 55px; }
  .member-profile__tagline { margin-left: 4px; }
  .member-profile__name { width: 330px; }
  .member-profile__subtitle { max-width: 310px; font-size: .9rem; }
  .member-profile-hero__portrait { right: -105px; height: 590px; }
  .member-profile-hero__badge { top: 20%; left: -2%; width: 92px; }
  .member-profile-hero__ring { top: 21%; right: -10%; width: 440px; }
  .member-profile-hero__side-type { display: none; }
  .member-dossier { padding-top: 90px; }
  .member-dossier__grid { grid-template-columns: minmax(0, 1fr) minmax(275px, .82fr); gap: 34px; }
  .member-dossier__facts { margin-top: -100px; padding: 40px 30px 35px; box-shadow: 14px 16px 0 color-mix(in srgb, var(--member-accent) 75%, transparent); }
  .member-dossier__points li { padding-left: 34px; }
  .member-quote { grid-template-columns: 115px minmax(0, 1fr); }
  .member-quote__side { grid-column: 2; min-height: 0; padding: 12px 0 0; border-top: 1px solid rgba(69,57,49,.3); border-left: 0; writing-mode: horizontal-tb; }
}

@media (max-width: 620px) {
  .member-profile-hero { min-height: 765px; }
  .member-profile-hero::before { inset: auto -56vw -35vw -2vw; width: 152vw; height: 118vw; border-radius: 54% 46% 0 0; transform: rotate(-9deg); }
  .member-profile-hero::after { width: 110vw; height: 38px; }
  .member-profile-hero__orbit { top: auto; right: -69vw; bottom: -17vw; width: 145vw; border-width: 46px; }
  .member-profile-hero__grid { display: block; position: relative; padding-top: 1px; }
  .member-profile-hero__copy { position: relative; z-index: 5; padding: 27px 0 0; }
  .member-profile__back { margin-bottom: 25px; }
  .member-profile__file-label { margin-bottom: 11px; font-size: .54rem; }
  .member-profile__file-label::before { width: 27px; }
  .member-profile__tagline { margin: 0 0 -3px 8px; padding: 6px 12px; font-size: .66rem; }
  .member-profile__name { width: min(72vw, 280px); }
  .member-profile__name img { max-height: 145px; }
  .member-profile__roman { margin-top: -11px; }
  .member-profile__subtitle { max-width: 66%; margin-top: 7px; padding-left: 12px; font-size: .78rem; line-height: 1.7; }
  .member-profile-hero__visual { position: absolute; inset: 0 var(--gutter); }
  .member-profile-hero__portrait { right: -34vw; bottom: -22px; height: 520px; }
  .member-profile-hero__badge { top: auto; left: 2px; bottom: 92px; width: 82px; border-width: 5px; }
  .member-profile-hero__ring { top: auto; right: -41vw; bottom: 20px; width: 130vw; }
  .member-dossier { padding: 70px 0 80px; }
  .member-dossier__curve { top: -255px; left: -42%; width: 115%; }
  .member-dossier__grid { display: block; }
  .member-dossier__profile { padding: 0 2px; }
  .member-dossier__heading { margin-bottom: 26px; padding-left: 12px; }
  .member-dossier__heading::before { left: -2px; height: 57px; }
  .member-dossier__heading h2 { font-size: 1.85rem; }
  .member-dossier__points li { padding: 14px 0 14px 33px; font-size: .9rem; line-height: 1.8; }
  .member-dossier__points li::before { top: 19px; }
  .member-dossier__facts { margin: 65px 5px 0; padding: 38px 27px 32px; box-shadow: 11px 13px 0 color-mix(in srgb, var(--member-accent) 75%, transparent); transform: rotate(.6deg); }
  .member-dossier__facts dl > div { display: grid; grid-template-columns: minmax(86px, .68fr) 1.32fr; gap: 13px; align-items: baseline; padding: 15px 0; }
  .member-dossier__facts dt { margin: 0; }
  .member-quote { grid-template-columns: 80px minmax(0, 1fr); gap: 22px; margin-top: 85px; padding-block: 28px; }
  .member-quote::before { inset: 0 calc(var(--gutter) * -1) 0 7%; border-radius: 90px 0 0 90px; }
  .member-quote blockquote { font-size: 1.15rem; }
  .member-quote__label { font-size: .56rem; }
  .member-quote__side { grid-column: 1 / -1; margin-left: 102px; font-size: .68rem; }
  .member-movies__grid { grid-template-columns: 1fr; }
  .member-profile-footer { padding: 45px 0 55px; }
  .member-profile-footer__inner { flex-direction: column; }
  .member-profile-footer .button { width: 100%; min-width: 0; }
}

@media (max-width: 390px) {
  .member-profile-hero { min-height: 720px; }
  .member-profile__name { width: 238px; }
  .member-profile__subtitle { max-width: 61%; font-size: .74rem; }
  .member-profile-hero__portrait { right: -39vw; height: 465px; }
  .member-profile-hero__badge { bottom: 70px; width: 74px; }
  .member-dossier__facts dl > div { grid-template-columns: 82px 1fr; gap: 10px; }
  .member-quote { grid-template-columns: 72px minmax(0, 1fr); gap: 17px; }
  .member-quote__side { margin-left: 89px; }
}

/* Buru portrait-led prototype — intentionally not applied to the other members. */
.member-profile--buru .member-profile-hero--portrait-led {
  min-height: 700px;
  background:
    linear-gradient(105deg, rgba(255,255,255,.03) 0 1px, transparent 1px) 0 0 / 22px 19px,
    radial-gradient(circle at 76% 42%, rgba(109,67,165,.22), transparent 28%),
    linear-gradient(116deg, #252226 0%, #171519 48%, #100f12 100%);
}

.member-profile--buru .member-profile-hero--portrait-led::before {
  inset: auto -8vw -45% auto;
  width: min(70vw, 960px);
  height: min(70vw, 960px);
  min-height: 0;
  border: 1px solid rgba(150,118,195,.45);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,67,165,.27) 0 34%, rgba(109,67,165,.1) 34.2% 52%, transparent 52.2%);
  transform: none;
  opacity: 1;
}

.member-profile--buru .member-profile-hero--portrait-led::after {
  right: -3vw;
  width: 56vw;
  height: 38px;
  clip-path: polygon(0 74%, 14% 42%, 28% 70%, 45% 35%, 61% 62%, 79% 33%, 100% 56%, 100% 100%, 0 100%);
}

.buru-profile-hero__arcs {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.buru-profile-hero__arcs i { position: absolute; display: block; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.buru-profile-hero__arcs i:nth-child(1) { top: -310px; right: 2vw; width: 830px; height: 830px; box-shadow: 0 0 0 32px rgba(255,255,255,.018); }
.buru-profile-hero__arcs i:nth-child(2) { top: 92px; right: 30vw; width: 480px; height: 480px; border-color: rgba(146,101,205,.52); border-width: 2px; }
.buru-profile-hero__arcs i:nth-child(3) { right: -13vw; bottom: -430px; width: 920px; height: 920px; border-color: rgba(255,255,255,.24); }

.buru-profile-hero__grid {
  position: relative;
  z-index: 2;
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(360px, .74fr) minmax(600px, 1.26fr);
  gap: 0;
}

.buru-profile-hero__copy {
  position: relative;
  z-index: 8;
  align-self: stretch;
  padding: 45px 0 54px;
}
.buru-profile-hero__copy .member-profile__back { margin-bottom: 58px; }
.buru-profile-hero__copy .member-profile__file-label { margin-bottom: 26px; }

.buru-profile-hero__identity {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr);
  align-items: center;
  gap: clamp(25px, 3vw, 46px);
}
.buru-profile-hero__name {
  position: relative;
  margin: 0;
  color: #fffdf9;
  font: 700 clamp(6rem, 8.2vw, 8.1rem)/.82 var(--font-serif);
  letter-spacing: .08em;
  text-shadow: 0 13px 34px rgba(0,0,0,.35);
  writing-mode: vertical-rl;
}
.buru-profile-hero__name::after {
  content: "";
  position: absolute;
  top: 8%;
  right: -17px;
  width: 2px;
  height: 84%;
  background: linear-gradient(var(--member-accent), rgba(109,67,165,0));
}
.buru-profile-hero__text { align-self: center; max-width: 255px; }
.buru-profile-hero__tagline {
  position: relative;
  margin: 0 0 18px;
  padding: 0 0 13px;
  color: #fff;
  font: 700 clamp(1.05rem, 1.55vw, 1.35rem)/1.6 var(--font-serif);
  letter-spacing: .08em;
}
.buru-profile-hero__tagline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 76px;
  height: 2px;
  background: var(--member-accent);
}
.buru-profile-hero__subtitle {
  margin: 0;
  color: rgba(255,255,255,.64);
  font: 600 .83rem/1.9 var(--font-serif);
  letter-spacing: .03em;
}
.buru-profile-hero__agency {
  position: absolute;
  bottom: 41px;
  left: 0;
  margin: 0;
  color: rgba(255,255,255,.25);
  font: 700 .52rem/1 var(--font-sans);
  letter-spacing: .22em;
}

.buru-profile-hero__visual { position: relative; z-index: 3; min-width: 0; }
.buru-profile-hero__visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 42%;
  right: -10%;
  width: 650px;
  height: 250px;
  border-radius: 50%;
  background: linear-gradient(96deg, transparent 3%, rgba(109,67,165,.17) 26%, rgba(109,67,165,.58) 72%, transparent 100%);
  transform: rotate(-14deg);
  filter: blur(.2px);
}
.buru-profile-hero__crop { position: absolute; z-index: 3; inset: 0; overflow: visible; }
.buru-profile-hero__bust {
  position: absolute;
  top: -155px;
  right: -300px;
  width: auto;
  height: 1540px;
  max-width: none;
  filter: drop-shadow(-32px 28px 30px rgba(0,0,0,.29));
}
.buru-profile-hero__focus-line { position: absolute; z-index: 5; display: block; background: rgba(255,255,255,.2); pointer-events: none; }
.buru-profile-hero__focus-line--horizontal { top: 41%; right: -8vw; width: 89%; height: 1px; }
.buru-profile-hero__focus-line--vertical { top: 8%; right: 39%; width: 1px; height: 75%; }
.buru-profile-hero__focus-line::after { content: ""; position: absolute; width: 7px; height: 7px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; transform: translate(-3px,-3px); }
.buru-profile-hero__badge {
  position: absolute;
  z-index: 7;
  top: 85px;
  right: 16px;
  width: 102px;
  border: 6px solid rgba(255,255,255,.94);
  border-radius: 50%;
  box-shadow: 8px 11px 0 rgba(11,9,13,.28);
  transform: rotate(5deg);
}
.buru-profile-hero__full {
  position: absolute;
  z-index: 7;
  bottom: 27px;
  left: -35px;
  width: 205px;
  height: 300px;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,.32);
}
.buru-profile-hero__full img {
  position: absolute;
  top: -5px;
  left: -17px;
  width: auto;
  height: 280px;
  max-width: none;
  filter: drop-shadow(7px 9px 11px rgba(0,0,0,.28));
}
.buru-profile-hero__full figcaption {
  position: absolute;
  right: 5px;
  bottom: 0;
  left: 14px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.48);
  font: 700 .52rem/1 var(--font-sans);
  letter-spacing: .12em;
  text-align: right;
}
.buru-profile-hero__full figcaption span { color: #fff; }

.member-profile--buru .member-dossier--portrait-led { padding-top: 76px; }
.member-profile--buru .member-dossier--portrait-led .member-dossier__curve { top: -285px; left: -25%; width: 66%; background: rgba(255,255,255,.18); }
.member-profile--buru .member-dossier--portrait-led .member-dossier__facts { margin-top: -92px; }

@media (max-width: 1100px) and (min-width: 621px) {
  .buru-profile-hero__grid { grid-template-columns: minmax(315px, .78fr) minmax(430px, 1.22fr); }
  .buru-profile-hero__name { font-size: 6rem; }
  .buru-profile-hero__identity { gap: 22px; }
  .buru-profile-hero__bust { top: -105px; right: -270px; height: 1380px; }
  .buru-profile-hero__full { left: -18px; }
}

@media (max-width: 620px) {
  .member-profile--buru .member-profile-hero--portrait-led { min-height: 690px; }
  .member-profile--buru .member-profile-hero--portrait-led::before {
    right: -75vw;
    bottom: -14vw;
    width: 155vw;
    height: 155vw;
    background: radial-gradient(circle, rgba(109,67,165,.32) 0 28%, rgba(109,67,165,.12) 28.2% 49%, transparent 49.2%);
  }
  .member-profile--buru .member-profile-hero--portrait-led::after { width: 96vw; height: 30px; }
  .buru-profile-hero__arcs i:nth-child(1) { top: 58px; right: -89vw; width: 142vw; height: 142vw; }
  .buru-profile-hero__arcs i:nth-child(2) { top: 215px; right: -9vw; width: 106vw; height: 106vw; }
  .buru-profile-hero__arcs i:nth-child(3) { display: none; }
  .buru-profile-hero__grid { min-height: 690px; display: block; position: relative; }
  .buru-profile-hero__copy { position: relative; z-index: 8; padding: 24px 0 0; }
  .buru-profile-hero__copy .member-profile__back { margin-bottom: 22px; }
  .buru-profile-hero__copy .member-profile__file-label { margin-bottom: 15px; font-size: .54rem; }
  .buru-profile-hero__identity { display: block; }
  .buru-profile-hero__name {
    width: fit-content;
    font-size: clamp(4.4rem, 20vw, 5.1rem);
    line-height: .95;
    letter-spacing: .08em;
    writing-mode: horizontal-tb;
  }
  .buru-profile-hero__name::after { top: auto; right: 3px; bottom: -9px; left: 0; width: 82%; height: 2px; }
  .buru-profile-hero__text { max-width: 49%; margin-top: 29px; }
  .buru-profile-hero__tagline { margin-bottom: 10px; padding-bottom: 9px; font-size: .9rem; line-height: 1.55; }
  .buru-profile-hero__tagline::after { width: 50px; }
  .buru-profile-hero__subtitle { font-size: .7rem; line-height: 1.75; }
  .buru-profile-hero__agency { display: none; }
  .buru-profile-hero__visual { position: absolute; z-index: 3; inset: 0 var(--gutter); }
  .buru-profile-hero__visual::before { top: 47%; right: -75%; width: 145vw; height: 180px; opacity: .75; }
  .buru-profile-hero__bust { top: 70px; right: -305px; height: 900px; }
  .buru-profile-hero__focus-line--horizontal { top: 48%; right: -20vw; width: 105vw; }
  .buru-profile-hero__focus-line--vertical { top: 29%; right: 30%; height: 61%; }
  .buru-profile-hero__badge { top: auto; right: auto; bottom: 51px; left: 8px; width: 72px; border-width: 4px; }
  .buru-profile-hero__full { right: 1px; bottom: 18px; left: auto; width: 114px; height: 230px; background: rgba(15,14,17,.24); }
  .buru-profile-hero__full img { top: 3px; left: -46px; height: 218px; }
  .buru-profile-hero__full figcaption { right: 2px; left: 8px; font-size: .43rem; }
  .member-profile--buru .member-dossier--portrait-led { padding-top: 52px; }
  .member-profile--buru .member-dossier--portrait-led .member-dossier__curve { top: -315px; left: -50%; width: 120%; }
  .member-profile--buru .member-dossier--portrait-led .member-dossier__facts { margin-top: 65px; }
}

@media (max-width: 390px) {
  .member-profile--buru .member-profile-hero--portrait-led,
  .buru-profile-hero__grid { min-height: 690px; }
  .buru-profile-hero__bust { right: -310px; }
}

/* Buru motion prototype: short, restrained transitions with no ambient loops. */
.member-profile--buru .member-profile-hero--portrait-led {
  --buru-parallax-x: 0px;
  --buru-parallax-y: 0px;
  --buru-parallax-x-reverse: 0px;
  --buru-parallax-y-reverse: 0px;
  --buru-character-x: 0px;
  --buru-character-y: 0px;
  --buru-scroll-shift: 0px;
}

.member-profile--buru.is-motion-ready .buru-profile-hero__arcs {
  opacity: 0;
  transform: translate3d(var(--buru-parallax-x-reverse), calc(var(--buru-parallax-y-reverse) + var(--buru-scroll-shift)), 0) scale(.985);
  transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform 1s cubic-bezier(.22,.61,.36,1);
}
.member-profile--buru.is-motion-ready.is-hero-entered .buru-profile-hero__arcs {
  opacity: 1;
  transform: translate3d(var(--buru-parallax-x-reverse), calc(var(--buru-parallax-y-reverse) + var(--buru-scroll-shift)), 0) scale(1);
}

.member-profile--buru.is-motion-ready .buru-profile-hero__bust {
  opacity: 0;
  transform: translate3d(var(--buru-character-x), calc(var(--buru-character-y) + 17px), 0) scale(.985);
  transition: opacity .86s .08s cubic-bezier(.22,.61,.36,1), transform .92s .08s cubic-bezier(.22,.61,.36,1);
}
.member-profile--buru.is-motion-ready.is-hero-entered .buru-profile-hero__bust {
  opacity: 1;
  transform: translate3d(var(--buru-character-x), var(--buru-character-y), 0) scale(1);
}

.member-profile--buru.is-motion-ready .buru-profile-hero__name,
.member-profile--buru.is-motion-ready .buru-profile-hero__copy .member-profile__file-label,
.member-profile--buru.is-motion-ready .buru-profile-hero__text,
.member-profile--buru.is-motion-ready .buru-profile-hero__badge,
.member-profile--buru.is-motion-ready .buru-profile-hero__full,
.member-profile--buru.is-motion-ready .buru-profile-hero__copy .member-profile__back,
.member-profile--buru.is-motion-ready .buru-profile-hero__agency {
  opacity: 0;
}
.member-profile--buru.is-motion-ready .buru-profile-hero__name {
  transform: translateY(13px) scale(.99);
  transition: opacity .65s .2s ease-out, transform .76s .2s cubic-bezier(.22,.61,.36,1);
}
.member-profile--buru.is-motion-ready .buru-profile-hero__copy .member-profile__file-label {
  transform: translateY(9px);
  transition: opacity .55s .32s ease-out, transform .65s .32s cubic-bezier(.22,.61,.36,1);
}
.member-profile--buru.is-motion-ready .buru-profile-hero__text {
  transform: translateY(10px);
  transition: opacity .58s .44s ease-out, transform .7s .44s cubic-bezier(.22,.61,.36,1);
}
.member-profile--buru.is-motion-ready .buru-profile-hero__badge {
  transform: translate3d(var(--buru-parallax-x), calc(var(--buru-parallax-y) + 10px), 0) rotate(5deg) scale(.96);
  transition: opacity .55s .58s ease-out, transform .72s .58s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease;
}
.member-profile--buru.is-motion-ready .buru-profile-hero__full {
  transform: translate3d(var(--buru-parallax-x-reverse), calc(var(--buru-parallax-y-reverse) + 12px + var(--buru-scroll-shift)), 0) scale(.98);
  transition: opacity .6s .7s ease-out, transform .78s .7s cubic-bezier(.22,.61,.36,1), border-color .3s ease;
}
.member-profile--buru.is-motion-ready .buru-profile-hero__copy .member-profile__back,
.member-profile--buru.is-motion-ready .buru-profile-hero__agency {
  transform: translateY(6px);
  transition: opacity .5s .76s ease-out, transform .6s .76s ease-out;
}

.member-profile--buru.is-motion-ready.is-hero-entered .buru-profile-hero__name,
.member-profile--buru.is-motion-ready.is-hero-entered .buru-profile-hero__copy .member-profile__file-label,
.member-profile--buru.is-motion-ready.is-hero-entered .buru-profile-hero__text,
.member-profile--buru.is-motion-ready.is-hero-entered .buru-profile-hero__copy .member-profile__back,
.member-profile--buru.is-motion-ready.is-hero-entered .buru-profile-hero__agency {
  opacity: 1;
  transform: none;
}
.member-profile--buru.is-motion-ready.is-hero-entered .buru-profile-hero__badge {
  opacity: 1;
  transform: translate3d(var(--buru-parallax-x), var(--buru-parallax-y), 0) rotate(5deg) scale(1);
}
.member-profile--buru.is-motion-ready.is-hero-entered .buru-profile-hero__full {
  opacity: 1;
  transform: translate3d(var(--buru-parallax-x-reverse), calc(var(--buru-parallax-y-reverse) + var(--buru-scroll-shift)), 0) scale(1);
}

.member-profile--buru.is-hero-settled .buru-profile-hero__arcs { transition: opacity .25s ease, transform .9s cubic-bezier(.22,.61,.36,1); }
.member-profile--buru.is-hero-settled .buru-profile-hero__bust { transition: opacity .25s ease, transform .7s cubic-bezier(.22,.61,.36,1); }
.member-profile--buru.is-hero-settled .buru-profile-hero__badge { transition: opacity .25s ease, transform .48s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease; }
.member-profile--buru.is-hero-settled .buru-profile-hero__full { transition: opacity .25s ease, transform .62s cubic-bezier(.22,.61,.36,1), border-color .3s ease; }

.member-profile--buru.is-motion-ready .buru-profile-hero__visual::before {
  opacity: 0;
  transform: translate3d(var(--buru-parallax-x), calc(var(--buru-parallax-y) + var(--buru-scroll-shift)), 0) rotate(-14deg) scale(.97);
  transition: opacity .9s .18s ease-out, transform 1.05s .18s cubic-bezier(.22,.61,.36,1);
}
.member-profile--buru.is-motion-ready.is-hero-entered .buru-profile-hero__visual::before {
  opacity: .88;
  transform: translate3d(var(--buru-parallax-x), calc(var(--buru-parallax-y) + var(--buru-scroll-shift)), 0) rotate(-14deg) scale(1);
}
.member-profile--buru.is-hero-settled .buru-profile-hero__visual::before { transition: opacity .25s ease, transform .9s cubic-bezier(.22,.61,.36,1); }

.member-profile--buru.is-motion-ready .buru-profile-hero__focus-line--horizontal {
  transform: translate3d(var(--buru-parallax-x-reverse), calc(var(--buru-parallax-y-reverse) + var(--buru-scroll-shift)), 0) scaleX(0);
  transform-origin: left center;
  transition: transform 1s .38s cubic-bezier(.22,.61,.36,1), opacity .6s .38s ease;
  opacity: 0;
}
.member-profile--buru.is-motion-ready .buru-profile-hero__focus-line--vertical {
  transform: translate3d(var(--buru-parallax-x-reverse), calc(var(--buru-parallax-y-reverse) + var(--buru-scroll-shift)), 0) scaleY(0);
  transform-origin: center top;
  transition: transform 1s .48s cubic-bezier(.22,.61,.36,1), opacity .6s .48s ease;
  opacity: 0;
}
.member-profile--buru.is-motion-ready.is-hero-entered .buru-profile-hero__focus-line--horizontal {
  transform: translate3d(var(--buru-parallax-x-reverse), calc(var(--buru-parallax-y-reverse) + var(--buru-scroll-shift)), 0) scaleX(1);
  opacity: 1;
}
.member-profile--buru.is-motion-ready.is-hero-entered .buru-profile-hero__focus-line--vertical {
  transform: translate3d(var(--buru-parallax-x-reverse), calc(var(--buru-parallax-y-reverse) + var(--buru-scroll-shift)), 0) scaleY(1);
  opacity: 1;
}
.member-profile--buru.is-hero-settled .buru-profile-hero__focus-line { transition: transform .85s cubic-bezier(.22,.61,.36,1), opacity .25s ease; }

.member-profile--buru.is-motion-ready .buru-profile-hero__name::after,
.member-profile--buru.is-motion-ready .buru-profile-hero__tagline::after,
.member-profile--buru.is-motion-ready .buru-profile-hero__copy .member-profile__file-label::before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .78s cubic-bezier(.22,.61,.36,1);
}
.member-profile--buru.is-motion-ready .buru-profile-hero__name::after { transition-delay: .42s; }
.member-profile--buru.is-motion-ready .buru-profile-hero__tagline::after { transition-delay: .58s; }
.member-profile--buru.is-motion-ready .buru-profile-hero__copy .member-profile__file-label::before { transition-delay: .48s; }
.member-profile--buru.is-motion-ready.is-hero-entered .buru-profile-hero__name::after,
.member-profile--buru.is-motion-ready.is-hero-entered .buru-profile-hero__tagline::after,
.member-profile--buru.is-motion-ready.is-hero-entered .buru-profile-hero__copy .member-profile__file-label::before {
  transform: scaleX(1);
}

.member-profile--buru.is-motion-ready .member-dossier .reveal-item,
.member-profile--buru.is-motion-ready .member-movies.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  animation: none;
  transition: opacity .65s ease-out, transform .78s cubic-bezier(.22,.61,.36,1);
}
.member-profile--buru.is-motion-ready .member-dossier .reveal-item.is-visible,
.member-profile--buru.is-motion-ready .member-movies.reveal-item.is-visible {
  opacity: 1;
  transform: none;
  animation: none;
}
.member-profile--buru.is-motion-ready .member-dossier__facts.reveal-item { transition-delay: .08s; }

.member-profile--buru .member-profile-footer .button span,
.member-profile--buru .member-profile__back span { display: inline-block; transition: transform .28s ease; }

@media (hover: hover) and (pointer: fine) {
  .member-profile--buru.is-motion-ready.is-hero-entered .buru-profile-hero__badge:hover {
    transform: translate3d(var(--buru-parallax-x), calc(var(--buru-parallax-y) - 3px), 0) rotate(3deg) scale(1.045);
    box-shadow: 10px 14px 0 rgba(11,9,13,.23);
  }
  .member-profile--buru.is-motion-ready.is-hero-entered .buru-profile-hero__full:hover {
    transform: translate3d(var(--buru-parallax-x-reverse), calc(var(--buru-parallax-y-reverse) + var(--buru-scroll-shift) - 3px), 0) scale(1.015);
    border-color: rgba(255,255,255,.62);
  }
  .member-profile--buru .member-movies .movie-card {
    transition: transform .35s cubic-bezier(.22,.61,.36,1);
  }
  .member-profile--buru .member-movies .movie-card:hover { transform: translateY(-5px); }
  .member-profile--buru .member-movies .movie-card img { transition: transform .55s cubic-bezier(.22,.61,.36,1), filter .35s ease; }
  .member-profile--buru .member-movies .movie-card:hover img { transform: scale(1.025); filter: contrast(1.03); }
  .member-profile--buru .member-profile-footer .button:hover span { transform: translateX(4px); }
  .member-profile--buru .member-profile__back:hover span { transform: translateX(-3px); }
}

@media (prefers-reduced-motion: reduce) {
  .member-profile--buru .buru-profile-hero__arcs,
  .member-profile--buru .buru-profile-hero__bust,
  .member-profile--buru .buru-profile-hero__name,
  .member-profile--buru .buru-profile-hero__copy .member-profile__file-label,
  .member-profile--buru .buru-profile-hero__text,
  .member-profile--buru .buru-profile-hero__copy .member-profile__back,
  .member-profile--buru .buru-profile-hero__agency,
  .member-profile--buru .member-dossier .reveal-item,
  .member-profile--buru .member-movies.reveal-item {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  .member-profile--buru .buru-profile-hero__badge { opacity: 1 !important; transform: rotate(5deg) !important; transition: none !important; }
  .member-profile--buru .buru-profile-hero__full { opacity: 1 !important; transform: none !important; transition: none !important; }
  .member-profile--buru .buru-profile-hero__visual::before { opacity: .88 !important; transform: rotate(-14deg) !important; transition: none !important; }
  .member-profile--buru .buru-profile-hero__focus-line--horizontal { opacity: 1 !important; transform: scaleX(1) !important; transition: none !important; }
  .member-profile--buru .buru-profile-hero__focus-line--vertical { opacity: 1 !important; transform: scaleY(1) !important; transition: none !important; }
  .member-profile--buru .buru-profile-hero__name::after,
  .member-profile--buru .buru-profile-hero__tagline::after,
  .member-profile--buru .buru-profile-hero__copy .member-profile__file-label::before {
    transform: scaleX(1) !important;
    transition: none !important;
  }
  .member-profile--buru .member-movies .movie-card,
  .member-profile--buru .member-movies .movie-card img,
  .member-profile--buru .member-profile-footer .button span,
  .member-profile--buru .member-profile__back span {
    transition: none !important;
  }
}

@media (min-width: 621px) {
  .member-profile--buru.is-motion-ready .buru-profile-hero__name::after {
    transform: scaleY(0);
    transform-origin: center top;
  }
  .member-profile--buru.is-motion-ready.is-hero-entered .buru-profile-hero__name::after {
    transform: scaleY(1);
  }
}
