﻿@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&family=Oswald:wght@500;700&display=swap");

:root {
  --black: #101010;
  --ivory: #f2efe8;
  --soft-ivory: #f7f4ee;
  --graphite: #252525;
  --metal: #a8adb2;
  --champagne: #c6b59a;
  --blue: #315beb;
  --line: rgba(168, 173, 178, .35);
  --dark-line: rgba(242, 239, 232, .16);
  --light-line: rgba(16, 16, 16, .12);
  --max: 1180px;
  --ease: 700ms cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--soft-ivory);
  color: var(--black);
  font-family: "Noto Sans SC", Inter, Arial, sans-serif;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  color: var(--ivory);
  transition: background var(--ease), border-color var(--ease), backdrop-filter var(--ease), color var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(247, 244, 238, .88);
  border-color: rgba(16, 16, 16, .1);
  color: var(--black);
  backdrop-filter: blur(18px);
}
.nav-inner {
  max-width: 1380px;
  margin: auto;
  min-height: 78px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo { display: grid; gap: 1px; min-width: 128px; }
.logo b { font-family: Oswald, sans-serif; font-size: 25px; line-height: 1; letter-spacing: .03em; }
.logo span { color: currentColor; opacity: .58; font-size: 12px; }
.nav-links { display: flex; align-items: center; gap: 24px; color: rgba(242,239,232,.78); font-size: 14px; }
.nav-links a:hover { color: var(--ivory); }
.nav.scrolled .nav-links { color: rgba(16, 16, 16, .68); }
.nav.scrolled .nav-links a:hover { color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
body[data-page="home"] .nav-inner {
  max-width: var(--max);
  min-height: 82px;
  padding: 0 24px;
}
body[data-page="home"] .logo {
  gap: 2px;
  min-width: 146px;
}
body[data-page="home"] .logo b {
  font-size: 30px;
}
body[data-page="home"] .logo span {
  opacity: .68;
  font-size: 13px;
}
body[data-page="home"] .nav-links {
  gap: 26px;
  color: rgba(242,239,232,.88);
  font-size: 15px;
}
body[data-page="home"] .nav .btn.primary {
  color: var(--ivory);
  background: rgba(16,16,16,.24);
  border-color: rgba(198,181,154,.64);
}
body[data-page="home"] .nav .btn.primary:hover {
  color: #fff;
  background: rgba(49,91,235,.2);
  border-color: rgba(49,91,235,.78);
}
body[data-page="home"] .nav.scrolled .btn.primary {
  color: var(--black);
  background: rgba(255,255,255,.34);
  border-color: rgba(16,16,16,.22);
}
body[data-page="home"] .nav.scrolled .btn.primary:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; color: var(--ivory); }
.nav.scrolled .menu-toggle { color: var(--black); border-color: var(--light-line); }
.menu-toggle span { display: block; width: 18px; height: 1px; background: currentColor; margin: 5px auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--light-line);
  color: var(--black);
  background: transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}
.btn:hover { border-color: currentColor; transform: translateY(-1px); }
.hero .btn,
.page-hero .btn,
footer .btn,
.section:not(.ivory) .btn {
  border-color: var(--dark-line);
  color: var(--ivory);
}
.hero .btn:hover,
.page-hero .btn:hover,
footer .btn:hover,
.section:not(.ivory) .btn:hover { border-color: rgba(242, 239, 232, .78); }
.btn.primary { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn.ivory { background: var(--ivory); color: var(--black); border-color: var(--ivory); }
.btn.small { min-height: 38px; padding-inline: 14px; font-size: 13px; }
.nav-actions .btn.small[data-lang-switch] {
  color: #fff;
  border-color: rgba(242,239,232,.42);
  background: rgba(16,16,16,.26);
}
.nav-actions .btn.small[data-lang-switch]:hover,
.nav-actions .btn.small[data-lang-switch]:focus-visible {
  color: #fff;
  border-color: rgba(242,239,232,.76);
  background: rgba(16,16,16,.42);
}
.nav.scrolled .nav-actions .btn.small[data-lang-switch] {
  color: #fff;
  border-color: rgba(16,16,16,.38);
  background: rgba(16,16,16,.58);
}
.nav.scrolled .nav-actions .btn.small[data-lang-switch]:hover,
.nav.scrolled .nav-actions .btn.small[data-lang-switch]:focus-visible {
  color: #fff;
  border-color: rgba(49,91,235,.7);
  background: rgba(49,91,235,.76);
}
.section.ivory .btn {
  color: var(--black);
  border-color: rgba(16, 16, 16, .18);
}
.section.ivory .btn:hover {
  border-color: var(--black);
}
.section.ivory .btn.primary,
.section.ivory .filterbar button[aria-pressed="true"] {
  color: #fff;
}

.hero {
  min-height: 96vh;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background:
    linear-gradient(90deg, #15120f, #1f1b17 48%, #2f2a24 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  display: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--hero-image) var(--hero-pos, center right) / cover no-repeat;
  opacity: 0;
  filter: brightness(1.1) contrast(1.03) saturate(.96);
  transform: scale(1.018);
  transition: opacity 1100ms ease, transform 7000ms ease;
  will-change: opacity, transform;
}
.hero-bg.active {
  opacity: 1;
  transform: scale(1);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16,16,16,var(--hero-overlay, .88)) 0%, rgba(21,18,15,.8) 39%, rgba(36,31,26,.5) 59%, rgba(34,29,24,.06) 100%),
    linear-gradient(0deg, rgba(16,16,16,.24), rgba(16,16,16,.03) 48%, rgba(198,181,154,.06));
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0 88px;
}
.kicker, .eyebrow {
  white-space: pre-line;
  color: var(--champagne);
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: .08em;
}
h1, h2, h3 {
  margin: 0;
  font-weight: 500;
}
h1 {
  max-width: 820px;
  font-size: clamp(42px, 6.4vw, 88px);
  line-height: 1.02;
  margin-top: 24px;
}
.hero h1 {
  color: var(--ivory);
  text-shadow: 0 2px 22px rgba(0, 0, 0, .42);
}
h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.12;
}
h3 { font-size: clamp(23px, 2.8vw, 38px); line-height: 1.15; }
p { color: rgba(16,16,16,.66); line-height: 1.8; }
.hero p,
.page-hero p,
.section:not(.ivory) p,
footer p { color: rgba(242,239,232,.72); }
p, h1, h2, h3, li, label, .btn { overflow-wrap: break-word; }
.display-title {
  max-width: 940px;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
}
.grid .display-title { max-width: 100%; }
.split-copy .display-title { max-width: 620px; }
.page-hero .display-title { max-width: 980px; }
.lead { max-width: 720px; font-size: clamp(16px, 1.5vw, 19px); margin: 26px 0 34px; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .display-title {
  max-width: min(56vw, 740px);
  margin-top: 30px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "Songti SC", SimSun, serif;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: auto;
  text-shadow: none;
}
.hero .display-title .mobile-break {
  display: none;
}
.hero .display-title .hero-intro-line,
.hero .display-title .hero-focus-line {
  display: block;
}
.hero .display-title .hero-intro-line {
  font-size: clamp(40px, 3.4vw, 48px);
  font-weight: 500;
  line-height: 1.22;
  color: rgba(247,244,238,.94);
}
.hero .display-title .hero-focus-line {
  margin-top: 32px;
  font-size: clamp(58px, 4.8vw, 68px);
  font-weight: 600;
  line-height: 1.18;
  color: #DDC9A9;
}
.hero-signature {
  margin-top: 40px;
  color: var(--champagne);
  font-family: Oswald, sans-serif;
  font-size: 18px;
  letter-spacing: .08em;
}
.hero .lead {
  max-width: min(52vw, 700px);
  margin-top: 34px;
  margin-bottom: 36px;
  color: rgba(242,239,232,.8);
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.86;
}
.hero .actions .btn {
  min-height: 52px;
  padding-inline: 30px;
}
.hero .actions .btn.ivory:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}
.hero .actions .btn:not(.ivory) {
  background: rgba(16,16,16,.18);
  border-color: rgba(242,239,232,.44);
}
.hero .actions .btn:not(.ivory):hover {
  background: rgba(49,91,235,.18);
  border-color: rgba(49,91,235,.78);
}
.hero-carousel {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 42px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(242,239,232,.82);
}
.hero-cycle {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(242,239,232,.32);
  border-radius: 2px;
  background: rgba(16,16,16,.18);
  color: inherit;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.hero-cycle:hover,
.hero-cycle:focus-visible {
  color: #fff;
  border-color: rgba(49,91,235,.72);
  background: rgba(49,91,235,.16);
}
.hero-counter {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 8px;
  min-width: 90px;
  font-family: Oswald, sans-serif;
  font-size: 14px;
  letter-spacing: .08em;
}
.hero-counter i {
  grid-column: 1 / -1;
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(242,239,232,.24);
  overflow: hidden;
}
.hero-counter i::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--champagne);
  transform-origin: left center;
  transform: scaleX(0);
}
.hero-counter i {
  animation: heroProgress 7000ms linear forwards;
}
.hero-counter .current {
  color: var(--champagne);
}
@keyframes heroProgress {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}
.actions.compact {
  margin-top: 20px;
}

main { overflow: hidden; background: var(--soft-ivory); }
.section {
  padding: 128px 0;
  background: var(--black);
  color: var(--ivory);
}
.section.ivory {
  background:
    linear-gradient(180deg, rgba(255,255,255,.28), rgba(198,181,154,.08)),
    var(--ivory);
  color: var(--black);
}
body[data-page="private"] main > .section:nth-of-type(2),
body[data-page="private"] main > .section:nth-of-type(4),
body[data-page="about"] main > .section,
body[data-page="contact"] main > .section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.34), rgba(198,181,154,.1)),
    var(--soft-ivory);
  color: var(--black);
}
.section.ivory p, .section.ivory .muted { color: rgba(16,16,16,.64); }
body[data-page="private"] main > .section:nth-of-type(2) p,
body[data-page="private"] main > .section:nth-of-type(4) p,
body[data-page="about"] main > .section p,
body[data-page="about"] main > .section .muted,
body[data-page="contact"] main > .section p,
body[data-page="contact"] main > .section .muted {
  color: rgba(16,16,16,.64);
}
body[data-page="private"] main > .section:nth-of-type(2) .btn,
body[data-page="private"] main > .section:nth-of-type(4) .btn,
body[data-page="about"] main > .section .btn,
body[data-page="contact"] main > .section .btn {
  color: var(--black);
  border-color: var(--light-line);
}
body[data-page="private"] main > .section:nth-of-type(2) .btn.primary,
body[data-page="private"] main > .section:nth-of-type(4) .btn.primary,
body[data-page="about"] main > .section .btn.primary,
body[data-page="contact"] main > .section .btn.primary {
  color: #fff;
  border-color: var(--blue);
}
.wrap { width: min(var(--max), calc(100% - 48px)); margin: auto; }
.grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 28px; }
.grid > * { min-width: 0; }
.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 28px;
  align-items: start;
}
.split-copy > *:nth-child(2) { margin-left: 8.333%; }
.span-4 { grid-column: span 4; }
.span-2 { grid-column: span 2; }
.span-3 { grid-column: span 3; }
.span-5 { grid-column: span 5; }
.span-6 { grid-column: span 6; }
.span-7 { grid-column: span 7; }
.span-8 { grid-column: span 8; }
.span-9 { grid-column: span 9; }
.push-1 { grid-column-start: auto; }
.muted { color: var(--metal); }
.rule { border-top: 1px solid currentColor; padding-top: 24px; }
.section.ivory .rule { border-color: var(--light-line); }
.section:not(.ivory) .rule { border-color: var(--dark-line); }

.story-map { margin-top: 56px; align-items: stretch; }
.list-panel { border-top: 1px solid currentColor; padding-top: 20px; }
.list-panel strong { display: block; margin-bottom: 20px; font-family: Oswald, sans-serif; font-size: 26px; }
.list-panel ul, .plain-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.list-panel li, .plain-list li { padding-bottom: 14px; border-bottom: 1px solid var(--line); color: inherit; }
.section.ivory .list-panel li,
.section.ivory .plain-list li,
body[data-page="private"] main > .section:nth-of-type(4) .plain-list li,
body[data-page="contact"] main > .section .plain-list li {
  border-color: var(--light-line);
}
.arrow { align-self: center; justify-self: center; color: var(--blue); font-family: Oswald, sans-serif; font-size: 54px; }

.business-hero {
  min-height: clamp(680px, calc(100vh - 20px), 800px);
  padding: 118px 0 70px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 84% 54%, rgba(198, 181, 154, .1), transparent 30%),
    linear-gradient(90deg, rgba(16,16,16,.96) 0%, rgba(22,21,20,.92) 37%, rgba(22,21,20,.62) 56%, rgba(22,21,20,.96) 100%),
    #181716;
  color: var(--ivory);
  border-bottom: 1px solid var(--dark-line);
  overflow: hidden;
}
.business-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
}
.business-hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-top: 38px;
}
.business-hero .reveal {
  opacity: 1;
  transform: none;
}
.business-hero .eyebrow {
  color: rgba(198, 181, 154, .72);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .12em;
  line-height: 1.5;
}
.business-hero-intro {
  margin: 30px 0 0;
  color: rgba(242, 239, 232, .74);
  font-size: clamp(26px, 2.1vw, 30px);
  font-weight: 400;
  line-height: 1.4;
}
.business-hero .display-title {
  max-width: 620px;
  margin-top: 14px;
  color: rgba(242, 239, 232, .96);
  font-size: clamp(48px, 4.1vw, 54px);
  font-weight: 450;
  line-height: 1.24;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}
