@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800&family=Noto+Sans+JP:wght@400;500;600;700;800;900&display=swap');

:root {
  --paper: #ffffff;
  --paper-2: #f2f2f0;
  --ink: #0a0a0a;
  --muted: #676767;
  --rule: rgba(10, 10, 10, 0.16);
  --rule-light: rgba(255, 255, 255, 0.28);
  --accent: #c4442f;
  --sans: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  --latin: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --header-h: 84px;
  --gutter: clamp(20px, 3.3vw, 48px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
  overflow-x: hidden;
}

body.menu-is-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

::selection {
  color: var(--paper);
  background: var(--accent);
}

.num {
  font-family: var(--latin);
  font-variant-numeric: tabular-nums lining-nums;
  letter-spacing: -0.02em;
}

.site-frame {
  position: relative;
  isolation: isolate;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.92);
  transition: background 300ms var(--ease), border-color 300ms var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--rule);
  background: rgba(255, 255, 255, 0.98);
}

.brand,
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-ja,
.footer-brand .brand-ja {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-en,
.footer-brand .brand-en {
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--latin);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.menu-toggle,
.menu-close {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle__label,
.menu-close,
.menu-overlay__index,
.micro-label,
.eyebrow,
.section-marker__en,
.hero__kicker,
.work-card__spec-head,
.portrait-note,
.footer-bottom,
.process-note .micro-label {
  font-family: var(--latin);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.2;
}

.menu-toggle__icon,
.menu-close__icon {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}

.menu-toggle__icon i,
.menu-close__icon i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 300ms var(--ease);
}

.menu-overlay {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px var(--gutter) 36px;
  color: var(--paper);
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition: opacity 360ms var(--ease), transform 360ms var(--ease);
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-overlay__top,
.menu-overlay__bottom {
  display: flex;
  justify-content: space-between;
}

.menu-overlay__index {
  color: rgba(255, 255, 255, 0.5);
}

.menu-close {
  color: var(--paper);
}

.menu-close__icon i:last-child {
  margin-top: -6px;
  transform: rotate(-45deg);
}

.menu-close__icon i:first-child {
  transform: rotate(45deg);
}

.overlay-nav {
  display: grid;
  align-content: center;
  gap: 5px;
  margin-top: -4vh;
}

.overlay-nav a {
  display: grid;
  grid-template-columns: minmax(108px, 1fr) 1fr;
  align-items: baseline;
  width: fit-content;
  padding: 6px 0;
  transition: color 180ms ease, transform 350ms var(--ease);
}

.overlay-nav a:nth-child(2) {
  margin-left: 7vw;
}

.overlay-nav a:nth-child(3) {
  margin-left: 3vw;
}

.overlay-nav a:nth-child(4) {
  margin-left: 11vw;
}

.overlay-nav a:nth-child(5) {
  margin-left: 4vw;
}

.overlay-nav a:nth-child(6) {
  margin-left: 8vw;
}

.overlay-nav a:hover,
.overlay-nav a:focus-visible {
  color: var(--accent);
  transform: translateX(8px);
}

.overlay-nav__latin {
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--latin);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.overlay-nav strong {
  font-size: clamp(31px, 5.3vw, 76px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1.08;
}

.menu-overlay__bottom {
  align-items: end;
  color: rgba(255, 255, 255, 0.74);
}

.menu-overlay__bottom > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.menu-overlay__bottom .micro-label {
  color: var(--accent);
}

.menu-contact {
  text-align: right;
}

.menu-contact a {
  font-family: var(--latin);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.section-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 0;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.section-rule::before {
  position: absolute;
  z-index: 0;
  inset: 0 var(--gutter);
  pointer-events: none;
  content: '';
  opacity: 0.7;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc((100% / 12) - 1px),
    var(--rule) calc((100% / 12) - 1px),
    var(--rule) calc(100% / 12)
  );
}

.section-content,
.section-marker,
.hero > *,
.approach > *,
.contact > * {
  position: relative;
  z-index: 1;
}

.section-marker {
  grid-column: 1 / 2;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 126px;
  color: var(--muted);
}

.section-marker[data-sticky-label] {
  position: sticky;
  top: 112px;
  align-self: start;
  height: fit-content;
}

.section-marker__num {
  font-size: 12px;
  font-weight: 600;
}

.section-marker__line {
  width: 24px;
  height: 1px;
  margin-top: 9px;
  background: currentColor;
}

.section-marker__en {
  margin-top: 2px;
  writing-mode: vertical-rl;
}

.section-marker--light {
  color: rgba(255, 255, 255, 0.64);
}

.section-heading {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--accent);
}

.section-heading h2,
.approach h2,
.contact h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 1.06;
  word-break: keep-all;
  line-break: strict;
}

.section-heading__lead {
  max-width: 38em;
  margin: 30px 0 0;
  color: var(--muted);
  line-height: 2;
}

.hero {
  min-height: 900px;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 64px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0 var(--gutter);
  pointer-events: none;
  content: '';
  opacity: 0.42;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc((100% / 12) - 1px),
    var(--rule) calc((100% / 12) - 1px),
    var(--rule) calc(100% / 12)
  );
}

