:root {
  --ink: #141413;
  --muted: #6d6961;
  --paper: #f3eee4;
  --paper-2: #e4ddd0;
  --dark: #0e0d0c;
  --dark-soft: #1f1c18;
  --line: rgba(20, 20, 19, 0.18);
  --line-light: rgba(243, 238, 228, 0.24);
  --accent: #b94834;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --section-h-size: clamp(26px, 7.8vw, 52px);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

body.nav-dark .site-header {
  color: var(--paper);
}

img,
video {
  display: block;
  width: 100%;
}

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.7) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 90%, rgba(0,0,0,0.8) 0 1px, transparent 1px);
  background-size: 3px 3px, 4px 4px;
  mix-blend-mode: multiply;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 2px;
  background: transparent;
}

.progress span {
  display: block;
  width: calc(var(--scroll, 0) * 100%);
  height: 100%;
  background: var(--accent);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 14px 0;
  color: var(--ink);
  mix-blend-mode: difference;
}

.brand,
.site-header nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: Inter, Arial, sans-serif;
  font-size: 9px;
  line-height: 1;
  text-transform: uppercase;
}

.brand span:last-child {
  color: currentColor;
  opacity: 0.56;
}

.site-header nav {
  align-items: flex-end;
}

.site-header a {
  transition: opacity 0.35s var(--ease);
}

.site-header a:hover {
  opacity: 0.55;
}

section {
  position: relative;
  overflow: hidden;
}

.statement-inner,
.section-head,
.showcase,
.work-index,
.capability-layout,
.capability-list,
.proof-grid,
.about-head,
.about-layout {
  width: min(100%, 1480px);
  margin-inline: auto;
}

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

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

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 84px 14px 18px;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  transform: translate3d(0, calc(var(--parallax, 0) * 1px), 0) scale(1.04);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.12) 42%, rgba(0,0,0,0.88)),
    linear-gradient(to right, rgba(0,0,0,0.58), rgba(0,0,0,0.12) 64%);
}

.hero-media video,
.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero-copy {
  max-width: 760px;
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 122px;
  margin-bottom: 50px;
}

.eyebrow,
.label {
  margin: 0 0 18px;
  font-family: Inter, Arial, sans-serif;
  font-size: 9px;
  line-height: 1;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.64;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(54px, 20vw, 112px);
  line-height: 0.82;
  font-weight: 400;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

.hero-lead {
  max-width: 34rem;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.85;
}

.hero-lead span,
.statement h2 span,
.statement-note span {
  display: block;
}

.hero-jp {
  margin: 0;
  font-size: clamp(20px, 7.4vw, 34px);
  line-height: 1.14;
  text-align: right;
}

.statement {
  margin-top: 60px;
  padding: 22px 14px;
}

.statement-inner {
  display: grid;
  gap: 20px;
}

.statement-kicker {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-family: Inter, Arial, sans-serif;
  font-size: 9px;
  line-height: 1.2;
  text-transform: uppercase;
}

.statement-main {
  display: grid;
  gap: 16px;
}

.statement h2,
.section-head h2,
.about h2,
.contact h2 {
  margin: 0;
  font-size: var(--section-h-size);
  line-height: 1.1;
  font-weight: 400;
  text-align: left;
}

.statement-note {
  padding-top: 0;
  border-top: 0;
}

.statement-note p {
  max-width: 26rem;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.featured-work,
.sensory-work,
.web-proof,
.about {
  padding: 46px 14px;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.showcase {
  display: grid;
  gap: 24px;
}

.showcase-track {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 6px;
  min-height: 0;
  aspect-ratio: 1 / 1.28;
}

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

.showcase-panel img,
.showcase-panel video {
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.5s var(--ease);
}

.showcase-panel.in-view img,
.showcase-panel.in-view video {
  transform: scale(1.04);
}

.panel-space {
  grid-column: 1;
  grid-row: 1 / 3;
}

.panel-film {
  grid-column: 2;
  grid-row: 1;
}

.panel-food {
  grid-column: 2;
  grid-row: 2;
}

.showcase-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 48%, rgba(0,0,0,0.62));
}

.showcase-panel figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: white;
  font-family: Inter, Arial, sans-serif;
  font-size: 8px;
  line-height: 1.1;
  text-transform: uppercase;
}

.showcase-copy {
  display: grid;
  align-content: start;
  gap: 28px;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line);
}