.business-hero .display-title span {
  color: var(--champagne);
}
.business-hero-lead {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(242, 239, 232, .66);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.82;
}
.business-hero-signature {
  max-width: 580px;
  margin: 26px 0 0;
  color: rgba(198, 181, 154, .8);
  font-family: Oswald, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.6;
}
.business-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 34px;
  padding: 0 28px;
  border: 1px solid rgba(242, 239, 232, .34);
  border-radius: 4px;
  background: rgba(16,16,16,.08);
  color: rgba(242, 239, 232, .94);
  font-size: 15px;
  font-weight: 500;
  transition: background 260ms ease, border-color 260ms ease, color 260ms ease;
}
.business-hero-cta span {
  transition: transform 260ms ease;
}
.business-hero-cta:hover,
.business-hero-cta:focus-visible {
  background: rgba(242,239,232,.08);
  border-color: rgba(242,239,232,.62);
}
.business-hero-cta:hover span,
.business-hero-cta:focus-visible span {
  transform: translateX(4px);
}
.business-hero-visual {
  position: absolute;
  z-index: 1;
  inset: -118px calc((100vw - min(var(--max), calc(100vw - 48px))) / -2) -70px 38%;
  min-height: 0;
  margin: 0;
  overflow: visible;
  pointer-events: none;
}
.business-hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 6% 4% 8%;
  border: 1px solid rgba(198,181,154,.1);
  transform: translate(5%, 3%) rotate(-4deg);
  opacity: .72;
}
.business-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 58% center;
  filter: brightness(.72) contrast(1.02) saturate(.88);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,.58) 16%, #000 36%, #000 80%, rgba(0,0,0,.45) 100%),
    radial-gradient(ellipse at 65% 52%, #000 0%, #000 54%, rgba(0,0,0,.72) 72%, transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,.58) 16%, #000 36%, #000 80%, rgba(0,0,0,.45) 100%),
    radial-gradient(ellipse at 65% 52%, #000 0%, #000 54%, rgba(0,0,0,.72) 72%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.business-what {
  padding: clamp(104px, 8.4vw, 124px) 0 clamp(104px, 8.2vw, 120px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.28), rgba(198,181,154,.08)),
    var(--ivory);
  color: var(--black);
}
.business-what .wrap {
  max-width: 1180px;
}
.business-what-head {
  display: grid;
  grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
  gap: clamp(42px, 5.8vw, 68px);
  align-items: center;
}
.business-what .eyebrow {
  color: rgba(122,111,94,.76);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
}
.business-what .display-title {
  max-width: 560px;
  margin-top: 18px;
  color: #191918;
  font-size: clamp(40px, 3.25vw, 44px);
  font-weight: 460;
  line-height: 1.31;
  word-break: keep-all;
  overflow-wrap: normal;
}
.business-what-head > p {
  max-width: 460px;
  margin: 48px 0 0;
  color: rgba(25,25,24,.62);
  font-size: 15px;
  line-height: 1.72;
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: anywhere;
}
.business-what-grid {
  margin-top: clamp(62px, 5.7vw, 74px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(56px, 7vw, 82px);
}
.business-what-item {
  position: relative;
  padding-top: 28px;
}
.business-what-item:nth-child(2) {
  margin-top: 12px;
}
.business-what-rule {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: rgba(25,25,24,.12);
}
.business-what-meta {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.business-what-meta span {
  color: rgba(201,182,154,.9);
  font-family: Oswald, sans-serif;
  font-size: clamp(56px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
}
.business-what-meta em {
  color: rgba(25,25,24,.58);
  font-family: Oswald, sans-serif;
  font-size: 11px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: .13em;
}
.business-what-item h3 {
  max-width: 460px;
  margin: 30px 0 0;
  color: #1a1918;
  font-size: clamp(24px, 2.05vw, 27px);
  font-weight: 450;
  line-height: 1.4;
  word-break: keep-all;
  overflow-wrap: normal;
}
.business-what-item h3 strong {
  display: inline-block;
  margin-top: 9px;
  color: #a88f6c;
  font-size: clamp(30px, 2.55vw, 33px);
  font-weight: 500;
  line-height: 1.3;
}
.business-what-item h3 b {
  color: #b39a77;
  font-weight: 400;
}
.business-what-item p {
  max-width: 450px;
  margin: 22px 0 0;
  color: rgba(25,25,24,.66);
  font-size: 15px;
  line-height: 1.74;
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: anywhere;
}

.business-why {
  padding: clamp(120px, 9.2vw, 140px) 0 clamp(130px, 9.8vw, 150px);
  background: #171716;
  color: var(--ivory);
}
.business-why .wrap {
  max-width: 1180px;
}
.business-why-head {
  display: grid;
  grid-template-columns: minmax(0, 56fr) minmax(0, 44fr);
  gap: clamp(44px, 6vw, 72px);
  align-items: start;
}
.business-why .eyebrow {
  color: rgba(201,182,154,.78);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.business-why .display-title {
  max-width: 680px;
  margin-top: 20px;
  color: #f2efe8;
  font-size: clamp(40px, 3.2vw, 44px);
  font-weight: 460;
  line-height: 1.32;
  word-break: keep-all;
  overflow-wrap: normal;
}
.business-why-head > p {
  max-width: 470px;
  margin: 56px 0 0;
  color: rgba(242,239,232,.64);
  font-size: 15px;
  line-height: 1.78;
}
.business-why-grid {
  margin-top: clamp(82px, 7vw, 98px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(48px, 5.6vw, 64px);
}
.business-why-item {
  position: relative;
  padding: 30px 0 0;
}
.business-why-item + .business-why-item {
  padding-left: clamp(30px, 3vw, 42px);
  border-left: 1px solid rgba(242,239,232,.11);
}
.business-why-rule {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: rgba(242,239,232,.13);
}
.business-why-number {
  color: rgba(201,182,154,.86);
  font-family: Oswald, sans-serif;
  font-size: clamp(52px, 4.6vw, 60px);
  font-weight: 360;
  line-height: 1;
}
.business-why-label {
  margin: 18px 0 0;
  color: rgba(201,182,154,.72);
  font-family: Oswald, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}
.business-why-item h3 {
  margin: 22px 0 0;
  color: #f2efe8;
  font-size: clamp(27px, 2.2vw, 31px);
  font-weight: 460;
  line-height: 1.32;
}
.business-why-item h3 + p {
  max-width: 330px;
  margin: 22px 0 0;
  color: rgba(242,239,232,.66);
  font-size: 15px;
  line-height: 1.82;
}
.business-why-item:hover .business-why-rule,
.business-why-item:focus-within .business-why-rule {
  background: rgba(201,182,154,.24);
}

.business-selected-work {
  padding: clamp(120px, 9.4vw, 140px) 0 clamp(132px, 10vw, 156px);
  background: var(--ivory);
  color: var(--black);
}
.business-selected-work .wrap {
  max-width: 1180px;
}
.business-work-head {
  display: grid;
  grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
  gap: clamp(44px, 6vw, 74px);
  align-items: end;
}
.business-work-head .eyebrow {
  color: rgba(122,111,94,.78);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.business-work-head .display-title {
  margin-top: 18px;
  color: #191918;
  font-size: clamp(36px, 3vw, 42px);
  font-weight: 460;
  line-height: 1.3;
}
.business-work-head > p {
  max-width: 550px;
  margin: 0;
  color: rgba(25,25,24,.62);
  font-size: 15px;
  line-height: 1.72;
}
.business-work-layout {
  margin-top: clamp(66px, 6.2vw, 82px);
}
.business-work-side {
  margin-top: clamp(78px, 7.4vw, 96px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(46px, 5.6vw, 72px);
}
.business-work-item {
  display: grid;
  gap: 26px;
}
.business-work-item figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(25,25,24,.14);
  background: #ded9cf;
}
.business-work-item figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(.96) brightness(.98);
  transition: transform .42s ease, filter .42s ease;
}
.business-work-item:hover figure img {
  transform: scale(1.012);
  filter: saturate(.94) contrast(.98) brightness(1);
}
.business-work-item.is-featured figure {
  aspect-ratio: 16 / 9;
}
.business-work-side .business-work-item figure {
  aspect-ratio: 4 / 3;
}
.business-work-item.is-featured figure img {
  object-position: center center;
}
.business-work-side .business-work-item:nth-child(1) figure img {
  object-position: center center;
}
.business-work-side .business-work-item:nth-child(2) figure img {
  object-position: center center;
}
.business-work-copy {
  max-width: 520px;
}
.business-work-item.is-featured .business-work-copy {
  max-width: 620px;
}
.business-work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: baseline;
}
.business-work-meta span {
  color: rgba(174,151,116,.88);
  font-family: Oswald, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
}
.business-work-meta em {
  color: rgba(25,25,24,.54);
  font-family: Oswald, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: .13em;
}
.business-work-item h3 {
  margin: 14px 0 0;
  color: #181817;
  font-size: clamp(22px, 1.9vw, 26px);
  font-weight: 460;
  line-height: 1.34;
}
.business-work-item.is-featured h3 {
  font-size: clamp(26px, 2.2vw, 30px);
}
.business-work-item p {
  max-width: 430px;
  margin: 12px 0 0;
  color: rgba(25,25,24,.62);
  font-size: 15px;
  line-height: 1.68;
}

.solution { padding: 64px 0; border-top: 1px solid var(--dark-line); }
.solution:nth-child(1) { grid-template-columns: 1.2fr .8fr; }
.solution-number { font-family: Oswald, sans-serif; color: var(--champagne); font-size: clamp(54px, 8vw, 120px); line-height: .8; }
.visual {
  min-height: 360px;
  border: 1px solid rgba(242,239,232,.2);
  background:
    linear-gradient(135deg, rgba(49,91,235,.2), transparent 34%),
    linear-gradient(160deg, #303030, #121212 58%, #413d36);
  position: relative;
  overflow: hidden;
  filter: saturate(.92);
}
.visual::before {
  content: "";
  position: absolute;
  width: 48%;
  aspect-ratio: 4 / 5;
  left: 16%;
  top: 13%;
  background: var(--ivory);
  opacity: .88;
}
.visual::after {
  content: "";
  position: absolute;
  width: 38%;
  aspect-ratio: 1;
  right: 13%;
  bottom: 14%;
  border: 1px solid rgba(242,239,232,.42);
  background: linear-gradient(135deg, rgba(198,181,154,.08), rgba(49,91,235,.24));
}
.solution:nth-child(1) .visual {
  background: url("memory-commission-wide.jpg") center / cover no-repeat;
}
.solution:nth-child(1) .visual::before,
.solution:nth-child(1) .visual::after {
  display: none;
}
.solution:nth-child(2) .visual {
  aspect-ratio: 4 / 3;
  min-height: 0;
  background: url("brand-experience-display-v3.png") center / cover no-repeat;
}
.solution:nth-child(2) .visual::before,
.solution:nth-child(2) .visual::after {
  display: none;
}
.visual.wide::before { width: 58%; aspect-ratio: 16 / 10; top: 22%; }
.solution:nth-child(3) .visual {
  aspect-ratio: 1487 / 1058;
  min-height: 0;
  background:
    url("prototype-display-v2.png") center / cover no-repeat;
}
.solution:nth-child(3) .visual::before,
.solution:nth-child(3) .visual::after {
  display: none;
}
.visual.tall { min-height: 500px; }

.what-we-do {
  padding-top: 110px;
  padding-bottom: 112px;
  scroll-margin-top: 82px;
}
.what-we-do .wrap {
  max-width: 1240px;
}
.what-head {
  align-items: end;
}
.what-head .display-title {
  max-width: 660px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(52px, 5.2vw, 70px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}
.what-head p {
  max-width: 520px;
  margin: 0;
  color: rgba(16,16,16,.68);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.82;
}
.entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 3.2vw, 40px);
  margin-top: 70px;
}
.entry-panel {
  display: block;
  color: var(--black);
}
.entry-panel:hover .entry-image img {
  transform: scale(1.02);
}
.entry-panel:hover .entry-link::after {
  transform: scaleX(1);
}
.entry-panel:hover .entry-link {
  color: var(--blue);
}
.entry-image {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-top: 1px solid rgba(16,16,16,.22);
  background: rgba(16,16,16,.05);
}
.entry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1), filter 700ms ease;
}
.entry-copy {
  padding-top: 28px;
}
.entry-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(16,16,16,.16);
  color: rgba(16,16,16,.54);
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
}
.entry-meta b {
  color: var(--champagne);
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: .9;
  letter-spacing: .02em;
}
.entry-panel h3 {
  max-width: 620px;
  margin: 20px 0 16px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(30px, 2.7vw, 36px);
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: 0;
}
.entry-panel p {
  margin: 0;
  color: rgba(16,16,16,.68);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.78;
}
.entry-tags {
  margin-top: 20px !important;
  color: rgba(16,16,16,.58) !important;
  font-size: clamp(14px, 1.05vw, 16px) !important;
  line-height: 1.75 !important;
}
.entry-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 18px;
  color: rgba(16,16,16,.86);
  font-size: 16px;
  font-weight: 500;
}
.entry-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(.32);
  transform-origin: left center;
  transition: transform 260ms ease;
}
.private-process .display-title {
  max-width: 100%;
}
.private-process {
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
}
.private-process > * {
  grid-column: auto !important;
  width: auto;
}
.private-process .visual.tall {
  aspect-ratio: 1448 / 1086;
  min-height: 0;
  border: 1px solid rgba(16, 16, 16, .34);
  box-shadow:
    0 0 0 1px rgba(242, 239, 232, .62) inset,
    0 0 0 6px rgba(16, 16, 16, .04);
  background: url("private-process-character.png") center / cover no-repeat;
}
.private-process .visual.tall::before,
.private-process .visual.tall::after {
  display: none;
}

