@charset "UTF-8";

:root {
  --warm-white: #f7f5f0;
  --soft-white: #fcfbf8;
  --sand: #e9e3d8;
  --stone: #d8d6d0;
  --ink: #101113;
  --muted: #686866;
  --line: rgba(16, 17, 19, .14);
  --accent: #80633b;
  --ink-hover: #363633;
  --max: 1440px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-white);
  font-family: Inter, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
p { line-break: strict; }
h1, h2, h3 { text-wrap: balance; line-break: strict; }
.hero-story-lead,
.scope-copy p,
.company-copy p,
.journal-line p,
.final-grid p { text-wrap: pretty; }
.line-group { display: block; }
.mobile-line { display: inline; }
.copy-chunk { display: inline-block; }
.mobile-break { display: none; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.desktop-only { display: inline; }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto 0;
  height: 82px;
  padding: 0 clamp(22px, 4vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 42px;
  background: rgba(247, 245, 240, .72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.scrolled {
  background: rgba(247, 245, 240, .92);
  border-color: var(--line);
}
.logo {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.logo img { width: 100%; height: 100%; object-fit: contain; }
.desktop-nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
}
.desktop-nav a,
footer a {
  text-decoration: none;
  position: relative;
}
.desktop-nav a::after,
footer a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -5px;
  height: 1px; background: currentColor;
  transition: right .25s ease;
}
.desktop-nav a:hover::after,
footer a:hover::after,
.desktop-nav a[aria-current="page"]::after { right: 0; }

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 50px;
  padding: 0 24px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: transform .25s ease, background .25s ease;
}
.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  background: var(--ink-hover);
}
.menu-button, .mobile-nav { display: none; }

.hero {
  position: relative;
  height: 400svh;
  min-height: 2800px;
  padding: 0;
  background: #0c0d0e;
}
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 700px;
  overflow: hidden;
  color: #fff;
  background: #0c0d0e;
}
.hero-story-scenes,
.hero-story-scene,
.hero-story-shade {
  position: absolute;
  inset: 0;
}
.hero-story-scene {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 0s linear 1s;
}
.hero-story-scene.is-active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.hero-story-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.075);
  transition: transform 2.2s cubic-bezier(.2,.7,.2,1);
}
.hero-story-scene.is-active img { transform: scale(1.015); }
.hero-story-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7,8,9,.94) 0%, rgba(7,8,9,.76) 34%, rgba(7,8,9,.24) 67%, rgba(7,8,9,.08) 100%),
    linear-gradient(180deg, rgba(7,8,9,.2), transparent 34%, rgba(7,8,9,.44));
}
.hero-story-content {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 100%;
  padding: 132px clamp(28px, 5.6vw, 90px) 54px;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.hero-story-brand {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 10px;
  letter-spacing: .2em;
}
.hero-story-panels {
  position: relative;
  flex: 1;
  display: grid;
  align-items: center;
}
.hero-story-panel {
  position: absolute;
  inset: auto auto auto 0;
  width: min(760px, 72vw);
  opacity: 0;
  visibility: hidden;
  transform: translateY(54px);
  transition: opacity .65s ease, transform .8s cubic-bezier(.2,.7,.2,1), visibility 0s linear .8s;
}
.hero-story-panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: .18s;
}
.hero-story-chapter {
  margin: 0 0 24px;
  color: rgba(255,255,255,.66);
  font-size: 10px;
  letter-spacing: .2em;
}
.hero-story-panel h1,
.hero-story-panel h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(104px, 13.4vw, 220px);
  line-height: .76;
  letter-spacing: -.065em;
  font-weight: 500;
}
.hero-story-panel .hero-story-main-title {
  font-size: clamp(82px, 10.6vw, 176px);
  line-height: .82;
}
.hero-story-main-title .line-group {
  white-space: nowrap;
}
.hero-story-ja {
  margin: 39px 0 0;
  font-size: clamp(25px, 2.3vw, 38px);
  letter-spacing: .08em;
}
.hero-story-lead {
  margin: 22px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.9;
}
.hero-story-cta {
  width: min(460px, 46vw);
  min-height: 58px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.4);
  border-bottom: 1px solid rgba(255,255,255,.4);
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .08em;
  pointer-events: auto;
  transition: padding .25s ease, border-color .25s ease, background .25s ease;
}
.hero-story-cta:hover {
  padding-inline: 26px;
  border-color: rgba(255,255,255,.72);
  background: rgba(227,66,52,.17);
}
.hero-story-progress {
  position: absolute;
  z-index: 5;
  right: clamp(28px, 4vw, 64px);
  bottom: 54px;
  display: grid;
  grid-template-columns: auto minmax(120px, 14vw) auto;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,.72);
  font-size: 9px;
  letter-spacing: .18em;
}
.hero-story-track {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.28);
}
.hero-story-track i {
  position: absolute;
  inset: 0;
  display: block;
  background: #e34234;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}
.eyebrow,
.section-label {
  margin: 0 0 32px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.9);
}
.section-inner {
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
}
.philosophy {
  padding: 110px 0;
  min-height: 520px;
  overflow: hidden;
}
.philosophy-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: clamp(50px, 6vw, 90px);
  align-items: end;
}
.philosophy h2,
.journal h2 {
  margin: 0;
  font-size: clamp(36px, 3.45vw, 58px);
  line-height: 1.35;
  letter-spacing: .02em;
  font-weight: 500;
}
.scope h2,
.company h2 {
  margin: 0;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.42;
  letter-spacing: .02em;
  font-weight: 500;
}
.philosophy h2 .line-group,
.scope h2 .line-group,
.company h2 .line-group,
.journal h2 .line-group { white-space: nowrap; }
.philosophy-copy {
  padding-left: 60px;
  border-left: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.9;
}
.philosophy-copy p { margin: 0; }
.philosophy-last { margin-top: 35px !important; }
.shadow-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 48%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
  mix-blend-mode: multiply;
}

