:root {
  color-scheme: dark;
  --ink: #090b0c;
  --panel: #101315;
  --panel-soft: #15191b;
  --text: #f1ede3;
  --muted: #a8a59e;
  --brass: #c99a4a;
  --line: rgba(201, 154, 74, .3);
  --max: 1380px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--ink);
  font-family: "Yu Gothic", "Yu Gothic UI", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; }

.skipLink {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #111;
  background: #fff;
  transform: translateY(-140%);
}
.skipLink:focus { transform: none; }

.staffHeader {
  position: relative;
  z-index: 5;
  min-height: 92px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 18px clamp(24px, 5vw, 76px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(9, 11, 12, .95);
}
.staffBrand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  letter-spacing: .08em;
  line-height: 1.05;
}
.staffBrand strong { color: var(--brass); font: 700 17px/1 serif; }
.staffBrand span { font-size: 13px; font-weight: 700; }
.staffBrand small { color: var(--muted); font-size: 8px; }
.staffHeader nav { display: flex; gap: 28px; }
.staffHeader nav a { color: #d7d2c7; font-size: 13px; font-weight: 700; text-decoration: none; }
.staffHeader nav a:hover { color: var(--brass); }

.staffIndexHero {
  min-height: min(760px, calc(100vh - 92px));
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.45fr);
  align-items: stretch;
  background: radial-gradient(circle at 20% 20%, #1a1b1b, #090b0c 56%);
}
.staffIndexHero > div {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: clamp(70px, 10vw, 150px) clamp(28px, 6vw, 100px);
}
.staffIndexHero figure { position: relative; min-height: 620px; margin: 0; overflow: hidden; }
.staffIndexHero figure img { object-position: center; filter: saturate(.72) contrast(1.08); }
.staffIndexHero figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, var(--ink), transparent 38%);
}
.staffEyebrow,
.staffSectionHeading p,
.profileLead p,
.profileStory > div > p,
.staffRecruit > p {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
}
.staffIndexHero h1 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.1;
}
.staffIndexHero > div > p:last-child {
  max-width: 560px;
  margin: 38px 0 0;
  color: #c7c3ba;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(15px, 1.3vw, 19px);
}