.private-faq {
  padding-top: clamp(86px, 7vw, 112px);
  padding-bottom: clamp(108px, 8vw, 136px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .34), rgba(198, 181, 154, .1)),
    var(--soft-ivory);
  border-top: 1px solid rgba(16, 16, 16, .08);
}
.private-faq .wrap {
  max-width: 1120px;
}
.private-faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, .35fr) minmax(0, .65fr);
  gap: clamp(48px, 7vw, 86px);
  align-items: start;
}
.private-faq-head .eyebrow {
  color: rgba(122, 111, 94, .72);
  font-size: 12px;
  letter-spacing: .1em;
}
.private-faq-head .display-title {
  max-width: 370px;
  margin-top: 14px;
  color: #1c1b19;
  font-size: clamp(32px, 3.1vw, 40px);
  font-weight: 400;
  line-height: 1.35;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}
.private-faq-list {
  border-top: 1px solid rgba(16, 16, 16, .18);
}
.private-faq-item {
  border-bottom: 1px solid rgba(16, 16, 16, .16);
}
.private-faq-item summary {
  list-style: none;
  min-height: 74px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 28px;
  gap: 18px;
  align-items: center;
  cursor: pointer;
  color: #1c1b19;
}
.private-faq-item summary::-webkit-details-marker {
  display: none;
}
.private-faq-number {
  color: rgba(122, 111, 94, .7);
  font-family: Oswald, sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
}
.private-faq-question {
  font-size: clamp(18px, 1.45vw, 21px);
  font-weight: 450;
  line-height: 1.45;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.private-faq-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  justify-self: end;
  color: rgba(28, 27, 25, .72);
}
.private-faq-toggle::before,
.private-faq-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
  transition: transform 280ms ease, opacity 220ms ease;
}
.private-faq-toggle::after {
  transform: translateY(-50%) rotate(90deg);
}
.private-faq-item[open] .private-faq-toggle::after {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}
.private-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 320ms ease, opacity 260ms ease, transform 300ms ease;
}
.private-faq-item[open] .private-faq-answer {
  max-height: 240px;
  opacity: 1;
  transform: translateY(0);
}
.private-faq-answer p {
  max-width: 620px;
  margin: 0 0 28px 66px;
  color: rgba(28, 27, 25, .62);
  font-size: 15px;
  line-height: 1.82;
}
.private-faq-item summary:hover .private-faq-question,
.private-faq-item summary:focus-visible .private-faq-question {
  color: #000;
}

.private-ending-cta {
  min-height: clamp(520px, 48vw, 660px);
  display: flex;
  align-items: center;
  padding: clamp(104px, 8vw, 136px) 0 clamp(96px, 7vw, 124px);
  background:
    radial-gradient(circle at 92% 18%, rgba(213, 190, 155, .08), transparent 28%),
    linear-gradient(180deg, #1c1b19 0%, #171716 100%);
  color: var(--ivory);
  border-top: 1px solid rgba(242, 239, 232, .08);
  overflow: hidden;
}
.private-ending-cta .wrap {
  position: relative;
  width: min(1120px, calc(100% - 48px));
}
.private-ending-cta .wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2%;
  width: clamp(220px, 26vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(213, 190, 155, .07);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.private-ending-cta .eyebrow {
  color: rgba(213, 190, 155, .72);
  font-size: 12px;
  letter-spacing: .12em;
}
.private-ending-cta .display-title {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(242, 239, 232, .94);
  font-size: clamp(42px, 4.3vw, 52px);
  font-weight: 400;
  line-height: 1.28;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}
.private-ending-cta .display-title span {
  color: #d8c19d;
}
.private-ending-cta p {
  max-width: 580px;
  margin: 32px 0 0;
  color: rgba(242, 239, 232, .68);
  font-size: 16px;
  line-height: 1.82;
}
.private-ending-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 38px;
  padding: 0 28px;
  border: 1px solid #315beb;
  border-radius: 4px;
  background: #315beb;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: background 240ms ease, border-color 240ms ease, transform 240ms ease;
}
.private-ending-button span {
  transition: transform 240ms ease;
}
.private-ending-button:hover,
.private-ending-button:focus-visible {
  background: #284bd0;
  border-color: #284bd0;
}
.private-ending-button:hover span,
.private-ending-button:focus-visible span {
  transform: translateX(4px);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(64px, 5.6vw, 84px) clamp(24px, 2.4vw, 32px);
  margin-top: 56px;
  align-items: start;
}
.work-card {
  display: block;
  grid-column: span 6;
  color: var(--black);
  background: transparent;
  position: relative;
  min-width: 0;
  transition: opacity 320ms ease-out, transform 360ms ease-out;
}
.work-card[hidden] {
  display: none;
}
.work-card:nth-child(6n + 1) {
  grid-column: span 7;
}
.work-card:nth-child(6n + 2) {
  grid-column: span 5;
  margin-top: 26px;
}
.work-card:nth-child(6n + 3) {
  grid-column: span 5;
}
.work-card:nth-child(6n + 4) {
  grid-column: span 7;
  margin-top: 28px;
}
.work-card:nth-child(6n + 5),
.work-card:nth-child(6n + 6) {
  grid-column: span 6;
}
.work-card figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #d8d3c8;
  isolation: isolate;
}
.work-card[data-ratio="portrait"] figure {
  aspect-ratio: 4 / 5;
}
.work-card[data-ratio="wide"] figure {
  aspect-ratio: 3 / 2;
}
.work-card[data-ratio="standard"] figure {
  aspect-ratio: 4 / 3;
}
.work-card[data-ratio="square"] figure {
  aspect-ratio: 1 / 1;
}
.work-card[data-project="0"] figure {
  width: 88%;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.96) contrast(.94) saturate(.82);
  transform: scale(1);
  transition: transform 420ms ease-out, filter 380ms ease-out, opacity 380ms ease-out;
}
.work-card:hover img,
.work-card:focus-visible img {
  transform: scale(1.014);
  filter: brightness(.99) contrast(.98) saturate(.86);
}
.work-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(242,239,232,.06), rgba(16,16,16,.04));
  mix-blend-mode: soft-light;
}
.work-copy {
  padding-top: 17px;
}
.work-meta {
  color: #858585;
  font-family: Oswald, Inter, Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
}
.work-card h3 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  max-width: 100%;
  margin-top: 8px;
  color: #101010;
  font-size: clamp(21px, 1.95vw, 24px);
  font-weight: 520;
  line-height: 1.28;
}
.work-card h3 span {
  color: var(--blue);
  font-family: Oswald, Inter, Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1;
  opacity: 0;
  transform: translateX(-4px);
  white-space: nowrap;
  transition: opacity 260ms ease-out, transform 300ms ease-out;
}
.work-card:hover h3 span,
.work-card:focus-visible h3 span {
  opacity: .78;
  transform: none;
}
.work-card p {
  max-width: 520px;
  margin: 9px 0 0;
  color: #6b6b6b;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.66;
}
.section.ivory .work-card p {
  color: #6b6b6b;
}
.work-confidential-visual {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 64% 42%, rgba(168,173,178,.16), transparent 36%),
    linear-gradient(135deg, #131313, #101010 62%, #151515);
  overflow: hidden;
}
.work-confidential-visual span {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  color: rgba(198,181,154,.74);
  font-family: Oswald, Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.4;
}
.work-confidential-visual i,
.work-confidential-visual b {
  position: absolute;
  display: block;
  pointer-events: none;
  opacity: .56;
}
.work-confidential-visual i {
  width: 58%;
  aspect-ratio: 1;
  right: 10%;
  bottom: 12%;
  border: 1px solid rgba(168,173,178,.24);
  transform: rotate(-12deg);
}
.work-confidential-visual i::before,
.work-confidential-visual i::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(242,239,232,.12);
}
.work-confidential-visual i::after {
  inset: 28%;
  transform: translate(18%, -12%);
}
.work-confidential-visual b {
  width: 72%;
  height: 32%;
  left: 18%;
  bottom: 24%;
  border-radius: 999px;
  border: 1px solid rgba(242,239,232,.12);
  filter: blur(.2px);
  transform: rotate(8deg);
}
.work-card[data-project="6"] .work-confidential-visual i {
  width: 46%;
  right: 12%;
  bottom: 18%;
  transform: rotate(9deg) skew(-5deg);
}
.work-card[data-project="6"] .work-confidential-visual b {
  width: 58%;
  height: 42%;
  left: 18%;
  bottom: 20%;
  border-radius: 12px;
  transform: rotate(-7deg);
}

.selected-works {
  padding-top: clamp(92px, 8vw, 132px);
  padding-bottom: clamp(96px, 8vw, 136px);
}
.selected-works .wrap {
  max-width: 1240px;
}
.selected-works-head {
  align-items: end;
  margin-bottom: clamp(42px, 5vw, 68px);
}
.selected-works-head .display-title {
  font-size: clamp(58px, 6vw, 86px);
  line-height: .98;
}
.selected-works-head p {
  max-width: 500px;
  color: rgba(16,16,16,.66);
  font-size: 18px;
  line-height: 1.85;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 34px 32px;
  align-items: start;
}
.portfolio-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  color: var(--black);
  text-decoration: none;
  border-top: 1px solid rgba(16,16,16,.24);
  padding-top: 12px;
  min-width: 0;
  outline-offset: 6px;
}
.portfolio-card.is-featured {
  grid-column: span 7;
  grid-row: span 2;
}
.portfolio-card:nth-child(2),
.portfolio-card:nth-child(3) {
  grid-column: span 5;
}
.portfolio-card figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #dedbd3;
  border: 1px solid rgba(16,16,16,.18);
}
.portfolio-card.is-featured figure {
  aspect-ratio: 5 / 4;
}
.portfolio-card.is-dark figure {
  background: #232323;
}
.portfolio-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(.96) contrast(.98);
  transform: scale(1.005);
  transition: transform 620ms cubic-bezier(.2, .7, .2, 1), filter 360ms ease;
}
.portfolio-card:nth-child(3) img {
  object-position: center center;
  filter: saturate(.9) contrast(.96) brightness(.94);
}
.portfolio-card:nth-child(4) img,
.portfolio-card:nth-child(6) img {
  object-position: center right;
}
.portfolio-card:nth-child(6) img {
  object-position: center;
}
.portfolio-card.image-contain figure {
  background: #f1ece5;
}
.portfolio-card.image-contain img {
  object-fit: contain;
  object-position: center;
  transform: none;
}
.portfolio-card:hover img,
.portfolio-card:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.02) contrast(1.02);
}
.portfolio-card.image-contain:hover img,
.portfolio-card.image-contain:focus-visible img {
  transform: scale(1.018);
}
.portfolio-copy {
  padding-top: 18px;
}
.portfolio-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  color: rgba(16,16,16,.46);
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.portfolio-meta em {
  font-style: normal;
  color: rgba(16,16,16,.34);
  white-space: nowrap;
}
.portfolio-card h3 {
  margin: 0;
  font-size: clamp(23px, 2.1vw, 34px);
  line-height: 1.24;
  letter-spacing: 0;
}
.portfolio-card:not(.is-featured) h3 {
  font-size: clamp(21px, 1.7vw, 28px);
}
.portfolio-card p {
  margin: 12px 0 0;
  color: rgba(16,16,16,.58);
  font-size: 15px;
  line-height: 1.72;
  max-width: 34em;
}
.portfolio-link {
  display: inline-flex;
  margin-top: 16px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(16,16,16,.3);
  color: rgba(16,16,16,.86);
  font-size: 14px;
}
.portfolio-card:hover .portfolio-link,
.portfolio-card:focus-visible .portfolio-link {
  border-color: var(--champagne);
  color: var(--black);
}
.selected-works-footer {
  margin-top: clamp(52px, 6vw, 78px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(16,16,16,.18);
  padding-top: 22px;
}
.selected-works-all {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  font-size: 15px;
}
.selected-works-all:hover,
.selected-works-all:focus-visible {
  color: #315e86;
}
.selected-works-footer p {
  margin: 0;
  max-width: 520px;
  color: rgba(16,16,16,.42);
  font-size: 12px;
  line-height: 1.7;
  text-align: right;
}

.method-section {
  padding-bottom: clamp(86px, 7vw, 104px);
}
.steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(242,239,232,.12); margin-top: 50px; }
.step { padding: 28px 28px 0 0; border-right: 1px solid rgba(242,239,232,.1); min-height: 214px; }
.step:last-child { border-right: 0; }
.step b { font-family: Oswald, sans-serif; color: rgba(198,181,154,.82); font-size: 36px; line-height: 1; }
.step h3 {
  margin-top: 28px;
  font-size: clamp(24px, 2.2vw, 32px);
}
.step p {
  margin-top: 16px;
  color: rgba(242,239,232,.66);
  line-height: 1.92;
}
.method-head {
  align-items: end;
}
.method-head .lead,
.industry-head p {
  margin: 0;
  max-width: 520px;
  color: rgba(242,239,232,.66);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.9;
}