.hero__intro {
  grid-column: 1 / 5;
  z-index: 3;
}

.hero__intro .eyebrow {
  margin: 4px 0 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero__kicker {
  margin: 16px 0 0;
  color: var(--accent);
}

.hero__mosaic {
  grid-column: 1 / 13;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 112px 150px 190px 150px;
  gap: 12px;
  margin-top: -10px;
}

.mosaic-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper-2);
}

.mosaic-image::after {
  position: absolute;
  inset: 0;
  content: '';
  border: 1px solid rgba(10, 10, 10, 0.12);
  pointer-events: none;
}

.mosaic-image img {
  transition: transform 1.4s var(--ease);
}

.mosaic-image:hover img {
  transform: scale(1.035);
}

.mosaic-image--one {
  grid-column: 1 / 8;
  grid-row: 1 / 5;
}

.mosaic-image--one img {
  object-position: 35% center;
}

.mosaic-image--two {
  grid-column: 8 / 13;
  grid-row: 1 / 3;
}

.mosaic-image--two img {
  object-position: 58% 58%;
}

.mosaic-image--three {
  grid-column: 7 / 12;
  grid-row: 3 / 5;
  margin-left: 10%;
}

.mosaic-image--three img {
  object-position: 42% center;
}

.hero__statement {
  position: absolute;
  top: 42%;
  left: 8.3%;
  z-index: 4;
  width: min(100%, 760px);
  padding: 31px 42px 34px 0;
}

.hero__statement::before {
  position: absolute;
  z-index: -1;
  inset: 0 -75px 0 -130px;
  content: '';
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.96) 61%, rgba(255, 255, 255, 0.42) 91%, rgba(255, 255, 255, 0) 100%);
}

.hero__statement-rule {
  display: block;
  width: 68px;
  height: 3px;
  margin-bottom: 24px;
  background: var(--accent);
}

.hero__statement h1 {
  margin: 0;
  font-size: clamp(44px, 5.25vw, 76px);
  font-weight: 900;
  letter-spacing: -0.12em;
  line-height: 1.01;
  word-break: keep-all;
  line-break: strict;
}

.hero__statement p {
  margin: 23px 0 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.8;
}

.hero__meta {
  position: absolute;
  right: var(--gutter);
  bottom: 92px;
  display: grid;
  width: 24%;
  gap: 17px;
  padding: 18px 20px 14px 24px;
  background: var(--paper);
}

.meta-block {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: baseline;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--rule);
}

.meta-block span {
  color: var(--ink);
  font-size: 11px;
}

.meta-block strong {
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
}

.meta-block em {
  font-size: 11px;
  font-style: normal;
}

.hero__caption {
  position: absolute;
  right: var(--gutter);
  bottom: 39px;
  width: 24%;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.works {
  min-height: 1620px;
  padding-top: 120px;
  padding-bottom: 160px;
}

.works__content {
  grid-column: 3 / 13;
}

.works .section-heading {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  column-gap: 7vw;
  align-items: end;
  max-width: none;
  margin-bottom: 78px;
}

.works .eyebrow {
  grid-column: 1 / -1;
}

.works .section-heading h2 {
  grid-column: 1;
}

.works .section-heading__lead {
  grid-column: 2;
  margin: 0 0 4px;
}

.works-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 74px 28px;
  align-items: start;
}

.work-card {
  min-width: 0;
  margin: 0;
}

.work-card--offset {
  margin-top: 126px;
}

.work-card--wide {
  grid-column: 1;
  width: 87%;
}

