:root {
  --paper: #f7f6f2;
  --paper-2: #efeee9;
  --ink: #182630;
  --ink-soft: #53616a;
  --blue: #244b67;
  --blue-2: #dce6ec;
  --red: #b64a45;
  --black: #0f1519;
  --white: #fff;
  --line: rgba(24, 38, 48, .18);
  --container: 1280px;
  --container-wide: 1440px;
  --header-h: 92px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.is-menu-open,
body.is-modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 12px;
  top: 12px;
  padding: 10px 14px;
  background: var(--black);
  color: #fff;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container,
.container-wide {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}
.container-wide { width: min(calc(100% - 72px), var(--container-wide)); }

.script {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  letter-spacing: .04em;
}
.script-jp {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 400;
  letter-spacing: .08em;
}

.section { position: relative; padding-block: 72px; }
.section--large { padding-block: 108px; }
.section-kicker {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .38em;
  line-height: 1;
}
.section-kicker::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin: 0 0 5px 14px;
  background: currentColor;
  opacity: .55;
}
.section-kicker--light { color: #fff; }
.section-sub {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: .2em;
}
.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}
.section-heading-row h2 {
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .15em;
}
.section-heading-row--light { color: #fff; }
.section-script {
  margin: 0 6px 4px 0;
  color: #7c8b93;
  font-size: 26px;
}
.section-heading-row--light .section-script { color: rgba(255,255,255,.7); }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-h);
  transition: background-color .35s ease, box-shadow .35s ease, color .35s ease;
}
.site-header.is-scrolled {
  background: rgba(247, 246, 242, .93);
  box-shadow: 0 1px 0 rgba(19,31,39,.08);
  backdrop-filter: blur(12px);
}
.site-header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 260px 1fr 52px;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  line-height: 1;
}
.brand__main {
  font-size: 25px;
  font-weight: 400;
  letter-spacing: .43em;
}
.brand__sub {
  margin-top: 8px;
  margin-left: 80px;
  font-size: 15px;
  color: #60717c;
  white-space: nowrap;
}
.global-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 52px);
}
.global-nav a {
  position: relative;
  padding: 14px 2px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .08em;
}
.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 8px;
  height: 1px;
  background: var(--ink);
  transition: right .28s var(--ease);
}
.global-nav a:hover::after,
.global-nav a:focus-visible::after { right: 0; }
.menu-button {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 0 11px;
  border: 1px solid rgba(24,38,48,.45);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.menu-button span {
  height: 1px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0;
  display: none;
  background: rgba(247,246,242,.98);
  padding: 26px 32px 48px;
}
.mobile-menu nav { display: grid; }
.mobile-menu a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  letter-spacing: .18em;
}
.mobile-menu a span { color: var(--ink-soft); font-size: 11px; letter-spacing: .08em; }

/* Hero */
.hero {
  min-height: 760px;
  height: min(860px, 100svh);
  position: relative;
  overflow: hidden;
  color: var(--ink);
}
.hero__media {
  position: absolute;
  inset: 0;
  background-image: url("./assets/images/hero.jpg");
  background-size: cover;
  background-position: 56% 46%;
  transform: scale(1.035);
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247,246,242,.98) 0%, rgba(247,246,242,.78) 16%, rgba(247,246,242,.16) 36%, transparent 58%),
    linear-gradient(180deg, rgba(247,246,242,.18) 0%, transparent 45%, rgba(5,14,20,.12) 66%, rgba(5,14,20,.7) 100%);
}
.hero__copy--left {
  position: absolute;
  left: max(44px, calc((100% - var(--container-wide)) / 2 + 18px));
  top: 170px;
  width: 300px;
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: .09em;
}
.hero__copy--left > p:first-child { margin: 0; }
.hero__hand {
  margin: 48px 0 0;
  font-size: 25px;
  line-height: 1.75;
  transform: rotate(-4deg);
}
.hero__hand strong { font-weight: 500; }
.hero__center {
  position: absolute;
  left: 50%;
  bottom: 70px;
  width: min(760px, 68vw);
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0,0,0,.28);
}
.hero__eyebrow {
  margin: 0 0 12px;
  font-family: "Noto Serif JP", serif;
  font-size: 19px;
  letter-spacing: .23em;
}
.hero h1 {
  margin: 0;
  font-size: clamp(56px, 6.2vw, 92px);
  font-weight: 300;
  letter-spacing: .28em;
  text-indent: .28em;
  line-height: 1;
}
.hero__line {
  display: block;
  width: min(580px, 70%);
  height: 22px;
  margin: 0 auto -1px;
  border-top: 2px solid rgba(255,255,255,.85);
  border-radius: 50%;
  transform: rotate(-2deg);
}
.hero__subline {
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .52em;
}
.trailer-button {
  position: absolute;
  right: max(44px, calc((100% - var(--container-wide)) / 2 + 20px));
  bottom: 80px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
  cursor: pointer;
}
.play-circle {
  width: 54px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform .25s var(--ease), background-color .25s ease;
}
.play-triangle {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid currentColor;
}
.trailer-button:hover .play-circle,
.cta-play:hover .play-circle { transform: scale(1.08); background: rgba(255,255,255,.14); }
.scroll-cue {
  position: absolute;
  left: max(44px, calc((100% - var(--container-wide)) / 2 + 20px));
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 9px;
  letter-spacing: .2em;
}
.scroll-cue i { width: 54px; height: 1px; background: rgba(255,255,255,.6); }

/* News */
.news-strip {
  background: #fff;
  padding-block: 48px;
  border-bottom: 1px solid var(--line);
}
.news-strip__grid {
  display: grid;
  grid-template-columns: 170px minmax(0,1fr) 300px;
  align-items: start;
  gap: 38px;
}
.news-strip__grid h2 { margin: 10px 0 0; font-size: 11px; font-weight: 400; letter-spacing: .18em; }
.news-list { border-top: 1px solid var(--line); }
.news-item {
  min-height: 56px;
  display: grid;
  grid-template-columns: 94px 54px 1fr 18px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  transition: opacity .2s ease;
}
.news-item:hover { opacity: .6; }
.news-item time { color: var(--ink-soft); font-size: 10px; letter-spacing: .04em; }
.news-tag {
  padding: 4px 6px;
  background: var(--red);
  color: #fff;
  text-align: center;
  font-size: 8px;
  letter-spacing: .12em;
}
.news-tag--blue { background: var(--blue); }
.news-tag--dark { background: var(--black); }
.news-item b { font-weight: 300; }
.news-strip__visual { position: relative; min-height: 120px; overflow: hidden; }
.news-strip__visual img { width: 100%; height: 120px; object-fit: cover; }
.news-strip__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.92)); }
.news-strip__visual p { position: absolute; z-index: 1; right: 18px; top: 18px; margin: 0; font-size: 19px; line-height: 1.6; transform: rotate(-4deg); }