.capabilities { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.chip { border: 1px solid var(--dark-line); padding: 12px 14px; color: rgba(242,239,232,.86); border-radius: 2px; }
.ivory .chip { color: var(--black); }

.industry-section {
  background: var(--black);
  color: var(--ivory);
  padding-top: clamp(82px, 7vw, 104px);
  padding-bottom: clamp(104px, 9vw, 138px);
  border-top: 1px solid rgba(242,239,232,.08);
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 52px;
  border: 1px solid rgba(242,239,232,.11);
  background: rgba(242,239,232,.09);
}
.industry-item {
  min-height: 218px;
  padding: 38px 40px;
  background: #111111;
}
.industry-item span {
  display: block;
  margin-bottom: 26px;
  font-family: Oswald, sans-serif;
  color: rgba(198,181,154,.62);
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.industry-item h3 {
  margin-bottom: 22px;
  font-size: clamp(26px, 2.6vw, 38px);
}
.industry-item p {
  color: rgba(242,239,232,.66);
  font-size: 16px;
  line-height: 1.9;
}
.industry-note {
  max-width: 760px;
  margin-top: 28px;
  color: rgba(242,239,232,.58);
  font-size: 13px;
  line-height: 1.8;
}
.home-about-summary {
  padding-top: clamp(104px, 8vw, 128px);
  padding-bottom: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(198,181,154,.08)),
    var(--ivory);
}
.home-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(80px, 8vw, 120px);
  align-items: start;
  padding-bottom: clamp(78px, 7vw, 104px);
}
.home-about-grid .display-title {
  margin-top: 18px;
  max-width: 440px;
  font-size: clamp(52px, 4.8vw, 60px);
  line-height: 1.12;
}
.section-accent {
  display: block;
  width: 56px;
  height: 1px;
  margin-top: 32px;
  background: var(--champagne);
}
.home-about-copy {
  max-width: 740px;
}
.home-about-copy p {
  margin: 0;
  color: rgba(16,16,16,.76);
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.86;
}
.home-about-copy p + p {
  margin-top: 24px;
}
.privacy-notice {
  display: grid;
  grid-template-columns: minmax(210px, 3fr) minmax(0, 8fr);
  gap: 36px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(16,16,16,.14);
  border-bottom: 1px solid rgba(16,16,16,.14);
}
.privacy-notice span {
  color: rgba(16,16,16,.48);
  font-family: Oswald, sans-serif;
  font-size: 13px;
  letter-spacing: .1em;
  line-height: 1.5;
  text-transform: uppercase;
}
.privacy-notice p {
  margin: 0;
  color: rgba(16,16,16,.72);
  font-size: 15px;
  line-height: 1.8;
}
.cta-band {
  padding-top: 54px;
}
.final-cta {
  padding: clamp(104px, 8vw, 128px) 0 clamp(82px, 7vw, 104px);
  background: #eae3d9;
  margin: 0 calc((100vw - min(var(--max), calc(100vw - 48px))) / -2);
  padding-left: calc((100vw - min(var(--max), calc(100vw - 48px))) / 2);
  padding-right: calc((100vw - min(var(--max), calc(100vw - 48px))) / 2);
}
.cta-band h2 {
  max-width: 960px;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.18;
}
.cta-band p {
  max-width: 720px;
  margin-top: 28px;
  color: rgba(16,16,16,.7);
  font-size: clamp(17px, 1.35vw, 18px);
  line-height: 1.72;
}
.final-cta .actions {
  margin-top: 34px;
}
.final-cta .btn {
  min-height: 52px;
  padding-inline: 28px;
  border-radius: 2px;
}
.final-cta .btn.primary {
  background: var(--black);
  border-color: var(--black);
  color: var(--ivory);
}
.final-cta .btn:not(.primary) {
  background: transparent;
  color: var(--black);
  border-color: rgba(16,16,16,.42);
}
.final-cta .btn:hover {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.final-cta .btn:not(.primary):hover {
  background: var(--black);
  color: var(--ivory);
}

.page-hero {
  padding: 170px 0 92px;
  background:
    linear-gradient(135deg, rgba(49,91,235,.08), transparent 42%),
    linear-gradient(180deg, var(--graphite), var(--black));
  color: var(--ivory);
  border-bottom: 1px solid var(--dark-line);
}
.page-hero h1 { font-size: clamp(38px, 5.8vw, 78px); }

.projects-hero {
  min-height: 560px;
  display: flex;
  align-items: flex-start;
  padding: 150px 0 76px;
  background:
    linear-gradient(180deg, #111111 0%, #101010 68%, #111111 100%);
  color: var(--ivory);
  border-bottom: 1px solid rgba(242,239,232,.1);
}
.projects-hero-inner {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(24px, 3vw, 42px);
  align-items: start;
  max-width: var(--max);
  padding-left: 0;
}
.projects-hero-identity {
  grid-column: 1 / span 5;
}
.projects-hero-intro {
  grid-column: 7 / span 5;
  max-width: 540px;
  padding-top: 2px;
}
.projects-eyebrow {
  color: rgba(198,181,154,.74);
  font-family: Oswald, Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1.5;
}
.projects-hero h1 {
  margin: 32px 0 0;
  color: #F2EFE8;
  font-size: clamp(72px, 4.6vw, 88px);
  font-weight: 560;
  line-height: .98;
  letter-spacing: -.02em;
}
.projects-hero-intro p {
  max-width: 540px;
  margin: 24px 0 0;
  color: #B7B5B0;
  font-size: clamp(18px, 1.28vw, 20px);
  font-weight: 400;
  line-height: 1.8;
}
.projects-hero-intro p + p {
  margin-top: 26px;
}
.projects-hero-intro .projects-hero-line {
  margin: 0;
  color: #E8E5DF;
  font-size: clamp(24px, 1.75vw, 28px);
  font-weight: 560;
  line-height: 1.25;
}
.projects-hero-intro p.projects-hero-line {
  margin-top: 0;
}
.projects-hero-intro strong {
  color: #E8E5DF;
  font-weight: 500;
}
.projects-hero-intro .projects-privacy {
  max-width: 520px;
  margin: 48px 0 0;
  color: #74726d;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.6;
}
.projects-index {
  padding-top: clamp(92px, 8vw, 118px);
  padding-bottom: 0;
  background: var(--ivory);
}
.project-filterbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 18px clamp(24px, 3.3vw, 44px);
  margin: 0 0 clamp(48px, 4.6vw, 64px);
  padding: 0;
}
.project-filterbar button {
  appearance: none;
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 0;
  padding: 0 0 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #777777;
  cursor: pointer;
  text-align: left;
  transition: color 220ms ease;
}
.project-filterbar button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--blue);
  opacity: 0;
  transform: scaleX(.42);
  transform-origin: left center;
  transition: opacity 220ms ease, transform 260ms ease;
}
.project-filterbar span {
  font-family: Oswald, Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.35;
}
.project-filterbar small {
  color: #aaa39b;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
}
.project-filterbar button:hover,
.project-filterbar button:focus-visible,
.project-filterbar button[aria-pressed="true"] {
  color: #101010;
  transform: none;
}
.project-filterbar button:hover::after,
.project-filterbar button:focus-visible::after,
.project-filterbar button[aria-pressed="true"]::after {
  opacity: .72;
  transform: scaleX(1);
}
.section.ivory .project-filterbar button[aria-pressed="true"] {
  color: #101010;
}
.projects-start {
  padding: clamp(56px, 5vw, 76px) 0 clamp(140px, 10vw, 156px);
  background: var(--ivory);
  color: var(--black);
}
.projects-start-inner {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(24px, 3vw, 42px);
  align-items: start;
  max-width: var(--max);
  padding-top: clamp(64px, 5.4vw, 78px);
  border-top: 1px solid rgba(16,16,16,.12);
}
.projects-start-eyebrow {
  color: #77736C;
  font-family: Oswald, Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1.5;
}
.projects-start-label {
  grid-column: 1 / span 4;
}
.projects-start-action {
  grid-column: 6 / span 7;
  max-width: 760px;
}
.projects-start h2 {
  max-width: 720px;
  margin: 0;
  color: #101010;
  font-size: clamp(40px, 3.2vw, 46px);
  font-weight: 500;
  line-height: 1.28;
}
.projects-start p {
  max-width: 560px;
  margin: 32px 0 0;
  color: #686868;
  font-size: clamp(16px, 1.18vw, 18px);
  font-weight: 400;
  line-height: 1.76;
}
.projects-start-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 34px;
  padding: 0 30px;
  border: 1px solid var(--blue);
  border-radius: 3px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition: background 280ms ease-out, border-color 280ms ease-out;
}
.projects-start-button span {
  transition: transform 280ms ease-out;
}
.projects-start-button:hover,
.projects-start-button:focus-visible {
  background: #284bd0;
  border-color: #284bd0;
}
.projects-start-button:hover span,
.projects-start-button:focus-visible span {
  transform: translateX(3px);
}
body[data-page="works"] .nav-links a[href*="/works/"],
body[data-page="works"] .nav-links a[href*="works/index.html"] {
  color: var(--ivory);
}
body[data-page="works"] .nav.scrolled .nav-links a[href*="/works/"],
body[data-page="works"] .nav.scrolled .nav-links a[href*="works/index.html"] {
  color: var(--black);
}

.about-hero {
  min-height: calc(100vh - 72px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 38% 48%, rgba(242,239,232,.055), transparent 32%),
    radial-gradient(circle at 80% 52%, rgba(201,182,154,.08), transparent 34%),
    linear-gradient(112deg, #121313 0%, #101010 48%, #090909 100%);
  color: var(--ivory);
  border-bottom: 1px solid rgba(242,239,232,.08);
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(84,78,68,.16));
  pointer-events: none;
}
.about-hero-inner {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  align-items: center;
  gap: clamp(40px, 6vw, 84px);
  padding: 120px 0 96px;
}
.about-hero-copy {
  max-width: 760px;
  width: 100%;
  transform: translateY(4vh);
}
.about-hero .eyebrow {
  color: rgba(242,239,232,.62);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.about-name {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: clamp(10px, 1.25vw, 18px);
  margin: 38px 0 0;
  color: #f2efe8;
  font-size: clamp(60px, 5.2vw, 82px);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: 0;
  white-space: nowrap;
}
.about-name span:first-child {
  font-family: Oswald, sans-serif;
  font-weight: 650;
}
.about-name i {
  color: rgba(242,239,232,.42);
  font-style: normal;
  font-weight: 300;
  transform: translateY(-.05em);
}
.about-quote {
  max-width: 680px;
  margin: 34px 0 0;
  color: rgba(242,239,232,.88);
  font-size: clamp(22px, 1.85vw, 26px);
  font-weight: 450;
  line-height: 1.5;
}
.about-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(242,239,232,.64);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.92;
}
.about-hero-visual {
  position: relative;
  min-height: 520px;
}
.about-form {
  position: absolute;
  width: min(34vw, 440px);
  aspect-ratio: 1;
  right: 2%;
  top: 50%;
  transform: translateY(-42%) rotate(-8deg);
  opacity: .92;
  filter: drop-shadow(0 38px 70px rgba(0,0,0,.34));
}
.about-form::before,
.about-form::after,
.about-form b,
.about-form span {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(242,239,232,.16);
}
.about-form::before {
  --form-scale: .96;
  --form-rotate: 18deg;
  transform: scale(var(--form-scale)) rotate(var(--form-rotate));
  background:
    radial-gradient(circle at 62% 38%, rgba(242,239,232,.2), transparent 9%),
    radial-gradient(circle at 56% 55%, rgba(201,182,154,.14), transparent 24%),
    conic-gradient(from 48deg, transparent 0 52deg, rgba(242,239,232,.2) 76deg, transparent 112deg, rgba(49,91,235,.34) 132deg, transparent 148deg, rgba(201,182,154,.18) 206deg, transparent 248deg);
  clip-path: polygon(52% 6%, 82% 18%, 94% 52%, 75% 83%, 43% 94%, 14% 78%, 6% 42%, 24% 14%);
  animation: aboutFormDrift 16s ease-in-out infinite;
}
.about-form::after {
  --form-scale: .72;
  --form-rotate: -22deg;
  transform: scale(var(--form-scale)) rotate(var(--form-rotate));
  border-color: rgba(242,239,232,.22);
  clip-path: polygon(50% 1%, 90% 28%, 78% 76%, 34% 96%, 8% 54%, 18% 16%);
  animation: aboutFormDrift 18s ease-in-out infinite reverse;
}
.about-form span:nth-child(1) { transform: scale(.52) translate(16%, -12%); border-color: rgba(242,239,232,.12); }
.about-form span:nth-child(2) { transform: scale(.34) translate(-58%, 42%); border-color: rgba(201,182,154,.22); }
.about-form span:nth-child(3) { transform: scale(.18) translate(164%, 34%); border-color: rgba(49,91,235,.42); }
.about-form span:nth-child(4) {
  inset: 46% auto auto 8%;
  width: 72%;
  height: 1px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, rgba(242,239,232,.28), rgba(49,91,235,.34), transparent);
  transform: rotate(-18deg);
}
.about-form b {
  inset: 25% 13% 20% 22%;
  border-radius: 46% 54% 48% 52%;
  border-color: rgba(242,239,232,.08);
  background: radial-gradient(circle at 66% 36%, rgba(242,239,232,.12), transparent 18%);
}
.about-scroll-cue {
  position: absolute;
  left: 0;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(242,239,232,.42);
  font-family: Oswald, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.about-scroll-cue em {
  display: block;
  width: 42px;
  height: 1px;
  background: rgba(242,239,232,.28);
}
@keyframes aboutFormDrift {
  0%, 100% { transform: scale(var(--form-scale)) rotate(var(--form-rotate)) translate3d(0,0,0); }
  50% { transform: scale(calc(var(--form-scale) + .025)) rotate(calc(var(--form-rotate) + 2deg)) translate3d(2px,-5px,0); }
}

.about-story {
  min-height: 90vh;
  padding: clamp(120px, 12vh, 160px) 0;
  background:
    radial-gradient(circle at 78% 34%, rgba(201,182,154,.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.24), rgba(198,181,154,.08)),
    var(--soft-ivory);
  color: var(--black);
}
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(360px, 6fr);
  gap: clamp(56px, 7vw, 108px);
  align-items: center;
}
.about-story-copy {
  max-width: 620px;
  align-self: center;
}
.about-story-eyebrow {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 34px;
  color: rgba(49,91,235,.8);
  font-family: Oswald, Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.about-story-eyebrow em {
  color: rgba(16,16,16,.42);
  font-family: Inter, Arial, sans-serif;
  font-style: normal;
  letter-spacing: .12em;
}
.about-story h2 {
  max-width: 620px;
  margin: 0;
  color: #101010;
  font-size: clamp(44px, 4vw, 58px);
  font-weight: 650;
  line-height: 1.22;
  letter-spacing: 0;
}
.about-story-text {
  max-width: 570px;
  margin-top: 44px;
}
.about-story-text p {
  margin: 0;
  color: rgba(16,16,16,.66);
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.92;
}
.about-story-text p + p {
  margin-top: 22px;
}
.about-story-final {
  position: relative;
  max-width: 540px;
  margin: 38px 0 0;
  padding-left: 22px;
  color: #101010;
  font-size: clamp(18px, 1.35vw, 20px);
  font-weight: 560;
  line-height: 1.7;
}
.about-story-final::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #315BEB;
  opacity: .86;
}
.about-story-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 520px);
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(16,16,16,.14);
  background: #dedbd3;
}
.about-story-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(.9) contrast(.96) brightness(.98);
  transform: scale(1.02);
  transition: transform 700ms cubic-bezier(.2, .7, .2, 1);
}
.about-story-visual.in img {
  transform: scale(1);
}
.about-story-wire {
  position: absolute;
  right: 8%;
  top: 10%;
  width: 34%;
  aspect-ratio: 1;
  border: 1px solid rgba(49,91,235,.22);
  transform: rotate(-9deg);
  opacity: .75;
  pointer-events: none;
}
.about-story-wire::before,
.about-story-wire::after {
  content: "";
  position: absolute;
}
.about-story-wire::before {
  inset: 18%;
  border: 1px solid rgba(242,239,232,.34);
}
.about-story-wire::after {
  right: -18%;
  top: 42%;
  width: 54%;
  height: 1px;
  background: rgba(49,91,235,.28);
}