.reveal-wheel {
  padding: 118px 0;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border-color: rgba(255,255,255,.14);
}
.reveal-wheel-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(520px, 1.22fr);
  gap: clamp(70px, 8vw, 140px);
  align-items: center;
}
.reveal-wheel-copy { position: relative; z-index: 3; }
.reveal-wheel-copy h2 {
  margin: 0;
  font-size: clamp(42px, 4.5vw, 72px);
  line-height: 1.25;
  letter-spacing: .01em;
  font-weight: 500;
}
.reveal-wheel-copy > p:not(.section-label) {
  max-width: 480px;
  margin: 36px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 2;
}
.reveal-wheel-copy .reveal-wheel-hint {
  margin-top: 52px;
  padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.48);
  font-size: 10px;
  letter-spacing: .14em;
}
.circular-reveal {
  position: relative;
  width: min(42vw, 590px);
  aspect-ratio: 1;
  justify-self: center;
  border-radius: 50%;
  background: #e9e5dc;
  box-shadow: 36px 36px 86px rgba(0,0,0,.38), -18px -18px 60px rgba(255,255,255,.06);
  isolation: isolate;
}
.circular-reveal::before,
.circular-reveal::after,
.circular-reveal-rings {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.circular-reveal::before {
  inset: 12px;
  border: 1px solid rgba(16,17,19,.13);
  box-shadow: inset 9px 9px 20px rgba(16,17,19,.1), inset -9px -9px 20px rgba(255,255,255,.8);
}
.circular-reveal::after {
  inset: 66px;
  border: 1px solid rgba(16,17,19,.12);
  box-shadow: inset 5px 5px 14px rgba(16,17,19,.09), inset -5px -5px 14px rgba(255,255,255,.68);
}
.circular-reveal-rings {
  z-index: 1;
  inset: 34px;
  border: 1px dashed rgba(16,17,19,.25);
  animation: circular-ring-spin 34s linear infinite;
}
.circular-reveal-rings::before,
.circular-reveal-rings::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e34234;
}
.circular-reveal-rings::before { top: 11%; left: 11%; }
.circular-reveal-rings::after { right: 11%; bottom: 11%; }
.circular-reveal-center {
  position: absolute;
  z-index: 2;
  inset: 22%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #ddd8ce;
  box-shadow: inset 12px 12px 30px rgba(16,17,19,.15), inset -10px -10px 28px rgba(255,255,255,.72);
}
.circular-reveal-center img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  filter: brightness(.72) saturate(.86);
  transition: opacity .35s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.circular-reveal.is-active .circular-reveal-center img {
  opacity: 1;
  transform: scale(1.01);
}
.circular-reveal-center-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  color: var(--ink);
  line-height: 1;
  transition: opacity .25s ease, transform .25s ease;
}
.circular-reveal-center-copy span {
  font-size: clamp(10px, .9vw, 14px);
  letter-spacing: .28em;
}
.circular-reveal-center-copy strong {
  margin-top: 8px;
  font-size: clamp(18px, 2vw, 30px);
  letter-spacing: -.04em;
  font-weight: 500;
}
.circular-reveal.is-active .circular-reveal-center-copy {
  opacity: 0;
  transform: translateY(8px);
}
.circular-reveal-caption {
  position: absolute;
  z-index: 3;
  left: 13%;
  right: 13%;
  bottom: 16%;
  margin: 0;
  color: #fff;
  font-size: clamp(9px, .75vw, 12px);
  letter-spacing: .08em;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease .08s, transform .3s ease .08s;
}
.circular-reveal.is-active .circular-reveal-caption {
  opacity: 1;
  transform: translateY(0);
}
.reveal-point {
  position: absolute;
  z-index: 5;
  min-width: 106px;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(16,17,19,.18);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(247,245,240,.86);
  font-size: 9px;
  letter-spacing: .16em;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
.reveal-point:hover,
.reveal-point:focus-visible,
.reveal-point.is-active {
  color: #fff;
  background: #e34234;
  border-color: #e34234;
}
.reveal-point-top { top: 5.5%; left: 50%; transform: translateX(-50%); }
.reveal-point-top:hover,
.reveal-point-top:focus-visible,
.reveal-point-top.is-active { transform: translateX(-50%) translateY(-3px); }
.reveal-point-right { top: 50%; right: 3%; transform: translateY(-50%); }
.reveal-point-right:hover,
.reveal-point-right:focus-visible,
.reveal-point-right.is-active { transform: translateY(-50%) translateX(3px); }
.reveal-point-bottom { bottom: 5.5%; left: 50%; transform: translateX(-50%); }
.reveal-point-bottom:hover,
.reveal-point-bottom:focus-visible,
.reveal-point-bottom.is-active { transform: translateX(-50%) translateY(3px); }
.reveal-point-left { top: 50%; left: 3%; transform: translateY(-50%); }
.reveal-point-left:hover,
.reveal-point-left:focus-visible,
.reveal-point-left.is-active { transform: translateY(-50%) translateX(-3px); }

.forward-features {
  padding: 124px 0 112px;
  overflow: hidden;
  background: var(--soft-white);
}
.forward-features-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  column-gap: clamp(60px, 9vw, 150px);
  align-items: end;
}
.forward-features-heading .section-label { grid-column: 1 / -1; }
.forward-features-heading h2 {
  margin: 0;
  font-size: clamp(52px, 6.4vw, 106px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 500;
}
.forward-features-heading > p:last-child {
  max-width: 520px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}
.feature-perspective {
  margin: 94px -2vw 84px;
  padding: 28px 2vw 54px;
  perspective: 1300px;
}
.feature-perspective-stage {
  position: relative;
  aspect-ratio: 88 / 36;
  overflow: hidden;
  color: #fff;
  background: #17191b;
  border: 1px solid rgba(16,17,19,.18);
  box-shadow: 0 52px 100px rgba(16,17,19,.2);
  transform: skewY(-1.5deg) skewX(-1deg) rotateX(6deg);
  transform-origin: center center;
}
.feature-perspective-stage > img,
.feature-stage-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.feature-perspective-stage > img {
  object-fit: cover;
  filter: brightness(.48) saturate(.72);
  transform: scale(1.04);
}
.feature-stage-shade {
  background:
    linear-gradient(90deg, rgba(9,10,11,.92), rgba(9,10,11,.45) 63%, rgba(9,10,11,.18)),
    linear-gradient(180deg, transparent 56%, rgba(9,10,11,.72));
}
.feature-stage-ui {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(18px, 2vw, 32px) clamp(20px, 3.2vw, 52px);
}
.feature-stage-bar {
  padding-bottom: 16px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(255,255,255,.32);
  color: rgba(255,255,255,.7);
  font-size: clamp(7px, .7vw, 10px);
  letter-spacing: .14em;
}
.feature-stage-content {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.feature-stage-title span {
  display: block;
  margin-bottom: 17px;
  color: rgba(255,255,255,.62);
  font-size: clamp(7px, .72vw, 11px);
  letter-spacing: .17em;
}
.feature-stage-title strong {
  font-size: clamp(45px, 6.3vw, 104px);
  line-height: .77;
  letter-spacing: -.065em;
  font-weight: 500;
}
.feature-flow {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.35);
  border-bottom: 1px solid rgba(255,255,255,.35);
}
.feature-flow li {
  min-height: clamp(100px, 11vw, 170px);
  padding: clamp(14px, 1.6vw, 24px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,.26);
}
.feature-flow li:last-child { border-right: 0; }
.feature-flow span {
  color: #e34234;
  font-size: 9px;
}
.feature-flow strong {
  margin-top: auto;
  font-size: clamp(16px, 2vw, 30px);
  letter-spacing: .06em;
  font-weight: 500;
}
.feature-flow small {
  margin-top: 7px;
  color: rgba(255,255,255,.66);
  font-size: clamp(7px, .7vw, 10px);
}
.feature-stage-capabilities {
  margin: 0;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.55);
  font-size: clamp(7px, .72vw, 10px);
  letter-spacing: .16em;
}
.forward-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.forward-feature-grid article {
  min-height: 210px;
  padding: 30px clamp(22px, 2.4vw, 38px) 12px;
  border-right: 1px solid var(--line);
}
.forward-feature-grid article:first-child { padding-left: 0; }
.forward-feature-grid article:last-child { border-right: 0; }
.feature-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16,17,19,.22);
  border-radius: 50%;
  font-size: 13px;
}
.forward-feature-grid h3 {
  margin: 35px 0 0;
  font-size: 16px;
  font-weight: 500;
}
.forward-feature-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