.work-card--tall {
  margin-top: -6px;
}

.work-card__image {
  position: relative;
  aspect-ratio: 1.06 / 1;
  overflow: hidden;
  background: #dededb;
}

.work-card--offset .work-card__image {
  aspect-ratio: 0.94 / 1;
}

.work-card--wide .work-card__image {
  aspect-ratio: 1.45 / 1;
}

.work-card--tall .work-card__image {
  aspect-ratio: 0.9 / 1;
}

.work-card__image > img {
  transition: transform 900ms var(--ease);
}

.work-card:hover .work-card__image > img,
.work-card:focus-visible .work-card__image > img {
  transform: scale(1.045);
}

.work-card__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.02) 35%, rgba(10, 10, 10, 0.52) 100%);
  pointer-events: none;
}

.work-card__number {
  position: absolute;
  top: 16px;
  left: 17px;
  color: var(--paper);
  font-size: 12px;
  font-weight: 600;
}

.work-card__specs {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 27px 31px;
  color: var(--paper);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.04), rgba(10, 10, 10, 0.94));
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 420ms var(--ease), transform 620ms var(--ease);
}

.work-card:hover .work-card__specs,
.work-card:focus-visible .work-card__specs {
  opacity: 1;
  transform: translateY(0);
}

.work-card__spec-head {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.65);
}

.work-card__specs h3 {
  margin: 11px 0 21px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1.18;
}

.work-card__specs dl {
  margin: 0;
}

.work-card__specs dl > div {
  display: grid;
  grid-template-columns: 74px 1fr;
  padding: 6px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.work-card__specs dt {
  color: rgba(255, 255, 255, 0.57);
  font-size: 10px;
}

.work-card__specs dd {
  margin: 0;
  font-size: 12px;
}

.work-card__footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-bottom: 1px solid var(--rule);
}

.work-card__footer h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.work-card__footer span {
  color: var(--muted);
  font-size: 10px;
}

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

.section-paper-2 {
  background: var(--paper-2);
}

.approach {
  min-height: 1330px;
  padding-top: 108px;
  padding-bottom: 134px;
  overflow: hidden;
}

.approach__media {
  position: absolute;
  inset: 0;
}

.approach__media img {
  object-position: 52% center;
}

.approach__overlay,
.contact__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.94) 0%, rgba(10, 10, 10, 0.77) 35%, rgba(10, 10, 10, 0.28) 78%, rgba(10, 10, 10, 0.46) 100%);
}

.approach .section-marker {
  padding-top: 19px;
}

.approach__content {
  grid-column: 3 / 12;
  padding-top: 18px;
}

.section-heading--light .eyebrow {
  color: #f47460;
}

.approach__content .section-heading {
  max-width: 760px;
}

.approach__copy {
  max-width: 750px;
  margin: 168px 0 0 12vw;
}

.pull-statement {
  margin: 0 0 44px;
  color: var(--paper);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 1.45;
}

.approach__paragraphs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.approach__paragraphs p {
  margin: 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 14px;
  line-height: 2.15;
}

.facts-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 95px 0 0 12vw;
  border-top: 1px solid var(--rule-light);
}

.facts-row > div {
  padding-top: 17px;
}

.facts-row strong {
  display: block;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.facts-row span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.process {
  min-height: 1040px;
  padding-top: 120px;
  padding-bottom: 125px;
}

.process__content {
  grid-column: 3 / 13;
}

.process__content .section-heading {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  column-gap: 7vw;
  align-items: end;
  max-width: none;
}

.process__content .eyebrow {
  grid-column: 1 / -1;
}

.process__content .section-heading h2 {
  grid-column: 1;
}

.process__content .section-heading__lead {
  grid-column: 2;
  margin: 0 0 4px;
}

.process-rail {
  position: relative;
  margin: 170px 1vw 0 0;
}

.process-line {
  position: absolute;
  top: 12px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--ink);
}

.process-rail ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-rail li {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding-top: 37px;
}