.case-index {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--muted);
}

.showcase-copy h3 {
  margin: 0;
  font-size: var(--section-h-size);
  line-height: 1.28;
  font-weight: 400;
}

.showcase-copy h3 .h3-lines {
  display: block;
}

.showcase-copy h3 .h3-lines-divider {
  margin-top: 0.5em;
  padding-top: 0.5em;
  border-top: 1px solid var(--line);
}

.showcase-copy p:not(.case-index) {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 2.05;
}

.work-index {
  display: grid;
  gap: 26px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.work-index-title {
  display: grid;
  gap: 28px;
}

.work-index-title h3 {
  margin: 0;
  font-size: clamp(35px, 10vw, 56px);
  line-height: 0.98;
  font-weight: 400;
}

.work-index-title a {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.work-index-title a::after,
.work-row > span:last-child {
  position: relative;
  width: 40px;
}

.work-row > span:last-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.work-row > span:last-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 1px;
  background: currentColor;
  transform-origin: right center;
  transform: translateY(-50%) rotate(30deg);
}


.work-list {
  display: grid;
}

.work-row {
  display: grid;
  grid-template-columns: 34px 92px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
}

.work-row img {
  width: 92px;
  aspect-ratio: 16 / 6.4;
  object-fit: cover;
  background: var(--paper-2);
}

.work-row strong {
  display: block;
  font-family: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(23px, 7vw, 36px);
  line-height: 1.15;
  font-weight: 400;
  text-transform: none;
}

.work-row small {
  display: block;
  margin-top: 6px;
  font-family: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  line-height: 1.2;
  text-transform: none;
}

.work-row > span:first-child,
.work-row > span:nth-last-child(2) {
  color: var(--muted);
}

.work-row > span:nth-last-child(2),
.work-row > span:last-child {
  display: none;
}

.sensory-work {
  padding: 58px 14px 64px;
  border-top: 1px solid var(--line);
}

.sensory-layout {
  display: grid;
  gap: 42px;
  width: min(100%, 1480px);
  margin-inline: auto;
}

.sensory-head {
  display: grid;
  gap: 30px;
}

.sensory-head h2 {
  margin: 0;
  font-size: var(--section-h-size);
  line-height: 1.16;
  font-weight: 400;
}

.sensory-lead {
  margin: 0;
  max-width: 36rem;
  color: var(--ink);
  font-size: 14px;
  line-height: 2.05;
}

.sensory-board {
  display: grid;
  gap: 28px;
}

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

.sensory-media img,
.sensory-media video {
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.4s var(--ease);
}

.sensory-media.in-view img,
.sensory-media.in-view video {
  transform: scale(1);
}

.sensory-film {
  aspect-ratio: 9 / 14;
}

.sensory-photo {
  aspect-ratio: 4 / 5;
}

.sensory-media::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.24));
  pointer-events: none;
}

.sensory-media figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 22px;
  z-index: 2;
  color: white;
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.48em;
  text-align: right;
  text-transform: uppercase;
}

.sensory-film figcaption {
  left: 0;
  right: 0;
  bottom: 52%;
  font-family: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(48px, 16vw, 76px);
  letter-spacing: 0;
  line-height: 0.9;
  text-align: center;
}

.sensory-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.sensory-copy h3 {
  margin: 0;
  font-size: clamp(24px, 5.2vw, 34px);
  line-height: 1.16;
  font-weight: 400;
}

.sensory-copy p:not(.case-index) {
  margin: 0;
  max-width: 24rem;
  color: var(--ink);
  font-size: 14px;
  line-height: 2;
}

