:root {
  --ink: #12110f;
  --ink-soft: #403d37;
  --paper: #f5f1e8;
  --paper-light: #fffdf8;
  --gold: #b68a35;
  --gold-light: #d3b36c;
  --line: #cfc8ba;
  --red: #9c2e25;
  --canvas: #ffffff;
  --smoke: #f4f4f1;
  --content-max: 76rem;
  --reading-max: 43rem;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  --header-height: 6.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.9;
  letter-spacing: 0.035em;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd,
ol,
ul {
  margin: 0;
}

ol,
ul {
  padding: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.7rem, 5.8vw, 4.5rem);
  line-height: 1.28;
  letter-spacing: -0.065em;
}

h2 {
  font-size: clamp(2.15rem, 4.1vw, 4.35rem);
  line-height: 1.38;
  letter-spacing: -0.055em;
}

h3 {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.55;
  letter-spacing: -0.035em;
}

.site-shell {
  width: min(calc(100% - 4rem), var(--content-max));
  margin-inline: auto;
}

.reading-column {
  max-width: var(--reading-max);
}

.reading-column > * + * {
  margin-top: 1.35rem;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.7rem 1rem;
  color: var(--paper-light);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 100;
  color: var(--ink);
  background: var(--canvas);
  border-bottom: 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  min-height: var(--header-height);
  gap: 2rem;
}

.brand {
  display: inline-block;
  width: 15.5rem;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2.1vw, 2.2rem);
  margin-left: auto;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-bottom-color: currentColor;
}

.site-nav__cta {
  min-width: 5.3rem;
  justify-content: center;
  padding-inline: 1.2rem;
  color: var(--paper-light);
  background: #050505;
}

.site-nav .site-nav__cta:hover,
.site-nav .site-nav__cta:focus-visible {
  color: var(--ink);
  background: var(--gold);
  border-bottom-color: transparent;
}

.menu-button {
  display: none;
  min-width: 4.25rem;
  min-height: 44px;
  margin-left: auto;
  padding: 0.5rem 0.75rem;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  cursor: pointer;
}

.eyebrow {
  margin-bottom: 1.6rem;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.18em;
}

.eyebrow--light {
  color: var(--gold-light);
}

.hero {
  position: relative;
  height: clamp(56rem, calc(100vh - var(--header-height) + 17rem), 60rem);
  min-height: 56rem;
  overflow: hidden;
  background: var(--canvas);
}

.hero__gold-art {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 47.5rem;
  min-height: 0;
  object-fit: fill;
  object-position: center bottom;
  pointer-events: none;
}

.hero__baby-frame {
  position: absolute;
  z-index: 2;
  top: 5.6%;
  right: 7%;
  width: min(53vw, 43rem);
  aspect-ratio: 1 / 1;
  pointer-events: none;
}

.hero__baby-frame::before,
.hero__baby-frame::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 3px solid #080808;
  border-radius: 50%;
}

.hero__baby-frame::before {
  inset: -7% 11% 13% -13%;
}

.hero__baby-frame::after {
  inset: 28% 48% -3% -24%;
}

.hero__baby {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(17rem, 0.68fr) minmax(25rem, 1fr);
  align-items: stretch;
  gap: 3rem;
  padding-block: 2.2rem 2rem;
}

.hero__copy {
  position: relative;
  align-self: stretch;
  min-width: 20rem;
}

.hero__kicker {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--ink-soft);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
}

.hero__vertical-title {
  position: absolute;
  top: 2.5rem;
  right: auto;
  left: 7.4rem;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-wrap: initial;
}

.hero__title-line {
  display: block;
  height: 31rem;
  min-height: 0;
  padding: 1.45rem 1.35rem;
  writing-mode: vertical-rl;
  box-shadow: 0 0 0 1px rgb(0 0 0 / 4%);
}

.hero__title-line--ink {
  color: var(--canvas);
  background: rgb(4 4 4 / 91%);
}