.process-dot {
  position: absolute;
  top: 7px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.process-rail li:first-child .process-dot {
  border-color: var(--accent);
  background: var(--accent);
}

.process-rail strong {
  font-size: 16px;
  letter-spacing: -0.05em;
}

.process-rail small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.process-rail em {
  margin-top: auto;
  color: var(--accent);
  font-size: 13px;
  font-style: normal;
}

.process-note {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  max-width: 680px;
  margin: 92px 0 0 auto;
  padding-top: 19px;
  border-top: 1px solid var(--rule);
}

.process-note .micro-label {
  color: var(--accent);
}

.process-note p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.fees {
  min-height: 950px;
  padding-top: 120px;
  padding-bottom: 134px;
}

.fees__content {
  grid-column: 3 / 13;
}

.fees-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 8vw;
  margin-top: 136px;
}

.fees-intro p {
  max-width: 30em;
  margin: 0;
  color: var(--muted);
  line-height: 2;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 39px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.text-link span {
  color: var(--accent);
  font-family: var(--latin);
  font-size: 18px;
}

.fee-table-wrap {
  min-width: 0;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.fee-table caption {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 11px;
  text-align: left;
}

.fee-table th,
.fee-table td {
  padding: 16px 10px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  font-weight: 500;
}

.fee-table thead th {
  padding-top: 0;
  border-top: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.fee-table tbody th {
  font-weight: 600;
}

.fee-table td {
  text-align: right;
}

.fee-table tbody tr:last-child th,
.fee-table tbody tr:last-child td {
  border-bottom: 1px solid var(--rule);
}

.fee-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.principal {
  min-height: 1030px;
  padding-top: 120px;
  padding-bottom: 150px;
}

.principal__content {
  grid-column: 3 / 13;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 9vw;
  align-items: start;
}

.principal__portrait {
  position: relative;
  margin-top: 111px;
}

.principal__portrait::before {
  position: absolute;
  top: -26px;
  right: -26px;
  width: 44%;
  height: 1px;
  content: '';
  background: var(--accent);
}

.principal__portrait img {
  aspect-ratio: 0.82 / 1;
  object-position: 53% center;
}

.portrait-note {
  display: block;
  margin-top: 13px;
  color: var(--muted);
}

.principal__words .eyebrow {
  margin-bottom: 25px;
}

.principal__words h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 800;
  letter-spacing: -0.11em;
  line-height: 1;
  word-break: keep-all;
  line-break: strict;
}

.principal__role {
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 12px;
}

blockquote {
  max-width: 470px;
  margin: 93px 0 75px;
  padding-left: 23px;
  border-left: 1px solid var(--accent);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.8;
}

.career-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.career-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 17px;
  padding: 13px 0;
  border-top: 1px solid var(--rule);
  font-size: 12px;
}

.career-list li:last-child {
  border-bottom: 1px solid var(--rule);
}

.career-list .num {
  color: var(--accent);
}

.studio {
  min-height: 1050px;
  padding-top: 120px;
  padding-bottom: 144px;
}

.studio__content {
  grid-column: 3 / 13;
}

.studio-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 8vw;
  margin-top: 100px;
}

.studio-image img {
  aspect-ratio: 1.2 / 1;
}

.office-table {
  margin: 0;
}

.office-table > div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 25px;
  padding: 15px 0;
  border-top: 1px solid var(--rule);
}

.office-table > div:last-child {
  border-bottom: 1px solid var(--rule);
}

.office-table dt {
  color: var(--muted);
  font-size: 11px;
}

.office-table dd {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

.office-table dd span {
  color: var(--muted);
  font-family: var(--latin);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.contact {
  min-height: 900px;
  overflow: hidden;
}

.contact__image {
  position: absolute;
  inset: 0;
}

.contact__image img {
  object-position: center 62%;
}

.contact__scrim {
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.83) 47%, rgba(10, 10, 10, 0.36) 100%);
}

.contact__content {
  grid-column: 3 / 9;
  align-self: center;
  padding: 132px 0;
}

.contact .eyebrow {
  color: #f47460;
}

.contact h2 {
  max-width: 690px;
}

.contact__content > p:not(.eyebrow) {
  max-width: 440px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 2;
}

.contact__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 44px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-family: var(--latin);
  font-size: 14px;
  letter-spacing: 0.03em;
}

.contact-link span {
  color: #f47460;
  font-size: 21px;
}

.contact-link--primary {
  padding: 16px 21px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
}

.contact__meta {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 6px 14px;
  margin-top: 84px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.contact__meta strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 66px var(--gutter) 32px;
  background: var(--paper);
}

.footer-address {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
}