.sensory-copy a {
  justify-self: start;
  margin-top: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.sensory-rail {
  display: none;
}

.capability {
  padding: 0 14px 58px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-layout {
  display: grid;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.capability-copy {
  display: grid;
  align-content: center;
  gap: 28px;
  min-height: 420px;
  padding: 56px 0;
}

.capability-copy p:not(.label) {
  max-width: 28rem;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.capability-copy h2 {
  margin: 0;
  font-size: var(--section-h-size);
  line-height: 1.2;
  font-weight: 400;
}

.capability-media {
  width: 100%;
  margin-left: 0;
  overflow: hidden;
  transform: translate3d(0, calc(var(--parallax, 0) * 1px), 0);
}

.capability-media img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  border-top: 0;
}

.capability-item {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 18px;
  border-bottom: 1px solid var(--line);
}

.capability-item:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.capability-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.capability-text {
  display: grid;
  gap: 8px;
}

.capability-text span {
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  line-height: 1;
  color: var(--ink);
}

.capability-text h3 {
  margin: 0;
  font-size: clamp(26px, 8vw, 32px);
  line-height: 1;
  font-weight: 400;
}

.capability-verb {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}

.capability-desc {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}

.capability-item img,
.capability-item video {
  width: 100%;
  margin-top: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--paper-2);
}

.capability-build img,
.capability-grow img {
  object-fit: contain;
  padding: 16px;
  background: #e9e1d5;
}

.br-sp {
  display: none;
}

.proof-grid {
  display: grid;
  gap: 18px;
}

.proof-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #eee8dc;
  padding: 10px;
}

.proof-card img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
  background: #f8f5ee;
}

.proof-banner img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
}

.proof-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0 0;
  color: var(--muted);
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  line-height: 1.3;
  text-transform: uppercase;
}

.about {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  padding-bottom: 72px;
}

/* --- Section top bar --- */
.about-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

.about-eyebrow,
.about-ig {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-ig {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.about-ig a {
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: none;
  transition: color 0.35s var(--ease);
}

.about-ig a:hover {
  color: var(--ink);
}

/* --- Layout --- */
.about-layout {
  display: grid;
  gap: 44px;
}

/* --- Left column --- */
.about-left {
  display: grid;
  align-content: start;
  gap: 32px;
}

.about-left h2 {
  margin: 0;
}

.about-bio {
  display: grid;
  gap: 18px;
  max-width: 30rem;
}

.about-bio p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}

.about-block .label,
.about-meta .label {
  margin: 0 0 14px;
}

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

.svc-row {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.svc-num {
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.svc-name {
  font-family: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 17px;
  line-height: 1.2;
}

.svc-desc {
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  line-height: 1.4;
  color: var(--muted);
  text-align: right;
}

.about-meta {
  display: grid;
  gap: 22px;
}

.about-mono {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--muted);
}

/* --- CTA --- */
.about-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 28px;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  transition: opacity 0.35s var(--ease);
}

.about-btn:hover {
  opacity: 0.82;
}

.about-btn-text {
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: color 0.35s var(--ease);
}

.about-btn-text:hover {
  color: var(--ink);
}

/* --- Right column: Instagram visual journal --- */
.about-right {
  min-width: 0;
}

.ig-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  grid-auto-rows: 1fr;
  gap: 14px;
  aspect-ratio: 1 / 0.92;
}

.ig-item {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--paper-2);
}

.ig-item:nth-child(1) {
  grid-row: 1 / 3;
}

.ig-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.ig-item:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s var(--ease),
    opacity 0.35s var(--ease);
}

.ig-item:hover img {
  transform: scale(1.03);
  opacity: 0.94;
}

.contact {
  min-height: 100svh;
  display: grid;
  gap: 46px;
  padding: 76px 18px 82px;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 22%, rgba(255,255,255,0.72), transparent 30%),
    var(--paper);
  overflow: hidden;
}

.contact-media {
  display: flex;
  align-items: flex-end;
  width: min(88vw, 430px);
  margin: -52px 0 -82px 0;
  overflow: visible;
}

.contact-media img {
  width: 100%;
  height: auto;
}

.contact-copy {
  display: grid;
  align-content: center;
  gap: 32px;
  max-width: 640px;
}

.contact-copy .label {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.contact-copy .label::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.38;
}

.contact h2 {
  max-width: 11em;
  font-size: var(--section-h-size);
  line-height: 1.42;
}

.contact h2 span {
  display: block;
}

.contact h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 34px;
  background: currentColor;
  opacity: 0.48;
}

.contact-copy p:not(.label) {
  max-width: 34rem;
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 2.2;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  width: max-content;
  margin-top: 54px;
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.contact-link span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: Inter, Arial, sans-serif;
  font-size: 20px;
  letter-spacing: 0;
  transition:
    color 0.35s var(--ease),
    background 0.35s var(--ease);
}

.contact-link:hover span {
  color: var(--paper);
  background: var(--ink);
}

.contact-link::after {
  content: none;
}