@keyframes circular-ring-spin {
  to { transform: rotate(360deg); }
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  width: 100%;
}
.split-panel > div {
  padding: 110px clamp(32px, 5vw, 90px);
}
.split-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scope-copy p,
.company-copy p {
  max-width: 540px;
  font-size: 15px;
  line-height: 2;
}
.scope-copy p { margin: 36px 0 0; }
.reverse { grid-template-columns: 1.05fr .95fr; }
.company-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.company-copy h2 { margin-bottom: 30px; }
.company-copy p { margin: 0 0 16px; }
.text-link {
  margin-top: 28px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 36px;
  align-self: flex-start;
  font-size: 14px;
}

.journal {
  padding: 110px 0;
  background: var(--soft-white);
}
.journal-line {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: end;
}
.journal-line p {
  margin: 0;
  font-size: 15px;
  line-height: 2;
}

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  border-top: 1px solid var(--line);
}
.final-grid {
  width: min(var(--max), calc(100% - 80px));
  min-height: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.final-grid > div { position: relative; z-index: 2; }
.final-grid h2 {
  margin: 0;
  font-size: clamp(64px, 7vw, 120px);
  line-height: .92;
  letter-spacing: -.06em;
  font-weight: 500;
}
.final-ja {
  margin-top: 28px !important;
  font-size: 18px;
}
.final-grid p { font-size: 14px; line-height: 1.9; }
.final-grid .button { margin-top: 30px; }
.final-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Lower pages */
.lower-main { padding-top: 82px; }
.lower-hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
  background: var(--soft-white);
  border-bottom: 1px solid var(--line);
}
.lower-hero-copy {
  padding: clamp(80px, 9vw, 145px) clamp(40px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lower-hero h1 {
  margin: 0;
  font-size: clamp(72px, 8.2vw, 138px);
  line-height: .9;
  letter-spacing: -.06em;
  font-weight: 500;
}
.lower-hero h1 .line-group { white-space: nowrap; }
.lower-hero-ja {
  margin: 34px 0 0;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.55;
  letter-spacing: .04em;
}
.lower-lead {
  margin: 28px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
  text-wrap: pretty;
}
.lower-hero > img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}
.lower-section {
  padding: clamp(90px, 10vw, 145px) 0;
  border-bottom: 1px solid rgba(255,255,255,.9);
}
.lower-soft { background: var(--soft-white); }
.lower-grid {
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  gap: clamp(55px, 8vw, 130px);
}
.lower-heading h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.3;
  letter-spacing: .01em;
  font-weight: 500;
}
.lower-heading h2 .line-group { white-space: nowrap; }
.company-intro {
  grid-template-columns: minmax(430px, .95fr) minmax(0, 1.05fr);
  gap: clamp(55px, 6vw, 95px);
}
.company-intro .lower-heading h2 {
  font-size: clamp(34px, 3vw, 48px);
}
.lower-heading-note {
  max-width: 430px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  text-wrap: pretty;
}
.lower-copy p {
  max-width: 720px;
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 2.1;
  text-wrap: pretty;
}
.lower-copy .lower-copy-lead {
  margin-bottom: 38px;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.8;
}
.lower-list { border-bottom: 1px solid var(--line); }
.lower-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.lower-list article > span,
.service-details article > span { padding-top: 5px; font-size: 11px; }
.lower-list h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 500;
}
.lower-list p,
.service-details p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}
.service-details {
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.service-details article {
  display: grid;
  grid-template-columns: 70px minmax(190px, .65fr) minmax(0, 1.35fr);
  gap: clamp(28px, 5vw, 78px);
  padding: 52px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.service-details h2 {
  margin: 0;
  font-size: clamp(40px, 4.6vw, 68px);
  line-height: 1;
  letter-spacing: .06em;
  font-weight: 500;
}
.capability-boxes,
.journal-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.capability-boxes article {
  position: relative;
  min-height: 190px;
  padding: 28px 30px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,255,255,.18);
  transition: background .3s ease;
}
.capability-boxes article:nth-child(2),
.capability-boxes article:nth-child(3),
.capability-boxes article:nth-child(6) { background: rgba(233,227,216,.18); }
.capability-boxes article:hover { background: rgba(128,99,59,.08); }
.capability-number {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .14em;
}
.capability-boxes h3 {
  margin: 0 0 12px;
  font-size: clamp(25px, 2.5vw, 38px);
  line-height: 1;
  letter-spacing: .01em;
  font-weight: 500;
}
.capability-boxes p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .04em;
}
.profile-table { margin: 0; border-bottom: 1px solid var(--line); }
.profile-table > div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 30px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
}
.profile-table dt { font-size: 12px; letter-spacing: .08em; }
.profile-table dd { margin: 0; font-size: 15px; line-height: 1.8; }
.journal-boxes article {
  min-height: 170px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.journal-boxes h3 { margin: 0; font-size: clamp(24px, 2.6vw, 38px); font-weight: 500; }
.journal-boxes p { margin: 24px 0 0; color: var(--muted); font-size: 13px; }
.coming-soon { margin: 38px 0 0; color: var(--muted); font-size: 12px; letter-spacing: .08em; }
.lower-next {
  min-height: 230px;
  padding: 55px clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.lower-next p { margin: 0; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.lower-next a {
  display: inline-flex;
  align-items: center;
  gap: 45px;
  font-size: clamp(36px, 5vw, 76px);
  letter-spacing: -.04em;
  text-decoration: none;
}

/* Contact */
.contact-main { padding-top: 82px; }
.contact-hero {
  min-height: calc(100svh - 82px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  background: var(--soft-white);
  border-bottom: 1px solid var(--line);
}
.contact-hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(80px, 8vw, 130px) clamp(40px, 6vw, 92px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-hero h1 {
  margin: 0;
  font-size: clamp(78px, 8.6vw, 146px);
  line-height: .86;
  letter-spacing: -.065em;
  font-weight: 500;
}
.contact-hero h1 .line-group { white-space: nowrap; }
.contact-hero-ja {
  margin: 40px 0 0;
  font-size: clamp(25px, 2.4vw, 38px);
  line-height: 1.55;
  letter-spacing: .04em;
}
.contact-hero-lead {
  max-width: 570px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
  text-wrap: pretty;
}
.contact-scroll-link {
  width: fit-content;
  margin-top: 38px;
  display: inline-flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  text-decoration: none;
}
.contact-scroll-link span { font-size: 18px; }
.contact-hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
}
.contact-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(252,251,248,.34), transparent 36%);
}
.contact-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.contact-hero-visual p {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 34px;
  margin: 0;
  font-size: 9px;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
}
.contact-intro,
.conversation-flow,
.contact-form-section {
  width: 100%;
  padding: clamp(95px, 10vw, 150px) max(40px, calc((100% - var(--max)) / 2));
}
.contact-intro {
  display: grid;
  grid-template-columns: minmax(310px, .78fr) minmax(0, 1.22fr);
  gap: clamp(55px, 8vw, 130px);
  border-bottom: 1px solid rgba(255,255,255,.9);
}
.contact-intro-heading { position: sticky; top: 132px; align-self: start; }
.contact-intro-heading h2,
.conversation-flow-heading h2,
.contact-form-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.35;
  letter-spacing: .01em;
  font-weight: 500;
}
.contact-intro-heading h2 .line-group,
.conversation-flow-heading h2 .line-group,
.contact-form-heading h2 .line-group { white-space: normal; }
.contact-intro-heading > p:last-child,
.contact-form-heading > p:not(.section-label) {
  max-width: 510px;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
  text-wrap: pretty;
}
.conversation-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.conversation-points article {
  min-height: 310px;
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.14);
  transition: background .3s ease, transform .3s ease;
}
.conversation-points article:nth-child(2),
.conversation-points article:nth-child(3) { background: rgba(233,227,216,.17); }
.conversation-points article:hover {
  background: rgba(128,99,59,.075);
  transform: translateY(-3px);
}
.conversation-number {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .15em;
}
.conversation-en {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.conversation-points h3 {
  margin: 0;
  font-size: clamp(23px, 2.25vw, 34px);
  line-height: 1.45;
  letter-spacing: .02em;
  font-weight: 500;
}
.conversation-points article div > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}
.conversation-flow {
  display: grid;
  grid-template-columns: minmax(310px, .8fr) minmax(0, 1.2fr);
  gap: clamp(55px, 8vw, 130px);
  background: var(--soft-white);
  border-bottom: 1px solid var(--line);
}
.conversation-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--line);
}
.conversation-steps li {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 25px;
  padding: 34px 0 38px;
  border-top: 1px solid var(--line);
}
.conversation-steps li > span {
  padding-top: 7px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .14em;
}
.conversation-steps h3 {
  margin: 0 0 12px;
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 500;
}
.conversation-steps p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}
.contact-form-section {
  scroll-margin-top: 82px;
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: clamp(55px, 8vw, 130px);
  color: #fff;
  background: var(--ink);
}
.contact-form-heading { align-self: start; }
.contact-form-heading .section-label { color: rgba(255,255,255,.76); }
.contact-form-heading > p:not(.section-label) { color: rgba(255,255,255,.82); }
.contact-form-heading .contact-response-note {
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.34);
  font-size: 13px;
}
.contact-response-note span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.62);
  font-size: 9px;
  letter-spacing: .17em;
}
.contact-form { border-top: 1px solid rgba(255,255,255,.46); }
.form-hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.contact-form label:not(.form-consent) {
  display: grid;
  gap: 14px;
  padding: 27px 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.38);
}
.contact-form label > span:first-child {
  font-size: 13px;
  letter-spacing: .05em;
}
.contact-form label b {
  margin-left: 9px;
  color: rgba(255,255,255,.7);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .1em;
}
.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  padding: 8px 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: 0;
  font-size: 16px;
  line-height: 1.7;
}
.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: calc(100% - 7px) 50%, 100% 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}
.contact-form select option { color: var(--ink); background: #fff; }
.contact-form textarea { resize: vertical; min-height: 180px; }
.contact-form textarea::placeholder { color: rgba(255,255,255,.62); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { box-shadow: 0 2px 0 #fff; }
.form-consent {
  margin: 26px 0 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,.8);
  font-size: 12px;
  line-height: 1.7;
}
.form-consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: #fff;
}
.contact-form-status {
  min-height: 1.8em;
  margin: 18px 0 0;
  color: rgba(255,255,255,.8);
  font-size: 12px;
  line-height: 1.8;
}
.contact-form-status[data-state="success"] { color: #bde0c3; }
.contact-form-status[data-state="error"] { color: #efc3a7; }
.contact-submit {
  width: 100%;
  min-height: 74px;
  padding: 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: #fff;
  border: 1px solid #fff;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.contact-submit:hover {
  color: var(--ink);
  background: var(--sand);
  border-color: var(--sand);
  transform: translateY(-1px);
}
.contact-submit:disabled {
  cursor: wait;
  opacity: .58;
  transform: none;
}

/* Thanks */
.thanks-main { padding-top: 82px; }
.thanks-hero {
  min-height: calc(100svh - 172px);
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(480px, 1.06fr);
  color: #fff;
  background: var(--ink);
}
.thanks-copy {
  position: relative;
  z-index: 2;
  padding: clamp(82px, 9vw, 145px) clamp(40px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.thanks-copy .eyebrow { color: rgba(255,255,255,.75); }
.thanks-state {
  margin: 0 0 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.7);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.thanks-state span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #bde0c3;
  box-shadow: 0 0 18px rgba(189,224,195,.48);
}
.thanks-copy h1 {
  margin: 0;
  font-size: clamp(80px, 9vw, 152px);
  line-height: .86;
  letter-spacing: -.065em;
  font-weight: 500;
}
.thanks-ja {
  margin: 42px 0 0;
  font-size: clamp(27px, 2.5vw, 40px);
  line-height: 1.55;
  letter-spacing: .04em;
}
.thanks-lead {
  margin: 24px 0 0;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  line-height: 2;
}
.thanks-actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.thanks-actions .button {
  min-width: 220px;
  color: var(--ink);
  background: #fff;
}
.thanks-actions .button:hover { color: var(--ink); background: var(--sand); }
.thanks-text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: rgba(255,255,255,.84);
  font-size: 13px;
  text-decoration: none;
}
.thanks-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
}
.thanks-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(16,17,19,.54) 23%, rgba(16,17,19,.08) 67%);
}
.thanks-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .78;
}
.thanks-visual p {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 34px;
  margin: 0;
  color: rgba(255,255,255,.8);
  font-size: 9px;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
}