.footer-bottom a {
  color: var(--ink);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 900px) {
  .hero {
    min-height: 825px;
  }

  .hero__mosaic {
    grid-template-rows: 116px 160px 230px 160px;
  }

  .hero__statement {
    grid-column: 2 / 9;
  }

  .works,
  .approach,
  .process,
  .fees,
  .principal,
  .studio {
    min-height: auto;
  }

  .approach__copy,
  .facts-row {
    margin-left: 5vw;
  }

  .fees-layout,
  .studio-layout {
    gap: 5vw;
  }
}

@media (max-width: 700px) {
  :root {
    --header-h: 70px;
    --gutter: 18px;
  }

  body {
    font-size: 14px;
  }

  .site-header {
    padding: 0 var(--gutter);
  }

  .brand-ja {
    font-size: 12px;
  }

  .menu-overlay {
    padding: 22px var(--gutter) 27px;
  }

  .overlay-nav {
    gap: 7px;
    margin-top: 0;
  }

  .overlay-nav a,
  .overlay-nav a:nth-child(n) {
    grid-template-columns: 82px 1fr;
    margin-left: 0;
  }

  .overlay-nav__latin {
    font-size: 8px;
  }

  .overlay-nav strong {
    font-size: clamp(30px, 10vw, 44px);
  }

  .menu-overlay__bottom {
    gap: 24px;
  }

  .menu-overlay__bottom > div {
    max-width: 48%;
  }

  .menu-contact {
    text-align: left;
  }

  .section-grid {
    display: block;
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

  .section-grid::before {
    inset: 0 var(--gutter);
    background-image: linear-gradient(to right, transparent calc(50% - 0.5px), var(--rule) calc(50% - 0.5px), var(--rule) 50%, transparent 50%);
    opacity: 0.48;
  }

  .section-marker,
  .section-marker[data-sticky-label] {
    position: relative;
    top: auto;
    display: flex;
    align-items: center;
    padding-top: 32px;
    margin-bottom: 38px;
  }

  .section-marker__en {
    writing-mode: initial;
  }

  .section-marker__line {
    width: 36px;
  }

  .hero {
    display: grid;
    min-height: 820px;
    padding-top: calc(var(--header-h) + 27px);
    padding-bottom: 36px;
  }

  .hero::before {
    inset: 0 var(--gutter);
  }

  .hero__intro {
    grid-column: 1 / -1;
  }

  .hero__intro .eyebrow {
    max-width: 28em;
    line-height: 1.6;
  }

  .hero__mosaic {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 195px 142px 190px;
    gap: 8px;
    margin-top: 35px;
  }

  .mosaic-image--one {
    grid-column: 1 / 2;
    grid-row: 1 / 4;
  }

  .mosaic-image--two {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .mosaic-image--three {
    grid-column: 2 / 3;
    grid-row: 2 / 4;
    margin-left: 0;
  }

  .hero__statement {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-top: -3px;
    padding: 22px 13px 24px 0;
  }

  .hero__statement::before {
    inset: 0 -16px 0 -24px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94) 77%, rgba(255, 255, 255, 0));
  }

  .hero__statement-rule {
    width: 49px;
    height: 2px;
    margin-bottom: 17px;
  }

  .hero__statement h1 {
    font-size: clamp(39px, 11vw, 56px);
    line-height: 1.06;
  }

  .hero__statement p {
    margin-top: 16px;
    font-size: 13px;
  }

  .hero__meta {
    position: relative;
    right: auto;
    bottom: auto;
    display: grid;
    width: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 34px;
    padding: 14px 0 0;
  }

  .meta-block {
    grid-template-columns: 1fr auto;
    gap: 4px;
    padding-bottom: 7px;
  }

  .meta-block span {
    grid-column: 1 / -1;
    font-size: 10px;
  }

  .meta-block strong {
    font-size: 24px;
  }

  .hero__caption {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin-top: 17px;
    font-size: 10px;
  }

  .works,
  .process,
  .fees,
  .principal,
  .studio {
    padding-top: 0;
    padding-bottom: 84px;
  }

  .works__content,
  .approach__content,
  .process__content,
  .fees__content,
  .principal__content,
  .studio__content,
  .contact__content {
    display: block;
  }

  .section-heading h2,
  .approach h2,
  .contact h2 {
    font-size: clamp(38px, 12vw, 57px);
  }

  .section-heading__lead {
    margin-top: 22px;
    font-size: 13px;
    line-height: 1.9;
  }

  .works .section-heading,
  .process__content .section-heading {
    display: block;
    margin-bottom: 55px;
  }

  .works .section-heading__lead,
  .process__content .section-heading__lead {
    margin-top: 22px;
  }

  .works-grid {
    display: block;
  }

  .work-card,
  .work-card--offset,
  .work-card--wide,
  .work-card--tall {
    width: 100%;
    margin: 0 0 48px;
  }

  .work-card:last-child {
    margin-bottom: 0;
  }

  .work-card__image,
  .work-card--offset .work-card__image,
  .work-card--wide .work-card__image,
  .work-card--tall .work-card__image {
    aspect-ratio: 1.15 / 1;
  }

  .work-card__specs {
    padding: 24px 19px 23px;
  }

  .work-card__specs h3 {
    font-size: 23px;
  }

  .approach {
    min-height: 1120px;
    padding-top: 0;
    padding-bottom: 90px;
  }

  .approach__media {
    inset: 70px 0 0;
  }

  .approach__overlay {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.75) 44%, rgba(10, 10, 10, 0.56) 100%);
  }

  .approach__content {
    padding-top: 0;
  }

  .approach__copy {
    margin: 115px 0 0;
  }

  .pull-statement {
    margin-bottom: 32px;
    font-size: 25px;
  }

  .approach__paragraphs {
    display: block;
  }

  .approach__paragraphs p {
    margin-top: 24px;
    font-size: 13px;
    line-height: 2;
  }

  .facts-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
    margin: 63px 0 0;
  }

  .facts-row strong {
    font-size: 41px;
  }

  .process-rail {
    margin: 80px 0 0;
  }

  .process-line {
    top: 0;
    right: auto;
    bottom: 0;
    left: 6px;
    width: 1px;
    height: auto;
  }

  .process-rail ol {
    display: block;
  }

  .process-rail li {
    min-height: 0;
    padding: 0 0 38px 36px;
  }

  .process-rail li:last-child {
    padding-bottom: 0;
  }

  .process-dot {
    top: 3px;
    left: 1px;
  }

  .process-rail em {
    margin-top: 8px;
  }

  .process-note {
    display: block;
    margin-top: 55px;
  }

  .process-note p {
    margin-top: 13px;
    font-size: 12px;
  }

  .fees-layout {
    display: block;
    margin-top: 72px;
  }

  .fees-intro p {
    font-size: 13px;
  }

  .fee-table-wrap {
    margin-top: 64px;
    overflow-x: auto;
  }

  .fee-table {
    min-width: 520px;
  }

  .principal__content {
    display: flex;
    flex-direction: column;
    gap: 57px;
  }

  .principal__portrait {
    width: 82%;
    margin: 23px 0 0;
  }

  .principal__portrait::before {
    top: -17px;
    right: -15px;
  }

  .principal__words h2 {
    font-size: 57px;
  }

  blockquote {
    margin: 62px 0 52px;
    font-size: 18px;
  }

  .career-list li {
    grid-template-columns: 48px 1fr;
    font-size: 11px;
  }

  .studio-layout {
    display: block;
    margin-top: 61px;
  }

  .studio-image {
    width: 84%;
  }

  .office-table {
    margin-top: 58px;
  }

  .office-table > div {
    grid-template-columns: 76px 1fr;
    gap: 13px;
    padding: 13px 0;
  }

  .office-table dd {
    font-size: 12px;
  }

  .contact {
    min-height: 760px;
  }

  .contact__image {
    inset: 0;
  }

  .contact__scrim {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.94) 0%, rgba(10, 10, 10, 0.72) 100%);
  }

  .contact__content {
    padding: 116px 0 92px;
  }

  .contact__content > p:not(.eyebrow) {
    margin-top: 27px;
    font-size: 13px;
  }

  .contact__actions {
    display: block;
    margin-top: 35px;
  }

  .contact-link {
    width: fit-content;
    margin-top: 13px;
  }

  .contact-link--primary {
    margin-top: 0;
  }

  .contact__meta {
    margin-top: 62px;
  }

  .site-footer {
    display: block;
    padding: 48px var(--gutter) 25px;
  }

  .footer-address {
    margin-top: 35px;
  }

  .footer-bottom {
    margin-top: 49px;
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