.contact-instagram {
  display: inline-flex;
  margin-top: 24px;
  transition: opacity 0.35s var(--ease);
}

.contact-instagram:hover {
  opacity: 0.6;
}

.contact-instagram img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.contact-rail {
  display: none;
}

.contact::after {
  content: "";
  position: absolute;
  top: 8%;
  right: 10%;
  bottom: 8%;
  width: min(38vw, 560px);
  opacity: 0.18;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 28% 12%, rgba(20,20,19,0.18), transparent 12%),
    radial-gradient(ellipse at 48% 42%, rgba(20,20,19,0.14), transparent 14%),
    radial-gradient(ellipse at 64% 72%, rgba(20,20,19,0.12), transparent 13%);
  filter: blur(24px);
}

.reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition:
    opacity 1s var(--ease) var(--delay, 0ms),
    transform 1s var(--ease) var(--delay, 0ms);
}

.motion-ready .reveal.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(-1.2%, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(1.2%, -0.8%, 0);
  }
}

@media (min-width: 720px) {
  :root {
    --section-h-size: clamp(30px, 3.5vw, 46px);
  }

  .site-header {
    padding: 24px 30px 0;
  }

  .brand,
  .site-header nav {
    flex-direction: row;
    gap: 18px;
  }

  .hero,
  .statement,
  .featured-work,
  .sensory-work,
  .web-proof,
  .about,
  .capability,
  .contact {
    padding-left: 30px;
    padding-right: 30px;
  }

  .statement-inner {
    grid-template-columns: 0.17fr minmax(0, 1.08fr) 0.34fr;
    align-items: center;
  }

  .about-layout {
    grid-template-columns: 36% 1fr;
    gap: 60px;
    align-items: start;
  }

  .statement-main {
    grid-column: 1 / 3;
    gap: 18px;
  }

  .statement-note {
    padding-top: 0;
    border-top: 0;
    align-self: center;
  }

  .statement h2 {
    font-size: var(--section-h-size);
    max-width: none;
  }

  .hero-lead span,
  .statement h2 span,
  .statement-note span {
    white-space: nowrap;
  }

  .hero-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }

  .hero-jp {
    flex-shrink: 0;
  }

  .section-head h2 {
    font-size: var(--section-h-size);
  }

  .showcase {
    grid-template-columns: 0.5fr minmax(0, 1fr);
    align-items: stretch;
    gap: 34px;
  }

  .showcase-track {
    grid-column: 2;
    grid-row: 1;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 220px 160px;
    align-content: start;
    aspect-ratio: auto;
    min-height: 386px;
    gap: 8px;
  }

  .panel-space {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .panel-film {
    grid-column: 2;
    grid-row: 1;
  }

  .panel-food {
    grid-column: 2;
    grid-row: 2;
  }

  .showcase-copy {
    grid-column: 1;
    grid-row: 1;
    width: auto;
    margin-left: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .showcase-copy h3 {
    font-size: var(--section-h-size);
  }

  .work-index {
    grid-template-columns: 0.2fr minmax(0, 0.8fr);
    gap: 38px;
    margin-top: 18px;
    padding-top: 18px;
  }

  .work-index-title {
    align-content: space-between;
    min-height: 100%;
    padding-bottom: 18px;
  }

  .work-row {
    grid-template-columns: 42px minmax(128px, 0.32fr) minmax(220px, 1fr) minmax(120px, 0.52fr) auto;
    align-items: center;
    gap: 22px;
    padding: 18px 0;
  }

  .work-row img {
    width: 100%;
    min-width: 128px;
  }

  .work-row > span:nth-last-child(2),
  .work-row > span:last-child {
    display: block;
  }

  .work-row > span:last-child {
    justify-self: end;
  }

  .sensory-work {
    padding-top: 76px;
    padding-bottom: 86px;
  }

  .sensory-head {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.7fr);
    align-items: start;
  }

  .sensory-head h2 {
    max-width: 9.5em;
    font-size: var(--section-h-size);
  }

  .sensory-lead {
    padding-left: 38px;
    border-left: 1px solid var(--line);
  }

  .sensory-board {
    grid-template-columns: minmax(250px, 0.78fr) minmax(270px, 0.62fr);
    align-items: start;
    column-gap: 42px;
    row-gap: 46px;
  }

  .sensory-copy-film {
    padding-top: 36px;
  }

  .sensory-copy-photo {
    grid-column: 2;
  }

  .sensory-photo {
    grid-column: 1;
    grid-row: 2;
  }

  .capability-layout {
    grid-template-columns: 1fr 1.05fr;
    align-items: stretch;
  }

  .capability-copy h2 {
    white-space: nowrap;
  }

  .capability-media {
    width: 100%;
  }

  .capability-item {
    gap: 22px;
    padding: 36px 40px;
  }

  .capability-text {
    gap: 10px;
  }

  .capability-item img,
  .capability-item video {
    width: 100%;
    max-width: 340px;
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 20px;
  }

  .contact {
    grid-template-columns: minmax(280px, 40vw) minmax(0, 1fr);
    gap: 48px;
    align-items: stretch;
    padding-top: 74px;
    padding-left: 0;
    padding-bottom: 0;
  }

  .contact-media {
    align-self: end;
    width: min(40vw, 560px);
    max-width: none;
    margin: 0;
  }

  .contact-media img {
    width: 100%;
    min-height: 0;
  }

  .contact-copy {
    padding-right: 22px;
    transform: none;
  }
}