/* About */
.about__grid {
  display: grid;
  grid-template-columns: .9fr 1.45fr 1fr;
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
}
.about__headline h2 {
  margin: 30px 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(34px, 3.4vw, 56px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .12em;
}
.about__headline h2 em { font-style: normal; white-space: nowrap; }
.scribble-line {
  display: block;
  width: 200px;
  height: 26px;
  margin: 8px 0 0 36px;
  border-top: 1.5px solid var(--ink);
  border-radius: 50%;
  transform: rotate(-4deg);
  opacity: .7;
}
.about__text { color: #3d4b54; font-size: 13px; line-height: 2.15; letter-spacing: .055em; }
.about__text p { margin: 0 0 16px; }
.about__visual { position: relative; margin: 0; }
.about__visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about__visual figcaption { position: absolute; inset: 20px 18px auto auto; text-align: right; }
.about__visual .script-jp { display: block; font-size: 20px; line-height: 1.7; transform: rotate(-5deg); }
.about__visual small { display: block; margin-top: 50px; font-size: 8px; letter-spacing: .28em; line-height: 1.5; }

/* Members */
.members { background: #faf9f6; }
.member-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 18px; }
.member-card { min-width: 0; }
.member-card__image { overflow: hidden; background: #e6e4de; }
.member-card__image img { width: 100%; aspect-ratio: .86; object-fit: cover; transition: transform .65s var(--ease); }
.member-card:hover .member-card__image img { transform: scale(1.035); }
.member-card h3 { margin: 14px 0 4px; font-size: 13px; font-weight: 500; letter-spacing: .08em; }
.member-card h3 span { font-weight: 300; }
.member-card__role { margin: 0 0 12px !important; font-weight: 500; }
.member-card p { margin: 0; font-size: 11px; line-height: 1.75; letter-spacing: .035em; }

/* Service */
.service { overflow: hidden; background: #182a35; color: #fff; }
.service__slant {
  position: absolute;
  right: -12%;
  top: -120px;
  width: 62%;
  height: 240px;
  background: var(--red);
  opacity: .12;
  transform: rotate(-6deg);
  transform-origin: center;
}
.service__inner { position: relative; z-index: 1; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 490px;
  background: #0f1c24;
  border: 1px solid rgba(255,255,255,.14);
}
.service-card img { width: 100%; height: 235px; object-fit: cover; filter: saturate(.82) contrast(.95); transition: transform .7s var(--ease); }
.service-card:hover img { transform: scale(1.04); }
.service-card > div { padding: 28px 30px 30px; }
.service-card > div > span { color: rgba(255,255,255,.45); font-size: 10px; letter-spacing: .2em; }
.service-card h3 { margin: 9px 0 13px; font-size: 22px; font-weight: 400; letter-spacing: .22em; }
.service-card p { margin: 0; color: rgba(255,255,255,.76); font-size: 12px; line-height: 1.9; }
.service-card a { position: absolute; left: 30px; bottom: 27px; display: flex; gap: 12px; font-size: 11px; letter-spacing: .08em; }
.service-card a b { color: #d37c75; font-weight: 300; }

/* Mosaic */
.mosaic { display: grid; grid-template-columns: 1.2fr 1.2fr .7fr .7fr .85fr .78fr; grid-template-rows: 140px 140px; gap: 8px; }
.mosaic__item { position: relative; overflow: hidden; margin: 0; min-height: 0; }
.mosaic__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.mosaic__item:hover img { transform: scale(1.035); }
.mosaic__item figcaption { position: absolute; inset: auto 16px 14px; color: #fff; font-family: "Noto Serif JP", serif; font-size: 17px; line-height: 1.7; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.mosaic__item figcaption.script { font-size: 22px; }
.mosaic__item--a { grid-column: 1; grid-row: 1 / span 2; }
.mosaic__item--b { grid-column: 2; grid-row: 1 / span 2; }
.mosaic__item--c { grid-column: 3; grid-row: 1; }
.mosaic__item--d { grid-column: 4; grid-row: 1; }
.mosaic__item--e { grid-column: 5; grid-row: 1; }
.mosaic__item--f { grid-column: 3 / span 2; grid-row: 2; }
.mosaic__item--g { grid-column: 5; grid-row: 2; }
.mosaic__item--h { grid-column: 6; grid-row: 1 / span 2; }

/* Episodes */
.episodes { background: #fff; }
.text-link { font-size: 10px; letter-spacing: .07em; border-bottom: 1px solid var(--ink); padding-bottom: 6px; }
.text-link span { margin-left: 10px; }
.episode-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.episode-card__image { position: relative; overflow: hidden; }
.episode-card__image img { width: 100%; aspect-ratio: 2.45/1; object-fit: cover; transition: transform .6s var(--ease); }
.episode-card:hover img { transform: scale(1.04); }
.episode-card__image span { position: absolute; left: 10px; bottom: 8px; color: #fff; font-size: 11px; font-weight: 500; text-shadow: 0 2px 8px rgba(0,0,0,.55); }
.episode-card h3 { margin: 12px 0 6px; font-size: 13px; font-weight: 500; letter-spacing: .04em; }
.episode-card p { margin: 0; color: var(--ink-soft); font-size: 10px; line-height: 1.75; }

/* Recruit */
.recruit { min-height: 560px; display: flex; align-items: center; overflow: hidden; }
.recruit__image { position: absolute; inset: 0; background: url("./assets/images/recruit.jpg") center/cover no-repeat; transform: scale(1.02); }
.recruit__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,18,24,.88), rgba(9,18,24,.58) 48%, rgba(9,18,24,.12)); }
.recruit::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -120px;
  width: 75%;
  height: 220px;
  background: rgba(33,77,103,.65);
  transform: rotate(5deg);
}
.recruit__content { position: relative; z-index: 2; color: #fff; }
.recruit__content h2 { margin: 24px 0 20px; font-family: "Noto Serif JP", serif; font-size: clamp(38px, 5vw, 72px); font-weight: 400; line-height: 1.45; letter-spacing: .08em; }
.recruit__content > p:not(.section-kicker) { max-width: 610px; margin: 0 0 30px; color: rgba(255,255,255,.82); font-size: 13px; line-height: 2; }
.recruit__script { position: absolute; z-index: 2; right: 7%; top: 17%; margin: 0; color: rgba(255,255,255,.65); font-size: clamp(34px, 4vw, 68px); transform: rotate(-8deg); }
.outline-button,
.solid-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 0 22px;
  border: 1px solid currentColor;
  background: transparent;
  font-size: 11px;
  letter-spacing: .1em;
  transition: background .25s ease, color .25s ease, transform .25s var(--ease);
}
.outline-button:hover { transform: translateY(-2px); }
.outline-button--light:hover { background: #fff; color: var(--ink); }

/* CTA */
.special-cta { position: relative; min-height: 300px; overflow: hidden; color: #fff; }
.special-cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.special-cta__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,18,23,.58), rgba(10,18,23,.24) 52%, rgba(10,18,23,.5)); }
.special-cta__content { position: relative; z-index: 2; min-height: 300px; display: grid; grid-template-columns: 1.05fr .9fr auto; align-items: center; gap: 40px; }
.special-cta h2 { margin: 18px 0 0; font-family: "Noto Serif JP", serif; font-size: 24px; font-weight: 400; line-height: 1.7; letter-spacing: .08em; }
.cta-play { display: flex; align-items: center; gap: 18px; justify-self: center; padding: 0; border: 0; background: none; color: #fff; cursor: pointer; }
.cta-play b { display: block; font-size: 15px; font-weight: 400; letter-spacing: .28em; }
.cta-play small { display: block; margin-top: 5px; font-size: 8px; letter-spacing: .28em; }
.solid-button { background: #fff; border-color: #fff; color: var(--ink); cursor: pointer; }
.solid-button:hover { transform: translateY(-2px); background: transparent; color: #fff; }

/* Footer */
.site-footer { padding: 68px 0 34px; background: var(--paper); }
.site-footer__top { display: grid; grid-template-columns: 1fr auto 250px; gap: 58px; align-items: start; padding-bottom: 50px; border-bottom: 1px solid var(--line); }
.footer-brand .brand__sub { margin: 9px 0 0; font-family: inherit; font-size: 8px; letter-spacing: .34em; }
.footer-nav { display: flex; gap: 30px; padding-top: 9px; }
.footer-nav a { font-size: 9px; font-weight: 400; letter-spacing: .08em; }
.footer-social { border-left: 1px solid var(--line); padding-left: 38px; }
.footer-social p { margin: 0 0 15px; font-size: 14px; letter-spacing: .3em; }
.footer-social p small { margin-left: 8px; color: var(--ink-soft); font-size: 8px; letter-spacing: .1em; }
.footer-social div { display: flex; gap: 17px; }
.footer-social a { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 13px; }
.site-footer__bottom { display: flex; justify-content: space-between; align-items: end; gap: 30px; padding-top: 30px; }
.site-footer__bottom p { margin: 0; font-size: 14px; line-height: 1.8; transform: rotate(-2deg); }
.site-footer__bottom small { color: var(--ink-soft); font-size: 8px; }

/* Modal */
.modal { position: fixed; z-index: 1000; inset: 0; display: none; place-items: center; padding: 28px; }
.modal.is-open { display: grid; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(7,12,16,.8); backdrop-filter: blur(8px); }
.modal__panel { position: relative; z-index: 1; width: min(900px, 94vw); aspect-ratio: 16/9; background: #101b22; color: #fff; box-shadow: 0 30px 90px rgba(0,0,0,.4); }
.modal__close { position: absolute; z-index: 2; right: 14px; top: 10px; width: 40px; height: 40px; border: 0; background: transparent; color: #fff; font-size: 28px; font-weight: 200; cursor: pointer; }
.modal__video-placeholder { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 18px; text-align: center; background: radial-gradient(circle at 50% 40%, #2a485b 0%, #101b22 62%); }
.play-circle--large { width: 76px; }
.modal__video-placeholder h2 { margin: 0; font-size: 20px; font-weight: 300; letter-spacing: .32em; }
.modal__video-placeholder p { margin: 0; color: rgba(255,255,255,.65); font-size: 12px; }

/* Motion */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1180px) {
  .global-nav { gap: 22px; }
  .site-header__inner { grid-template-columns: 220px 1fr 46px; }
  .brand__main { font-size: 21px; }
  .brand__sub { margin-left: 54px; }
  .member-grid { grid-template-columns: repeat(3, 1fr); gap: 34px 18px; }
  .news-strip__grid { grid-template-columns: 140px 1fr; }
  .news-strip__visual { display: none; }
  .about__grid { grid-template-columns: .9fr 1.25fr; }
  .about__visual { grid-column: 1 / -1; width: min(560px, 60%); margin-left: auto; }
  .mosaic { grid-template-columns: 1fr 1fr 1fr 1fr; grid-template-rows: 170px 170px 170px; }
  .mosaic__item--a { grid-column: 1 / span 2; grid-row: 1 / span 2; }
  .mosaic__item--b { grid-column: 3 / span 2; grid-row: 1 / span 2; }
  .mosaic__item--c { grid-column: 1; grid-row: 3; }
  .mosaic__item--d { grid-column: 2; grid-row: 3; }
  .mosaic__item--e { grid-column: 3; grid-row: 3; }
  .mosaic__item--f { grid-column: 4; grid-row: 3; }
  .mosaic__item--g, .mosaic__item--h { display: none; }
  .special-cta__content { grid-template-columns: 1fr auto; }
  .special-cta__content > div:first-child { grid-row: 1 / span 2; }
  .cta-play { justify-self: end; }
  .solid-button { justify-self: end; }
}

@media (max-width: 900px) {
  :root { --header-h: 76px; }
  .container, .container-wide { width: min(calc(100% - 40px), var(--container)); }
  .site-header__inner { grid-template-columns: 1fr 44px; }
  .global-nav { display: none; }
  .menu-button { grid-column: 2; }
  .mobile-menu { display: none; }
  .site-header.is-menu-open .mobile-menu { display: block; }
  .hero { min-height: 720px; height: 90svh; }
  .hero__media { background-position: 54% center; }
  .hero__veil { background: linear-gradient(180deg, rgba(247,246,242,.75) 0%, rgba(247,246,242,.06) 38%, rgba(5,14,20,.72) 100%); }
  .hero__copy--left { top: 126px; left: 24px; width: 260px; font-size: 12px; }
  .hero__hand { margin-top: 22px; font-size: 19px; }
  .hero__center { bottom: 82px; width: 92%; }
  .hero__eyebrow { font-size: 14px; }
  .hero h1 { font-size: clamp(48px, 12vw, 72px); }
  .trailer-button { right: 24px; bottom: 24px; font-size: 10px; }
  .scroll-cue { display: none; }
  .news-strip__grid { grid-template-columns: 1fr; gap: 24px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__headline h2 { font-size: 42px; }
  .about__visual { grid-column: auto; width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; display: grid; grid-template-columns: .85fr 1.15fr; }
  .service-card img { height: 100%; min-height: 260px; }
  .service-card > div { padding-bottom: 74px; }
  .episode-grid { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .recruit__script { display: none; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .footer-social { grid-column: 2; border-left: 0; padding-left: 0; }
  .footer-nav { flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .container, .container-wide { width: min(calc(100% - 32px), var(--container)); }
  .section { padding-block: 56px; }
  .section--large { padding-block: 72px; }
  .section-kicker { font-size: 15px; }
  .section-heading-row { align-items: start; margin-bottom: 24px; }
  .section-script { display: none; }
  .brand__main { font-size: 20px; }
  .brand__sub { margin-left: 48px; font-size: 12px; }
  .hero { min-height: 680px; height: 86svh; }
  .hero__media { background-position: 51% center; }
  .hero__copy--left { top: 112px; width: 235px; font-size: 11px; line-height: 1.9; }
  .hero__hand { font-size: 17px; }
  .hero__center { bottom: 106px; }
  .hero__eyebrow { font-size: 12px; letter-spacing: .15em; }
  .hero h1 { font-size: 44px; letter-spacing: .24em; }
  .hero__line { width: 68%; height: 15px; }
  .hero__subline { font-size: 8px; }
  .trailer-button { left: 50%; right: auto; bottom: 24px; transform: translateX(-50%); width: max-content; }
  .play-circle { width: 44px; }
  .news-item { grid-template-columns: 80px 46px 1fr; gap: 9px; padding: 12px 0; }
  .news-item b { display: none; }
  .news-item span:nth-of-type(2) { grid-column: 1 / -1; }
  .about__headline h2 { margin-top: 24px; font-size: 34px; }
  .about__text { font-size: 12px; }
  .about__visual .script-jp { font-size: 16px; }
  .member-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 12px; }
  .member-card h3 { font-size: 12px; }
  .member-card p { font-size: 10px; line-height: 1.65; }
  .service-card { display: block; }
  .service-card img { height: 210px; min-height: 0; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 130px 130px; }
  .mosaic__item--a { grid-column: 1; grid-row: 1 / span 2; }
  .mosaic__item--b { grid-column: 2; grid-row: 1 / span 2; }
  .mosaic__item--c { grid-column: 1; grid-row: 3; }
  .mosaic__item--d { grid-column: 2; grid-row: 3; }
  .mosaic__item--e { grid-column: 1; grid-row: 4; }
  .mosaic__item--f { grid-column: 2; grid-row: 4; }
  .mosaic__item figcaption { font-size: 13px; inset: auto 10px 10px; }
  .episode-grid { display: grid; grid-template-columns: 1fr; }
  .episode-card__image img { aspect-ratio: 2.2/1; }
  .recruit { min-height: 600px; }
  .recruit__overlay { background: linear-gradient(180deg, rgba(9,18,24,.3), rgba(9,18,24,.88)); }
  .recruit__content { align-self: end; padding-bottom: 32px; }
  .recruit__content h2 { font-size: 38px; }
  .special-cta { min-height: 430px; }
  .special-cta__content { min-height: 430px; grid-template-columns: 1fr; align-content: center; text-align: center; gap: 28px; }
  .special-cta__content > div:first-child { grid-row: auto; }
  .cta-play, .solid-button { justify-self: center; }
  .site-footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer-nav { order: 3; gap: 18px 24px; }
  .footer-social { grid-column: auto; }
  .site-footer__bottom { align-items: start; flex-direction: column; }
  .modal { padding: 14px; }
  .modal__panel { aspect-ratio: 4/3; }
  .modal__video-placeholder h2 { font-size: 14px; letter-spacing: .18em; }
  .modal__video-placeholder p { max-width: 80%; line-height: 1.7; }
}

@media (max-width: 390px) {
  .member-grid { grid-template-columns: 1fr; }
  .member-card { max-width: 300px; margin-inline: auto; }
}

/* =========================================================
   HARBOR refinement v2 — reference matching / image polish
   ========================================================= */
:root {
  --paper: #fbfaf7;
  --paper-2: #f1f0eb;
  --ink: #1c2830;
  --ink-soft: #68747b;
  --blue: #2d536b;
  --red: #a9514a;
  --black: #10161a;
  --container: 1310px;
  --container-wide: 1480px;
  --header-h: 76px;
}

body {
  background: var(--paper);
  letter-spacing: .005em;
}

.container,
.container-wide {
  width: min(calc(100% - 72px), var(--container));
}
.container-wide { width: min(calc(100% - 84px), var(--container-wide)); }

.section { padding-block: 58px; }
.section--large { padding-block: 82px; }
.section-kicker { font-size: 16px; letter-spacing: .42em; }
.section-kicker::after { width: 28px; margin-left: 12px; }
.section-heading-row { margin-bottom: 30px; }
.section-heading-row h2 { margin-top: 10px; font-size: 10px; color: var(--ink-soft); }
.section-script { font-size: 22px; }

/* header: lighter, shorter, airier */
.site-header {
  height: var(--header-h);
  color: var(--ink);
}
.site-header.is-scrolled {
  background: rgba(251,250,247,.92);
  box-shadow: 0 1px 0 rgba(18,30,38,.07);
}
.site-header__inner {
  grid-template-columns: 230px 1fr 44px;
  gap: 18px;
}
.brand__main {
  font-size: 22px;
  letter-spacing: .47em;
}
.brand__sub {
  margin-top: 5px;
  margin-left: 64px;
  font-size: 13px;
  color: #72808a;
}
.global-nav { gap: clamp(25px, 3vw, 48px); }
.global-nav a {
  padding: 12px 2px;
  font-size: 10px;
  letter-spacing: .07em;
}
.menu-button {
  width: 38px;
  padding-inline: 10px;
  border-color: rgba(24,38,48,.38);
}

/* hero: closer to the supplied desktop composition */
.hero {
  min-height: 650px;
  height: clamp(650px, 47vw, 760px);
}
.hero__media {
  background-position: 54% 48%;
  transform: scale(1.015);
}
.hero__veil {
  background:
    linear-gradient(90deg, rgba(251,250,247,.96) 0%, rgba(251,250,247,.80) 15%, rgba(251,250,247,.24) 31%, rgba(251,250,247,0) 49%),
    linear-gradient(180deg, rgba(251,250,247,.10) 0%, rgba(8,15,20,0) 49%, rgba(7,14,18,.14) 68%, rgba(7,14,18,.62) 100%);
}
.hero__copy--left {
  left: max(44px, calc((100% - var(--container-wide)) / 2 + 8px));
  top: 118px;
  width: 252px;
  font-size: 13px;
  line-height: 1.95;
  letter-spacing: .095em;
}
.hero__hand {
  margin-top: 34px;
  font-size: 21px;
  line-height: 1.65;
  transform: rotate(-5deg);
}
.hero__center {
  left: 57%;
  bottom: 40px;
  width: min(670px, 56vw);
}
.hero__eyebrow {
  margin-bottom: 10px;
  font-size: 15px;
  letter-spacing: .22em;
}
.hero h1 {
  font-size: clamp(56px, 5.6vw, 82px);
  letter-spacing: .29em;
}
.hero__line { width: min(510px, 74%); height: 17px; border-top-width: 1.5px; }
.hero__subline { font-size: 8px; letter-spacing: .5em; }
.hero__right-copy {
  position: absolute;
  z-index: 3;
  right: max(44px, calc((100% - var(--container-wide)) / 2 + 12px));
  top: 92px;
  width: 190px;
  text-align: right;
  color: #31414b;
}
.hero__right-copy p:first-child {
  margin: 0;
  white-space: pre-line;
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: .12em;
}
.hero__right-copy .script {
  margin: 34px 0 0;
  white-space: pre-line;
  font-size: 27px;
  line-height: 1.5;
  transform: rotate(-6deg);
}
.hero__series-note {
  position: absolute;
  z-index: 3;
  right: max(44px, calc((100% - var(--container-wide)) / 2 + 10px));
  bottom: 14px;
  margin: 0;
  white-space: pre-line;
  color: rgba(255,255,255,.88);
  text-align: right;
  font-size: 15px;
  line-height: 1.25;
  transform: rotate(-5deg);
}
.trailer-button {
  right: max(44px, calc((100% - var(--container-wide)) / 2 + 18px));
  bottom: 63px;
  font-size: 10px;
  gap: 14px;
}
.play-circle { width: 46px; }
.scroll-cue { bottom: 21px; font-size: 8px; }

/* About: keep the reference's white editorial base, add a restrained dark visual block
   instead of turning the whole section black. */
.about {
  background: #fff;
}
.about__grid {
  grid-template-columns: .8fr 1.45fr 1.12fr;
  gap: clamp(34px, 4vw, 66px);
  align-items: center;
}
.about__headline h2 {
  margin-top: 24px;
  font-size: clamp(32px, 3.1vw, 50px);
  line-height: 1.55;
  letter-spacing: .10em;
}
.about__text {
  font-size: 11.5px;
  line-height: 2.12;
  letter-spacing: .05em;
}
.about__visual {
  isolation: isolate;
  padding: 12px 0 0 14px;
}
.about__visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 18px;
  top: 0;
  bottom: 18px;
  background: #11171b;
}
.about__visual img {
  aspect-ratio: 1.55 / 1;
  object-position: center;
  box-shadow: 0 18px 42px rgba(10,18,24,.10);
}
.about__visual figcaption { inset: 24px 18px auto auto; color: #fff; }
.about__visual .script-jp { font-size: 18px; text-shadow: 0 2px 12px rgba(0,0,0,.28); }
.about__visual small { margin-top: 35px; }

/* member cards: slightly slimmer and cleaner */
.members { background: var(--paper); }
.member-grid { gap: 13px; }
.member-card__image img { aspect-ratio: .84; }
.member-card h3 { margin-top: 10px; font-size: 11.5px; }
.member-card__role { margin-bottom: 8px !important; font-size: 10px !important; }
.member-card p { font-size: 9.5px; line-height: 1.7; color: #45545e; }

/* service: blue/red diagonal bands, angle reduced to a premium editorial accent */
.service {
  background: linear-gradient(180deg, #182b36 0%, #102029 100%);
  padding-block: 96px;
}
.service::before,
.service::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.service::before {
  left: -9%;
  top: 34px;
  width: 64%;
  height: 62px;
  background: rgba(52,92,117,.38);
  transform: rotate(-4deg);
}
.service::after {
  right: -12%;
  bottom: 26px;
  width: 56%;
  height: 38px;
  background: rgba(169,81,74,.34);
  transform: rotate(-4deg);
}
.service__slant {
  right: -18%;
  top: -65px;
  width: 76%;
  height: 110px;
  background: rgba(169,81,74,.26);
  transform: rotate(-4deg);
  opacity: 1;
}
.service__inner { max-width: 1240px; }
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card {
  min-height: 430px;
  background: rgba(8,20,27,.88);
  border-color: rgba(255,255,255,.11);
  box-shadow: 0 18px 48px rgba(0,0,0,.12);
}
.service-card img { height: 198px; filter: saturate(.9) contrast(.98); }
.service-card > div { padding: 24px 25px 26px; }
.service-card h3 { font-size: 18px; }
.service-card p { font-size: 10.5px; }
.service-card a { left: 25px; bottom: 23px; font-size: 9.5px; }

/* gallery / episodes */
.life { background: #fff; }
.mosaic { grid-template-rows: 128px 128px; gap: 7px; }
.mosaic__item figcaption { font-size: 15px; }
.episodes { padding-block: 48px 60px; }
.episode-grid { gap: 15px; }
.episode-card h3 { margin-top: 9px; font-size: 11.5px; }
.episode-card p { font-size: 9px; }

/* recruit: larger photograph with less text-overlay heaviness */
.recruit {
  min-height: 500px;
  align-items: center;
}
.recruit__image {
  background-position: 58% center;
  transform: none;
}
.recruit__overlay {
  background: linear-gradient(90deg, rgba(9,16,21,.88) 0%, rgba(9,16,21,.66) 39%, rgba(9,16,21,.24) 62%, rgba(9,16,21,.05) 100%);
}
.recruit::after {
  left: -13%;
  bottom: -104px;
  width: 68%;
  height: 170px;
  background: rgba(45,83,107,.48);
  transform: rotate(4deg);
}
.recruit__content h2 {
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.4;
}
.recruit__content > p:not(.section-kicker) { max-width: 520px; font-size: 11.5px; }
.recruit__script { right: 6%; top: 15%; font-size: clamp(28px,3.6vw,54px); }
.outline-button,
.solid-button { min-height: 48px; padding-inline: 19px; font-size: 9.5px; }

/* special CTA: closer to the shallow band in the mock */
.special-cta { min-height: 190px; }
.special-cta > img { object-position: center 54%; }
.special-cta__shade {
  background: linear-gradient(90deg, rgba(14,23,28,.32), rgba(14,23,28,.16) 50%, rgba(14,23,28,.34));
}
.special-cta__content {
  min-height: 190px;
  grid-template-columns: 1fr .9fr auto;
  gap: 26px;
}
.special-cta h2 { margin-top: 12px; font-size: 17px; line-height: 1.65; }
.cta-play { gap: 12px; }
.cta-play .play-circle { width: 44px; }
.cta-play b { font-size: 12px; }
.cta-play small { font-size: 7px; }
.solid-button { min-width: 190px; }

/* news moves to the lower page, like the supplied reference */
.news-strip {
  padding-block: 30px;
  background: #fff;
}
.news-strip__grid {
  grid-template-columns: 145px minmax(0,1fr) 260px;
  gap: 30px;
}
.news-item { min-height: 44px; font-size: 10px; grid-template-columns: 86px 50px 1fr 14px; }
.news-strip__visual { min-height: 98px; }
.news-strip__visual img { height: 98px; }
.news-strip__visual p { top: 14px; font-size: 16px; }

/* footer alignment */
.site-footer { padding: 46px 0 24px; }
.site-footer__top {
  grid-template-columns: 1fr auto 220px;
  gap: 40px;
  padding-bottom: 34px;
}
.footer-nav { gap: 25px; }
.footer-nav a { font-size: 8px; }
.footer-social { padding-left: 28px; }
.site-footer__bottom { padding-top: 22px; }
.site-footer__bottom p { font-size: 12px; }

/* photo rendering */
img {
  image-rendering: auto;
  backface-visibility: hidden;
}
.member-card__image,
.episode-card__image,
.mosaic__item,
.about__visual {
  background: #e9e6df;
}

@media (max-width: 1180px) {
  .container,
  .container-wide { width: min(calc(100% - 48px), var(--container)); }
  .hero__right-copy { right: 30px; }
  .hero__copy--left { left: 30px; }
  .hero__series-note { right: 30px; }
  .member-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 14px; }
  .service-grid { gap: 14px; }
  .news-strip__grid { grid-template-columns: 130px 1fr; }
  .news-strip__visual { display: none; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .container,
  .container-wide { width: min(calc(100% - 34px), var(--container)); }
  .site-header__inner { grid-template-columns: 1fr 40px; }
  .brand__main { font-size: 19px; }
  .brand__sub { margin-left: 45px; font-size: 11px; }
  .menu-button { width: 36px; }
  .hero {
    min-height: 560px;
    height: 68svh;
    max-height: 700px;
  }
  .hero__media { background-position: 54% center; }
  .hero__veil {
    background:
      linear-gradient(180deg, rgba(251,250,247,.78) 0%, rgba(251,250,247,.10) 35%, rgba(8,15,20,.12) 58%, rgba(8,15,20,.68) 100%);
  }
  .hero__copy--left {
    left: 20px;
    top: 96px;
    width: 225px;
    font-size: 10px;
    line-height: 1.8;
  }
  .hero__hand { margin-top: 18px; font-size: 16px; }
  .hero__right-copy { right: 18px; top: 88px; width: 135px; }
  .hero__right-copy p:first-child { font-size: 9px; }
  .hero__right-copy .script { margin-top: 20px; font-size: 20px; }
  .hero__center { left: 50%; bottom: 70px; width: 92%; }
  .hero__eyebrow { font-size: 11px; }
  .hero h1 { font-size: clamp(42px, 11vw, 62px); }
  .hero__series-note { display: none; }
  .trailer-button { right: 20px; bottom: 18px; }
  .about__grid { grid-template-columns: 1fr; gap: 26px; }
  .about__headline h2 { font-size: 38px; }
  .about__visual { width: min(620px,100%); margin-left: auto; }
  .service { padding-block: 76px; }
  .service-grid { grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; }
  .service-card { min-height: 0; display: grid; grid-template-columns: .95fr 1.05fr; }
  .service-card img { height: 100%; min-height: 220px; }
  .service-card > div { padding-bottom: 66px; }
  .recruit { min-height: 460px; }
  .special-cta__content { grid-template-columns: 1fr auto; }
  .special-cta__content > div:first-child { grid-row: 1 / span 2; }
  .solid-button, .cta-play { justify-self: end; }
}

@media (max-width: 640px) {
  :root { --header-h: 64px; }
  .container,
  .container-wide { width: min(calc(100% - 28px), var(--container)); }
  .section { padding-block: 42px; }
  .section--large { padding-block: 58px; }
  .section-kicker { font-size: 13px; }
  .brand__main { font-size: 18px; }
  .brand__sub { margin-left: 39px; font-size: 10px; }

  .hero {
    min-height: 520px;
    height: 66svh;
    max-height: 620px;
  }
  .hero__media {
    background-position: 53% center;
    transform: scale(1.02);
  }
  .hero__copy--left {
    top: 88px;
    left: 17px;
    width: 205px;
    font-size: 9.5px;
  }
  .hero__copy--left > p:first-child { display: none; }
  .hero__hand { margin-top: 0; font-size: 15px; }
  .hero__right-copy { top: 83px; right: 14px; width: 118px; }
  .hero__right-copy p:first-child { font-size: 8px; }
  .hero__right-copy .script { font-size: 17px; }
  .hero__center { bottom: 72px; }
  .hero__eyebrow { font-size: 10px; margin-bottom: 7px; }
  .hero h1 { font-size: 40px; letter-spacing: .23em; }
  .hero__line { width: 67%; height: 13px; }
  .hero__subline { font-size: 7px; }
  .trailer-button {
    left: 50%;
    right: auto;
    bottom: 18px;
    transform: translateX(-50%);
    font-size: 8.5px;
    white-space: nowrap;
  }
  .trailer-button .play-circle { width: 38px; }

  .about__headline h2 { font-size: 31px; }
  .about__text { font-size: 10.5px; }
  .about__visual { padding-left: 9px; }
  .about__visual::before { right: 12px; bottom: 12px; }

  /* target mock uses a dense 3-column member mosaic on mobile */
  .member-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px 8px; }
  .member-card__image img { aspect-ratio: .98; }
  .member-card h3 { margin-top: 6px; font-size: 9px; }
  .member-card__role { font-size: 7.5px !important; line-height: 1.45; }
  .member-card p { font-size: 7px; line-height: 1.45; }

  .service { padding-block: 62px; }
  .service::before { width: 88%; height: 38px; top: 24px; }
  .service::after { width: 80%; height: 26px; bottom: 20px; }
  .service-card { display: block; }
  .service-card img { height: 190px; min-height: 0; }
  .service-card > div { padding: 20px 20px 60px; }
  .service-card a { left: 20px; }

  .mosaic { grid-template-rows: 150px 150px 110px 110px; }
  .episode-grid { grid-template-columns: 1fr; }
  .episode-card__image img { aspect-ratio: 2.4/1; }

  .recruit { min-height: 520px; align-items: end; }
  .recruit__image { background-position: 66% center; }
  .recruit__overlay { background: linear-gradient(180deg, rgba(9,16,21,.10), rgba(9,16,21,.86) 72%, rgba(9,16,21,.94)); }
  .recruit__content { padding-bottom: 34px; }
  .recruit__content h2 { font-size: 34px; }
  .recruit__content > p:not(.section-kicker) { font-size: 10.5px; }

  .special-cta { min-height: 250px; }
  .special-cta__content { min-height: 250px; grid-template-columns: 1fr; text-align: center; align-content: center; gap: 17px; }
  .special-cta__content > div:first-child { grid-row: auto; }
  .special-cta h2 { font-size: 15px; }
  .cta-play, .solid-button { justify-self: center; }
  .solid-button { min-width: 180px; }

  .news-strip { padding-block: 28px; }
  .news-strip__grid { grid-template-columns: 1fr; gap: 18px; }
  .news-item { font-size: 9px; }

  .site-footer { padding: 40px 0 22px; }
  .site-footer__top { grid-template-columns: 1fr; gap: 25px; padding-bottom: 26px; }
  .footer-social { padding-left: 0; border-left: 0; }
  .footer-nav { gap: 16px 20px; }
  .site-footer__bottom { padding-top: 18px; }
}

@media (max-width: 360px) {
  .member-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .member-card h3 { font-size: 10px; }
  .member-card__role { font-size: 8.5px !important; }
  .member-card p { font-size: 8px; }
}

/* =========================================================
   STEP 4 / pixel-match refinement v3
   Reference-first: do not reinterpret the HARBOR mock.
   ========================================================= */

/* Keep the reference's static transparent header over the hero. */
.site-header { position:absolute; }
.site-header.is-scrolled { background:transparent; box-shadow:none; backdrop-filter:none; }
.mobile-intro { display:none; }

/* Reference sections are editorial, not app-like. */
.about, .members, .life, .episodes, .news-strip, .site-footer { background:#fbfaf7; }
.service, .recruit { display:none !important; }

/* Desktop reference proportions */
@media (min-width: 901px) {
  :root { --header-h: 64px; --container: 1320px; --container-wide: 1460px; }
  .site-header__inner { grid-template-columns: 230px 1fr 42px; }
  .hero { min-height: 620px; height: clamp(620px, 47.5vw, 715px); }
  .hero__copy--left { top: 108px; left:max(38px,calc((100% - var(--container-wide))/2 + 4px)); width:230px; font-size:12px; line-height:1.86; }
  .hero__hand { margin-top:30px; font-size:20px; }
  .hero__right-copy { top:78px; width:170px; }
  .hero__right-copy p:first-child { font-size:11px; }
  .hero__right-copy .script { margin-top:26px; font-size:24px; }
  .hero__center { left:56.5%; bottom:34px; width:min(640px,54vw); }
  .hero__eyebrow { margin-bottom:8px; font-size:14px; }
  .hero h1 { font-size:clamp(52px,5.25vw,76px); }
  .trailer-button { bottom:50px; }
  .hero__series-note { bottom:10px; font-size:13px; }
  .section--large { padding-block:58px; }
  .about__grid { grid-template-columns:.8fr 1.45fr 1.1fr; gap:42px; }
  .about__headline h2 { font-size:clamp(30px,2.8vw,46px); }
  .members.section--large { padding-top:44px; padding-bottom:52px; }
  .member-grid { gap:14px; }
  .life.section--large { padding-top:40px; padding-bottom:30px; }
  .episodes.section { padding-top:20px; padding-bottom:30px; }
  .special-cta { min-height:160px; }
  .special-cta__content { min-height:160px; }
  .news-strip { padding-block:24px; }
  .site-footer { padding-top:26px; padding-bottom:20px; }
}

/* The supplied mobile mock is a compact editorial composition, not a stacked app layout. */
@media (max-width: 900px) {
  :root { --header-h: 0px; }
  html, body { overflow-x:clip; }
  .container, .container-wide { width:calc(100% - 28px); }

  /* Pixel-faithful mobile hero: dedicated art direction from the supplied mock. */
  .site-header { position:absolute; height:0; z-index:120; }
  .site-header__inner { height:0; width:100%; display:block; }
  .brand, .global-nav { visibility:hidden; pointer-events:none; }
  .menu-button {
    position:absolute; right:16px; top:17px; width:48px; height:48px;
    opacity:0; border:0; z-index:121;
  }
  .mobile-menu { top:0; inset-inline:0; min-height:100svh; padding:74px 24px 36px; }
  .site-header.is-menu-open .mobile-menu { display:block; }
  .mobile-menu a { padding:17px 0; font-size:15px; }

  .hero {
    height:auto; min-height:0; aspect-ratio:1.546 / 1; /* 498x322 */
    background:#ebe7de; overflow:hidden;
  }
  .hero__media {
    inset:0; transform:none; animation:none;
    background-image:url("./assets/images/hero-mobile-reference.jpg");
    background-size:cover; background-position:center;
  }
  .hero__veil, .hero__copy--left, .hero__right-copy, .hero__center,
  .hero__series-note, .scroll-cue { display:none !important; }
  /* Retain trailer functionality over the baked visual button. */
  .trailer-button {
    display:block; position:absolute; left:34%; right:13%; bottom:1.5%; height:19%;
    transform:none; opacity:0; z-index:5; cursor:pointer;
  }
  .trailer-button * { visibility:hidden; }

  .mobile-intro {
    display:grid; grid-template-columns:1.2fr .8fr; gap:0;
    background:#fbfaf7; min-height:88px; border-bottom:1px solid rgba(28,40,48,.08);
  }
  .mobile-intro__copy { padding:12px 10px 10px 16px; }
  .mobile-intro__copy h2 { margin:0 0 6px; font-family:"Noto Serif JP",serif; font-weight:400; font-size:11px; letter-spacing:.12em; }
  .mobile-intro__copy p { margin:0; font-size:6.6px; line-height:1.75; letter-spacing:.05em; color:#52606a; }
  .mobile-intro__visual { position:relative; min-height:88px; overflow:hidden; }
  .mobile-intro__visual img { width:100%; height:100%; object-fit:cover; object-position:70% 42%; }
  .mobile-intro__visual::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,#fbfaf7 0%,rgba(251,250,247,.28) 35%,transparent 65%); }
  .mobile-intro__visual span { position:absolute; z-index:1; right:8px; bottom:6px; font-size:8px; color:#52606a; transform:rotate(-4deg); }

  .section, .section--large { padding-block:18px; }
  .section-kicker { font-size:10px; letter-spacing:.36em; }
  .section-kicker::after { width:20px; margin-left:7px; margin-bottom:3px; }
  .section-sub { margin-top:5px; font-size:6.6px; letter-spacing:.12em; }
  .section-heading-row { margin-bottom:9px; gap:8px; align-items:end; }
  .section-heading-row h2 { margin-top:4px; font-size:6.4px; }
  .section-script { display:block; font-size:11px; margin-bottom:1px; }

  .about { padding-block:18px 15px; }
  .about__grid {
    display:grid; grid-template-columns:.78fr 1.45fr .9fr; gap:10px; align-items:center;
  }
  .about__headline h2 { margin-top:10px; font-size:18px; line-height:1.55; letter-spacing:.07em; }
  .scribble-line { width:78px; height:9px; margin:2px 0 0 18px; border-top-width:1px; }
  .about__text { font-size:6.4px; line-height:1.85; letter-spacing:.025em; }
  .about__text p { margin:0 0 7px; }
  .about__visual { padding:0; }
  .about__visual::before { display:none; }
  .about__visual img { aspect-ratio:1.45/1; box-shadow:none; }
  .about__visual figcaption { inset:7px 6px auto auto; color:#20303a; }
  .about__visual .script-jp { font-size:8px; line-height:1.5; text-shadow:none; }
  .about__visual small { margin-top:13px; font-size:4.4px; letter-spacing:.15em; }

  .members { padding-top:14px; padding-bottom:18px; }
  .member-grid { grid-template-columns:repeat(3,1fr); gap:12px 8px; }
  .member-card { max-width:none; margin:0; }
  .member-card__image { margin-bottom:4px; }
  .member-card__image img { aspect-ratio:1.08/1; object-fit:cover; }
  .member-card h3 { margin:0 0 2px; font-size:7px; }
  .member-card__role { font-size:6.2px !important; font-weight:500; }
  .member-card p { margin:2px 0 0; font-size:5.8px; line-height:1.45; }

  .life { padding-top:14px; padding-bottom:12px; }
  .life .section-heading-row { margin-bottom:7px; }
  .mosaic {
    grid-template-columns:1.45fr 1.45fr .75fr .75fr .75fr;
    grid-template-rows:44px 44px; gap:2px;
  }
  .mosaic__item--a { grid-column:1; grid-row:1 / span 2; }
  .mosaic__item--b { grid-column:2; grid-row:1 / span 2; }
  .mosaic__item--c { grid-column:3; grid-row:1; }
  .mosaic__item--d { grid-column:4; grid-row:1; }
  .mosaic__item--e { grid-column:5; grid-row:1; }
  .mosaic__item--f { grid-column:3 / span 2; grid-row:2; }
  .mosaic__item--g { grid-column:5; grid-row:2; }
  .mosaic__item--h { display:none; }
  .mosaic__item figcaption { inset:auto 4px 4px; font-size:6px; line-height:1.35; }

  .episodes { padding-top:8px; padding-bottom:12px; }
  .episodes .section-heading-row { margin-bottom:6px; }
  .text-link { font-size:5.6px; }
  .episode-grid { grid-template-columns:repeat(3,1fr); gap:6px; }
  .episode-card:nth-child(4) { display:none; }
  .episode-card__image img { aspect-ratio:2.05/1; }
  .episode-card__image span { left:4px; bottom:3px; font-size:5.8px; }
  .episode-card h3 { margin:3px 0 1px; font-size:6.3px; }
  .episode-card p { font-size:5.3px; line-height:1.4; }

  .special-cta { min-height:64px; }
  .special-cta__content { min-height:64px; grid-template-columns:1fr 1.3fr .9fr; padding:6px 14px; gap:8px; }
  .special-cta__content > div:first-child p { font-size:9px; }
  .special-cta__content > div:first-child h2 { font-size:6px; }
  .cta-play { gap:5px; font-size:5px; }
  .cta-play .play-circle { width:22px; }
  .solid-button { padding:8px 9px; font-size:5.6px; }

  .news-strip { padding-block:10px; }
  .news-strip__grid { grid-template-columns:.55fr 1.25fr 1fr; gap:8px; }
  .news-strip__grid h2 { margin-top:3px; font-size:5.6px; }
  .news-list { border-top:0; }
  .news-item { min-height:0; grid-template-columns:34px 1fr; gap:3px; padding:1px 0; border:0; font-size:5.2px; }
  .news-item time { font-size:4.8px; }
  .news-tag, .news-item b { display:none; }
  .news-strip__visual { min-height:42px; }
  .news-strip__visual img { height:42px; }
  .news-strip__visual p { right:4px; top:4px; font-size:8px; }

  .site-footer { padding:11px 0 10px; }
  .site-footer__top { grid-template-columns:.75fr 1.55fr .7fr; gap:7px; align-items:center; }
  .footer-brand .brand__main { font-size:9px; }
  .footer-brand .brand__sub { display:none; }
  .footer-nav { display:flex; flex-wrap:nowrap; gap:9px; justify-content:center; }
  .footer-nav a { font-size:4.8px; }
  .footer-social { border-left:0; padding-left:0; display:flex; gap:7px; justify-content:flex-end; }
  .footer-social a { font-size:5px; }
  .site-footer__bottom { margin-top:8px; padding-top:7px; font-size:4.4px; flex-direction:row; align-items:center; }
  .site-footer__bottom p { margin:0; }
}

@media (max-width: 390px) {
  .member-grid { grid-template-columns:repeat(3,1fr); }
  .episode-grid { grid-template-columns:repeat(3,1fr); }
}

/* =========================================================
   STEP 4 / reference-lock refinement v4
   Mobile spacing and density are matched to the supplied
   iPhone mock. Do not reinterpret the HARBOR art direction.
   ========================================================= */

@media (max-width: 900px) {
  /* Keep all mobile content inside the viewport without relying on clipping. */
  html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
  main, section, footer { max-width: 100%; }

  /* HERO — same six-person composition, sharper export, reference-like side breathing room. */
  .hero {
    aspect-ratio: 1.60 / 1;
    width: 100%;
    background: #eee9df;
  }
  .hero__media {
    background-image: image-set(
      url("./assets/images/hero-mobile-v4.webp") type("image/webp") 1x,
      url("./assets/images/hero-mobile-v4.jpg") type("image/jpeg") 1x
    );
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  /* Invisible hit area follows the baked trailer button and remains fully tappable. */
  .trailer-button {
    left: 31%;
    right: 18%;
    bottom: 1.2%;
    height: 20%;
  }

  /* Intro strip in the reference is much shallower than v3. */
  .mobile-intro {
    height: 76px;
    min-height: 76px;
    grid-template-columns: 1.08fr .92fr;
    overflow: hidden;
  }
  .mobile-intro__copy {
    padding: 10px 7px 8px 15px;
    min-width: 0;
  }
  .mobile-intro__copy h2 {
    margin-bottom: 5px;
    font-size: 9.7px;
    line-height: 1.3;
    letter-spacing: .11em;
    white-space: nowrap;
  }
  .mobile-intro__copy p {
    font-size: 5.9px;
    line-height: 1.62;
    letter-spacing: .035em;
    white-space: nowrap;
  }
  .mobile-intro__visual {
    min-height: 0;
    height: 76px;
  }
  .mobile-intro__visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% 43%;
  }
  .mobile-intro__visual span { right: 7px; bottom: 4px; font-size: 6.8px; }

  /* ABOUT — the phone reference uses only headline + body. The photo already lives in the strip above. */
  .about {
    padding-block: 13px 12px;
    border-bottom: 1px solid rgba(28,40,48,.055);
  }
  .about__grid {
    grid-template-columns: .78fr 1.52fr;
    gap: 13px;
    align-items: start;
  }
  .about__headline { padding-top: 1px; }
  .about__headline h2 {
    margin-top: 8px;
    font-size: 15.8px;
    line-height: 1.48;
    letter-spacing: .06em;
  }
  .about__headline h2 em { white-space: nowrap; }
  .scribble-line {
    width: 70px;
    height: 8px;
    margin: 1px 0 0 16px;
  }
  .about__text {
    padding-top: 4px;
    font-size: 5.85px;
    line-height: 1.72;
    letter-spacing: .018em;
  }
  .about__text p { margin: 0 0 5px; }
  .about__visual { display: none !important; }

  /* MEMBER — reference cards are landscape-ish, not square. */
  .members { padding-top: 12px; padding-bottom: 14px; }
  .members .section-heading-row { margin-bottom: 7px; }
  .member-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 10px 7px;
  }
  .member-card__image img {
    aspect-ratio: 1.34 / 1;
    object-fit: cover;
  }
  .member-card h3 { margin: 4px 0 1px; font-size: 6.4px; line-height: 1.25; }
  .member-card__role { margin-bottom: 2px !important; font-size: 5.7px !important; line-height: 1.35; }
  .member-card p { margin-top: 0; font-size: 5.2px; line-height: 1.40; }

  /* Match the compact editorial rhythm below MEMBER. */
  .life { padding-top: 10px; padding-bottom: 9px; }
  .life .section-heading-row { margin-bottom: 5px; }
  .mosaic { grid-template-rows: 40px 40px; gap: 2px; }
  .episodes { padding-top: 6px; padding-bottom: 10px; }
  .episodes .section-heading-row { margin-bottom: 4px; }
  .episode-grid { gap: 5px; }
  .episode-card h3 { margin-top: 2px; font-size: 5.9px; }
  .episode-card p { font-size: 4.9px; line-height: 1.32; }

  .special-cta { min-height: 58px; }
  .special-cta__content {
    min-height: 58px;
    padding: 5px 14px;
    gap: 7px;
  }
  .news-strip { padding-block: 8px; }
  .site-footer { padding-top: 9px; padding-bottom: 8px; }
}

@media (max-width: 390px) {
  .mobile-intro { height: 72px; min-height: 72px; }
  .mobile-intro__visual { height: 72px; }
  .mobile-intro__copy h2 { font-size: 9.2px; }
  .mobile-intro__copy p { font-size: 5.55px; }
  .about__headline h2 { font-size: 15px; }
  .about__text { font-size: 5.55px; }
  .member-card__image img { aspect-ratio: 1.31 / 1; }
}

/* High-DPI desktop photo exports. */
@media (min-width: 901px) {
  .hero__media {
    background-image: image-set(
      url("./assets/images/hero-desktop-v4.webp") type("image/webp") 1x,
      url("./assets/images/hero-desktop-v4.jpg") type("image/jpeg") 1x
    );
  }
}

/* =========================================================
   STEP 4 / reference-lock refinement v5
   Source of truth: supplied HARBOR desktop + iPhone mock.
   This block intentionally overrides earlier responsive rules.
   ========================================================= */

/* NEWS/SNS arrangement used by both reference layouts */
.news-social {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
}
.news-social > p {
  margin: 0 0 12px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.news-social__title {
  font-size: 15px;
  letter-spacing: .34em;
}
.news-social > p small {
  color: var(--ink-soft);
  font-size: 8px;
  letter-spacing: .08em;
}
.news-social__icons {
  display: flex;
  gap: 14px;
}
.news-social__icons a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-size: 12px;
}

@media (min-width: 901px) {
  .news-strip__grid {
    grid-template-columns: 145px minmax(0,1.45fr) 220px 290px;
    gap: 28px;
    align-items: center;
  }
  .news-social { align-self: center; }
  .site-footer__top {
    grid-template-columns: 260px 1fr;
    align-items: center;
    gap: 46px;
  }
  .footer-nav { justify-content: center; }
}

@media (max-width: 900px) {
  /* Global mobile density: the supplied phone comp behaves like a compact editorial page. */
  :root { --mobile-side: 10px; }
  html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
  body { background: #fbfaf7; }
  .container, .container-wide { width: calc(100% - (var(--mobile-side) * 2)); }
  .reveal { opacity: 1; transform: none; }

  /* HERO: preserve the exact six-person composition; prefer the less-compressed JPEG export. */
  .hero {
    width: 100%;
    min-height: 0;
    height: auto;
    aspect-ratio: 1.55 / 1;
    background: #eee9df;
  }
  .hero__media {
    background-image: url("./assets/images/hero-mobile-v4.jpg");
    background-size: cover;
    background-position: center center;
    transform: none;
    animation: none;
  }
  .trailer-button {
    left: 33%;
    right: 17%;
    bottom: 1.2%;
    height: 19%;
  }

  /* Intro strip: reference is roughly one fifth of viewport width in height. */
  .mobile-intro {
    height: auto;
    min-height: 0;
    grid-template-columns: 1.18fr .82fr;
    border-bottom: 1px solid rgba(28,40,48,.055);
  }
  .mobile-intro__copy {
    padding: 8px 7px 8px 11px;
  }
  .mobile-intro__copy h2 {
    margin: 0 0 5px;
    font-size: 8.9px;
    line-height: 1.3;
    letter-spacing: .12em;
    white-space: nowrap;
  }
  .mobile-intro__copy p {
    font-size: 5.35px;
    line-height: 1.62;
    letter-spacing: .03em;
    white-space: nowrap;
  }
  .mobile-intro__visual {
    height: auto;
    min-height: 74px;
  }
  .mobile-intro__visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 43%;
  }
  .mobile-intro__visual span {
    right: 5px;
    bottom: 4px;
    font-size: 6.1px;
    line-height: 1.15;
  }

  /* Shared micro typography */
  .section-kicker {
    font-size: 8.9px;
    letter-spacing: .34em;
  }
  .section-kicker::after {
    width: 18px;
    margin-left: 6px;
    margin-bottom: 2px;
  }
  .section-sub {
    margin-top: 4px;
    font-size: 5.6px;
    letter-spacing: .1em;
  }
  .section-heading-row {
    margin-bottom: 6px;
    gap: 6px;
    align-items: end;
  }
  .section-heading-row h2 {
    margin-top: 3px;
    font-size: 5.4px;
    line-height: 1.3;
  }
  .section-script {
    display: block;
    margin: 0 2px 0 0;
    font-size: 8.5px;
    line-height: 1;
  }

  /* ABOUT: two columns only, matching the phone reference. */
  .about {
    padding: 10px 0 9px;
    border-bottom: 1px solid rgba(28,40,48,.05);
  }
  .about__grid {
    grid-template-columns: .78fr 1.55fr;
    gap: 11px;
    align-items: start;
  }
  .about__headline { padding-top: 0; }
  .about__headline h2 {
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.46;
    letter-spacing: .055em;
  }
  .about__headline h2 em { white-space: nowrap; }
  .scribble-line {
    width: 64px;
    height: 7px;
    margin: 0 0 0 14px;
    border-top-width: 1px;
  }
  .about__text {
    padding-top: 2px;
    font-size: 5.0px;
    line-height: 1.62;
    letter-spacing: .015em;
  }
  .about__text p { margin: 0 0 4px; }
  .about__visual { display: none !important; }

  /* MEMBER: reference = 3 columns x 2 rows, landscape portraits and very compact copy. */
  .members {
    padding: 10px 0 9px;
  }
  .members .section-heading-row { margin-bottom: 5px; }
  .member-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px 6px;
  }
  .member-card { min-width: 0; }
  .member-card__image { margin-bottom: 2px; overflow: hidden; }
  .member-card__image img {
    width: 100%;
    aspect-ratio: 1.42 / 1;
    object-fit: cover;
    object-position: center;
  }
  .member-card h3 {
    margin: 2px 0 0;
    font-size: 5.9px;
    line-height: 1.2;
  }
  .member-card h3 span { font-size: .92em; }
  .member-card__role {
    margin: 1px 0 !important;
    font-size: 5.15px !important;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
  }
  .member-card p {
    margin: 0;
    font-size: 4.65px;
    line-height: 1.34;
  }

  /* LIFE: phone mock is a single horizontal editorial strip, not a tall mosaic. */
  .life {
    padding: 8px 0 6px;
  }
  .life .section-heading-row { margin-bottom: 4px; }
  .life .section-script { display: none; }
  .mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 54px;
    gap: 2px;
  }
  .mosaic__item { grid-column: auto !important; grid-row: auto !important; display: none; }
  .mosaic__item--a,
  .mosaic__item--b,
  .mosaic__item--e,
  .mosaic__item--g { display: block; }
  .mosaic__item img { width: 100%; height: 100%; object-fit: cover; }
  .mosaic__item figcaption {
    inset: auto 3px 3px;
    font-size: 4.6px;
    line-height: 1.25;
  }
  .mosaic__item figcaption.script { font-size: 5px !important; }

  /* EPISODE: three compact cards in a single row. */
  .episodes {
    padding: 5px 0 7px;
  }
  .episodes .section-heading-row { margin-bottom: 4px; }
  .text-link { font-size: 4.7px; white-space: nowrap; }
  .episode-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }
  .episode-card:nth-child(4) { display: none; }
  .episode-card__image img { aspect-ratio: 2.35 / 1; }
  .episode-card__image span {
    left: 3px;
    bottom: 2px;
    font-size: 4.8px;
  }
  .episode-card h3 {
    margin: 2px 0 0;
    font-size: 5.2px;
    line-height: 1.25;
  }
  .episode-card p {
    margin-top: 1px;
    font-size: 4.35px;
    line-height: 1.28;
  }

  /* SPECIAL MOVIE: shallow image band; no large white CTA card on the reference phone view. */
  .special-cta {
    min-height: 61px;
    height: 61px;
  }
  .special-cta > img {
    object-position: center 55%;
  }
  .special-cta__shade {
    background: linear-gradient(90deg, rgba(9,17,22,.18), rgba(9,17,22,.06) 48%, rgba(9,17,22,.28));
  }
  .special-cta__content {
    min-height: 61px;
    height: 61px;
    display: block;
    padding: 0 var(--mobile-side);
    text-align: left;
  }
  .special-cta__content > div:first-child {
    position: absolute;
    left: var(--mobile-side);
    top: 5px;
    z-index: 2;
  }
  .special-cta__content > div:first-child .section-kicker {
    font-size: 7.8px;
    color: #fff;
  }
  .special-cta h2 { display: none; }
  .cta-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -48%);
    gap: 5px;
    color: #fff;
    font-size: 4.5px;
    white-space: nowrap;
  }
  .cta-play .play-circle { width: 20px; }
  .cta-play b { font-size: 7px; letter-spacing: .24em; }
  .cta-play small { font-size: 4px; letter-spacing: .18em; }
  .solid-button { display: none !important; }

  /* NEWS + SNS: same shallow row as the reference. */
  .news-strip {
    padding: 6px 0 7px;
    border-bottom: 1px solid rgba(28,40,48,.06);
  }
  .news-strip__grid {
    grid-template-columns: .55fr 1.35fr .95fr;
    gap: 7px;
    align-items: start;
  }
  .news-strip__grid > div:first-child { min-width: 0; }
  .news-strip__grid h2 {
    margin-top: 2px;
    font-size: 4.8px;
    line-height: 1.2;
  }
  .news-list { border: 0; min-width: 0; }
  .news-item {
    min-height: 0;
    display: grid;
    grid-template-columns: 33px minmax(0,1fr);
    gap: 2px;
    padding: .5px 0;
    border: 0;
    font-size: 4.15px;
    line-height: 1.25;
  }
  .news-item time { font-size: 4px; color: #829099; }
  .news-item span:nth-of-type(2) {
    grid-column: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
  }
  .news-tag, .news-item b { display: none; }
  .news-social { min-width: 0; }
  .news-social > p {
    margin: 0 0 5px;
    gap: 4px;
  }
  .news-social__title { font-size: 7.5px; letter-spacing: .28em; }
  .news-social > p small { font-size: 4px; }
  .news-social__icons { gap: 7px; }
  .news-social__icons a {
    width: 15px;
    height: 15px;
    font-size: 6px;
  }
  .news-strip__visual { display: none !important; }

  /* FOOTER: horizontal and compact; never stack into the tall block seen in v4. */
  .site-footer {
    padding: 7px 0 7px;
  }
  .site-footer__top {
    display: grid;
    grid-template-columns: .7fr 1.8fr;
    gap: 8px;
    align-items: center;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(28,40,48,.06);
  }
  .footer-brand .brand {
    visibility: visible;
    pointer-events: auto;
  }
  .footer-brand .brand__main {
    font-size: 7px;
    letter-spacing: .38em;
  }
  .footer-brand .brand__sub {
    display: block;
    margin: 2px 0 0;
    font-size: 3px;
    letter-spacing: .22em;
  }
  .footer-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 7px;
    min-width: 0;
    padding: 0;
    overflow: hidden;
  }
  .footer-nav a {
    flex: 0 0 auto;
    font-size: 3.65px;
    letter-spacing: .04em;
    white-space: nowrap;
  }
  .site-footer__bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    gap: 8px;
    padding-top: 5px;
  }
  .site-footer__bottom p {
    margin: 0;
    font-size: 5.4px;
    line-height: 1.35;
    transform: rotate(-1deg);
  }
  .site-footer__bottom small {
    font-size: 3.5px;
    white-space: nowrap;
  }

  /* Hit-target functionality remains present while visual buttons stay reference-sized. */
  .menu-button { min-width: 44px; min-height: 44px; }
  .cta-play { min-width: 96px; min-height: 42px; justify-content: center; }
}

@media (max-width: 390px) {
  .mobile-intro__copy h2 { font-size: 8.3px; }
  .mobile-intro__copy p { font-size: 5px; }
  .about__headline h2 { font-size: 13.2px; }
  .about__text { font-size: 4.7px; }
  .member-card h3 { font-size: 5.5px; }
  .member-card__role { font-size: 4.8px !important; }
  .member-card p { font-size: 4.35px; }
  .mosaic { grid-template-rows: 50px; }
  .special-cta, .special-cta__content { height: 57px; min-height: 57px; }
  .footer-nav { gap: 5px; }
  .footer-nav a { font-size: 3.4px; }
}

/* v5.1 proportional lock against the supplied 508px-wide phone composition */
@media (max-width: 900px) {
  .hero { aspect-ratio: 1.512 / 1; }

  .mobile-intro {
    height: 22.2vw;
    min-height: 22.2vw;
  }
  .mobile-intro__visual { height: 22.2vw; min-height: 22.2vw; }
  .mobile-intro__copy { padding: 11px 7px 9px 11px; }
  .mobile-intro__copy h2 { font-size: 9.6px; margin-bottom: 7px; }
  .mobile-intro__copy p { font-size: 5.75px; line-height: 1.72; }
  .mobile-intro__visual span { font-size: 6.8px; }

  .about {
    min-height: 27.8vw;
    padding: 14px 0 12px;
  }
  .about__headline h2 { margin-top: 9px; font-size: 15.8px; line-height: 1.52; }
  .about__text { padding-top: 4px; font-size: 5.75px; line-height: 1.75; }
  .about__text p { margin-bottom: 5px; }

  .members {
    min-height: 90.2vw;
    padding: 12px 0 15px;
  }
  .members .section-heading-row { margin-bottom: 8px; }
  .member-grid { gap: 13px 7px; }
  .member-card__image { margin-bottom: 4px; }
  .member-card h3 { margin: 0 0 2px; font-size: 6.9px; line-height: 1.25; }
  .member-card__role { margin: 0 0 2px !important; font-size: 5.9px !important; line-height: 1.35; }
  .member-card p { font-size: 5.55px; line-height: 1.53; }

  .life {
    min-height: 19.3vw;
    padding: 8px 0 7px;
  }
  .mosaic { grid-template-rows: 58px; }

  .episodes {
    min-height: 22.6vw;
    padding: 5px 0 7px;
  }

  .special-cta,
  .special-cta__content {
    min-height: 14.2vw;
    height: 14.2vw;
  }

  .news-strip {
    min-height: 11.6vw;
    padding: 8px 0 8px;
  }
  .news-social__icons a { width: 17px; height: 17px; }

  .site-footer {
    min-height: 8.9vw;
    padding: 5px 0 4px;
  }
  .site-footer__top { padding-bottom: 3px; }
  .site-footer__bottom { padding-top: 3px; }
}
@media (max-width: 900px) {
  .member-card h3 { font-size: 7.1px; }
  .member-card__role { font-size: 6.1px !important; }
  .member-card p { font-size: 5.8px; line-height: 1.52; }
}

/* v5.2 typography lock: match the reference's editorial scale without changing section geometry */
@media (max-width: 900px) {
  .mobile-intro__copy h2 { font-size: 11.2px; }
  .mobile-intro__copy p { font-size: 6.4px; line-height: 1.72; }
  .section-kicker { font-size: 10.2px; }
  .about__headline h2 { font-size: 18.8px; line-height: 1.5; }
  .about__text { font-size: 6.25px; line-height: 1.72; }
  .member-grid { gap: 16px 7px; }
  .member-card h3 { font-size: 7.8px; }
  .member-card__role { font-size: 6.7px !important; }
  .member-card p { font-size: 7px; line-height: 1.62; }
}
@media (max-width: 900px) {
  .site-footer { min-height: 0; padding: 3px 0 3px; }
  .site-footer__top { gap: 6px; padding-bottom: 2px; }
  .footer-brand .brand__main { font-size: 6.2px; }
  .footer-brand .brand__sub { margin-top: 1px; font-size: 2.6px; }
  .footer-nav { gap: 6px; }
  .footer-nav a { font-size: 3.25px; }
  .site-footer__bottom { padding-top: 2px; gap: 6px; }
  .site-footer__bottom p { font-size: 4.2px; line-height: 1.2; }
  .site-footer__bottom small { font-size: 3px; }
}