.about-matters {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 86px;
  padding: clamp(132px, 15vh, 184px) 0 clamp(148px, 16vh, 198px);
  background:
    linear-gradient(180deg, rgba(198,181,154,.08), rgba(255,255,255,.18) 18%, rgba(198,181,154,.1) 100%),
    var(--soft-ivory);
  color: var(--black);
}
.about-matters-head {
  max-width: 850px;
  margin-bottom: clamp(82px, 10vw, 136px);
}
.about-matters-head h2 {
  max-width: 760px;
  margin: 0;
  color: #101010;
  font-size: clamp(48px, 5.2vw, 74px);
  font-weight: 650;
  line-height: 1.16;
  letter-spacing: 0;
}
.about-matters-head p {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(16,16,16,.66);
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 450;
  line-height: 1.72;
}
.about-matters-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  column-gap: clamp(18px, 2.2vw, 32px);
  row-gap: clamp(86px, 10vw, 140px);
}
.about-matter-item {
  position: relative;
}
.about-matter-index {
  margin-bottom: 14px;
  color: #315BEB;
  font-family: Oswald, Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
}
.about-matter-item figure {
  margin: 0;
  overflow: hidden;
  background: rgba(16,16,16,.06);
}
.about-matter-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.66) contrast(.94) brightness(.98) sepia(.07);
  transform: scale(1.02);
  transition: transform 760ms cubic-bezier(.2, .7, .2, 1), filter 760ms cubic-bezier(.2, .7, .2, 1);
}
.about-matter-item.in img {
  filter: saturate(.72) contrast(.96) brightness(.99) sepia(.05);
  transform: scale(1);
}
.about-matter-item h3 {
  max-width: 430px;
  margin: 22px 0 0;
  color: #101010;
  font-size: clamp(21px, 1.65vw, 24px);
  font-weight: 560;
  line-height: 1.4;
  letter-spacing: 0;
}
.about-matter-item p {
  max-width: 430px;
  margin: 12px 0 0;
  color: rgba(16,16,16,.62);
  font-size: clamp(14px, 1.08vw, 16px);
  line-height: 1.76;
}
.about-matter-1 {
  grid-column: 1 / span 5;
}
.about-matter-1 figure {
  aspect-ratio: 4 / 5.35;
}
.about-matter-1 img {
  object-position: 58% center;
}
.about-matter-2 {
  grid-column: 8 / span 4;
  margin-top: 42px;
}
.about-matter-2 figure {
  aspect-ratio: 1.16 / 1;
}
.about-matter-2 img {
  object-position: 50% 54%;
}
.about-matter-3 {
  grid-column: 2 / span 6;
}
.about-matter-3 figure {
  aspect-ratio: 1.72 / 1;
}
.about-matter-3 img {
  object-position: 58% 52%;
}
.about-matter-4 {
  grid-column: 9 / span 4;
  margin-top: 96px;
}
.about-matter-4 figure {
  aspect-ratio: 1.04 / 1;
}
.about-matter-4 img {
  object-position: 47% center;
}
.about-matter-2 {
  transition-delay: 90ms;
}
.about-matter-3 {
  transition-delay: 160ms;
}
.about-matter-4 {
  transition-delay: 230ms;
}
.about-matters-close {
  position: relative;
  max-width: 840px;
  margin: clamp(140px, 16vw, 184px) 0 0 auto;
  padding-top: 4px;
  min-height: clamp(320px, 42vh, 440px);
}
.about-matters-close p {
  max-width: 610px;
  margin: 0 0 24px;
  color: rgba(16,16,16,.68);
  font-size: clamp(20px, 1.45vw, 22px);
  font-weight: 500;
  line-height: 1.62;
  transition-delay: 80ms;
}
.about-matters-close h3 {
  position: relative;
  max-width: 790px;
  margin: 0;
  color: #101010;
  font-size: clamp(29px, 2.85vw, 38px);
  font-weight: 620;
  line-height: 1.44;
  letter-spacing: 0;
  z-index: 1;
  transition-delay: 240ms;
}
.about-matters-close h3 span {
  color: #315BEB;
}
.about-matters-curve {
  position: absolute;
  right: 2%;
  top: 12px;
  width: min(34vw, 260px);
  height: auto;
  opacity: .1;
  pointer-events: none;
}
.about-matters-curve path {
  fill: none;
  stroke: #315BEB;
  stroke-width: 1.1;
  stroke-linecap: round;
}

.about-finale {
  position: relative;
  overflow: hidden;
  padding: clamp(138px, 16vh, 184px) 0 clamp(132px, 15vh, 174px);
  background: #101010;
  color: #F2EFE8;
  border-bottom: 1px solid rgba(242,239,232,.08);
}
body[data-page="about"] main > .about-finale {
  background: #101010;
  color: #F2EFE8;
}
.about-finale-inner {
  position: relative;
  min-height: 122vh;
}
.about-finale-copy {
  position: relative;
  z-index: 1;
  max-width: 840px;
}
.about-finale .eyebrow {
  color: rgba(242,239,232,.54);
  font-family: Oswald, Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}
.about-finale h2 {
  max-width: 780px;
  margin: 40px 0 0;
  color: #F2EFE8;
  font-size: clamp(44px, 4vw, 58px);
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: 0;
}
.about-finale-body {
  max-width: 580px;
  margin-top: clamp(46px, 5vw, 56px);
}
.about-finale-body p {
  margin: 0;
  color: rgba(242,239,232,.64);
  font-size: clamp(16px, 1.18vw, 18px);
  font-weight: 400;
  line-height: 1.92;
}
body[data-page="about"] main > .about-finale p {
  color: rgba(242,239,232,.64);
}
.about-finale-body p + p {
  margin-top: 24px;
}
.about-finale-turn {
  max-width: 520px;
  margin: clamp(88px, 10vw, 118px) 0 0;
  color: rgba(242,239,232,.9);
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 560;
  line-height: 1.5;
}
body[data-page="about"] main > .about-finale .about-finale-turn {
  color: rgba(242,239,232,.9);
}
.about-finale-turn span {
  color: #315BEB;
}
.about-finale-slogan {
  margin-top: clamp(104px, 11vw, 138px);
}
.about-finale-slogan p {
  margin: 0;
  color: #F2EFE8;
  font-family: Oswald, Inter, Arial, sans-serif;
  font-size: clamp(68px, 7vw, 104px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.01em;
}
.about-finale-slogan span {
  display: block;
  margin-top: 30px;
  color: rgba(242,239,232,.7);
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 450;
  line-height: 1.6;
}
body[data-page="about"] main > .about-finale .about-finale-slogan span {
  color: rgba(242,239,232,.7);
}
.about-finale-last {
  max-width: 560px;
  margin-top: clamp(104px, 11vw, 136px);
}
.about-finale-last p {
  margin: 0;
  color: rgba(242,239,232,.62);
  font-size: clamp(18px, 1.35vw, 20px);
  font-weight: 500;
  line-height: 1.7;
}
body[data-page="about"] main > .about-finale .about-finale-last p {
  color: rgba(242,239,232,.62);
}
.about-finale-last h3 {
  margin: 24px 0 0;
  color: rgba(242,239,232,.88);
  font-size: clamp(22px, 1.75vw, 26px);
  font-weight: 560;
  line-height: 1.6;
  letter-spacing: 0;
}
.about-finale-geometry {
  position: absolute;
  right: max(-18vw, -250px);
  top: 12%;
  width: min(58vw, 760px);
  height: auto;
  opacity: .72;
  pointer-events: none;
  animation: finaleGeometryDrift 24s ease-in-out infinite;
}
.about-finale-geometry path {
  fill: none;
  stroke-linecap: round;
}
.about-finale-geometry .spiral {
  stroke: rgba(242,239,232,.065);
  stroke-width: 1.15;
}
.about-finale-geometry .contour {
  stroke: rgba(168,173,178,.05);
  stroke-width: .9;
}
.about-finale-geometry .line {
  stroke: rgba(242,239,232,.035);
  stroke-width: .7;
}
body[data-page="about"] .site-footer {
  background: #111111;
  border-top-color: rgba(242,239,232,.09);
}
body[data-page="about"] .footer-brand p {
  display: none;
}
@keyframes finaleGeometryDrift {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
  50% { transform: translate3d(-4px,3px,0) rotate(.45deg); }
}

.private-hero {
  min-height: min(720px, calc(100vh - 72px));
  max-height: 760px;
  display: flex;
  align-items: center;
  padding: 116px 0 58px;
  background:
    radial-gradient(circle at 82% 48%, rgba(213,190,155,.12), transparent 36%),
    linear-gradient(180deg, #20201d, #171716 58%, #101010);
}
.private-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr);
  gap: clamp(48px, 5.6vw, 88px);
  align-items: center;
}
.private-hero-copy {
  max-width: 540px;
}
.private-hero .kicker {
  color: rgba(213,190,155,.72);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .11em;
}
.private-hero .display-title {
  max-width: 540px;
  margin-top: 28px;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}
.private-title-primary,
.private-title-outcome {
  display: block;
}
.private-title-primary {
  color: #eeeae2;
  font-size: clamp(38px, 3.05vw, 44px);
  font-weight: 400;
  line-height: 1.34;
}
.private-title-outcome {
  margin-top: 12px;
  color: #d1b99b;
  font-size: clamp(46px, 3.35vw, 52px);
  font-weight: 500;
  line-height: 1.24;
}
.private-hero .lead {
  max-width: 500px;
  margin-top: 32px;
  color: rgba(238,234,226,.66);
  font-size: 16px;
  line-height: 1.82;
}
.private-hero-link {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  margin-top: 36px;
  padding: 0 26px;
  border: 1px solid rgba(238,234,226,.35);
  color: #eeeae2;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0;
  background: rgba(0,0,0,.08);
  transition: border-color 240ms ease, color 240ms ease, background 240ms ease;
}
.private-hero-link span {
  transition: transform 260ms ease;
}
.private-hero-link:hover,
.private-hero-link:focus-visible {
  border-color: rgba(49,91,235,.72);
  color: #f6f1e7;
  background: rgba(49,91,235,.08);
  outline: none;
}
.private-hero-link:hover span,
.private-hero-link:focus-visible span {
  transform: translateX(4px);
}
.private-hero-visual {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 0;
  background: transparent;
  animation: privateVisualIn 460ms ease both;
  -webkit-mask-image: radial-gradient(ellipse at 53% 52%, #000 0%, #000 56%, rgba(0,0,0,.82) 70%, transparent 100%);
  mask-image: radial-gradient(ellipse at 53% 52%, #000 0%, #000 56%, rgba(0,0,0,.82) 70%, transparent 100%);
}
.private-hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.92) contrast(1.02) brightness(.98);
}

