/* Multipage layer — loaded after the original LP stylesheet. */

.site-shell {
  background: var(--ivory);
}

.site-shell main {
  overflow: hidden;
}

/* Global navigation */
.global-header .header-inner {
  width: min(1480px, calc(100% - 48px));
}

.global-nav {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
}

.global-nav > a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #d5dae1;
  font-size: 0.7rem;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.global-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.global-nav > a:hover,
.global-nav > a[aria-current="page"] {
  color: var(--paper);
}

.global-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.global-nav .global-nav__facebook {
  display: none;
}

.global-nav__grab,
.global-nav__sheet-head,
.global-nav__sheet-note,
.nav-shade {
  display: none;
}

.nav-toggle {
  position: relative;
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 253, 248, 0.28);
}

.nav-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 19px;
  height: 1px;
  background: var(--paper);
  transform: translate(-50%, -4px);
  transition: transform 0.35s var(--ease);
}

.nav-toggle span:last-child {
  transform: translate(-50%, 4px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translate(-50%, 0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translate(-50%, 0) rotate(-45deg);
}

.breadcrumb {
  display: flex;
  padding-top: calc(var(--header-height) + 25px);
  align-items: center;
  gap: 11px;
  color: #475263;
  font-family: var(--label);
  font-size: 0.61rem;
  letter-spacing: 0.08em;
}

.breadcrumb a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  color: var(--coral);
}

/* Common editorial elements */
.hub-section-heading {
  max-width: 930px;
}

.hub-section-heading h2 {
  margin-top: 20px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.8vw, 4.7rem);
  font-weight: 600;
  line-height: 1.48;
  letter-spacing: -0.052em;
  text-wrap: pretty;
}

.hub-section-heading > p:last-child:not(.section-kicker) {
  max-width: 700px;
  margin-top: 28px;
  color: #475263;
}

.site-button {
  position: relative;
  display: inline-flex;
  min-height: 64px;
  min-width: 270px;
  padding: 0 25px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid transparent;
  overflow: hidden;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  transition: color 0.35s ease, transform 0.35s var(--ease), border-color 0.35s ease;
}

.site-button::before {
  position: absolute;
  inset: 0;
  background: var(--gold);
  content: "";
  transform: translateX(-102%);
  transition: transform 0.45s var(--ease);
}

.site-button span,
.site-button i {
  position: relative;
  z-index: 1;
}

.site-button i {
  font-family: var(--label);
  font-size: 1rem;
  font-style: normal;
}

.site-button:hover {
  color: var(--night);
  transform: translateY(-3px);
}

.site-button:hover::before {
  transform: translateX(0);
}

.site-button--accent {
  color: var(--paper);
  background: var(--coral);
}

.site-button--ink {
  color: var(--paper);
  background: var(--ink);
}

.site-button--paper {
  color: var(--night);
  background: var(--paper);
}

.site-text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
}

.site-text-link--light {
  color: var(--paper);
}

/* Generated customer explainers
   The Japanese copy is part of the artwork. Keep only the short caption visible
   in HTML and expose the full sequence through the hidden description. */
.generated-explainer {
  width: min(100%, 1180px);
  margin: clamp(48px, 6vw, 84px) auto 0;
}

.generated-explainer--compact {
  width: min(100%, 920px);
}

.generated-explainer--portrait {
  width: min(100%, 760px);
}

.generated-explainer picture,
.generated-explainer img {
  display: block;
  width: 100%;
}

.generated-explainer img {
  height: auto;
  border: 1px solid rgba(37, 50, 71, 0.14);
  background: #f7f2e8;
  box-shadow: 0 28px 78px rgba(9, 20, 33, 0.12);
}

.generated-explainer figcaption {
  max-width: 850px;
  margin: 18px auto 0;
  color: #475263;
  font-size: 0.72rem;
  line-height: 1.9;
  text-align: center;
}

.generated-explainer--dark figcaption {
  color: #d5dae1;
}

.generated-explainer--flush {
  margin-top: 0;
}

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

/* Home hub */
.hub-hero {
  position: relative;
  padding-top: var(--header-height);
  color: var(--paper);
  background:
    radial-gradient(circle at 80% 20%, rgba(105, 132, 124, 0.19), transparent 27%),
    linear-gradient(135deg, var(--night), #12253a);
  overflow: hidden;
}

.hub-hero::before {
  position: absolute;
  inset: var(--header-height) 0 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.hub-hero__line {
  position: absolute;
  top: 13%;
  right: -26%;
  width: 62vw;
  height: 62vw;
  border: 1px solid rgba(189, 67, 28, 0.44);
  border-radius: 49% 51% 38% 62% / 54% 36% 64% 46%;
  transform: rotate(13deg);
}

.hub-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100svh - var(--header-height) - 128px);
  padding: clamp(70px, 8vw, 120px) 0 80px;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: clamp(54px, 8vw, 130px);
}

.hub-hero .eyebrow {
  color: #d5dae1;
}

.hub-hero .eyebrow span {
  margin-inline: 9px;
  color: var(--coral);
}

.hub-hero__title {
  margin-top: 36px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 6.7rem);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.075em;
}

.hub-hero__title > span {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}

.hub-hero__title > span:nth-child(2) {
  padding-left: clamp(20px, 5vw, 75px);
}

.hub-hero__title i,
.hub-hero__title em {
  --mx: 0px;
  --my: 0px;
  display: inline-block;
  font-style: normal;
  transform: translate3d(var(--mx), var(--my), 0);
  transition: transform 0.55s var(--ease);
}

.hub-hero__title em {
  color: #e47749;
}

.hub-hero__lead {
  max-width: 710px;
  margin-top: 32px;
  color: #d5dae1;
  font-size: clamp(0.96rem, 1.2vw, 1.1rem);
  line-height: 2.1;
}

.hub-hero__actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.hub-hero__note {
  margin-top: 18px;
  color: #d5dae1;
  font-size: 0.68rem;
}

.hub-hero__visual {
  position: relative;
  width: min(100%, 520px);
  margin-left: auto;
  padding: 0 10% 8% 0;
}

.hub-hero__visual > figure {
  position: relative;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
}

.hub-hero__visual > figure img {
  width: 100%;
  aspect-ratio: 0.84;
  object-fit: cover;
  object-position: center 25%;
}

.hub-hero__visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding: 50px 26px 23px;
  flex-direction: column;
  background: linear-gradient(transparent, rgba(9, 20, 33, 0.9));
}

.hub-hero__visual figcaption span {
  font-family: var(--english);
  font-size: 1.35rem;
  font-style: italic;
}

.hub-hero__visual figcaption b {
  margin-top: 4px;
  color: #d5dae1;
  font-size: 0.67rem;
}

.hub-manga {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(145px, 15vw, 205px);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
  transform: rotate(1.8deg);
  transition: transform 0.4s var(--ease);
}

.hub-manga:hover {
  transform: rotate(0) translateY(-8px);
}