@media (min-width: 1120px) {
  :root {
    --section-h-size: clamp(38px, 2.5vw, 50px);
  }

  .hero,
  .statement,
  .featured-work,
  .sensory-work,
  .web-proof,
  .about,
  .capability,
  .contact {
    padding-left: 56px;
    padding-right: 56px;
  }

  .contact {
    grid-template-columns: minmax(520px, 40vw) minmax(620px, 1fr);
    gap: 68px;
    padding: 0 116px 0 0;
    padding-left: 0;
    align-items: stretch;
  }

  .contact-media {
    align-self: end;
    width: min(40vw, 680px);
    margin: 0;
  }

  .contact-media img {
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .contact-copy {
    position: relative;
    z-index: 2;
    max-width: 980px;
    padding: 116px 0 92px;
    transform: none;
  }

  .contact h2 {
    font-size: var(--section-h-size);
    line-height: 1.42;
  }

  .contact h2 span {
    white-space: nowrap;
  }

  .contact-copy p:not(.label) {
    max-width: 34rem;
    font-size: 16px;
  }

  .contact-link {
    margin-top: 64px;
  }

  .contact-rail {
    position: absolute;
    top: 8%;
    right: 42px;
    bottom: 8%;
    z-index: 2;
    display: grid;
    grid-template-rows: auto 1fr auto;
    justify-items: center;
    gap: 34px;
    color: rgba(20, 20, 19, 0.44);
    font-family: Inter, Arial, sans-serif;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.28em;
    text-transform: uppercase;
  }

  .contact-rail::before {
    content: "";
    grid-row: 2;
    width: 1px;
    height: 100%;
    background: currentColor;
    opacity: 0.48;
  }

  .contact-rail span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }

  .contact-rail span:first-child {
    grid-row: 1;
  }

  .contact-rail span:last-child {
    grid-row: 3;
  }

  .hero-bottom {
    margin-top: 82px;
  }

  h1 {
    font-size: 142px;
  }

  h1 span {
    display: inline;
  }

  h1 span::after {
    content: " ";
  }

  .section-head {
    grid-template-columns: 0.22fr 1fr;
    align-items: start;
  }

  .section-head h2 {
    max-width: 760px;
  }

  .web-proof .section-head h2 {
    max-width: none;
    white-space: nowrap;
  }

  .proof-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .featured-work {
    padding-top: 64px;
    padding-bottom: 34px;
  }

  .sensory-work {
    padding: 84px 56px 96px 112px;
  }

  .sensory-rail {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 56px;
    display: grid;
    grid-template-rows: 1fr auto auto;
    justify-items: center;
    gap: 84px;
    width: 1px;
    padding: 44px 0;
    border-left: 1px solid var(--line);
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.28em;
    text-transform: uppercase;
  }

  .sensory-rail span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }

  .sensory-rail span:first-child {
    align-self: center;
  }

  .sensory-rail span:last-child::after {
    content: "";
    display: block;
    width: 1px;
    height: 34px;
    margin: 14px auto 0;
    background: currentColor;
    opacity: 0.55;
  }

  .sensory-layout {
    gap: 76px;
  }

  .sensory-head {
    grid-template-columns: minmax(420px, 0.92fr) minmax(430px, 0.74fr);
    gap: 78px;
  }

  .sensory-head h2 {
    font-size: var(--section-h-size);
  }

  .sensory-lead {
    align-self: end;
    max-width: 40rem;
    padding-left: 54px;
    font-size: 15px;
  }

  .sensory-board {
    grid-template-columns: minmax(280px, 0.74fr) minmax(360px, 0.7fr) minmax(360px, 1.06fr);
    grid-template-rows: auto auto;
    align-items: end;
    column-gap: 46px;
    row-gap: 82px;
  }

  .sensory-film {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .sensory-copy-film {
    grid-column: 2;
    grid-row: 1;
    padding-top: 78px;
  }

  .sensory-copy-photo {
    grid-column: 2;
    grid-row: 2;
  }

  .sensory-photo {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: end;
  }

  .sensory-photo img {
    object-position: center;
  }

  .capability {
    padding-bottom: 70px;
  }

  .capability-copy {
    min-height: 520px;
    padding: 76px 0;
  }

  .capability-copy h2 {
    font-size: var(--section-h-size);
  }

  .capability-media img {
    min-height: 520px;
  }

  .capability-list {
    width: min(100%, 1640px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-bottom: 0;
  }

  .capability-item {
    gap: 22px;
    padding: 8px 44px 0;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .capability-item:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .capability-item:last-child {
    border-right: 0;
  }

  .showcase {
    grid-template-columns: 0.38fr minmax(0, 0.62fr);
    gap: 58px;
  }

  .showcase-track {
    grid-template-columns: 1.42fr 1fr;
    grid-template-rows: 322px 226px;
    min-height: 556px;
    gap: 8px;
  }

  .panel-space {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .panel-film {
    grid-column: 2;
    grid-row: 1;
  }

  .panel-food {
    grid-column: 2;
    grid-row: 2;
  }

  .showcase-copy {
    gap: 48px;
    padding: 42px 0 34px;
  }

  .showcase-copy h3 {
    font-size: var(--section-h-size);
  }

  .showcase-copy p:not(.case-index) {
    max-width: 24rem;
    font-size: 14px;
  }

  .work-index {
    grid-template-columns: 0.2fr minmax(0, 0.8fr);
    gap: 48px;
    margin-top: 14px;
    padding-top: 16px;
  }

  .work-index-title h3 {
    font-size: 44px;
  }

  .work-row {
    grid-template-columns: 44px clamp(150px, 15vw, 204px) minmax(220px, 1fr) minmax(150px, 0.44fr) 44px;
    gap: clamp(22px, 2.2vw, 34px);
    padding: 14px 0;
  }

  .work-row img {
    min-width: 0;
    width: 100%;
    aspect-ratio: 16 / 6.4;
  }

  .work-row strong {
    font-size: 34px;
  }

  .work-row small {
    font-size: 18px;
  }

  .work-row > span:last-child {
    width: 44px;
  }
}

/* Shorter Selected Works rows on phones */
@media (max-width: 719px) {
  .br-sp {
    display: inline;
  }

  /* Footer Instagram logo: center on mobile */
  .contact-instagram {
    justify-self: center;
  }

  /* Section 06 portfolio: horizontal swipe carousel that loops infinitely */
  .proof-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    /* full-bleed beyond the section's 14px side padding */
    margin: 0 -14px;
    padding: 0 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .proof-grid::-webkit-scrollbar {
    display: none;
  }

  .proof-card {
    flex: 0 0 84%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .proof-card.is-clone {
    /* clones exist only to make the loop seamless */
    pointer-events: none;
  }

  .hero-bottom {
    margin-top: 88px;
    gap: 14px;
  }

  h1 {
    font-size: clamp(46px, 16vw, 88px);
  }

  .hero-jp {
    font-size: clamp(18px, 5.4vw, 24px);
    text-align: left;
  }

  .capability-media {
    width: min(100%, 320px);
    margin: 0 auto;
  }

  .capability-media img {
    min-height: 0;
    max-height: 240px;
  }

  .work-row {
    grid-template-columns: 18px 64px minmax(0, 1fr);
    gap: 18px;
    padding: 11px 0;
  }

  .work-row img {
    width: 100%;
  }

  .work-row strong {
    font-size: clamp(19px, 5.6vw, 27px);
  }

  .work-row small {
    margin-top: 4px;
    font-size: 12px;
  }
}