.staffIndex { max-width: var(--max); margin: 0 auto; padding: 120px clamp(24px, 5vw, 72px) 150px; }
.staffSectionHeading { margin-bottom: 56px; }
.staffSectionHeading h2,
.profileLead h2,
.profileStory h2,
.staffRecruit h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1.35;
}
.staffGrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.staffCard {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  background: var(--panel);
  text-decoration: none;
}
.staffCard:first-child { grid-column: span 2; }
.staffCard img { position: absolute; inset: 0; transition: transform .55s ease, filter .55s ease; }
.staffCard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 34%, rgba(5, 6, 7, .2) 50%, rgba(5, 6, 7, .96)); }
.staffCardCopy { position: relative; z-index: 1; width: 100%; padding: 34px; }
.staffCardCopy small { color: var(--brass); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.staffCardCopy h3 { margin: 6px 0 8px; font: 400 clamp(28px, 3vw, 42px)/1.25 "Yu Mincho", serif; letter-spacing: .08em; }
.staffCardCopy p { margin: 0; color: #c3bfb6; font-size: 13px; }
.staffCardCopy span { display: inline-block; margin-top: 22px; color: var(--brass); font-size: 12px; font-weight: 800; }
.staffCard:hover img { transform: scale(1.035); filter: brightness(1.06); }
.staffCard:focus-visible { outline: 2px solid var(--brass); outline-offset: 4px; }

.staffRecruit {
  min-height: 420px;
  display: grid;
  place-content: center;
  padding: 80px 24px;
  border-top: 1px solid var(--line);
  text-align: center;
  background: radial-gradient(circle at center, #1d1913, #0b0d0e 68%);
}
.staffRecruit a { margin-top: 34px; color: var(--brass); font-size: 14px; font-weight: 800; text-decoration: none; }

.profileHero { min-height: calc(100vh - 92px); display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(380px, .8fr); background: #0b0d0e; }
.profileHero figure { min-height: 680px; margin: 0; }
.profileHeroCopy { align-self: center; padding: clamp(60px, 8vw, 130px) clamp(30px, 6vw, 94px); }
.profileRole { margin: 0 0 4px; color: #d8d3c8; font-size: 15px; letter-spacing: .12em; }
.profileHero h1 { margin: 0; font: 400 clamp(42px, 4.2vw, 64px)/1.05 "Yu Mincho", serif; letter-spacing: .1em; white-space: nowrap; }
.profileHero blockquote { margin: 54px 0 0; padding-top: 30px; border-top: 1px solid var(--line); color: #d5d0c6; font: 400 clamp(19px, 2vw, 28px)/1.9 "Yu Mincho", serif; white-space: pre-line; }

.profileDetails,
.profileStory,
.profileGallery { max-width: var(--max); margin: 0 auto; padding: 120px clamp(24px, 6vw, 90px); }
.profileDetails { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(60px, 10vw, 160px); }
.profileDetails dl { margin: 0; border-top: 1px solid var(--line); }
.profileDetails dl div { display: grid; grid-template-columns: 140px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.profileDetails dt { color: var(--brass); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.profileDetails dd { margin: 0; color: #d7d2c8; }
.profileStory { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 160px); border-block: 1px solid rgba(255, 255, 255, .1); }
.profileStoryBody { align-self: end; max-width: 680px; }
.profileStory .profileStoryBody p {
  margin: 0 0 28px;
  color: var(--brass);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 2.1;
  white-space: pre-line;
}
.profileGalleryGrid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 18px; margin-top: 48px; }
.profileGalleryGrid figure { min-height: 560px; margin: 0; overflow: hidden; }
.profileGalleryGrid figure:last-child img { filter: saturate(.7); }

.profilePager { max-width: var(--max); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; margin: 0 auto; padding: 50px clamp(24px, 6vw, 90px) 110px; }
.profilePager a { min-height: 58px; display: flex; align-items: center; color: #cbc6bc; font-size: 13px; font-weight: 700; text-decoration: none; }
.profilePager a:last-child { justify-content: flex-end; text-align: right; }
.profilePagerIndex { padding-inline: 24px; border-inline: 1px solid var(--line); color: var(--brass) !important; }
.profilePager a:hover { color: var(--brass); }

.staffFooter { min-height: 110px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 30px clamp(24px, 5vw, 76px); border-top: 1px solid rgba(255, 255, 255, .1); }
.staffFooter a { color: var(--brass); font: 700 15px serif; letter-spacing: .12em; text-decoration: none; }
.staffFooter small { color: #777; }

@media (max-width: 980px) {
  .staffIndexHero { min-height: auto; grid-template-columns: 1fr; }
  .staffIndexHero > div { padding-bottom: 40px; }
  .staffIndexHero figure { min-height: 520px; }
  .staffIndexHero figure::after { display: none; }
  .staffGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .staffCard:first-child { grid-column: auto; }
  .profileHero { grid-template-columns: 1fr; }
  .profileHero figure { min-height: 64vw; max-height: 720px; }
  .profileDetails, .profileStory { grid-template-columns: 1fr; gap: 44px; }
  .profileGalleryGrid { grid-template-columns: 1fr 1fr; }
  .profileGalleryGrid figure { min-height: 420px; }
}

@media (max-width: 640px) {
  .staffHeader { min-height: 74px; padding: 12px 18px; }
  .staffBrand span { display: none; }
  .staffHeader nav { gap: 16px; }
  .staffHeader nav a { min-height: 44px; display: inline-flex; align-items: center; font-size: 12px; }
  .staffIndexHero > div { padding: 64px 22px 36px; }
  .staffIndexHero figure { min-height: 68vw; }
  .staffIndex { padding: 82px 18px 100px; }
  .staffGrid { grid-template-columns: 1fr; gap: 16px; }
  .staffCard { min-height: 116vw; max-height: 620px; }
  .staffCardCopy { padding: 24px; }
  .profileHero { min-height: auto; }
  .profileHero figure { min-height: 82vw; }
  .profileHeroCopy { padding: 52px 22px 70px; }
  .profileHero blockquote { margin-top: 34px; }
  .profileDetails, .profileStory, .profileGallery { padding: 82px 22px; }
  .profileDetails dl div { grid-template-columns: 1fr; gap: 4px; }
  .profileGalleryGrid { grid-template-columns: 1fr; }
  .profileGalleryGrid figure { min-height: 74vw; }
  .profilePager { grid-template-columns: 1fr 1fr; padding: 30px 22px 80px; }
  .profilePagerIndex { grid-column: 1 / -1; grid-row: 1; justify-content: center; border-inline: 0; border-bottom: 1px solid var(--line); }
  .profilePager a:first-child { grid-column: 1; }
  .profilePager a:last-child { grid-column: 2; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .staffCard img { transition: none; }
}