.hero__title-line--paper {
  color: var(--ink);
  background: rgb(255 255 255 / 92%);
  border: 1px solid rgb(0 0 0 / 8%);
}

.hero__title-mobile-break {
  display: block;
}

.hero__statement {
  position: absolute;
  z-index: 5;
  right: 1rem;
  bottom: 1.2rem;
  width: min(42rem, 57vw);
  padding: 1.5rem 1.7rem 1.25rem;
  background: rgb(255 255 255 / 94%);
  border-top: 2px solid var(--ink);
}

.hero__lead {
  max-width: 40rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 600;
  line-height: 1.75;
}

.hero__axes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.15rem 0 0;
  border-top: 1px solid var(--line);
}

.hero__axes div {
  padding: 0.75rem 0.85rem 0 0;
  border-bottom: 0;
}

.hero__axes dt {
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero__axes dd {
  margin-top: 0.12rem;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
}

.page-hero {
  position: relative;
  height: 35rem;
  overflow: hidden;
  background: var(--canvas);
}

.page-hero__gold-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  opacity: 0.78;
  pointer-events: none;
}

.page-hero__rings {
  position: absolute;
  z-index: 1;
  top: -8rem;
  right: 7%;
  width: 34rem;
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero__rings::before {
  content: "";
  position: absolute;
  inset: 28% 34% -20% -28%;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
}

.page-hero__number {
  position: absolute;
  top: 1rem;
  left: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.page-hero__vertical-title {
  position: absolute;
  top: 3.5rem;
  left: 6rem;
  height: 25rem;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.55rem;
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  text-wrap: initial;
}

.page-hero__title-band {
  height: 21rem;
  display: block;
  padding: 1.15rem 1.05rem;
  writing-mode: vertical-rl;
}

.page-hero__title-band--ink {
  color: var(--canvas);
  background: rgb(4 4 4 / 90%);
}

.page-hero__title-band--paper {
  color: var(--ink);
  background: rgb(255 255 255 / 91%);
  border: 1px solid rgb(0 0 0 / 10%);
}

.page-hero__lead {
  position: absolute;
  right: 1rem;
  bottom: 3rem;
  width: min(37rem, 51vw);
  padding: 1.6rem 1.8rem;
  background: rgb(255 255 255 / 93%);
  border-top: 2px solid var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
  font-weight: 600;
  line-height: 1.55;
}

.breadcrumb {
  min-height: 4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.73rem;
}

.breadcrumb a {
  text-underline-offset: 0.25em;
}

.page-section {
  position: relative;
  padding-block: clamp(5.5rem, 9vw, 8rem);
  overflow: hidden;
}

.page-section--white {
  background: var(--canvas);
}

.page-section--smoke {
  background: var(--smoke);
}

.page-section--ink {
  color: var(--canvas);
  background: var(--ink);
}

.page-section--white::after,
.page-section--smoke::after {
  content: "";
  position: absolute;
  right: -11rem;
  bottom: -10rem;
  width: 26rem;
  aspect-ratio: 1;
  border: 1px solid rgb(182 138 53 / 55%);
  border-radius: 50%;
  pointer-events: none;
}

.page-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.75fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.page-intro .button {
  margin-top: 2rem;
}

.principle-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--canvas);
  border: 1px solid var(--ink);
}

.principle-grid > div {
  min-height: 19rem;
  padding: 2.5rem;
}

.principle-grid > div + div {
  border-left: 1px solid var(--line);
}

.principle-grid dt {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
}