.hub-manga img {
  width: 100%;
  aspect-ratio: 0.75;
  object-fit: cover;
  object-position: top;
}

.hub-manga > span {
  display: flex;
  padding: 10px 12px;
  flex-direction: column;
  font-family: var(--label);
  font-size: 0.49rem;
  letter-spacing: 0.09em;
}

.hub-manga b {
  margin-top: 4px;
  color: var(--coral);
  font-family: var(--sans);
  font-size: 0.63rem;
}

.hub-proof {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  min-height: 128px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 253, 248, 0.14);
}

.hub-proof > div {
  display: flex;
  padding: 20px clamp(22px, 5vw, 78px);
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 253, 248, 0.12);
}

.hub-proof > div:last-child {
  border-right: 0;
}

.hub-proof dt {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.hub-proof strong {
  font-family: var(--english);
  font-size: clamp(2.8rem, 4.2vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
}

.hub-proof dt span {
  color: var(--gold);
  font-size: 0.68rem;
}

.hub-proof dd {
  margin-top: 5px;
  color: #d5dae1;
  font-size: 0.67rem;
}

.hub-problem {
  display: grid;
  padding: clamp(110px, 13vw, 190px) 0;
  grid-template-columns: minmax(390px, 1fr) minmax(390px, 0.82fr);
  gap: clamp(70px, 10vw, 150px);
}

.hub-problem__body {
  padding-top: 30px;
}

.hub-problem__body blockquote {
  margin: 46px 0;
  padding: 28px 0 28px 35px;
  border-left: 1px solid var(--coral);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.7vw, 2.45rem);
  line-height: 1.75;
}

.hub-problem__body p {
  color: #475263;
}

.hub-routes {
  padding: clamp(110px, 13vw, 190px) 0;
  background: var(--paper);
}

.route-grid {
  display: grid;
  margin-top: 75px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.route-card {
  display: flex;
  min-height: 370px;
  padding: clamp(28px, 3.5vw, 50px);
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: color 0.35s ease, background 0.35s ease, transform 0.4s var(--ease);
}

.route-card--wide {
  grid-column: span 2;
}

.route-card > span {
  color: var(--coral);
  font-family: var(--label);
  font-size: 0.61rem;
  letter-spacing: 0.13em;
}

.route-card h3 {
  margin-top: 34px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.8vw, 2.7rem);
  font-weight: 600;
  line-height: 1.6;
}

.route-card p {
  max-width: 510px;
  margin-top: 23px;
  color: #475263;
  font-size: 0.82rem;
}

.route-card b {
  margin-top: auto;
  padding-top: 35px;
  font-size: 0.7rem;
}

.route-card--dark {
  color: var(--paper);
  background: var(--ink);
}

.route-card--dark h3,
.route-card--dark p {
  color: inherit;
}

.route-card--dark p {
  color: #d5dae1;
}

.route-card:hover {
  color: var(--paper);
  background: var(--coral);
  transform: translateY(-4px);
}

.route-card:hover h3,
.route-card:hover p,
.route-card:hover > span {
  color: inherit;
}

.route-grid--friction .route-card:last-child {
  grid-column: 1 / -1;
  min-height: 330px;
}

.route-card--static {
  cursor: default;
}

.route-card--static:hover {
  color: inherit;
  background: var(--paper);
  transform: none;
}

.route-card--dark.route-card--static:hover {
  color: var(--paper);
  background: var(--ink);
}

.route-card--static:hover h3 {
  color: var(--ink);
}

.route-card--static:hover p {
  color: #475263;
}

.route-card--static:hover > span {
  color: var(--coral);
}

.route-card--dark.route-card--static:hover h3,
.route-card--dark.route-card--static:hover p,
.route-card--dark.route-card--static:hover > span {
  color: inherit;
}

.route-card--dark.route-card--static:hover p {
  color: #d5dae1;
}

.hub-members {
  padding: clamp(110px, 13vw, 190px) 0;
}

.hub-member-pair {
  display: grid;
  margin-top: 80px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 36px;
}

.hub-member {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 20px 55px rgba(9, 20, 33, 0.07);
}

.hub-member--lead {
  grid-template-columns: 0.9fr 1fr;
}

.hub-member img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.hub-member--lead img {
  min-height: 470px;
}

.hub-member > div {
  display: flex;
  padding: clamp(30px, 4vw, 55px);
  flex-direction: column;
  justify-content: center;
}

.hub-member span {
  color: var(--coral);
  font-family: var(--label);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hub-member h3 {
  margin-top: 15px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.6vw, 2.5rem);
  font-weight: 600;
}

.hub-member p {
  margin-top: 22px;
  color: #475263;
  font-size: 0.78rem;
}

.hub-member .hub-member__title {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 13px;
  padding: 6px 10px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.65rem;
  font-weight: 700;
}

.hub-member a {
  align-self: flex-start;
  margin-top: 30px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.7rem;
}

.hub-model {
  padding: clamp(110px, 13vw, 190px) 0;
  color: var(--paper);
  background: var(--night);
}

.hub-model .hub-section-heading h2 {
  color: var(--paper);
}

.hub-model .section-kicker {
  color: var(--gold);
}

.hub-model .hub-section-heading > p:last-child:not(.section-kicker) {
  color: #d5dae1;
}

.model-steps {
  display: grid;
  margin: 76px 0 42px;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  border-top: 1px solid rgba(255, 253, 248, 0.18);
  border-bottom: 1px solid rgba(255, 253, 248, 0.18);
}

.model-steps li {
  min-height: 230px;
  padding: 30px 24px;
  border-right: 1px solid rgba(255, 253, 248, 0.15);
}

.model-steps li:last-child {
  border-right: 0;
}

.model-steps span {
  color: var(--coral);
  font-family: var(--english);
  font-size: 2.2rem;
  font-style: italic;
}

.model-steps h3 {
  margin-top: 36px;
  font-family: var(--serif);
  font-size: 1rem;
}

.model-steps p {
  margin-top: 15px;
  color: #d5dae1;
  font-size: 0.67rem;
}

.hub-loop-figure {
  width: min(1080px, 100%);
  margin: 64px 0 42px;
  padding: clamp(10px, 1.6vw, 18px);
  border: 1px solid rgba(255, 253, 248, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.hub-loop-figure picture,
.hub-loop-figure img {
  display: block;
  width: 100%;
}

.hub-loop-figure figcaption {
  padding: 18px 8px 5px;
  color: #d5dae1;
  font-size: 0.68rem;
}

.hub-entry .hub-problem__body > p:last-child {
  margin-top: 34px;
}

.hub-entry .site-button {
  display: inline-flex;
}

.home-project__grid {
  grid-template-columns: repeat(3, 1fr);
}

.home-project__grid .route-card {
  min-height: 430px;
}

.home-project__note {
  margin-top: 28px;
  color: #475263;
  font-size: 0.67rem;
}

.hub-cases {
  padding: clamp(110px, 13vw, 190px) 0;
}

.hub-case-grid {
  display: grid;
  margin-top: 75px;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.hub-case {
  min-height: 410px;
  padding: clamp(35px, 4.5vw, 65px);
  border: 1px solid var(--line);
  background: var(--paper);
}

.hub-case > span {
  color: var(--coral);
  font-family: var(--label);
  font-size: 0.6rem;
  letter-spacing: 0.13em;
}

.hub-case__before {
  margin-top: 35px;
  color: #475263;
}

.hub-case i {
  display: block;
  margin: 24px 0;
  color: var(--coral);
  font-style: normal;
}

.hub-case__after {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.9;
}

.hub-case__after strong {
  color: var(--coral);
}

.hub-case small {
  display: block;
  margin-top: 27px;
  color: #475263;
}

.hub-cases__note {
  margin-top: 24px;
  color: #475263;
  font-size: 0.67rem;
}

.hub-cases > .site-button {
  margin-top: 40px;
}

.site-final-cta {
  color: var(--paper);
  background: radial-gradient(circle at 85% 20%, rgba(189, 67, 28, 0.17), transparent 31%), var(--ink);
}

.site-final-cta__inner {
  display: grid;
  min-height: 610px;
  padding: clamp(90px, 11vw, 155px) 0;
  grid-template-columns: minmax(470px, 1.1fr) minmax(340px, 0.7fr);
  align-items: center;
  gap: clamp(70px, 10vw, 160px);
}

.site-final-cta h2 {
  margin-top: 21px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.055em;
}

.site-final-cta .section-kicker {
  color: var(--gold);
}

.site-final-cta h2 + p {
  max-width: 700px;
  margin-top: 30px;
  color: #d5dae1;
}

.site-final-cta__action {
  padding: 34px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  background: rgba(255, 255, 255, 0.035);
}

.site-final-cta__action .site-button {
  width: 100%;
}

.site-final-cta__action p {
  margin-top: 20px;
  color: #d5dae1;
  font-size: 0.64rem;
}

/* Subpages */
.subpage-hero {
  position: relative;
  margin-top: 25px;
  color: var(--paper);
  background: var(--night);
  overflow: hidden;
}

.subpage-hero::after {
  position: absolute;
  top: -45%;
  right: -20%;
  width: 65vw;
  height: 65vw;
  border: 1px solid rgba(189, 67, 28, 0.32);
  border-radius: 50%;
  content: "";
}

.subpage-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 650px;
  padding: clamp(90px, 10vw, 145px) 0;
  grid-template-columns: minmax(470px, 1.1fr) minmax(330px, 0.7fr);
  align-items: center;
  gap: clamp(70px, 10vw, 160px);
}

.subpage-hero__copy h1 {
  margin-top: 24px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(3rem, 5.8vw, 6rem);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: -0.065em;
  text-wrap: pretty;
}

.subpage-hero__copy > p:last-child {
  max-width: 700px;
  margin-top: 30px;
  color: #d5dae1;
}

.subpage-hero__aside,
.cases-disclaimer {
  padding: 40px;
  border: 1px solid rgba(255, 253, 248, 0.19);
  background: rgba(255, 255, 255, 0.035);
}

.subpage-hero__aside span,
.cases-disclaimer span {
  color: var(--gold);
  font-family: var(--label);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
}

.subpage-hero__aside blockquote {
  margin-top: 26px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2.15rem);
  line-height: 1.8;
}

.subpage-hero__aside p,
.cases-disclaimer p {
  margin-top: 26px;
  color: #d5dae1;
  font-size: 0.78rem;
}

.subpage-hero__index {
  justify-self: center;
  text-align: center;
}

.subpage-hero__index span {
  display: block;
  color: var(--gold);
  font-family: var(--english);
  font-size: clamp(8rem, 15vw, 14rem);
  font-style: italic;
  line-height: 0.8;
}

.subpage-hero__index small {
  display: block;
  margin-top: 30px;
  color: #d5dae1;
  font-family: var(--label);
  font-size: 0.65rem;
  line-height: 1.7;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* About */
.about-reason {
  padding: clamp(110px, 13vw, 190px) 0;
}

.about-reason__grid {
  display: grid;
  margin-top: 75px;
  grid-template-columns: minmax(390px, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.about-reason__story p + p {
  margin-top: 27px;
}

.about-reason__quote {
  padding: clamp(38px, 5vw, 70px);
  color: var(--paper);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.about-reason__quote small {
  display: block;
  margin-bottom: 30px;
  color: var(--gold);
  font-family: var(--label);
  font-size: 0.6rem;
  letter-spacing: 0.13em;
}

.about-reason__quote strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 600;
}

.about-reason__quote i {
  display: block;
  margin: 14px 0;
  color: var(--coral);
  font-family: var(--english);
  font-size: 1.5rem;
  font-style: italic;
}

.site-model {
  padding: clamp(110px, 13vw, 190px) 0;
  background: var(--paper);
}

.site-map-visual {
  margin-top: 80px;
}

.site-map-visual__root {
  display: flex;
  width: min(620px, 100%);
  min-height: 190px;
  margin-inline: auto;
  padding: 34px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--paper);
  background: var(--ink);
  text-align: center;
}

.site-map-visual__root span,
.site-map-visual__branches span {
  color: var(--gold);
  font-family: var(--label);
  font-size: 0.59rem;
  letter-spacing: 0.14em;
}

.site-map-visual__root strong {
  margin-top: 13px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
}

.site-map-visual__root small {
  margin-top: 12px;
  color: #d5dae1;
}

.site-map-visual > i {
  display: block;
  width: 1px;
  height: 70px;
  margin-inline: auto;
  background: var(--coral);
}

.site-map-visual__branches {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.site-map-visual__branches::before {
  position: absolute;
  top: -1px;
  right: 16%;
  left: 16%;
  height: 1px;
  background: var(--coral);
  content: "";
}

.site-map-visual__branches article {
  position: relative;
  min-height: 260px;
  padding: 42px 34px;
  border: 1px solid var(--line);
}

.site-map-visual__branches article::before {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 1px;
  height: 24px;
  background: var(--coral);
  content: "";
  transform: translateY(-100%);
}

.site-map-visual__branches h3 {
  margin-top: 20px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.site-map-visual__branches p {
  margin-top: 20px;
  color: #475263;
  font-size: 0.78rem;
}

.model-cycle {
  display: grid;
  margin-top: 80px;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.model-cycle li {
  min-height: 240px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}

.model-cycle li:last-child {
  border-right: 0;
}

.model-cycle span {
  color: var(--coral);
  font-family: var(--english);
  font-size: 2.1rem;
  font-style: italic;
}

.model-cycle h3 {
  margin-top: 38px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1rem;
}

.model-cycle p {
  margin-top: 15px;
  color: #475263;
  font-size: 0.7rem;
}

.about-roles {
  padding: clamp(110px, 13vw, 190px) 0;
}

.about-role-grid {
  display: grid;
  margin-top: 80px;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: end;
  gap: 36px;
}

.about-role {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  border: 1px solid var(--line);
  background: var(--paper);
}

.about-role--noura {
  grid-template-columns: 0.92fr 1fr;
}

.about-role figure,
.about-role img {
  width: 100%;
  height: 100%;
}

.about-role img {
  min-height: 430px;
  object-fit: cover;
}

.about-role > div {
  padding: clamp(30px, 4vw, 55px);
}

.about-role > div > span {
  color: var(--coral);
  font-family: var(--label);
  font-size: 0.6rem;
  letter-spacing: 0.13em;
}

.about-role h3 {
  margin-top: 15px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2rem;
}

.about-role p {
  margin-top: 22px;
  color: #475263;
  font-size: 0.78rem;
}

.about-role .about-role__title {
  display: inline-block;
  padding: 5px 9px;
  color: var(--paper);
  background: var(--ink);
  font-weight: 700;
}

.about-role a {
  display: inline-block;
  margin-top: 28px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.69rem;
}

.about-boundary {
  padding: clamp(110px, 13vw, 190px) 0;
  background: var(--night);
}

.about-boundary .hub-section-heading h2 {
  color: var(--paper);
}

.about-boundary .section-kicker {
  color: var(--gold);
}

.boundary-grid {
  display: grid;
  margin-top: 75px;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 253, 248, 0.18);
  border-left: 1px solid rgba(255, 253, 248, 0.18);
}

.boundary-grid article {
  min-height: 390px;
  padding: clamp(38px, 5vw, 70px);
  border-right: 1px solid rgba(255, 253, 248, 0.18);
  border-bottom: 1px solid rgba(255, 253, 248, 0.18);
}

.boundary-grid span {
  color: var(--gold);
  font-size: 0.72rem;
}

.boundary-grid ul {
  margin-top: 32px;
  list-style: none;
}

.boundary-grid li {
  position: relative;
  padding: 15px 0 15px 30px;
  color: #d5dae1;
  border-bottom: 1px solid rgba(255, 253, 248, 0.1);
  font-size: 0.84rem;
}

.boundary-grid li::before {
  position: absolute;
  top: 24px;
  left: 3px;
  width: 10px;
  height: 1px;
  background: var(--coral);
  content: "";
}

.boundary-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.boundary-grid--three article {
  min-height: 440px;
  padding: clamp(32px, 4vw, 55px);
}

.about-boundary__note {
  max-width: 920px;
  margin-top: 28px;
  color: #d5dae1;
  font-size: 0.67rem;
  line-height: 1.9;
}

.site-next {
  padding: clamp(110px, 13vw, 180px) 0;
}

.site-next__links {
  display: grid;
  margin-top: 65px;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.site-next__links a {
  display: grid;
  min-height: 190px;
  padding: 35px;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 0.3s ease, background 0.3s ease;
}

.site-next__links span {
  grid-column: 1 / -1;
  align-self: start;
  color: var(--coral);
  font-family: var(--label);
  font-size: 0.6rem;
  letter-spacing: 0.13em;
}

.site-next__links strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.site-next__links i {
  color: var(--coral);
  font-style: normal;
}

.site-next__links a:hover {
  color: var(--paper);
  background: var(--ink);
}

.site-next__links a:hover strong {
  color: var(--paper);
}

/* Members */
.members-list {
  padding: clamp(110px, 13vw, 190px) 0;
}

.member-listing {
  margin-top: 85px;
}

.member-listing__card {
  display: grid;
  grid-template-columns: minmax(350px, 0.8fr) minmax(500px, 1.2fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.member-listing__card + .member-listing__card {
  margin-top: 100px;
}

.member-listing__photo {
  position: relative;
  overflow: hidden;
}

.member-listing__photo img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.member-listing__photo span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 10px 14px;
  color: var(--night);
  background: var(--paper);
  font-size: 0.65rem;
}

.member-listing__photo:hover img {
  transform: scale(1.025);
}

.member-listing__copy {
  padding: clamp(45px, 7vw, 95px);
  background: var(--paper);
}

.member-listing__number,
.member-listing__role {
  color: var(--coral);
  font-family: var(--label);
  font-size: 0.61rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.member-listing__role {
  display: block;
  margin-top: 45px;
}

.member-listing__copy h2 {
  margin-top: 15px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 600;
}

.member-listing__kana {
  color: #475263;
  font-size: 0.67rem;
}

.member-listing__badge {
  display: inline-block;
  margin-top: 17px;
  padding: 6px 11px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
}

.member-listing__copy blockquote {
  margin: 42px 0 28px;
  padding-left: 28px;
  border-left: 1px solid var(--coral);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  line-height: 1.8;
}

.member-listing__copy > p:not(.member-listing__number, .member-listing__kana, .member-listing__badge) {
  color: #475263;
}

.member-listing__copy ul {
  display: grid;
  margin: 32px 0 42px;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.member-listing__copy li {
  padding: 12px 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.7rem;
}

.member-connection {
  padding: clamp(110px, 13vw, 190px) 0;
  color: var(--paper);
  background: var(--night);
}

.member-connection .hub-section-heading h2 {
  color: var(--paper);
}

.member-connection .section-kicker {
  color: var(--gold);
}

.connection-flow {
  display: grid;
  margin-top: 80px;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}

.connection-flow > div {
  display: flex;
  min-height: 190px;
  padding: 30px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 253, 248, 0.19);
  text-align: center;
}

.connection-flow .connection-flow__center {
  border-color: var(--coral);
  border-radius: 50%;
}

.connection-flow span {
  color: var(--gold);
  font-family: var(--label);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
}

.connection-flow strong {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.7;
}

.connection-flow > i {
  color: var(--coral);
  font-style: normal;
}

.member-connection__note {
  max-width: 700px;
  margin: 42px auto 0;
  color: #d5dae1;
  font-size: 0.72rem;
  text-align: center;
}

/* Cases */
.case-stories {
  padding: clamp(110px, 13vw, 190px) 0;
}

.case-story {
  display: grid;
  margin-top: 80px;
  grid-template-columns: minmax(160px, 0.48fr) minmax(250px, 0.8fr) minmax(250px, 0.75fr) minmax(390px, 1.3fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-story + .case-story {
  margin-top: 45px;
}

.case-story > * {
  padding: clamp(28px, 3.5vw, 48px);
  border-right: 1px solid var(--line);
}

.case-story > *:last-child {
  border-right: 0;
}

.case-story header {
  padding-left: 0;
}

.case-story header > span,
.case-story small {
  display: block;
  color: var(--coral);
  font-family: var(--label);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
}

.case-story header h2 {
  margin-top: 22px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
}

.case-story header p {
  margin-top: 5px;
  color: #475263;
  font-size: 0.66rem;
}

.case-story__before {
  color: #475263;
  background: rgba(247, 242, 232, 0.62);
}

.case-story__discovery {
  color: #475263;
}

.case-story__after {
  background: var(--paper);
}

.case-story > div > p {
  margin-top: 22px;
  font-size: 0.79rem;
}

.case-story__after > p {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.08rem !important;
}

.case-story__after strong {
  color: var(--coral);
}

.case-story__after blockquote {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #475263;
  font-size: 0.68rem;
}

.voice-evidence {
  padding: clamp(110px, 13vw, 190px) 0;
  color: var(--paper);
  background: var(--night);
}

.voice-evidence .hub-section-heading h2 {
  color: var(--paper);
}

.voice-evidence .section-kicker {
  color: var(--gold);
}

.voice-evidence__principles {
  display: grid;
  margin-top: 70px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 253, 248, 0.17);
  border-bottom: 1px solid rgba(255, 253, 248, 0.17);
}

.voice-evidence__principles p {
  display: flex;
  min-height: 190px;
  padding: 30px;
  align-items: center;
  gap: 22px;
  border-right: 1px solid rgba(255, 253, 248, 0.17);
  font-family: var(--serif);
  font-size: 1rem;
}

.voice-evidence__principles p:last-child {
  border-right: 0;
}

.voice-evidence__principles span {
  color: var(--coral);
  font-family: var(--english);
  font-size: 2.6rem;
  font-style: italic;
}

.voice-evidence__quotes {
  display: grid;
  margin-top: 70px;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  align-items: center;
  gap: 25px;
}

.voice-evidence__quotes blockquote {
  min-height: 290px;
  padding: clamp(30px, 3.5vw, 50px);
  border: 1px solid rgba(255, 253, 248, 0.18);
}

.voice-evidence__quotes blockquote > span {
  color: var(--gold);
  font-family: var(--english);
  font-size: 4rem;
  line-height: 0.7;
}

.voice-evidence__quotes blockquote p {
  margin-top: 26px;
  font-family: var(--serif);
  font-size: 1.08rem;
}

.voice-evidence__quotes cite {
  display: block;
  margin-top: 25px;
  color: #d5dae1;
  font-size: 0.67rem;
  font-style: normal;
}

.voice-evidence__quote--strong {
  min-height: 350px !important;
  color: var(--night);
  background: var(--paper);
}

.voice-evidence__quote--strong cite {
  color: #475263;
}

.voice-evidence__source {
  margin-top: 30px;
  color: #d5dae1;
  font-size: 0.64rem;
}

.cases-meaning {
  display: grid;
  padding: clamp(110px, 13vw, 190px) 0;
  grid-template-columns: minmax(470px, 1fr) minmax(350px, 0.7fr);
  align-items: start;
  gap: clamp(70px, 10vw, 150px);
}

.cases-meaning__body {
  padding-top: 25px;
}

.cases-meaning__body p + p {
  margin-top: 25px;
}

.cases-meaning__body .site-button {
  margin-top: 38px;
}

/* Shared footer refinements */
.global-footer .footer-inner nav a {
  min-height: 44px;
}

@media (max-width: 1180px) {
  .global-header .header-cta {
    min-width: 105px;
  }

  .hub-member-pair,
  .about-role-grid {
    grid-template-columns: 1fr;
  }

  .hub-member,
  .hub-member--lead,
  .about-role,
  .about-role--noura {
    grid-template-columns: 0.55fr 1fr;
  }

  .case-story {
    grid-template-columns: 180px 1fr 1fr;
  }

  .case-story__after {
    grid-column: 2 / -1;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  /* Reference: zoroya-spmenu-02 — thumb-friendly bottom sheet navigation. */
  .nav-shade {
    position: fixed;
    z-index: 1005;
    display: block;
    border: 0;
    inset: 0;
    background: rgba(9, 20, 33, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0s linear 0.4s;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-shade.is-open {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }

  .global-nav {
    position: fixed;
    z-index: 1010;
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    display: grid;
    width: min(calc(100% - 16px), 720px);
    height: auto;
    max-height: calc(100dvh - var(--header-height) - 8px);
    padding: 0 18px max(16px, env(safe-area-inset-bottom));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    color: var(--night);
    border: 1px solid rgba(19, 34, 56, 0.12);
    border-bottom: 0;
    border-radius: 28px 28px 0 0;
    background: var(--paper);
    box-shadow: 0 -28px 60px -26px rgba(9, 20, 33, 0.72);
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, calc(100% + 24px));
    transition:
      transform 0.55s var(--ease),
      opacity 0.3s ease,
      visibility 0s linear 0.55s;
    -webkit-overflow-scrolling: touch;
  }

  .global-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    transition-delay: 0s;
  }

  .global-nav__grab {
    display: block;
    width: 44px;
    height: 5px;
    margin: 12px auto 0;
    grid-column: 1 / -1;
    border-radius: 999px;
    background: rgba(19, 34, 56, 0.18);
  }

  .global-nav__sheet-head {
    display: flex;
    min-height: 50px;
    padding: 6px 4px 13px;
    grid-column: 1 / -1;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--line);
  }

  .global-nav__sheet-head b {
    color: var(--night);
    font-family: var(--serif);
    font-size: 1.08rem;
    line-height: 1.5;
    letter-spacing: 0.12em;
  }

  .global-nav__sheet-head small {
    color: var(--coral);
    font-family: var(--label);
    font-size: 0.56rem;
    line-height: 1.4;
    letter-spacing: 0.2em;
    white-space: nowrap;
  }

  .global-nav > a {
    color: var(--night);
    white-space: normal;
  }

  .global-nav > a:nth-of-type(-n + 4) {
    display: flex;
    min-height: 104px;
    padding: 13px 14px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 4px;
    color: var(--night);
    border: 1px solid rgba(19, 34, 56, 0.12);
    border-radius: 14px;
    background: var(--ivory);
    font-family: var(--sans);
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.035em;
    transition: border-color 0.2s ease, background 0.2s ease;
  }

  .global-nav > a:nth-of-type(-n + 4)::before {
    display: block;
    color: var(--coral);
    content: attr(data-nav-en);
    font-family: var(--label);
    font-size: 0.53rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.2em;
  }

  .global-nav > a:nth-of-type(-n + 4)::after {
    position: static;
    display: block;
    width: auto;
    height: auto;
    color: #475263;
    background: none;
    content: attr(data-nav-description);
    font-family: var(--sans);
    font-size: 0.64rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
    transform: none;
  }

  .global-nav > a:nth-of-type(-n + 4):hover,
  .global-nav > a:nth-of-type(-n + 4)[aria-current="page"] {
    color: var(--night);
    border-color: rgba(189, 67, 28, 0.62);
    background: #fffaf1;
  }

  .global-nav > a:nth-of-type(-n + 4):active {
    background: #f3ead9;
  }

  .global-nav > a:nth-of-type(n + 5):nth-of-type(-n + 7) {
    display: flex;
    min-height: 49px;
    padding: 0 6px;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: space-between;
    color: var(--night);
    border-bottom: 1px dashed rgba(19, 34, 56, 0.16);
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 700;
  }

  .global-nav > a:nth-of-type(n + 5):nth-of-type(-n + 7)::before {
    display: none;
  }

  .global-nav > a:nth-of-type(n + 5):nth-of-type(-n + 7)::after {
    position: static;
    display: block;
    width: auto;
    height: auto;
    color: var(--coral);
    background: none;
    content: "→";
    font-family: var(--label);
    font-size: 0.72rem;
    transform: none;
  }

  .global-nav > a:nth-of-type(n + 5):nth-of-type(-n + 7)[aria-current="page"] {
    color: var(--coral);
  }

  .global-nav .global-nav__facebook {
    display: flex;
    min-height: 56px;
    margin-top: 4px;
    padding: 0 18px;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: space-between;
    color: var(--paper);
    border: 0;
    border-radius: 13px;
    background: var(--coral);
    box-shadow: 0 12px 24px -14px rgba(189, 67, 28, 0.8);
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.04em;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .global-nav .global-nav__facebook:hover {
    color: var(--paper);
    background: #a83815;
  }

  .global-nav .global-nav__facebook:active {
    transform: translateY(1px);
  }

  .global-nav .global-nav__facebook::before,
  .global-nav .global-nav__facebook::after {
    display: none;
  }

  .global-nav__sheet-note {
    display: block;
    margin-top: -2px;
    padding: 0 4px;
    grid-column: 1 / -1;
    color: #475263;
    font-size: 0.61rem;
    line-height: 1.65;
    text-align: center;
  }

  .nav-toggle {
    z-index: 1020;
    display: grid;
    width: 72px;
    height: 40px;
    place-items: center;
    color: var(--paper);
    border-color: rgba(255, 253, 248, 0.52);
    border-radius: 999px;
    font-family: var(--label);
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  }

  .nav-toggle::after {
    padding-left: 0.18em;
    content: "MENU";
  }

  .nav-toggle span {
    display: none;
  }

  .nav-toggle[aria-expanded="true"] {
    color: var(--night);
    border-color: var(--paper);
    background: var(--paper);
  }

  .nav-toggle:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }

  .global-header .header-cta {
    margin-left: auto;
  }

  .site-shell.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 980px) {
  .hub-hero__inner,
  .subpage-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
    gap: 50px;
  }

  .hub-problem,
  .about-reason__grid,
  .cases-meaning {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .model-steps,
  .model-cycle {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-project__grid {
    grid-template-columns: 1fr;
  }

  .home-project__grid .route-card {
    min-height: 330px;
  }

  .model-steps li:nth-child(3),
  .model-cycle li:nth-child(3) {
    border-right: 0;
  }

  .model-steps li:nth-child(n+4),
  .model-cycle li:nth-child(n+4) {
    border-top: 1px solid currentColor;
  }

  .site-final-cta__inner {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .site-map-visual__branches,
  .voice-evidence__quotes {
    grid-template-columns: 1fr;
  }

  .boundary-grid--three {
    grid-template-columns: 1fr;
  }

  .boundary-grid--three article {
    min-height: 0;
  }

  .site-map-visual__branches::before,
  .site-map-visual__branches article::before {
    display: none;
  }

  .connection-flow {
    grid-template-columns: 1fr;
  }

  .connection-flow > i {
    justify-self: center;
    transform: rotate(90deg);
  }

  .member-listing__card {
    grid-template-columns: 0.75fr 1fr;
  }
}

@media (max-width: 760px) {
  .global-header .header-inner {
    width: calc(100% - 24px);
  }

  .global-header .header-cta {
    min-width: 82px;
    padding: 0 10px;
    font-size: 0.67rem;
  }

  .nav-toggle {
    width: 68px;
    height: 40px;
  }

  .breadcrumb {
    padding-top: calc(var(--header-height) + 16px);
  }

  .hub-section-heading h2 {
    font-size: 2.08rem;
    line-height: 1.55;
  }

  .site-button {
    width: 100%;
    min-width: 0;
  }

  .hub-hero__inner {
    min-height: auto;
    padding: 70px 0 82px;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hub-hero__title {
    font-size: clamp(2rem, 9vw, 3.3rem);
    line-height: 1.34;
  }

  .hub-hero__title > span:nth-child(2) {
    padding-left: 0;
  }

  .hub-hero .eyebrow {
    max-width: 100%;
    font-size: 0.62rem;
    line-height: 1.8;
    letter-spacing: 0.12em;
  }

  .hub-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hub-hero__actions .site-text-link {
    align-self: flex-start;
  }

  .hub-hero__visual {
    width: 92%;
    margin-inline: auto;
  }

  .hub-manga {
    width: 36%;
  }

  .hub-proof > div {
    padding: 22px 8px;
    text-align: center;
  }

  .hub-proof dt {
    justify-content: center;
  }

  .hub-proof dd {
    font-size: 0.56rem;
    line-height: 1.45;
  }

  .hub-problem,
  .hub-members,
  .hub-cases,
  .about-reason,
  .about-roles,
  .members-list,
  .case-stories,
  .cases-meaning,
  .site-next {
    padding: 92px 0;
  }

  .hub-routes,
  .hub-model,
  .site-model,
  .about-boundary,
  .member-connection,
  .voice-evidence {
    padding: 92px 0;
  }

  .route-grid {
    grid-template-columns: 1fr;
  }

  .route-card--wide {
    grid-column: auto;
  }

  .route-grid--friction .route-card:last-child {
    grid-column: auto;
    min-height: 320px;
  }

  .route-card {
    min-height: 320px;
  }

  .hub-loop-figure {
    margin-top: 46px;
  }

  .hub-entry .site-button {
    width: 100%;
  }

  .hub-member-pair,
  .hub-case-grid,
  .about-role-grid,
  .boundary-grid,
  .site-next__links {
    grid-template-columns: 1fr;
  }

  .hub-member,
  .hub-member--lead,
  .about-role,
  .about-role--noura {
    grid-template-columns: 1fr;
  }

  .hub-member img,
  .hub-member--lead img,
  .about-role img {
    min-height: 0;
    aspect-ratio: 1 / 0.82;
    object-position: center 25%;
  }

  .model-steps,
  .model-cycle {
    grid-template-columns: 1fr;
  }

  .model-steps li,
  .model-cycle li,
  .model-steps li:nth-child(3),
  .model-cycle li:nth-child(3),
  .model-steps li:nth-child(n+4),
  .model-cycle li:nth-child(n+4) {
    display: grid;
    min-height: 0;
    padding: 25px 10px;
    grid-template-columns: 60px 1fr;
    gap: 14px;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid currentColor;
  }

  .model-steps li:last-child,
  .model-cycle li:last-child {
    border-bottom: 0;
  }

  .model-steps h3,
  .model-cycle h3 {
    margin-top: 3px;
  }

  .model-steps p,
  .model-cycle p {
    grid-column: 2;
    margin-top: -8px;
  }

  .site-final-cta__inner {
    min-height: 0;
    padding: 92px 0;
  }

  .site-final-cta h2 {
    font-size: clamp(2.1rem, 10vw, 3.3rem);
  }

  .site-final-cta__action {
    padding: 22px 18px;
  }

  .subpage-hero {
    margin-top: 16px;
  }

  .subpage-hero__inner {
    min-height: 0;
    padding: 82px 0;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .subpage-hero__copy h1 {
    font-size: 2.15rem;
  }

  .subpage-hero__aside,
  .cases-disclaimer {
    padding: 28px 24px;
  }

  .subpage-hero__aside blockquote {
    font-size: 1.25rem;
  }

  .page-members .subpage-hero__copy h1 {
    font-size: 1.78rem;
  }

  .subpage-hero__index span {
    font-size: 8rem;
  }

  .about-reason__quote {
    padding: 38px 28px;
  }

  .site-map-visual > i {
    height: 38px;
  }

  .site-map-visual__branches {
    gap: 14px;
  }

  .site-map-visual__branches article {
    min-height: 0;
    padding: 30px 25px;
  }

  .boundary-grid article {
    min-height: 0;
    padding: 38px 24px;
  }

  .site-next__links a {
    min-height: 160px;
    padding: 28px 22px;
  }

  .member-listing__card {
    grid-template-columns: 1fr;
  }

  .member-listing__photo img {
    min-height: 0;
    aspect-ratio: 1 / 0.92;
    object-position: center 25%;
  }

  .member-listing__copy {
    padding: 40px 22px;
  }

  .member-listing__role {
    margin-top: 30px;
  }

  .member-listing__copy ul {
    grid-template-columns: 1fr;
  }

  .connection-flow > div {
    min-height: 150px;
  }

  .case-story,
  .case-story + .case-story {
    margin-top: 60px;
    grid-template-columns: 1fr;
  }

  .case-story > *,
  .case-story header,
  .case-story__after {
    grid-column: auto;
    padding: 28px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .case-story > *:last-child {
    border-bottom: 0;
  }

  .voice-evidence__principles,
  .voice-evidence__quotes {
    grid-template-columns: 1fr;
  }

  .voice-evidence__principles p {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 248, 0.17);
  }

  .voice-evidence__principles p:last-child {
    border-bottom: 0;
  }

  .voice-evidence__quotes blockquote,
  .voice-evidence__quote--strong {
    min-height: 0 !important;
  }

  .global-footer .footer-inner nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .global-header .brand-copy small {
    display: none;
  }

  .global-header .header-cta {
    display: none;
  }

  .global-nav {
    width: calc(100% - 8px);
    padding-right: 12px;
    padding-left: 12px;
    gap: 8px;
    border-radius: 24px 24px 0 0;
  }

  .global-nav__sheet-head {
    padding-right: 2px;
    padding-left: 2px;
  }

  .global-nav__sheet-head small {
    font-size: 0.49rem;
    letter-spacing: 0.14em;
  }

  .global-nav > a:nth-of-type(-n + 4) {
    min-height: 98px;
    padding: 11px 12px;
    font-size: 0.9rem;
  }

  .global-nav > a:nth-of-type(-n + 4)::after {
    font-size: 0.59rem;
  }

  .hub-hero__title {
    font-size: 2rem;
  }

  .hub-hero__title > span:nth-child(2) {
    padding-left: 0;
  }

  .subpage-hero__copy h1 {
    font-size: 1.98rem;
  }
}

@media (max-width: 400px) and (max-height: 620px) {
  .global-nav {
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    gap: 5px;
  }

  .global-nav__grab {
    margin-top: 8px;
  }

  .global-nav__sheet-head {
    min-height: 42px;
    padding-top: 2px;
    padding-bottom: 7px;
  }

  .global-nav > a:nth-of-type(-n + 4) {
    min-height: 82px;
    padding: 8px 10px;
    gap: 2px;
    font-size: 0.86rem;
  }

  .global-nav > a:nth-of-type(-n + 4)::before {
    font-size: 0.49rem;
  }

  .global-nav > a:nth-of-type(-n + 4)::after {
    font-size: 0.56rem;
    line-height: 1.35;
  }

  .global-nav > a:nth-of-type(n + 5):nth-of-type(-n + 7) {
    min-height: 41px;
    font-size: 0.82rem;
  }

  .global-nav .global-nav__facebook {
    min-height: 50px;
    margin-top: 1px;
    font-size: 0.82rem;
  }

  .global-nav__sheet-note {
    font-size: 0.56rem;
    line-height: 1.4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .global-nav,
  .nav-shade {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }

  .hub-hero__title i,
  .hub-hero__title em {
    transform: none !important;
  }
}

/* Member profile pages */
.profile-intro {
  grid-template-columns: minmax(470px, 1.05fr) minmax(350px, 0.68fr);
}

.profile-intro__name {
  display: flex;
  margin-top: 27px;
  align-items: baseline;
  gap: 15px;
  color: var(--paper) !important;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
}

.profile-intro__name small {
  color: #d5dae1;
  font-family: var(--sans);
  font-size: 0.63rem;
}

.profile-intro__copy h1 {
  margin-top: 22px;
}

.profile-intro__copy .profile-intro__lead {
  margin-top: 23px;
  padding: 20px 22px;
  color: #d5dae1;
  border-left: 1px solid var(--coral);
  background: rgba(255, 255, 255, 0.035);
  font-family: var(--serif);
}

.profile-intro__badge {
  display: inline-flex;
  width: auto;
  margin-top: 19px !important;
  padding: 7px 11px;
  color: var(--night) !important;
  background: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
}

.profile-intro__photo {
  position: relative;
  align-self: stretch;
  min-height: 520px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.profile-intro__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.profile-intro__photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 45px 24px 22px;
  color: #d5dae1;
  background: linear-gradient(transparent, rgba(9, 20, 33, 0.92));
  font-size: 0.62rem;
}

.profile-intro__photo figcaption span {
  margin-right: 12px;
  color: var(--paper);
  font-family: var(--english);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.06em;
}

.profile-section {
  padding-top: clamp(110px, 13vw, 185px);
  padding-bottom: clamp(110px, 13vw, 185px);
}

.profile-section__inner {
  width: var(--wide);
  margin-inline: auto;
}

.profile-section__heading {
  max-width: 980px;
}

.profile-section__heading h2 {
  margin-top: 20px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.8vw, 4.65rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.052em;
  text-wrap: pretty;
}

.profile-section__body {
  margin-top: clamp(65px, 8vw, 105px);
}

.profile-story-grid {
  display: grid;
  grid-template-columns: minmax(430px, 1.12fr) minmax(300px, 0.62fr);
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
}

.profile-story-grid--reverse {
  grid-template-columns: minmax(300px, 0.62fr) minmax(430px, 1.12fr);
}

.profile-section__copy {
  color: #475263;
}

.profile-section__copy--wide {
  max-width: 840px;
  margin-inline: auto;
}

.profile-section__copy > p + p {
  margin-top: 27px;
}

.profile-section__copy > p:not(.profile-source-note) {
  line-height: 2.08;
}

.profile-points {
  display: grid;
  margin: 48px 0;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.profile-points article {
  min-height: 250px;
  padding: 27px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.45);
}

.profile-points span {
  color: var(--coral);
  font-family: var(--label);
  font-size: 0.61rem;
  letter-spacing: 0.12em;
}

.profile-points h3 {
  margin-top: 28px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.03rem;
}

.profile-points p {
  margin-top: 15px;
  color: #475263;
  font-size: 0.69rem;
  line-height: 1.8;
}

.profile-visual {
  margin: 0;
}

.profile-visual img,
.profile-visual picture {
  width: 100%;
}

.profile-visual--manga {
  position: sticky;
  top: calc(var(--header-height) + 35px);
  padding: 14px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(0.7deg);
}

.profile-visual--manga img {
  width: 100%;
}

.profile-visual--portrait {
  position: sticky;
  top: calc(var(--header-height) + 35px);
}

.profile-visual--portrait img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
  object-position: center 25%;
}

.profile-visual figcaption {
  padding: 17px 6px 3px;
  color: #475263;
  font-size: 0.65rem;
  line-height: 1.7;
}

.profile-section--story,
.profile-section--collaboration {
  color: #d5dae1;
  background: var(--night);
}

.profile-section--collaboration {
  background: var(--ink);
}

.profile-section--story .profile-section__heading h2,
.profile-section--collaboration .profile-section__heading h2 {
  color: var(--paper);
}

.profile-section--story .section-kicker,
.profile-section--collaboration .section-kicker {
  color: var(--gold);
}

.profile-section--story .profile-section__copy,
.profile-section--collaboration .profile-section__copy {
  color: #d5dae1;
}

.profile-section--story .profile-points,
.profile-section--collaboration .profile-points {
  border-color: rgba(255, 253, 248, 0.16);
}

.profile-section--story .profile-points article,
.profile-section--collaboration .profile-points article {
  border-color: rgba(255, 253, 248, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.profile-section--story .profile-points h3,
.profile-section--collaboration .profile-points h3 {
  color: var(--paper);
}

.profile-section--story .profile-points p,
.profile-section--collaboration .profile-points p {
  color: #d5dae1;
}

.profile-section--story .profile-visual figcaption,
.profile-section--collaboration .profile-visual figcaption {
  color: #d5dae1;
}

.profile-quote {
  position: relative;
  margin: 65px 0 0;
  padding: 42px clamp(28px, 5vw, 65px);
  color: var(--paper);
  border: 1px solid rgba(201, 154, 74, 0.4);
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 2;
}

.profile-source-note {
  margin-top: 28px;
  color: #d5dae1;
  font-size: 0.64rem;
}

.profile-source-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.profile-visual--wide {
  margin-top: 75px;
}

.profile-visual--wide img {
  width: 100%;
  border: 1px solid rgba(255, 253, 248, 0.18);
}

.profile-checklist {
  margin: 42px 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.profile-checklist li {
  position: relative;
  padding: 16px 10px 16px 38px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.82rem;
}

.profile-checklist li::before {
  position: absolute;
  top: 23px;
  left: 7px;
  width: 12px;
  height: 7px;
  border-bottom: 1px solid var(--coral);
  border-left: 1px solid var(--coral);
  content: "";
  transform: rotate(-45deg);
}

.profile-cta {
  display: flex;
  margin-top: 45px;
  padding: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--paper);
  background: var(--ink);
}

.profile-cta > p {
  margin: 0;
}

.profile-cta small {
  display: block;
  color: var(--gold);
  font-family: var(--english);
  font-size: 0.8rem;
  font-style: italic;
}

.profile-cta strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
}

.profile-cta .site-button {
  min-width: 230px;
}

.profile-cta--split {
  display: grid;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  background: none;
}

.profile-cta--split .site-button {
  width: 100%;
}

.profile-process {
  margin: 48px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.profile-process li {
  display: grid;
  padding: 27px 0;
  grid-template-columns: 65px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.profile-process li > span {
  color: var(--coral);
  font-family: var(--english);
  font-size: 2rem;
  font-style: italic;
}

.profile-process h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.profile-process p {
  margin-top: 8px;
  color: #475263;
  font-size: 0.72rem;
}

.profile-role-map {
  align-self: start;
  padding: clamp(25px, 4vw, 45px);
  border: 1px solid var(--line);
  background: var(--paper);
}

.profile-role-map__person {
  display: grid;
  grid-template-columns: 105px 1fr;
  align-items: center;
  gap: 24px;
}

.profile-role-map__person img {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-role-map__person p {
  display: flex;
  flex-direction: column;
}

.profile-role-map__person small,
.profile-role-map__destination small {
  color: var(--coral);
  font-family: var(--label);
  font-size: 0.57rem;
  letter-spacing: 0.12em;
}

.profile-role-map__person strong,
.profile-role-map__destination strong {
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.profile-role-map__person span {
  margin-top: 5px;
  color: #475263;
  font-size: 0.63rem;
}

.profile-role-map__arrow {
  display: block;
  margin: 18px 0;
  color: var(--coral);
  font-size: 1.4rem;
  text-align: center;
  transform: rotate(90deg);
}

.profile-role-map__destination {
  display: flex;
  margin-top: 25px;
  padding: 28px 20px;
  align-items: center;
  flex-direction: column;
  border: 1px solid var(--coral);
  text-align: center;
}

@media (max-width: 980px) {
  .profile-intro,
  .profile-story-grid,
  .profile-story-grid--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
    gap: 55px;
  }

  .profile-points {
    grid-template-columns: 1fr;
  }

  .profile-points article {
    min-height: 0;
  }

  .profile-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .profile-cta--split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .profile-intro,
  .profile-story-grid,
  .profile-story-grid--reverse {
    grid-template-columns: 1fr;
  }

  .profile-intro__name {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .profile-intro__photo {
    min-height: 0;
    aspect-ratio: 0.9;
  }

  .profile-section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .profile-section__heading h2 {
    font-size: clamp(2rem, 10vw, 3.15rem);
  }

  .profile-section__body {
    margin-top: 55px;
  }

  .profile-visual--manga,
  .profile-visual--portrait {
    position: static;
    order: 2;
  }

  .profile-story-grid--reverse > .profile-visual {
    order: 2;
  }

  .profile-story-grid--reverse > .profile-section__copy {
    order: 1;
  }

  .profile-points {
    margin: 38px 0;
  }

  .profile-visual--wide {
    margin-top: 55px;
  }

  .profile-quote {
    margin-top: 48px;
    padding: 34px 24px;
  }

  .profile-cta,
  .profile-cta--split {
    display: flex;
    padding: 24px 20px;
    flex-direction: column;
  }

  .profile-cta--split {
    padding: 0;
    background: none;
  }

  .profile-role-map__person {
    grid-template-columns: 82px 1fr;
    gap: 16px;
  }

  .profile-role-map__person img {
    width: 82px;
    height: 82px;
  }
}