.private-directions {
  padding: clamp(100px, 8vw, 124px) 0 clamp(104px, 8vw, 130px);
}
.private-directions-eyebrow {
  color: rgba(28,27,25,.48);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.private-directions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 30px);
  margin-top: 34px;
}
.private-direction-item {
  min-width: 0;
}
.private-direction-rule {
  height: 1px;
  background: rgba(20,20,18,.16);
  transition: background 220ms ease;
}
.private-direction-number {
  margin-top: 26px;
  color: rgba(205,187,157,.74);
  font-family: Oswald, sans-serif;
  font-size: clamp(64px, 5.6vw, 76px);
  font-weight: 300;
  line-height: .86;
  letter-spacing: .01em;
  transition: color 220ms ease;
}
.private-direction-item h3 {
  margin: 18px 0 0;
  color: #1c1b19;
  font-size: clamp(23px, 1.8vw, 27px);
  font-weight: 450;
  line-height: 1.25;
  letter-spacing: 0;
  white-space: nowrap;
}
.private-direction-item p {
  margin: 10px 0 0;
  color: rgba(28,27,25,.52);
  font-size: 10.5px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.private-direction-item:hover .private-direction-rule {
  background: rgba(20,20,18,.24);
}
.private-direction-item:hover .private-direction-number {
  color: rgba(205,187,157,.88);
}

.private-selected {
  padding-top: clamp(96px, 7vw, 126px);
  padding-bottom: clamp(104px, 8vw, 140px);
  border-top: 1px solid rgba(16,16,16,.08);
}
.private-selected .wrap {
  max-width: 1240px;
}
.private-selected-head {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(280px, 4fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  margin-bottom: clamp(48px, 5.6vw, 72px);
}
.private-selected-head .eyebrow {
  color: rgba(28,27,25,.48);
  font-size: 12px;
  letter-spacing: .11em;
}
.private-selected-head .display-title {
  margin-top: 12px;
  color: #1c1b19;
  font-size: clamp(34px, 3.2vw, 42px);
  font-weight: 450;
  line-height: 1.18;
}
.private-selected-head p {
  margin: 0 0 4px;
  color: rgba(28,27,25,.56);
  font-size: 15px;
  line-height: 1.78;
}
.private-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(36px, 5vw, 62px) clamp(26px, 3.2vw, 42px);
  align-items: start;
}
.private-gallery-item {
  min-width: 0;
}
.private-gallery-item:nth-child(1) {
  grid-column: 1 / span 7;
}
.private-gallery-item:nth-child(2) {
  grid-column: 8 / span 5;
  padding-top: clamp(34px, 5vw, 72px);
}
.private-gallery-item:nth-child(3) {
  grid-column: 1 / span 5;
}
.private-gallery-item:nth-child(4) {
  grid-column: 6 / span 7;
  padding-top: clamp(22px, 3vw, 42px);
}
.private-gallery-item figure {
  margin: 0;
  overflow: hidden;
  background: #ddd8cf;
  border: 1px solid rgba(16,16,16,.14);
}
.private-gallery-item.is-large figure {
  aspect-ratio: 5 / 4;
}
.private-gallery-item.is-small figure {
  aspect-ratio: 4 / 3;
}
.private-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(.94) contrast(.98) brightness(1.01);
  transform: scale(1.002);
  transition: transform 420ms ease-out, filter 360ms ease;
}
.private-gallery-item:nth-child(1) img {
  object-position: center 44%;
}
.private-gallery-item:nth-child(2) img {
  object-position: center 48%;
}
.private-gallery-item:nth-child(3) img {
  object-position: center 46%;
}
.private-gallery-item:nth-child(4) img {
  object-position: 58% center;
}
.private-gallery-item:hover img {
  transform: scale(1.018);
  filter: saturate(.98) contrast(1.01) brightness(1.02);
}
.private-gallery-copy {
  padding-top: 18px;
}
.private-gallery-copy h3 {
  margin: 0;
  color: #171716;
  font-size: clamp(21px, 1.6vw, 24px);
  font-weight: 450;
  line-height: 1.28;
  letter-spacing: 0;
}
.private-gallery-copy p {
  margin: 9px 0 0;
  color: rgba(28,27,25,.52);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: .04em;
}

@keyframes privateVisualIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.two-band { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--dark-line); border: 1px solid var(--dark-line); margin-top: 42px; }
.band { background: var(--black); padding: 36px; }
.ivory .band { background: rgba(247,244,238,.72); color: var(--black); }
.filterbar:not(.project-filterbar) { display: flex; gap: 8px; flex-wrap: wrap; margin: 34px 0; }
.filterbar:not(.project-filterbar) button[aria-pressed="true"] { background: var(--blue); border-color: var(--blue); color: white; }

form { display: grid; gap: 16px; margin-top: 34px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
label { display: grid; gap: 8px; color: var(--metal); font-size: 13px; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--dark-line);
  background: rgba(242,239,232,.04);
  color: var(--ivory);
  padding: 13px 14px;
  border-radius: 2px;
}
input:focus, textarea:focus, select:focus { border-color: var(--blue); outline: none; }
.section.ivory input,
.section.ivory textarea,
.section.ivory select {
  border-color: var(--light-line);
  color: var(--black);
  background: rgba(255,255,255,.18);
}
body[data-page="contact"] main > .section input,
body[data-page="contact"] main > .section textarea,
body[data-page="contact"] main > .section select {
  border-color: var(--light-line);
  color: var(--black);
  background: rgba(255,255,255,.22);
}
select option { color: var(--black); }
textarea { min-height: 150px; resize: vertical; }
.check { display: flex; gap: 10px; align-items: start; }
.check input { width: auto; margin-top: 5px; }
.status { min-height: 24px; color: var(--metal); }
.status.error { color: #ffb0a7; }
.status.ok { color: #b6dfbd; }
.site-footer {
  padding: 82px 0 38px;
  background: var(--black);
  border-top: 1px solid rgba(242,239,232,.12);
  color: var(--metal);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(180px, 2fr) minmax(220px, 3fr);
  gap: clamp(48px, 8vw, 104px);
}
.footer-brand .logo {
  color: var(--ivory);
  min-width: 0;
}
.footer-brand .logo b {
  font-size: 34px;
}
.footer-brand .logo span {
  opacity: .66;
}
.footer-brand p {
  max-width: 360px;
  margin: 28px 0 0;
  color: rgba(242,239,232,.72);
  font-size: 16px;
  line-height: 1.85;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
.footer-col h2 {
  margin: 0 0 10px;
  color: rgba(198,181,154,.72);
  font-family: Oswald, sans-serif;
  font-size: 13px;
  letter-spacing: .12em;
  line-height: 1.5;
  text-transform: uppercase;
}
.footer-col a,
.footer-col p {
  margin: 0;
  color: rgba(242,239,232,.66);
  font-size: 15px;
  line-height: 1.7;
}
.footer-col a {
  position: relative;
  padding-bottom: 3px;
}
.footer-col a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(.35);
  transform-origin: left center;
  transition: opacity 220ms ease, transform 220ms ease;
}
.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--ivory);
}
.footer-col a:hover::after,
.footer-col a:focus-visible::after {
  opacity: .75;
  transform: scaleX(1);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  padding-top: 26px;
  border-top: 1px solid rgba(242,239,232,.12);
  color: rgba(242,239,232,.52);
  font-size: 13px;
  line-height: 1.7;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--ease), transform var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    inset: 78px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 28px 24px;
    background: rgba(16,16,16,.96);
    border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-links,
  .nav.scrolled.open .nav-links {
    color: rgba(242,239,232,.82);
    background: rgba(16,16,16,.96);
  }
  .nav.open .nav-links a:hover,
  .nav.scrolled.open .nav-links a:hover {
    color: var(--ivory);
  }
  .nav.open .nav-links { display: flex; }
  .menu-toggle { display: block; }
  .nav-actions .btn:not(.small) { display: none; }
  .grid, .story-map, .two-band, .form-grid, .entry-grid { grid-template-columns: minmax(0, 1fr); }
  .split-copy {
    grid-template-columns: minmax(0, 1fr);
  }
  .split-copy > *:nth-child(2) {
    margin-left: 0;
  }
  .grid > *,
  .two-band > *,
  .form-grid > *,
  [class^="span-"],
  [class*=" span-"],
  .push-1 {
    grid-column: 1 / -1 !important;
    grid-column-start: 1 !important;
    width: 100%;
    min-width: 0;
  }
  p, li, label, .lead {
    max-width: 100%;
    word-break: normal;
    overflow-wrap: break-word;
  }
  .section { padding: 82px 0; }
  .business-hero {
    min-height: auto;
    padding: 114px 0 64px;
  }
  .business-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }
  .business-hero-copy {
    max-width: 760px;
    padding-top: 10px;
  }
  .business-hero .display-title {
    max-width: 700px;
  }
  .business-hero-visual {
    position: relative;
    inset: auto;
    min-height: clamp(360px, 58vw, 560px);
    margin: 0 -16px;
  }
  .business-hero-visual img {
    object-position: 60% center;
  }
  .business-what {
    padding-top: 84px;
    padding-bottom: 94px;
  }
  .business-what-head,
  .business-what-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .business-what-head {
    gap: 20px;
    align-items: start;
  }
  .business-what-head > p {
    max-width: 640px;
    margin: 0;
  }
  .business-what-grid {
    margin-top: 54px;
    gap: 52px;
  }
  .business-what-item:nth-child(2) {
    margin-top: 0;
  }
  .method-section {
    padding-top: 86px;
    padding-bottom: 68px;
  }
  .method-section .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .method-section .step {
    min-height: 0;
    padding: 24px 24px 28px 0;
    border-bottom: 1px solid rgba(242,239,232,.1);
  }
  .method-section .step:nth-child(2n) {
    border-right: 0;
  }
  .method-section .step:nth-last-child(-n+2) {
    border-bottom: 0;
  }
  .industry-section {
    padding-top: 68px;
    padding-bottom: 86px;
  }
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 38px;
  }
  .industry-item {
    min-height: 190px;
    padding: 30px;
  }
  .what-we-do {
    padding-top: 72px;
    padding-bottom: 76px;
  }
  .what-head .display-title {
    max-width: 100%;
    font-size: clamp(36px, 9.2vw, 42px);
    line-height: 1.24;
  }
  .what-head p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.78;
  }
  .entry-grid {
    gap: 46px;
    margin-top: 48px;
  }
  .entry-panel + .entry-panel {
    padding-top: 46px;
    border-top: 1px solid rgba(16,16,16,.14);
  }
  .entry-image {
    aspect-ratio: 4 / 3;
  }
  .entry-copy {
    padding-top: 22px;
  }
  .entry-meta {
    padding-top: 15px;
    font-size: 12px;
  }
  .entry-meta b {
    font-size: 42px;
  }
  .entry-panel h3 {
    margin-top: 18px;
    font-size: clamp(26px, 7vw, 30px);
    line-height: 1.38;
  }
  .entry-panel p {
    font-size: 16px;
    line-height: 1.78;
  }
  .entry-link {
    font-size: 16px;
  }
  .home-about-summary {
    padding-top: 82px;
  }
  .home-about-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
    padding-bottom: 64px;
  }
  .home-about-grid .display-title {
    max-width: 100%;
    font-size: clamp(40px, 9vw, 52px);
  }
  .home-about-copy p {
    font-size: 16px;
    line-height: 1.84;
  }
  .home-about-copy p + p {
    margin-top: 22px;
  }
  .privacy-notice {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }
  .final-cta {
    margin-inline: -16px;
    padding: 88px 16px 78px;
  }
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
  .footer-col,
  .footer-brand {
    padding: 28px 0;
    border-top: 1px solid rgba(242,239,232,.12);
  }
  .footer-brand {
    padding-top: 0;
    border-top: 0;
  }
  .footer-bottom {
    flex-direction: column;
    margin-top: 28px;
  }
  .hero-inner, .wrap { width: min(100% - 32px, var(--max)); }
  .hero {
    min-height: 92vh;
    align-items: end;
  }
  .hero-bg {
    background-position: var(--hero-mobile-pos, center right 24%);
    filter: brightness(1.04) contrast(1.03) saturate(.94);
  }
  .hero::after {
    background:
      linear-gradient(180deg, rgba(16,16,16,.26) 0%, rgba(16,16,16,.52) 38%, rgba(16,16,16,.86) 100%),
      linear-gradient(90deg, rgba(16,16,16,.3), rgba(16,16,16,.1));
  }
  .hero-inner {
    padding: 118px 0 92px;
  }
  h1 { font-size: clamp(38px, 10vw, 58px); line-height: 1.08; }
  h2 { font-size: clamp(31px, 8.2vw, 46px); line-height: 1.14; }
  .display-title {
    max-width: 100%;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  .hero .display-title {
    max-width: 100%;
    overflow-wrap: normal;
    margin-top: 24px;
  }
  .hero .display-title .mobile-break {
    display: none;
  }
  .hero .display-title .hero-intro-line {
    font-size: clamp(28px, 7.4vw, 34px);
    line-height: 1.24;
  }
  .hero .display-title .hero-focus-line {
    margin-top: 24px;
    font-size: clamp(40px, 10.5vw, 48px);
    line-height: 1.16;
  }
  .hero .lead {
    max-width: 100%;
    margin: 26px 0 24px;
    font-size: 16px;
    line-height: 1.78;
  }
  .hero-signature {
    margin-top: 20px;
    font-size: 15px;
  }
  .hero .actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .hero .actions .btn {
    width: 100%;
    padding-inline: 12px;
  }
  .hero-carousel {
    left: 16px;
    right: auto;
    bottom: 22px;
    gap: 10px;
  }
  .hero-cycle {
    width: 42px;
    height: 42px;
  }
  .hero-counter {
    min-width: 78px;
    font-size: 13px;
  }
  .works-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portfolio-card,
  .portfolio-card.is-featured,
  .portfolio-card:nth-child(2),
  .portfolio-card:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }
  .portfolio-card.is-featured figure,
  .portfolio-card figure { aspect-ratio: 16 / 10; }
  .projects-hero {
    min-height: 540px;
    padding: 136px 0 68px;
  }
  .projects-hero-inner {
    column-gap: 28px;
    padding-left: 0;
  }
  .projects-hero-identity {
    grid-column: 1 / span 5;
  }
  .projects-hero-intro {
    grid-column: 6 / span 7;
    max-width: 520px;
  }
  .projects-hero h1 {
    font-size: clamp(66px, 8vw, 78px);
  }
  .projects-index {
    padding-top: 78px;
    padding-bottom: 0;
  }
  .editorial-project-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 62px 24px;
  }
  .editorial-project-grid .work-card:nth-child(n) {
    grid-column: span 6;
    margin-top: 0;
  }
  .projects-start {
    padding: 72px 0 132px;
  }
  .projects-start-inner {
    column-gap: 28px;
    padding-top: 64px;
  }
  .projects-start-label {
    grid-column: 1 / span 4;
  }
  .projects-start-action {
    grid-column: 5 / span 8;
    max-width: 680px;
  }
  .selected-works-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .selected-works-footer p {
    text-align: left;
  }
  .entry-panel { min-height: auto; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); min-height: auto; padding-bottom: 22px; }
}