.principle-grid dt span {
  display: block;
  margin-bottom: 3rem;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.principle-grid dd {
  margin-top: 1.3rem;
}

.statement-panel {
  display: grid;
  grid-template-columns: minmax(19rem, 0.8fr) minmax(20rem, 0.72fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.statement-panel > .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1rem;
}

.statement-panel .reading-column {
  color: #ded9cf;
}

.detail-list {
  border: 1px solid var(--ink);
}

.detail-list article,
.detail-list > div {
  display: grid;
  grid-template-columns: 5rem minmax(13rem, 0.55fr) minmax(20rem, 1fr);
  gap: 2rem;
  padding: 2rem;
  background: var(--canvas);
  border-bottom: 1px solid var(--line);
}

.detail-list article:last-child,
.detail-list > div:last-child {
  border-bottom: 0;
}

.detail-list__number {
  padding-top: 0.55rem;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.detail-list h3 {
  font-size: clamp(1.4rem, 2vw, 1.85rem);
}

.project-cards,
.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--canvas);
  border: 1px solid var(--ink);
}

.project-cards article,
.contact-options article {
  min-height: 24rem;
  padding: clamp(2rem, 5vw, 4rem);
}

.project-cards article + article,
.contact-options article + article {
  border-left: 1px solid var(--line);
}

.project-cards h2,
.contact-options h2 {
  margin-top: 2rem;
  font-size: clamp(2rem, 3vw, 3rem);
}

.project-cards p:not(.eyebrow),
.contact-options p:not(.eyebrow) {
  margin-top: 1.5rem;
}

.project-cards .text-link,
.contact-options .text-link {
  margin-top: 2rem;
}

.company-table {
  border-top: 1px solid var(--ink);
}

.company-table > div {
  display: grid;
  grid-template-columns: minmax(10rem, 0.35fr) minmax(20rem, 1fr);
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.company-table dt {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.company-table dd {
  font-family: var(--serif);
  font-size: 1.08rem;
}

.company-table ul {
  list-style: none;
}

.company-table li + li {
  margin-top: 0.45rem;
}

.contact-note {
  max-width: var(--reading-max);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.signature {
  margin-top: 2rem;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 0.95rem;
}

.detail-list--dark {
  border-color: var(--gold-light);
}

.detail-list--dark > div {
  color: var(--canvas);
  background: transparent;
  border-bottom-color: var(--ink-soft);
}

.detail-list--dark > div > p:last-child {
  color: #ded9cf;
}

.action-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-top: 1.15rem;
}

.button {
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.45rem;
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button--ink:hover,
.button--ink:focus-visible {
  color: var(--ink);
  background: var(--paper-light);
  border-color: var(--ink);
}

.button--gold {
  color: var(--ink);
  background: var(--gold-light);
}

.button--gold:hover,
.button--gold:focus-visible {
  color: var(--paper-light);
  background: var(--ink);
  border-color: var(--gold-light);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.45em;
}

.text-link::after {
  content: "→";
  margin-left: 0.65rem;
  color: var(--gold);
}

.text-link--light::after {
  color: var(--gold-light);
}

.section {
  position: relative;
  padding-block: clamp(6rem, 10vw, 9rem);
  overflow: hidden;
}

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

.section--light {
  background: var(--smoke);
}

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

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.65fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.section--paper::before,
.section--light::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: min(34vw, 26rem);
  aspect-ratio: 1 / 1;
  border: 1px solid rgb(182 138 53 / 60%);
  border-radius: 50%;
  pointer-events: none;
}

.section--paper::before {
  right: -11rem;
  top: 3rem;
}

.section--light::before {
  left: -13rem;
  bottom: 2rem;
  border-color: rgb(18 17 15 / 20%);
}

.section > .site-shell {
  position: relative;
  z-index: 1;
}

.emphasis {
  padding-top: 1.2rem;
  border-top: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.symptom-grid p {
  min-height: 13rem;
  padding: 1.5rem 1.2rem;
  border-left: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.75;
}

.symptom-grid p:last-child {
  border-right: 1px solid var(--line);
}

.symptom-grid span {
  display: block;
  margin-bottom: 2rem;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
}

.narrow-stack {
  max-width: 68rem;
}

.narrow-stack > h2,
.narrow-stack > .eyebrow {
  text-align: center;
}

.reading-column--centered {
  margin: 3rem auto 0;
}

.three-axis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 4rem;
  background: var(--canvas);
  border: 1px solid var(--ink);
}

.three-axis div {
  padding: 2rem;
  text-align: center;
  border-left: 1px solid var(--line);
}

.three-axis div:last-child {
  border-right: 1px solid var(--line);
}

.three-axis dt {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
}

.three-axis dd {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.closing-line {
  margin-top: 2.5rem;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.process-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 4rem 0 3.5rem;
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
}

.process-list li {
  min-height: 24rem;
  padding: 2rem 1.6rem;
  border-left: 1px solid var(--ink-soft);
}

.process-list li:last-child {
  border-right: 1px solid var(--ink-soft);
}

.process-list__number,
.service-list__number {
  color: var(--gold-light);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.process-list h3 {
  margin-top: 2.5rem;
  color: var(--gold-light);
  font-size: 2rem;
}

.process-list li > p:last-child {
  margin-top: 1.4rem;
  color: #d9d5cd;
  font-size: 0.92rem;
}

.section-heading {
  margin-bottom: 4rem;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.6fr);
  align-items: end;
  gap: 4rem;
}

.section-lead {
  max-width: var(--reading-max);
}

.service-list {
  border: 1px solid var(--ink);
}

.service-list article {
  display: grid;
  grid-template-columns: 4rem minmax(13rem, 0.6fr) minmax(18rem, 1fr);
  gap: 2rem;
  align-items: start;
  padding: 2rem;
  border-bottom: 1px solid var(--line);
}

.service-list__number {
  padding-top: 0.65rem;
  color: var(--gold);
}

.service-list article > p:last-child {
  max-width: var(--reading-max);
}

.project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--canvas);
  border: 1px solid var(--ink);
}

.project-list article {
  padding: clamp(2rem, 5vw, 4rem);
}

.project-list article + article {
  border-left: 1px solid var(--line);
}

.project-list__status {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
}

.project-list__status span {
  margin-right: 0.7rem;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.14em;
}

.project-list h3 {
  margin-top: 2rem;
  font-size: clamp(2rem, 3vw, 3rem);
}

.project-list article > p:not(.project-list__status) {
  max-width: 30rem;
  margin-top: 1.25rem;
}

.project-list .text-link {
  margin-top: 1.8rem;
}

.section-end-link {
  margin-top: 2rem;
  text-align: right;
}

.philosophy-preview .reading-column {
  color: #ded9cf;
}

.philosophy-preview .text-link {
  margin-top: 2rem;
  color: var(--paper-light);
}

.message-block {
  display: grid;
  grid-template-columns: minmax(12rem, 0.4fr) minmax(20rem, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.message-block::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -3rem 8% -3rem 22%;
  border: 1px solid var(--ink);
  pointer-events: none;
}

.message-block blockquote {
  max-width: var(--reading-max);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.55vw, 1.4rem);
  line-height: 2;
}

.message-block blockquote p + p {
  margin-top: 1.5rem;
}

.message-block > .text-link {
  grid-column: 2;
}

.contact-band {
  padding-block: clamp(4.5rem, 8vw, 7rem);
  color: var(--paper-light);
  background: var(--ink);
  border-top: 1px solid var(--gold);
}

.contact-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.65fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.contact-band__inner > div:last-child > p {
  max-width: 34rem;
  color: #ded9cf;
}

.contact-band .button {
  margin-top: 2rem;
}

.site-footer {
  padding-block: 4rem 2rem;
  background: var(--canvas);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) minmax(20rem, 0.8fr);
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

.brand--footer {
  width: 15rem;
}

.site-footer__grid > div > p {
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.3rem 2rem;
}

.footer-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  text-underline-offset: 0.25em;
}

.site-footer__bottom {
  padding-top: 1.5rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

@media (max-width: 1024px) {
  .site-header__inner {
    gap: 1rem;
  }

  .brand {
    width: 13rem;
  }

  .site-nav {
    gap: 1rem;
    font-size: 0.75rem;
  }

  .hero__baby-frame {
    right: 2%;
    width: min(57vw, 41rem);
  }

  .hero__vertical-title {
    right: auto;
    left: 4rem;
  }

  .hero__statement {
    width: min(39rem, 61vw);
  }

  .symptom-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .symptom-grid p:nth-child(4),
  .symptom-grid p:nth-child(5) {
    border-top: 1px solid var(--line);
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list li:nth-child(3),
  .process-list li:nth-child(4) {
    border-top: 1px solid var(--ink-soft);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 4.6rem;
  }

  .site-shell {
    width: min(calc(100% - 2rem), var(--content-max));
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 4.2rem);
    line-height: 1.34;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .brand {
    width: 10rem;
  }

  .js .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 0 0 1rem;
    border-top: 1px solid var(--line);
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:nth-child(even) {
    padding-left: 1rem;
    border-left: 1px solid var(--line);
  }

  .site-nav__cta {
    min-width: 0;
    color: var(--ink);
    background: transparent;
    justify-content: flex-start;
  }

  .js .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    max-height: calc(100vh - var(--header-height));
    display: none;
    grid-template-columns: 1fr;
    padding: 1rem;
    overflow-y: auto;
    background: var(--canvas);
    border-bottom: 1px solid var(--ink);
  }

  .js .site-nav.is-open {
    display: grid;
  }

  .js .site-nav a,
  .js .site-nav a:nth-child(even) {
    min-height: 3.5rem;
    padding: 0.7rem 0;
    border-left: 0;
  }

  .js .site-nav__cta {
    margin-top: 0.5rem;
    padding-inline: 1rem;
    color: var(--paper-light);
    background: var(--ink);
  }

  .hero {
    height: 54rem;
    min-height: 54rem;
  }

  .hero__gold-art {
    width: auto;
    max-width: none;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: 55% bottom;
  }

  .hero__inner {
    width: 100%;
    grid-template-columns: 1fr;
    padding-block: 0;
  }

  .hero__copy {
    min-width: 0;
  }

  .hero__kicker {
    top: 1rem;
    left: 1rem;
    color: var(--ink);
  }

  .hero__vertical-title {
    top: 3.5rem;
    right: auto;
    left: clamp(5.5rem, 24vw, 11rem);
    height: 28rem;
    gap: 0.48rem;
    font-size: 1.38rem;
  }

  .hero__title-line {
    height: 25rem;
    min-height: 0;
    padding: 1rem 0.78rem;
  }

  .hero__baby-frame {
    top: 14rem;
    right: -17rem;
    width: 35rem;
    opacity: 0.92;
  }

  .hero__baby-frame::before {
    inset: -3% 17% 22% -5%;
  }

  .hero__baby-frame::after {
    inset: 26% 48% 8% -8%;
  }

  .hero__statement {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    width: auto;
    padding: 1rem 1rem 0.85rem;
  }

  .hero__lead br {
    display: none;
  }

  .hero__axes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero__axes div {
    padding: 1rem 0.75rem;
    border-left: 1px solid var(--line);
  }

  .hero__axes div:last-child {
    border-right: 1px solid var(--line);
  }

  .page-hero {
    height: 37rem;
  }

  .page-hero__gold-art {
    width: auto;
    max-width: none;
    object-position: 55% bottom;
  }

  .page-hero__rings {
    top: 4rem;
    right: -16rem;
    width: 31rem;
  }

  .page-hero__number {
    top: 0.75rem;
    left: 1rem;
  }

  .page-hero__vertical-title {
    top: 3.5rem;
    left: 3.8rem;
    height: 22rem;
    font-size: 1.55rem;
  }

  .page-hero__title-band {
    height: 20rem;
    padding: 1rem 0.8rem;
  }

  .page-hero__lead {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    width: auto;
    padding: 1.1rem 1.2rem;
    font-size: clamp(1.35rem, 6.5vw, 1.8rem);
  }

  .breadcrumb {
    min-height: 3.5rem;
  }

  .page-section {
    padding-block: 5rem;
  }

  .page-intro,
  .statement-panel {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .statement-panel > .eyebrow {
    grid-column: auto;
    margin-bottom: -1rem;
  }

  .principle-grid,
  .project-cards,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .principle-grid > div {
    min-height: auto;
  }

  .principle-grid > div + div,
  .project-cards article + article,
  .contact-options article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .detail-list article,
  .detail-list > div {
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .detail-list article > p:last-child,
  .detail-list > div > p:last-child {
    grid-column: 2;
  }

  .company-table > div {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .hero__axes dd {
    font-size: 1rem;
  }

  .section {
    padding-block: 5rem;
  }

  .split-intro,
  .section-heading--split,
  .message-block,
  .contact-band__inner,
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .symptom-grid p {
    min-height: auto;
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
    padding: 1.4rem 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .symptom-grid p:first-child {
    border-top: 0;
  }

  .symptom-grid p:last-child {
    border-right: 0;
  }

  .symptom-grid span {
    margin: 0;
  }

  .three-axis,
  .process-list,
  .project-list {
    grid-template-columns: 1fr;
  }

  .three-axis div,
  .three-axis div:last-child {
    border-right: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .three-axis div:first-child {
    border-top: 0;
  }

  .process-list li {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid var(--ink-soft);
  }

  .process-list li:first-child {
    border-top: 0;
  }

  .process-list li:last-child {
    border-right: 0;
  }

  .service-list article {
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
  }

  .service-list article > p:last-child {
    grid-column: 2;
  }

  .project-list article {
    padding: 2rem 0;
  }

  .project-list article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .message-block > .text-link {
    grid-column: auto;
  }
}

@media (max-width: 390px) {
  body {
    font-size: 0.95rem;
    line-height: 1.85;
  }

  .site-shell {
    width: calc(100% - 1.5rem);
  }

  .brand {
    width: 9.25rem;
  }

  .menu-button {
    min-width: 3.75rem;
    padding-inline: 0.5rem;
  }

  .eyebrow {
    margin-bottom: 1.2rem;
    font-size: 0.63rem;
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero__title-line:first-child {
    white-space: normal;
  }

  .hero__title-mobile-break {
    display: block;
  }

  .hero__inner {
    padding-block: 0;
  }

  .hero__lead {
    margin-top: 0;
    font-size: 1rem;
    line-height: 1.65;
  }

  .action-row {
    align-items: center;
    flex-direction: row;
    gap: 0.5rem 1rem;
  }

  .button,
  .text-link {
    width: auto;
  }

  .text-link {
    justify-content: flex-start;
  }

  .hero__axes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero__axes div,
  .hero__axes div:last-child {
    display: block;
    padding: 0.65rem 0.3rem 0 0;
    border-left: 0;
    border-right: 0;
  }

  .hero__axes dd {
    margin-top: 0.15rem;
    font-size: 0.78rem;
  }

  .hero__axes dt {
    font-size: 0.49rem;
    letter-spacing: 0.08em;
  }

  .hero__vertical-title {
    left: 4.8rem;
    font-size: 1.25rem;
  }

  .hero__baby-frame {
    right: -18rem;
  }

  .page-hero__vertical-title {
    left: 3.2rem;
  }

  .page-hero__lead br {
    display: none;
  }

  .project-cards article,
  .contact-options article {
    min-height: auto;
    padding: 2rem 1.5rem;
  }

  .section {
    padding-block: 4.3rem;
  }

  .process-list li {
    padding-inline: 0;
  }

  .service-list article {
    grid-template-columns: 2.4rem 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Homepage editorial direction */

.home-editorial .hero {
  height: 52rem;
  min-height: 52rem;
}

.home-editorial .hero__statement {
  right: 2rem;
  bottom: 0.9rem;
  width: min(43rem, 55vw);
  padding: 1.3rem 1.7rem 1.2rem;
}

.home-editorial .hero__statement .action-row {
  margin-top: 0.9rem;
}

.home-editorial .section {
  padding-block: clamp(4rem, 5vw, 5rem);
}

.chapter-mark {
  align-self: start;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.chapter-mark--light {
  color: var(--gold-light);
}

.editorial-recognition {
  background: var(--canvas);
}

.editorial-recognition__grid {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1.08fr) minmax(20rem, 0.78fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.editorial-recognition__statement h2 {
  max-width: 41rem;
  font-size: clamp(2.35rem, 3.5vw, 3.5rem);
  line-height: 1.45;
}

.editorial-recognition__copy {
  padding-top: 1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.editorial-recognition__copy p:last-child {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
}

.editorial-recognition__reframe {
  grid-column: 2 / 4;
  margin-top: clamp(1.8rem, 3.5vw, 3rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.8vw, 1.75rem);
  font-weight: 600;
  line-height: 1.65;
}

.editorial-process {
  color: var(--paper-light);
  background: var(--ink);
}

.editorial-process__inner {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  column-gap: clamp(2rem, 5vw, 5rem);
}

.editorial-process__inner > h2,
.editorial-process__inner > .process-list,
.editorial-process__inner > .text-link {
  grid-column: 2;
}

.editorial-process__inner > h2 {
  font-size: clamp(2.35rem, 3.4vw, 3.5rem);
}

.editorial-process .process-list {
  margin: 2.4rem 0 2rem;
  border-color: rgb(211 179 108 / 72%);
}

.editorial-process .process-list li {
  min-height: 14rem;
  padding: 1.7rem 1.5rem;
}

.editorial-process .process-list h3 {
  margin-top: 1.8rem;
}

.editorial-process .process-list li > p:last-child {
  font-size: 0.9rem;
  line-height: 1.9;
}

.editorial-services {
  background: var(--canvas);
}

.editorial-services__grid {
  display: grid;
  grid-template-columns: 2rem minmax(18rem, 0.78fr) minmax(28rem, 1.22fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.editorial-services__heading h2 {
  font-size: clamp(2.2rem, 3.2vw, 3.25rem);
  line-height: 1.45;
}

.service-index {
  border-top: 1px solid var(--ink);
}

.service-index article {
  display: grid;
  grid-template-columns: 3.2rem minmax(12rem, 0.75fr) minmax(14rem, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
}

.service-index__number {
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.service-index h3 {
  font-size: clamp(1.15rem, 1.65vw, 1.5rem);
  line-height: 1.55;
}

.service-index article > p:last-child {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.8;
}

.service-index__link {
  margin-top: 1.8rem;
  margin-left: auto;
}

.editorial-projects {
  background: var(--smoke);
}

.editorial-projects__grid {
  display: grid;
  grid-template-columns: 2rem minmax(15rem, 0.72fr) minmax(0, 1.14fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 3.6vw, 3.5rem);
  align-items: start;
}

.editorial-projects__heading h2 {
  max-width: 25rem;
  font-size: clamp(2.2rem, 3.1vw, 3.2rem);
  line-height: 1.48;
}

.project-feature__number {
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.project-feature h3 {
  margin-top: 0.7rem;
  font-size: clamp(1.65rem, 2.4vw, 2.5rem);
}

.project-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 1.4rem;
  object-fit: cover;
  filter: grayscale(1);
}

.project-feature > p:not(.project-feature__number) {
  margin-top: 1.2rem;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.project-feature .text-link {
  margin-top: 1.3rem;
}

.project-feature--secondary {
  padding-left: clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid var(--line);
}

.editorial-projects__all {
  grid-column: 3 / 5;
  padding-top: 1.5rem;
  text-align: right;
  border-top: 1px solid var(--line);
}

.philosophy-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  min-height: 23rem;
}

.philosophy-editorial__art {
  position: relative;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 4.5vw, 4.5rem) clamp(2rem, 6vw, 6rem);
  background-color: var(--gold-light);
  background-image: url("/assets/legacy-gold-hero.png");
  background-position: 42% center;
  background-size: cover;
}

.philosophy-editorial__art h2 {
  max-width: 38rem;
  font-size: clamp(2.2rem, 3.1vw, 3.2rem);
  line-height: 1.48;
}

.philosophy-editorial__copy {
  display: flex;
  align-items: center;
  padding: clamp(3rem, 4.5vw, 4.5rem) clamp(2rem, 6vw, 6rem);
  background: var(--canvas);
}

.philosophy-editorial__copy .reading-column {
  font-size: 0.95rem;
}

.philosophy-editorial__copy .text-link {
  margin-top: 1.8rem;
}

.philosophy-editorial__copy .text-link + .text-link {
  margin-top: 0.9rem;
}

.editorial-contact {
  border-top: 0;
}

.editorial-contact__grid {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1.2fr) minmax(19rem, 0.7fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.editorial-contact h2 {
  max-width: 42rem;
  font-size: clamp(2.2rem, 3.1vw, 3.2rem);
}

.editorial-contact__grid > div:last-child > p {
  color: #ded9cf;
}

.editorial-contact .button {
  margin-top: 1.6rem;
}

@media (max-width: 1024px) {
  .editorial-recognition__grid,
  .editorial-services__grid {
    grid-template-columns: 2rem minmax(0, 0.9fr) minmax(20rem, 1fr);
    gap: 2.5rem;
  }

  .editorial-projects__grid {
    grid-template-columns: 2rem repeat(2, minmax(0, 1fr));
  }

  .editorial-projects__heading {
    grid-column: 2 / 4;
    margin-bottom: 1rem;
  }

  .project-feature--primary {
    grid-column: 2;
  }

  .project-feature--secondary {
    grid-column: 3;
  }

  .editorial-projects__all {
    grid-column: 2 / 4;
  }
}

@media (max-width: 768px) {
  .home-editorial .hero {
    height: 50rem;
    min-height: 50rem;
  }

  .home-editorial .hero__statement {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    width: auto;
    padding: 1rem;
  }

  .home-editorial .hero__statement .button {
    display: none;
  }

  .chapter-mark {
    writing-mode: horizontal-tb;
  }

  .editorial-recognition__grid,
  .editorial-process__inner,
  .editorial-services__grid,
  .editorial-projects__grid,
  .editorial-contact__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .editorial-recognition__statement,
  .editorial-recognition__copy,
  .editorial-recognition__reframe,
  .editorial-process__inner > h2,
  .editorial-process__inner > .process-list,
  .editorial-process__inner > .text-link,
  .editorial-services__heading,
  .service-index,
  .editorial-projects__heading,
  .project-feature--primary,
  .project-feature--secondary,
  .editorial-projects__all {
    grid-column: 1;
  }

  .editorial-recognition__reframe {
    margin-top: 1rem;
  }

  .editorial-process .process-list {
    grid-template-columns: 1fr;
    margin-top: 1.2rem;
  }

  .editorial-process .process-list li {
    min-height: auto;
    padding: 1.5rem 0;
  }

  .service-index article {
    grid-template-columns: 2.4rem 1fr;
    gap: 1rem;
  }

  .service-index article > p:last-child {
    grid-column: 2;
  }

  .project-feature--secondary {
    padding-top: 2.5rem;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .editorial-projects__all {
    text-align: left;
  }

  .philosophy-editorial {
    grid-template-columns: 1fr;
  }

  .philosophy-editorial__art {
    min-height: 27rem;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 2rem;
    padding: 4.5rem 1rem;
  }

  .philosophy-editorial__copy {
    padding: 4.5rem 1rem;
  }
}

@media (max-width: 390px) {
  .home-editorial .hero {
    height: 48rem;
    min-height: 48rem;
  }

  .editorial-recognition__statement h2,
  .editorial-process__inner > h2,
  .editorial-services__heading h2,
  .editorial-projects__heading h2,
  .philosophy-editorial__art h2,
  .editorial-contact h2 {
    font-size: 2rem;
  }

  .service-index article {
    padding-block: 1.1rem;
  }
}