footer {
  min-height: 90px;
  padding: 0 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 11px;
  border-top: 1px solid var(--line);
}
footer p { margin: 0; text-align: right; }

.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .85s ease, transform .85s ease;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  html { scroll-padding-top: 70px; }
  body.menu-open { overflow: hidden; }
  .site-header {
    grid-template-columns: 1fr auto;
    height: 70px;
    padding: 0 20px;
  }
  .desktop-nav, .header-cta { display: none; }
  .logo { width: 44px; height: 44px; }
  .menu-button {
    display: grid;
    gap: 6px;
    width: 44px; height: 44px;
    place-content: center;
    border: 0; background: transparent;
  }
  .menu-button span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--ink);
    transition: transform .25s ease;
  }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-nav {
    position: fixed;
    inset: 70px 0 auto;
    padding: 30px 22px 38px;
    display: grid;
    gap: 24px;
    background: rgba(247,245,240,.98);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-130%);
    transition: transform .35s ease, opacity .25s ease, visibility 0s linear .35s;
  }
  .mobile-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .mobile-nav a { text-decoration: none; font-size: 22px; }

  .hero {
    height: 400svh;
    min-height: 2400px;
  }
  .hero-sticky { min-height: 600px; }
  .hero-story-scene img { object-position: 67% center; }
  .hero-story-shade {
    background:
      linear-gradient(90deg, rgba(7,8,9,.86) 0%, rgba(7,8,9,.56) 58%, rgba(7,8,9,.16) 100%),
      linear-gradient(180deg, rgba(7,8,9,.18) 0%, rgba(7,8,9,.12) 45%, rgba(7,8,9,.78) 100%);
  }
  .hero-story-content { padding: 104px 22px 42px; }
  .hero-story-brand { font-size: 8px; letter-spacing: .16em; }
  .hero-story-panel { width: calc(100vw - 44px); }
  .hero-story-chapter { margin-bottom: 18px; }
  .hero-story-panel h1,
  .hero-story-panel h2 {
    font-size: clamp(70px, 23vw, 112px);
    line-height: .8;
  }
  .hero-story-panel .hero-story-main-title {
    font-size: clamp(66px, 18vw, 94px);
    line-height: .84;
  }
  .hero-story-ja { margin-top: 28px; font-size: clamp(21px, 6.6vw, 30px); }
  .hero-story-lead { margin-top: 17px; font-size: 12px; }
  .hero-story-cta {
    width: 100%;
    min-height: 54px;
    padding-inline: 0;
    font-size: 9px;
  }
  .hero-story-cta:hover { padding-inline: 8px; }
  .hero-story-progress {
    right: 22px;
    bottom: 112px;
    grid-template-columns: auto minmax(80px, 26vw) auto;
    gap: 10px;
    font-size: 8px;
  }
  .desktop-only { display: none; }
  .section-inner { width: min(100% - 40px, var(--max)); }
  .philosophy { padding: 82px 0 90px; min-height: 620px; }
  .philosophy-grid,
  .journal-line {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .philosophy h2,
  .scope h2,
  .company h2,
  .journal h2 {
    font-size: clamp(34px, 9vw, 56px);
  }
  .philosophy h2 .line-group,
  .scope h2 .line-group,
  .company h2 .line-group,
  .journal h2 .line-group {
    white-space: normal;
    text-wrap: balance;
  }
  .mobile-break { display: block; }
  .mobile-line { display: block; }
  .philosophy-copy {
    padding: 0;
    border: 0;
  }
  .shadow-image {
    width: 100%;
    height: 48%;
    inset: auto 0 0;
    opacity: .28;
  }

  .reveal-wheel { padding: 88px 0 96px; }
  .reveal-wheel-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 72px;
  }
  .reveal-wheel-copy h2 { font-size: clamp(38px, 10.5vw, 58px); }
  .reveal-wheel-copy h2 .line-group { white-space: normal; }
  .reveal-wheel-copy > p:not(.section-label) { margin-top: 28px; font-size: 14px; }
  .reveal-wheel-copy .reveal-wheel-hint { margin-top: 38px; }
  .circular-reveal { width: min(100%, 520px); }
  .reveal-point {
    min-width: 86px;
    min-height: 32px;
    padding-inline: 11px;
    font-size: 7px;
  }
  .circular-reveal-caption { bottom: 14%; font-size: 8px; }

  .forward-features { padding: 88px 0 92px; }
  .forward-features-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .forward-features-heading .section-label { grid-column: auto; }
  .forward-features-heading h2 { font-size: clamp(54px, 15vw, 78px); }
  .forward-features-heading > p:last-child { font-size: 14px; }
  .feature-perspective {
    margin: 60px -10px 64px;
    padding: 12px 10px 34px;
    perspective: 900px;
  }
  .feature-perspective-stage {
    aspect-ratio: 4 / 5;
    transform: skewY(-1deg) rotateX(3deg);
  }
  .feature-stage-ui { padding: 20px; }
  .feature-stage-bar span:last-child { display: none; }
  .feature-stage-content {
    grid-template-columns: 1fr;
    gap: 26px;
    align-content: center;
  }
  .feature-stage-title strong { font-size: clamp(50px, 16vw, 76px); }
  .feature-flow li { min-height: 112px; padding: 13px 10px; }
  .feature-flow strong { font-size: clamp(15px, 4.6vw, 22px); }
  .feature-flow small { font-size: 8px; }
  .feature-stage-capabilities { line-height: 1.6; }
  .forward-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .forward-feature-grid article,
  .forward-feature-grid article:first-child {
    min-height: 214px;
    padding: 26px 20px 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .forward-feature-grid article:nth-child(2n) { border-right: 0; }
  .forward-feature-grid article:nth-last-child(-n + 2) { border-bottom: 0; }
  .forward-feature-grid h3 { margin-top: 28px; }

  .split-panel,
  .reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .split-panel > div {
    padding: 82px 22px;
  }
  .split-panel > img {
    min-height: 360px;
  }
  .reverse > img { order: 2; }
  .reverse > div { order: 1; }

  .journal { padding: 82px 0; }

  .final-grid {
    width: 100%;
    min-height: 740px;
    grid-template-columns: 1fr;
    padding: 86px 22px 0;
  }
  .final-grid h2 {
    font-size: clamp(60px, 17vw, 92px);
  }
  .final-grid img {
    height: 310px;
    align-self: end;
  }

  .lower-main { padding-top: 70px; }
  .lower-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .lower-hero-copy { padding: 75px 22px 68px; }
  .lower-hero h1 { font-size: clamp(62px, 18vw, 90px); }
  .lower-hero h1 .line-group { white-space: normal; }
  .lower-hero-ja { margin-top: 27px; font-size: 22px; }
  .lower-lead { margin-top: 23px; font-size: 14px; }
  .lower-hero > img { height: 330px; min-height: 0; }
  .lower-section { padding: 82px 0; }
  .lower-grid {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .company-intro { grid-template-columns: 1fr; gap: 46px; }
  .company-intro .lower-heading h2 { font-size: clamp(34px, 9.5vw, 50px); }
  .lower-heading h2 { font-size: clamp(34px, 9.5vw, 50px); }
  .lower-heading h2 .line-group { white-space: normal; }
  .lower-heading-note { margin-top: 26px; font-size: 13px; }
  .lower-copy p { font-size: 14px; }
  .lower-copy .lower-copy-lead { font-size: 21px; }
  .lower-list article { grid-template-columns: 1fr; gap: 10px; }
  .service-details { width: calc(100% - 40px); }
  .service-details article { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
  .service-details h2 { font-size: 46px; }
  .service-details p { font-size: 14px; }
  .capability-boxes,
  .journal-boxes { grid-template-columns: 1fr; }
  .capability-boxes article { min-height: 155px; padding: 24px; }
  .profile-table > div { grid-template-columns: 1fr; gap: 8px; }
  .journal-boxes article { min-height: 145px; }
  .lower-next {
    min-height: 180px;
    padding: 40px 22px;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }
  .lower-next a { gap: 28px; font-size: 42px; }

  .contact-main { padding-top: 70px; }
  .contact-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .contact-hero-copy { padding: 74px 22px 70px; }
  .contact-hero h1 { font-size: clamp(66px, 19vw, 96px); }
  .contact-hero h1 .line-group { white-space: normal; }
  .contact-hero-ja { margin-top: 30px; font-size: 25px; }
  .contact-hero-lead { font-size: 14px; }
  .contact-scroll-link { margin-top: 30px; }
  .contact-hero-visual { height: 340px; }
  .contact-hero-visual::after { background: linear-gradient(180deg, rgba(252,251,248,.18), transparent 35%); }
  .contact-hero-visual p { right: 20px; bottom: 22px; }
  .contact-intro,
  .conversation-flow,
  .contact-form-section {
    padding: 82px 20px;
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .contact-intro-heading { position: static; }
  .contact-intro-heading h2,
  .conversation-flow-heading h2,
  .contact-form-heading h2 { font-size: clamp(34px, 9.3vw, 50px); }
  .contact-intro-heading h2 .line-group,
  .conversation-flow-heading h2 .line-group,
  .contact-form-heading h2 .line-group { white-space: normal; }
  .contact-intro-heading > p:last-child,
  .contact-form-heading > p:not(.section-label) { margin-top: 27px; font-size: 13px; }
  .conversation-points { grid-template-columns: 1fr; }
  .conversation-points article {
    min-height: 250px;
    padding: 24px;
  }
  .conversation-points article:nth-child(3) { background: rgba(255,255,255,.14); }
  .conversation-points article:nth-child(4) { background: rgba(233,227,216,.17); }
  .conversation-points h3 { font-size: 27px; }
  .conversation-steps li { grid-template-columns: 45px minmax(0, 1fr); gap: 15px; }
  .conversation-steps h3 { font-size: 27px; }
  .contact-form-section { scroll-margin-top: 70px; }
  .contact-form-heading .contact-response-note { margin-top: 38px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-submit { min-height: 68px; }

  .thanks-main { padding-top: 70px; }
  .thanks-hero {
    min-height: calc(100svh - 146px);
    grid-template-columns: 1fr;
  }
  .thanks-copy { padding: 78px 22px 70px; }
  .thanks-copy h1 { font-size: clamp(68px, 19vw, 98px); }
  .thanks-ja { margin-top: 34px; font-size: 26px; }
  .thanks-lead { color: rgba(255,255,255,.86); }
  .thanks-actions { align-items: flex-start; flex-direction: column; gap: 28px; }
  .thanks-actions .button { width: 100%; }
  .thanks-visual { height: 310px; }
  .thanks-visual::after { background: linear-gradient(180deg, var(--ink) 0%, rgba(16,17,19,.28) 42%, rgba(16,17,19,.04) 100%); }
  .thanks-visual p { right: 20px; bottom: 22px; }

  footer {
    min-height: 76px;
    padding: 0 22px;
  }
}

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