@media (max-width: 1100px) {
  .private-hero {
    min-height: auto;
    max-height: none;
    padding: 112px 0 58px;
  }
  .private-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }
  .private-hero-copy {
    max-width: 760px;
  }
  .private-hero .display-title {
    max-width: 760px;
  }
  .private-title-primary {
    font-size: clamp(30px, 4.8vw, 34px);
    line-height: 1.34;
  }
  .private-title-outcome {
    font-size: clamp(36px, 5.9vw, 42px);
    line-height: 1.25;
  }
  .private-hero-visual {
    aspect-ratio: 16 / 9;
    -webkit-mask-image: radial-gradient(ellipse at 54% 52%, #000 0%, #000 58%, rgba(0,0,0,.86) 72%, transparent 100%);
    mask-image: radial-gradient(ellipse at 54% 52%, #000 0%, #000 58%, rgba(0,0,0,.86) 72%, transparent 100%);
  }
  .private-directions {
    padding: 86px 0 96px;
  }
  .private-directions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 46px;
  }
  .private-direction-number {
    font-size: clamp(54px, 8vw, 64px);
  }
  .private-direction-item h3 {
    white-space: normal;
    font-size: clamp(21px, 3.4vw, 24px);
  }
  .private-selected-head {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }
  .private-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .private-gallery-item:nth-child(n) {
    grid-column: auto;
    padding-top: 0;
  }
  .private-gallery-item.is-large figure,
  .private-gallery-item.is-small figure {
    aspect-ratio: 4 / 3;
  }
  .private-process {
    grid-template-columns: minmax(0, 1fr);
  }
  .private-process > * {
    grid-column: 1 / -1 !important;
    width: 100%;
    min-width: 0;
  }
  .private-process .visual.tall {
    min-height: 360px;
  }
  .private-faq-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }
  .private-faq-head .display-title {
    max-width: 640px;
  }
  .private-ending-cta {
    min-height: auto;
  }
  .private-ending-cta .display-title {
    max-width: 680px;
  }
}

@media (max-width: 560px) {
  .business-hero {
    padding: 104px 0 54px;
  }
  .business-hero-inner {
    gap: 34px;
  }
  .business-hero .eyebrow {
    color: rgba(198, 181, 154, .78);
    font-size: 11px;
    letter-spacing: .1em;
  }
  .business-hero-intro {
    color: rgba(242, 239, 232, .78);
    margin-top: 24px;
    font-size: clamp(21px, 6vw, 24px);
    line-height: 1.42;
  }
  .business-hero .display-title {
    color: rgba(242, 239, 232, .96);
    margin-top: 12px;
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1.24;
  }
  .business-hero-lead {
    color: rgba(242, 239, 232, .7);
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.78;
  }
  .business-hero-signature {
    color: rgba(198, 181, 154, .84);
    max-width: 310px;
    margin-top: 22px;
    font-size: 11px;
    line-height: 1.75;
  }
  .business-hero-cta {
    min-height: 48px;
    margin-top: 30px;
    padding-inline: 24px;
  }
  .business-hero-visual {
    min-height: 340px;
    margin: 0 -22px;
  }
  .business-hero-visual::before {
    inset: 12% 10% 8% 18%;
  }
  .business-hero-visual img {
    object-position: 62% center;
    filter: brightness(.78) contrast(1.02) saturate(.88);
    -webkit-mask-image:
      linear-gradient(180deg, transparent 0%, #000 13%, #000 78%, transparent 100%),
      linear-gradient(90deg, transparent 0%, rgba(0,0,0,.75) 18%, #000 50%, rgba(0,0,0,.7) 100%);
    mask-image:
      linear-gradient(180deg, transparent 0%, #000 13%, #000 78%, transparent 100%),
      linear-gradient(90deg, transparent 0%, rgba(0,0,0,.75) 18%, #000 50%, rgba(0,0,0,.7) 100%);
  }
  .business-what {
    padding-top: 72px;
    padding-bottom: 76px;
  }
  .business-what .eyebrow {
    font-size: 10px;
    letter-spacing: .13em;
  }
  .business-what .display-title {
    font-size: clamp(30px, 8.4vw, 34px);
    line-height: 1.32;
  }
  .business-what-head > p {
    font-size: 14.5px;
    line-height: 1.76;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    word-break: break-all;
    overflow-wrap: anywhere;
    line-break: anywhere;
  }
  .business-what-grid {
    margin-top: 46px;
    gap: 48px;
  }
  .business-what-item {
    padding-top: 24px;
  }
  .business-what-meta {
    gap: 15px;
    flex-wrap: wrap;
  }
  .business-what-meta span {
    font-size: clamp(44px, 12vw, 50px);
  }
  .business-what-meta em {
    font-size: 10px;
    letter-spacing: .1em;
  }
  .business-what-item h3 {
    margin-top: 24px;
    font-size: clamp(21px, 6.2vw, 24px);
    line-height: 1.45;
  }
  .business-what-item h3 strong {
    font-size: clamp(26px, 7.2vw, 29px);
  }
  .business-what-item p {
    margin-top: 18px;
    font-size: 14.5px;
    line-height: 1.75;
    word-break: break-all;
    overflow-wrap: anywhere;
    line-break: anywhere;
  }
  .private-hero {
    padding: 104px 0 48px;
  }
  .private-hero .display-title {
    margin-top: 20px;
  }
  .private-hero .display-title,
  .private-hero .lead {
    word-break: normal;
    overflow-wrap: anywhere;
  }
  .private-title-primary {
    font-size: clamp(29px, 8vw, 32px);
  }
  .private-title-outcome {
    margin-top: 10px;
    font-size: clamp(34px, 9.4vw, 38px);
  }
  .private-hero .lead {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.78;
    width: 100%;
    max-width: min(100%, 330px);
    word-break: break-all;
    overflow-wrap: break-word;
  }
  .private-hero-link {
    margin-top: 28px;
    min-height: 46px;
  }
  .private-hero-visual {
    aspect-ratio: 4 / 3;
  }
  .private-hero-visual img {
    object-position: 58% center;
  }
  .private-directions {
    padding: 72px 0 78px;
  }
  .private-directions-grid {
    margin-top: 28px;
    gap: 34px 18px;
  }
  .private-direction-number {
    margin-top: 22px;
    font-size: clamp(48px, 14vw, 56px);
  }
  .private-direction-item h3 {
    margin-top: 14px;
    font-size: clamp(20px, 5.8vw, 23px);
  }
  .private-direction-item p {
    font-size: 9.5px;
    letter-spacing: .08em;
  }
  .private-selected {
    padding-top: 72px;
    padding-bottom: 84px;
  }
  .private-selected-head {
    margin-bottom: 34px;
  }
  .private-selected-head .display-title {
    font-size: clamp(32px, 8.8vw, 38px);
  }
  .private-gallery {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }
  .private-gallery-item.is-large figure,
  .private-gallery-item.is-small figure {
    aspect-ratio: 4 / 3;
  }
  .private-gallery-copy {
    padding-top: 15px;
  }
  .private-gallery-copy h3 {
    font-size: 22px;
  }
  .private-faq {
    padding-top: 68px;
    padding-bottom: 94px;
  }
  .private-faq-head .display-title {
    font-size: clamp(29px, 7.8vw, 34px);
    line-height: 1.36;
  }
  .private-faq-item summary {
    min-height: 68px;
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    gap: 12px;
  }
  .private-faq-question {
    font-size: 18px;
    line-height: 1.42;
  }
  .private-faq-answer p {
    margin-left: 46px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.8;
  }
  .private-ending-cta {
    padding-top: 82px;
    padding-bottom: 86px;
  }
  .private-ending-cta .wrap::after {
    width: 220px;
    right: -92px;
    opacity: .72;
  }
  .private-ending-cta .display-title {
    margin-top: 18px;
    font-size: clamp(34px, 9vw, 40px);
    line-height: 1.32;
  }
  .private-ending-cta p {
    margin-top: 24px;
    max-width: 340px;
    font-size: 15px;
    line-height: 1.78;
  }
  .private-ending-button {
    min-height: 48px;
    margin-top: 30px;
    padding-inline: 24px;
  }
  .works-grid { grid-template-columns: minmax(0, 1fr); }
  .projects-hero {
    min-height: 580px;
    padding: 108px 0 64px;
  }
  .projects-hero-inner {
    display: block;
  }
  .projects-eyebrow {
    font-size: 11px;
    letter-spacing: .13em;
  }
  .projects-hero h1 {
    margin-top: 28px;
    font-size: clamp(52px, 14.8vw, 60px);
    line-height: 1.02;
  }
  .projects-hero-intro {
    max-width: 100%;
    margin-top: 48px;
    padding-top: 0;
  }
  .projects-hero-intro p {
    max-width: 342px;
    margin-top: 22px;
    font-size: 16.5px;
    line-height: 1.78;
  }
  .projects-hero-intro p + p {
    margin-top: 24px;
  }
  .projects-hero-intro .projects-hero-line {
    font-size: clamp(21px, 6vw, 24px);
    line-height: 1.25;
  }
  .projects-hero-intro p.projects-hero-line {
    margin-top: 0;
  }
  .projects-hero-intro .projects-privacy {
    max-width: 330px;
    margin-top: 44px;
    font-size: 12px;
    line-height: 1.62;
  }
  .projects-index {
    padding-top: 62px;
    padding-bottom: 0;
    overflow: hidden;
  }
  .project-filterbar {
    flex-wrap: nowrap;
    gap: 24px;
    width: calc(100% + 32px);
    margin: 0 0 50px;
    padding-right: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }
  .project-filterbar::-webkit-scrollbar {
    display: none;
  }
  .project-filterbar button {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .project-filterbar span {
    font-size: 12px;
  }
  .editorial-project-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 60px;
    margin-top: 0;
  }
  .editorial-project-grid .work-card:nth-child(n) {
    grid-column: 1 / -1;
    margin-top: 0;
  }
  .work-copy {
    padding-top: 16px;
  }
  .work-meta {
    font-size: 10px;
    line-height: 1.55;
  }
  .work-card h3 {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    font-size: clamp(18px, 5.2vw, 20px);
  }
  .work-card h3 span {
    opacity: .62;
    transform: none;
    font-size: 11px;
  }
  .work-card p {
    font-size: 13.5px;
    line-height: 1.72;
  }
  .projects-start {
    padding: 72px 0 112px;
  }
  .projects-start-inner {
    display: block;
    width: min(100% - 32px, var(--max));
    max-width: 100%;
    margin: auto;
    padding-top: 56px;
  }
  .projects-start-eyebrow {
    font-size: 11px;
    letter-spacing: .13em;
  }
  .projects-start-action {
    max-width: 100%;
    margin-top: 42px;
  }
  .projects-start h2 {
    margin-top: 0;
    font-size: clamp(28px, 8.4vw, 32px);
    line-height: 1.3;
  }
  .projects-start p {
    max-width: 340px;
    margin-top: 24px;
    font-size: 15.5px;
    line-height: 1.76;
  }
  .projects-start-button {
    min-height: 44px;
    margin-top: 30px;
    padding-inline: 24px;
    font-size: 13.5px;
  }
  .method-section {
    padding-top: 72px;
    padding-bottom: 52px;
  }
  .method-section .steps {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 34px;
  }
  .method-section .step {
    border-right: 0;
    border-bottom: 1px solid rgba(242,239,232,.1);
    padding: 22px 0 26px;
  }
  .method-section .step:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(242,239,232,.1);
  }
  .method-section .step:last-child {
    border-bottom: 0;
  }
  .step b {
    font-size: 31px;
  }
  .step h3 {
    margin-top: 18px;
    font-size: 25px;
  }
  .step p {
    margin-top: 12px;
    line-height: 1.82;
  }
  .industry-section {
    padding-top: 54px;
    padding-bottom: 72px;
  }
  .industry-grid {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 32px;
  }
  .industry-item {
    min-height: 0;
    padding: 28px 24px;
  }
  .industry-item span {
    margin-bottom: 18px;
  }
  .industry-item h3 {
    font-size: 27px;
  }
  .industry-note {
    font-size: 12px;
  }
  .home-about-summary {
    padding-top: 72px;
  }
  .home-about-grid {
    gap: 34px;
    padding-bottom: 54px;
  }
  .home-about-grid .display-title {
    font-size: clamp(38px, 10vw, 46px);
  }
  .section-accent {
    margin-top: 24px;
  }
  .privacy-notice {
    padding: 20px 0;
  }
  .final-cta {
    padding-top: 76px;
    padding-bottom: 70px;
  }
  .cta-band h2 {
    font-size: clamp(38px, 11vw, 46px);
  }
  .cta-band p {
    margin-top: 24px;
    font-size: 16px;
  }
  .final-cta .actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .final-cta .btn {
    width: 100%;
  }
  .site-footer {
    padding-top: 64px;
  }
  .footer-brand p,
  .footer-col a,
  .footer-col p {
    font-size: 14px;
  }
  .selected-works {
    padding-top: 72px;
    padding-bottom: 78px;
  }
  .selected-works-head {
    margin-bottom: 34px;
  }
  .selected-works-head .display-title {
    font-size: clamp(42px, 13vw, 54px);
  }
  .selected-works-head p {
    font-size: 16px;
    line-height: 1.78;
  }
  .portfolio-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }
  .portfolio-card figure,
  .portfolio-card.is-featured figure {
    aspect-ratio: 4 / 3;
  }
  .portfolio-copy {
    padding-top: 15px;
  }
  .portfolio-meta {
    gap: 10px;
    font-size: 10px;
  }
  .portfolio-card h3,
  .portfolio-card:not(.is-featured) h3 {
    font-size: 24px;
  }
  .portfolio-card p {
    font-size: 14px;
  }
  .selected-works-all {
    width: 100%;
  }
  body[data-page="home"] .logo { min-width: 116px; }
  body[data-page="home"] .logo b { font-size: 26px; }
  body[data-page="home"] .nav-inner { min-height: 74px; padding-inline: 16px; }
  body[data-page="home"] .nav-links { inset: 74px 0 auto 0; }
  body[data-page="home"] .nav-actions { gap: 8px; }
  body[data-page="home"] .nav-actions .btn.small { min-height: 34px; padding-inline: 10px; }
  .hero-bg { background-position: var(--hero-mobile-pos, center right 28%); }
  .hero .actions {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .hero .display-title .hero-intro-line {
    font-size: clamp(27px, 7.4vw, 32px);
  }
  .hero .display-title .hero-focus-line {
    font-size: clamp(32px, 8.4vw, 36px);
  }
}

@media (max-width: 389px) {
  .private-directions-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 980px) {
  .about-story {
    min-height: auto;
    padding: 104px 0 116px;
  }
  .about-story-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 64px;
  }
  .about-story-copy {
    max-width: 700px;
  }
  .about-story-visual {
    justify-self: end;
    width: min(82vw, 520px);
  }
  .about-matters {
    padding: 112px 0 136px;
  }
  .about-matters-head {
    max-width: 720px;
    margin-bottom: 82px;
  }
  .about-matters-layout {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    row-gap: 84px;
  }
  .about-matter-1 {
    grid-column: 1 / span 5;
  }
  .about-matter-2 {
    grid-column: 5 / span 4;
    margin-top: 96px;
  }
  .about-matter-3 {
    grid-column: 1 / span 6;
  }
  .about-matter-4 {
    grid-column: 5 / span 4;
    margin-top: 58px;
  }
  .about-matters-close {
    margin-top: 132px;
    min-height: 300px;
  }
  .about-finale {
    padding: 122px 0 138px;
  }
  .about-finale-inner {
    min-height: 118vh;
  }
  .about-finale-copy {
    max-width: 760px;
  }
  .about-finale-geometry {
    right: -30%;
    top: 16%;
    width: 720px;
  }
  .about-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    min-height: 90svh;
    padding: 118px 0 90px;
  }
  .about-hero-copy {
    max-width: 720px;
    transform: translateY(2vh);
    z-index: 2;
  }
  .about-hero-visual {
    position: absolute;
    inset: auto -8% 8% auto;
    width: 58%;
    min-height: 0;
    aspect-ratio: 1;
    opacity: .45;
  }
  .about-form {
    width: 100%;
    right: 0;
  }
  .business-why {
    padding-top: 92px;
    padding-bottom: 104px;
  }
  .business-why-head {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }
  .business-why-head > p {
    max-width: 650px;
    margin: 0;
  }
  .business-why-grid {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 0;
    margin-top: 64px;
  }
  .business-why-item,
  .business-why-item + .business-why-item {
    padding: 28px 0 42px;
    border-left: 0;
  }
  .business-why-item:last-child {
    padding-bottom: 0;
  }
  .business-why-item h3 + p {
    max-width: 620px;
  }
  .business-selected-work {
    padding-top: 92px;
    padding-bottom: 108px;
  }
  .business-work-head {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    align-items: start;
  }
  .business-work-side {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 62px;
    gap: 58px;
  }
  .business-work-copy,
  .business-work-item.is-featured .business-work-copy {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .about-story {
    padding: 86px 0 96px;
  }
  .about-story-grid {
    gap: 52px;
  }
  .about-story-eyebrow {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
    font-size: 10px;
  }
  .about-story h2 {
    max-width: 360px;
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1.24;
  }
  .about-story-text {
    margin-top: 34px;
  }
  .about-story-text p {
    font-size: 16px;
    line-height: 1.82;
  }
  .about-story-text p + p {
    margin-top: 18px;
  }
  .about-story-final {
    margin-top: 32px;
    font-size: 18px;
    line-height: 1.62;
  }
  .about-story-visual {
    width: min(90vw, 420px);
    justify-self: end;
    transform: translateX(4%);
    aspect-ratio: 4 / 5;
  }
  .about-story-visual img {
    object-position: 60% center;
  }
  .about-matters {
    padding: 92px 0 122px;
  }
  .about-matters-head {
    margin-bottom: 76px;
  }
  .about-matters-head h2 {
    max-width: 370px;
    font-size: clamp(34px, 10vw, 40px);
    line-height: 1.22;
  }
  .about-matters-head p {
    max-width: 350px;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.78;
  }
  .about-matters-layout {
    display: block;
  }
  .about-matter-item,
  .about-matter-1,
  .about-matter-2,
  .about-matter-3,
  .about-matter-4 {
    grid-column: auto;
    margin-top: 0;
  }
  .about-matter-item + .about-matter-item {
    margin-top: 82px;
  }
  .about-matter-index {
    margin-bottom: 12px;
    font-size: 12px;
  }
  .about-matter-item figure {
    width: 100%;
  }
  .about-matter-1 figure,
  .about-matter-2 figure,
  .about-matter-3 figure,
  .about-matter-4 figure {
    aspect-ratio: 1.14 / 1;
  }
  .about-matter-1 img {
    object-position: 58% center;
  }
  .about-matter-3 img {
    object-position: 58% center;
  }
  .about-matter-item h3 {
    margin-top: 18px;
    font-size: clamp(20px, 6vw, 22px);
    line-height: 1.42;
  }
  .about-matter-item p {
    max-width: 350px;
    font-size: 15px;
    line-height: 1.78;
  }
  .about-matters-close {
    margin-top: 120px;
    min-height: 270px;
  }
  .about-matters-close p {
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 1.64;
  }
  .about-matters-close h3 {
    max-width: 360px;
    font-size: clamp(26px, 7.6vw, 30px);
    line-height: 1.46;
  }
  .about-matters-curve {
    right: -10%;
    top: -6px;
    width: 190px;
    opacity: .09;
  }
  .about-finale {
    padding: 104px 0 118px;
  }
  .about-finale-inner {
    min-height: auto;
  }
  .about-finale .eyebrow {
    font-size: 11px;
    letter-spacing: .11em;
  }
  .about-finale h2 {
    margin-top: 34px;
    max-width: 350px;
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1.27;
  }
  .about-finale-body {
    max-width: 342px;
    margin-top: 48px;
  }
  .about-finale-body p {
    font-size: 15.5px;
    line-height: 1.86;
  }
  .about-finale-body p + p {
    margin-top: 22px;
  }
  .about-finale-turn {
    max-width: 330px;
    margin-top: 92px;
    font-size: clamp(22px, 6.3vw, 26px);
    line-height: 1.52;
  }
  .about-finale-slogan {
    margin-top: 112px;
  }
  .about-finale-slogan p {
    font-size: clamp(48px, 14vw, 60px);
    line-height: .99;
  }
  .about-finale-slogan span {
    max-width: 310px;
    margin-top: 26px;
    font-size: 17px;
    line-height: 1.68;
  }
  .about-finale-last {
    max-width: 330px;
    margin-top: 116px;
  }
  .about-finale-last p {
    font-size: 17px;
  }
  .about-finale-last h3 {
    margin-top: 22px;
    font-size: clamp(20px, 5.8vw, 22px);
    line-height: 1.64;
  }
  .about-finale-geometry {
    right: -210px;
    top: 12%;
    width: 420px;
    opacity: .58;
  }
  .about-hero {
    min-height: 88svh;
  }
  .about-hero-inner {
    min-height: 88svh;
    padding: 104px 0 80px;
  }
  .about-hero .eyebrow {
    font-size: 11px;
    letter-spacing: .12em;
  }
  .about-name {
    gap: clamp(6px, 1.8vw, 10px);
    margin-top: 32px;
    font-size: clamp(42px, 12vw, 50px);
  }
  .about-quote {
    margin-top: 28px;
    max-width: min(100%, 340px);
    font-size: clamp(20px, 5.8vw, 22px);
    line-height: 1.52;
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: strict;
  }
  .about-lead {
    margin-top: 24px;
    max-width: 340px;
    font-size: 15.5px;
    line-height: 1.9;
  }
  .about-hero-visual {
    width: 82%;
    right: -28%;
    bottom: 5%;
    opacity: .34;
  }
  .about-scroll-cue {
    bottom: 24px;
    font-size: 10px;
  }
  .business-why {
    padding-top: 76px;
    padding-bottom: 84px;
  }
  .business-why .eyebrow {
    font-size: 10px;
    letter-spacing: .14em;
  }
  .business-why .display-title {
    margin-top: 18px;
    font-size: clamp(30px, 8.4vw, 34px);
    line-height: 1.34;
  }
  .business-why-head > p {
    font-size: 14.5px;
    line-height: 1.78;
  }
  .business-why-grid {
    margin-top: 50px;
  }
  .business-why-number {
    font-size: clamp(42px, 12vw, 48px);
  }
  .business-why-label {
    margin-top: 14px;
    font-size: 9.5px;
    letter-spacing: .12em;
  }
  .business-why-item h3 {
    margin-top: 18px;
    font-size: clamp(23px, 6.8vw, 26px);
  }
  .business-why-item h3 + p {
    margin-top: 16px;
    font-size: 14.5px;
    line-height: 1.78;
  }
  .business-selected-work {
    padding-top: 76px;
    padding-bottom: 88px;
  }
  .business-work-head .eyebrow {
    font-size: 10px;
    letter-spacing: .14em;
  }
  .business-work-head .display-title {
    font-size: clamp(30px, 8.4vw, 34px);
    line-height: 1.32;
  }
  .business-work-head > p {
    font-size: 14.5px;
    line-height: 1.72;
  }
  .business-work-layout {
    margin-top: 48px;
  }
  .business-work-side {
    margin-top: 52px;
    gap: 48px;
  }
  .business-work-item {
    gap: 20px;
  }
  .business-work-item.is-featured figure,
  .business-work-side .business-work-item figure {
    aspect-ratio: 4 / 3;
  }
  .business-work-meta span,
  .business-work-meta em {
    font-size: 9.5px;
  }
  .business-work-item h3,
  .business-work-item.is-featured h3 {
    font-size: clamp(21px, 6.1vw, 24px);
  }
  .business-work-item p {
    font-size: 14.5px;
    line-height: 1.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-bg { transform: none; transition: none; }
  .hero-bg:not(.active) { display: none; }
  .hero-counter i { animation: none; }
}

