:root {
  --bg: #0a0a0b;
  --surface: #121214;
  --surface-2: #18181b;
  --text: #f4f3ef;
  --muted: #9d9aa2;
  --line: rgba(255, 255, 255, 0.14);
  --violet: #8068ff;
  --violet-soft: #b8adff;
  --max: 1500px;
  --pad: clamp(22px, 4.4vw, 72px);
  --display: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Noto Sans CJK SC", sans-serif;
  --body: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  --ease: cubic-bezier(.2, .75, .15, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
figure, p, h1, h2, h3, ul { margin: 0; }
ul { padding: 0; list-style: none; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--bg);
  background: var(--text);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 72px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease;
}
.site-header.is-scrolled {
  background: rgba(10, 10, 11, .88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.brand { width: 158px; line-height: 0; }
.brand img {
  width: 100%;
  filter: brightness(0) invert(1);
}
.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 2.5vw, 42px); }
.desktop-nav a, .text-button, .menu-toggle {
  position: relative;
  border: 0;
  background: none;
  color: var(--text);
  font-size: 13px;
  letter-spacing: .02em;
  cursor: pointer;
  white-space: nowrap;
}
.desktop-nav a::after, .text-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--violet);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.desktop-nav a:hover::after, .text-button:hover::after,
.desktop-nav a:focus-visible::after, .text-button:focus-visible::after { transform: scaleX(1); }
.menu-toggle { display: none; }
.mobile-menu {
  position: fixed;
  inset: 72px 0 0;
  z-index: 99;
  padding: 36px var(--pad);
  background: var(--bg);
  flex-direction: column;
  gap: 0;
}
.mobile-menu a, .mobile-menu button {
  width: 100%;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  color: var(--text);
  font-size: clamp(25px, 8vw, 44px);
  font-weight: 600;
  text-align: left;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu:not([hidden]) { display: flex; }

.section-shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--pad);
}
.eyebrow {
  color: var(--violet-soft);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button:active { transform: scale(.98); }
.button-primary { color: #0a0a0b; background: var(--violet-soft); }
.button-primary:hover, .button-primary:focus-visible { background: var(--text); }
.button-secondary { color: var(--text); background: transparent; border-color: rgba(255,255,255,.42); }
.button-secondary:hover, .button-secondary:focus-visible { color: var(--bg); background: var(--text); border-color: var(--text); }
:focus-visible { outline: 2px solid var(--violet-soft); outline-offset: 4px; }

.hero {
  position: relative;
  min-height: 100dvh;
  padding: 72px var(--pad) 32px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: min(76vw, 1080px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(128,104,255,.13), transparent 66%);
  filter: blur(10px);
  pointer-events: none;
}
.hero-rule {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  top: 88px;
  height: 5px;
  background: var(--violet);
  transform-origin: left;
  animation: rule-in 1.2s var(--ease) both;
}
.hero-center {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(54px, 9.2vw, 146px);
  line-height: .94;
  letter-spacing: -.075em;
  white-space: nowrap;
}
.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(45px);
  animation: word-in .9s var(--ease) forwards;
  animation-delay: calc(.28s + var(--i) * .08s);
}
.hero-en {
  margin-top: 30px;
  color: var(--violet-soft);
  font-family: var(--display);
  font-size: clamp(15px, 1.55vw, 24px);
  letter-spacing: .045em;
  opacity: 0;
  animation: fade-in .8s .8s forwards;
}
.hero-sub {
  max-width: 600px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.7;
  opacity: 0;
  animation: fade-in .8s .95s forwards;
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  animation: fade-in .8s 1.1s forwards;
}
.hero-orbit {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 27px;
  display: flex;
  justify-content: space-between;
  color: #65636b;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: .08em;
}
@keyframes rule-in { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes word-in { to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in { to { opacity: 1; } }

.belief {
  min-height: 95dvh;
  padding-top: clamp(110px, 14vw, 220px);
  padding-bottom: clamp(100px, 13vw, 200px);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  gap: clamp(50px, 8vw, 140px);
  align-items: start;
}
.belief-lead h2, .problems h2, .system h2, .method h2, .work-head h2, .closing h2 {
  margin-top: 20px;
  font-family: var(--display);
  font-size: clamp(52px, 7.4vw, 112px);
  line-height: .98;
  letter-spacing: -.065em;
}
.belief-body { padding-top: clamp(30px, 8vw, 125px); }
.belief-body .statement {
  color: var(--text);
  font-size: clamp(23px, 2.5vw, 39px);
  font-weight: 600;
  line-height: 1.35;
}
.belief-body > p:last-child {
  margin-top: 30px;
  max-width: 580px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}
.belief-quote {
  grid-column: 1 / -1;
  margin-top: clamp(60px, 10vw, 150px);
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: clamp(19px, 2.2vw, 34px);
}
.belief-quote strong { color: var(--violet-soft); font-weight: 500; }

.problems {
  position: relative;
  padding-top: clamp(90px, 10vw, 160px);
  padding-bottom: clamp(120px, 13vw, 210px);
  border-top: 1px solid var(--line);
}
.problems-title { max-width: 840px; }
.problems-title p {
  max-width: 590px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}
.problem-field {
  min-height: 740px;
  margin-top: clamp(80px, 10vw, 150px);
  position: relative;
}
.problem {
  position: absolute;
  width: min(38vw, 460px);
  padding: 24px 0 26px;
  border-top: 1px solid rgba(255,255,255,.34);
}
.problem span { color: var(--violet-soft); font-size: 13px; font-weight: 700; }
.problem h3 {
  margin-top: 25px;
  font-family: var(--display);
  font-size: clamp(25px, 2.5vw, 38px);
  line-height: 1.22;
  letter-spacing: -.035em;
}
.problem p { margin-top: 20px; color: var(--muted); line-height: 1.65; }
.problem-a { left: 0; top: 0; }
.problem-b { right: 4%; top: 75px; }
.problem-c { left: 16%; top: 360px; }
.problem-d { right: 0; top: 470px; }

.system {
  padding-top: clamp(100px, 12vw, 180px);
  padding-bottom: clamp(110px, 13vw, 200px);
  background: var(--surface);
  overflow: hidden;
}
.system-intro { padding-bottom: 74px; }
.system-intro p { margin-top: 28px; color: var(--muted); font-size: 18px; }
.system-track {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: .84fr .9fr 1fr 1.12fr;
  align-items: stretch;
}
.system-panel {
  min-height: 525px;
  padding: 26px 22px 32px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: background .45s ease, transform .45s var(--ease);
}
.system-panel:last-child { border-right: 1px solid var(--line); }
.system-panel:hover, .system-panel.is-active { background: var(--violet); transform: translateY(-12px); }
.system-index { color: var(--muted); font-size: 12px; }
.system-panel:hover .system-index, .system-panel.is-active .system-index { color: rgba(255,255,255,.7); }
.system-name { margin-top: auto; }
.system-name > span { font-family: var(--display); font-size: clamp(12px, 1.1vw, 16px); letter-spacing: .05em; }
.system-name h3 {
  margin-top: 9px;
  font-family: var(--display);
  font-size: clamp(31px, 3.2vw, 50px);
  line-height: 1;
  letter-spacing: -.05em;
}
.system-panel > p { margin-top: 30px; color: #bbb9c0; line-height: 1.75; }
.system-panel:hover > p, .system-panel.is-active > p { color: rgba(255,255,255,.88); }
.system-panel ul { margin-top: 24px; }
.system-panel li { padding: 8px 0; color: #8b8991; font-size: 13px; }
.system-panel:hover li, .system-panel.is-active li { color: rgba(255,255,255,.72); }

.method { padding-top: clamp(120px, 14vw, 220px); padding-bottom: clamp(120px, 14vw, 220px); }
.method-head { max-width: 980px; }
.method-head p { margin-top: 30px; max-width: 600px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.method-line {
  margin-top: clamp(80px, 10vw, 150px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.method-line article { min-height: 260px; padding: 24px 22px; border-right: 1px solid var(--line); }
.method-line article:first-child { padding-left: 0; }
.method-line article:last-child { border-right: 0; }
.method-line strong { color: var(--violet-soft); font-family: var(--display); font-size: 13px; letter-spacing: .05em; }
.method-line span { display: block; margin-top: 95px; font-size: clamp(21px, 2vw, 31px); font-weight: 700; }
.method-line p { margin-top: 15px; color: var(--muted); font-size: 14px; }

.work { border-top: 1px solid var(--line); }
.work-head { padding-top: clamp(110px, 13vw, 200px); padding-bottom: clamp(120px, 13vw, 200px); }
.work-head h2 { max-width: 900px; }
.case { overflow: hidden; }
.case + .case { margin-top: clamp(130px, 17vw, 260px); }
.case-hero {
  display: grid;
  grid-template-columns: minmax(310px, .65fr) minmax(0, 1.35fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.case-label, .aria-heading > span, .chouchou-title > span {
  color: var(--violet-soft);
  font-size: 13px;
  font-weight: 700;
}
.case-copy h3, .aria-heading h3, .chouchou-title h3 {
  margin-top: 20px;
  font-family: var(--display);
  font-size: clamp(56px, 7.2vw, 112px);
  line-height: .88;
  letter-spacing: -.07em;
}
.case-question {
  margin-top: 45px;
  max-width: 480px;
  font-size: clamp(19px, 2vw, 30px);
  font-weight: 600;
  line-height: 1.48;
}
.case-shift {
  margin-top: 35px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1.35fr;
  gap: 14px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}
.case-shift b { color: var(--violet-soft); }
.case-shift strong { color: var(--text); font-weight: 500; }
.case-main-image { padding: 18px; background: var(--surface); }
.case-main-image img { width: 100%; height: auto; }

.modong-gallery {
  margin-top: 72px;
  display: grid;
  grid-template-columns: .62fr 1.25fr .85fr;
  grid-template-rows: auto auto;
  gap: 12px;
  align-items: stretch;
}
.modong-gallery figure { background: var(--surface); display: grid; place-items: center; overflow: hidden; }
.modong-gallery img { width: 100%; height: 100%; object-fit: contain; }
.modong-tall { grid-row: 1 / 3; }
.modong-wide { grid-column: 2 / 4; }
.modong-life { grid-column: 2; }
.case-insight { padding: 30px; background: var(--violet); display: flex; flex-direction: column; justify-content: space-between; }
.case-insight span { font-size: 12px; font-weight: 700; }
.case-insight p { margin-top: 70px; font-size: clamp(18px, 1.7vw, 25px); font-weight: 600; line-height: 1.45; }
.results {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1.1fr 1fr .8fr;
  border-top: 1px solid rgba(255,255,255,.36);
}
.results article { min-height: 210px; padding: 28px 24px 28px 0; border-right: 1px solid var(--line); }
.results article + article { padding-left: 30px; }
.results article:last-child { border-right: 0; }
.results strong { display: block; color: var(--violet-soft); font-family: var(--display); font-size: clamp(42px, 5.2vw, 80px); line-height: 1; letter-spacing: -.06em; }
.results span { display: block; margin-top: 24px; color: var(--muted); line-height: 1.55; }
.data-note { margin-top: 24px; color: #6f6d74; font-size: 11px; line-height: 1.7; }

.case-chouchou { padding-top: 20px; }
.chouchou-media { position: relative; width: calc(100% - 2 * var(--pad)); max-width: var(--max); margin: 0 auto; }
.chouchou-media img { width: 100%; height: auto; }
.chouchou-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,11,.82), rgba(10,10,11,.08) 58%, transparent);
}
.chouchou-title { position: absolute; z-index: 2; left: clamp(24px, 5vw, 76px); top: 50%; transform: translateY(-50%); }
.chouchou-title > span { color: #fff; }
.chouchou-title h3 { color: #fff; font-size: clamp(53px, 8vw, 132px); }
.chouchou-story {
  padding-top: clamp(70px, 9vw, 140px);
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: end;
}
.asset-chain {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.asset-chain span { padding: 20px 12px; border-bottom: 1px solid var(--line); color: var(--muted); font-family: var(--display); font-size: 12px; }
.chouchou-gallery {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.chouchou-gallery figure { background: var(--surface); display: grid; place-items: center; overflow: hidden; }
.chouchou-gallery img { width: 100%; height: 100%; object-fit: contain; }
.chouchou-brand { grid-column: 1; grid-row: 1 / 3; }
.chouchou-character { grid-column: 2; }
.chouchou-product, .chouchou-stickers { grid-row: 3; }
.results-chouchou { grid-template-columns: .8fr .8fr 1.2fr; }

.case-aria { padding-bottom: clamp(140px, 18vw, 280px); }
.aria-intro {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  align-items: end;
  gap: clamp(30px, 5vw, 80px);
}
.aria-cover { background: var(--surface); }
.aria-cover img { width: 100%; height: auto; }
.aria-story {
  margin-top: 70px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(40px, 9vw, 140px);
}
.aria-story > div { padding-top: 24px; border-top: 1px solid var(--line); }
.aria-story span { color: var(--violet-soft); font-size: 13px; font-weight: 700; }
.aria-story p { margin-top: 24px; font-size: clamp(20px, 2vw, 30px); font-weight: 600; line-height: 1.5; }
.aria-gallery {
  margin-top: 90px;
  display: grid;
  grid-template-columns: 1.38fr .62fr;
  gap: 12px;
}
.aria-gallery figure { background: var(--surface); display: grid; place-items: center; overflow: hidden; }
.aria-gallery img { width: 100%; height: 100%; object-fit: contain; }
.aria-store { grid-row: 1 / 3; }
.results-aria { grid-template-columns: .65fr 1fr 1fr; }

.closing {
  min-height: 100dvh;
  padding: clamp(130px, 16vw, 250px) var(--pad) 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--violet);
  color: #fff;
}
.closing-inner { width: min(100%, var(--max)); margin: 0 auto; }
.closing-inner > img { width: 220px; filter: brightness(0) invert(1); }
.closing h2 { max-width: 1000px; margin-top: 90px; }
.closing-inner > p { margin-top: 34px; max-width: 570px; color: rgba(255,255,255,.76); font-size: 18px; line-height: 1.75; }
.contact-direct { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px 24px; color: rgba(255,255,255,.9); font-size: 13px; letter-spacing: .02em; }
.contact-direct a { color: inherit; text-decoration: none; }
.contact-direct a:hover { color: #fff; }
.closing .button-primary { margin-top: 38px; background: #fff; color: #111; }
.closing footer {
  width: min(100%, var(--max));
  margin: 100px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.4);
  display: flex;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .04em;
}

.contact-dialog {
  width: min(720px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 0;
  background: var(--surface);
  color: var(--text);
  overflow: auto;
}
.contact-dialog::backdrop { background: rgba(0,0,0,.74); backdrop-filter: blur(8px); }
.contact-form { position: relative; padding: clamp(28px, 6vw, 62px); display: grid; gap: 26px; }
.dialog-close { position: absolute; top: 20px; right: 20px; padding: 8px; border: 0; background: none; color: var(--muted); cursor: pointer; }
.contact-form h2 { margin-top: 14px; font-family: var(--display); font-size: clamp(34px, 5vw, 58px); line-height: 1.05; letter-spacing: -.05em; }
.dialog-intro { margin-top: 18px; max-width: 520px; color: var(--muted); line-height: 1.7; }
.dialog-contact { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px 18px; color: #d5d3db; font-size: 13px; }
.dialog-contact strong { color: var(--text); }
.dialog-contact a { color: var(--violet-soft); text-decoration: none; }
.contact-form label { display: grid; gap: 9px; }
.contact-form label > span { font-size: 13px; font-weight: 700; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.36);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  outline: none;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--violet-soft); }
.field-error { min-height: 17px; color: #ffaaa5; font-size: 12px; }
.submit-button { justify-self: start; }
.form-result { padding-top: 24px; border-top: 1px solid var(--line); }
.form-result p { white-space: pre-wrap; color: #d5d3db; line-height: 1.75; }
.form-result .button { margin-top: 20px; }
.copy-status { margin-left: 14px; color: var(--violet-soft); font-size: 12px; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.image-reveal { clip-path: inset(0 0 100% 0); transition: clip-path 1.05s var(--ease), opacity .8s ease, transform .8s var(--ease); }
.image-reveal.is-visible { clip-path: inset(0 0 0 0); }

@media (max-width: 1050px) {
  .system-track { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .system-panel { min-height: 420px; border: 1px solid var(--line); }
  .system-panel:hover, .system-panel.is-active { transform: none; }
  .case-hero, .aria-intro { grid-template-columns: 1fr; }
  .case-copy h3, .aria-heading h3 { font-size: clamp(64px, 12vw, 112px); }
  .case-main-image { margin-top: 20px; }
  .chouchou-story { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .site-header { height: 64px; }
  .brand { width: 132px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { top: 64px; }
  .hero { min-height: 100dvh; padding-top: 64px; }
  .hero-rule { top: 78px; height: 4px; }
  .hero-title { white-space: nowrap; font-size: clamp(36px, 12vw, 48px); line-height: 1.02; }
  .hero-sub { max-width: 280px; }
  .hero-orbit { display: none; }
  .hero-actions { flex-wrap: wrap; }
  .belief { grid-template-columns: 1fr; gap: 30px; min-height: auto; }
  .belief-body { padding-top: 0; }
  .belief-quote { flex-direction: column; margin-top: 50px; }
  .belief-lead h2, .problems h2, .system h2, .method h2, .work-head h2, .closing h2 { font-size: clamp(45px, 13vw, 68px); }
  .problem-field { min-height: auto; margin-top: 70px; display: grid; gap: 46px; }
  .problem { position: static; width: 100%; }
  .system-intro { padding-bottom: 48px; }
  .system-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 18px; }
  .system-panel { min-width: 84vw; min-height: 440px; scroll-snap-align: start; }
  .method-line { grid-template-columns: 1fr 1fr; }
  .method-line article { min-height: 220px; border-bottom: 1px solid var(--line); }
  .method-line article:nth-child(2) { border-right: 0; }
  .method-line span { margin-top: 65px; }
  .case + .case { margin-top: 140px; }
  .case-shift { grid-template-columns: 1fr; }
  .case-shift b { transform: rotate(90deg); width: max-content; }
  .modong-gallery { grid-template-columns: 1fr; grid-template-rows: none; }
  .modong-tall, .modong-wide, .modong-life { grid-column: auto; grid-row: auto; }
  .case-insight p { margin-top: 40px; }
  .results, .results-chouchou, .results-aria { grid-template-columns: 1fr; }
  .results article { min-height: auto; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .results article + article { padding-left: 0; }
  .chouchou-media { width: 100%; }
  .chouchou-media::after { background: linear-gradient(0deg, rgba(10,10,11,.8), transparent 75%); }
  .chouchou-title { left: var(--pad); top: auto; bottom: 22px; transform: none; }
  .chouchou-title h3 { font-size: 14vw; }
  .asset-chain { grid-template-columns: repeat(2, 1fr); }
  .chouchou-gallery { grid-template-columns: 1fr; grid-template-rows: none; }
  .chouchou-brand, .chouchou-character, .chouchou-product, .chouchou-stickers { grid-column: auto; grid-row: auto; }
  .aria-story { grid-template-columns: 1fr; }
  .aria-gallery { grid-template-columns: 1fr; }
  .aria-store { grid-row: auto; }
  .closing footer { flex-direction: column; gap: 12px; }
  .contact-form { padding-top: 58px; }
}

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

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled { background: var(--bg); backdrop-filter: none; }
  .contact-dialog::backdrop { backdrop-filter: none; }
}

/* Project archive */
.projects-root { scroll-behavior: auto; }
.projects-page { background: var(--bg); }
.projects-page .site-header { background: rgba(10, 10, 11, .93); }
.projects-hero {
  min-height: 100dvh;
  padding-top: clamp(130px, 16vw, 240px);
  padding-bottom: clamp(90px, 10vw, 150px);
  display: grid;
  grid-template-columns: .42fr 1.58fr;
  gap: clamp(30px, 8vw, 120px);
  align-items: end;
}
.projects-hero-count { align-self: start; color: var(--violet-soft); }
.projects-hero-count strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(110px, 16vw, 250px);
  font-weight: 500;
  line-height: .75;
  letter-spacing: -.09em;
}
.projects-hero-count span {
  display: block;
  margin-top: 30px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .08em;
}
.projects-hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(70px, 9.6vw, 148px);
  line-height: .9;
  letter-spacing: -.075em;
}
.projects-hero-copy p {
  max-width: 650px;
  margin-top: 42px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.75;
}

.project-directory {
  padding-top: clamp(90px, 11vw, 170px);
  padding-bottom: clamp(120px, 14vw, 210px);
  border-top: 1px solid var(--line);
}
.directory-head h2 {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 88px);
  letter-spacing: -.06em;
}
.directory-head p { margin-top: 20px; color: var(--muted); }
.directory-groups {
  margin-top: 76px;
  display: grid;
  grid-template-columns: 1.25fr .9fr .65fr;
  gap: clamp(34px, 6vw, 100px);
}
.directory-group { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.35); }
.directory-group h3 { color: var(--violet-soft); font-size: 13px; font-weight: 700; }
.directory-links { margin-top: 24px; display: grid; gap: 0; }
.directory-links a {
  padding: 11px 0;
  color: #c6c4cb;
  font-family: var(--display);
  font-size: clamp(17px, 1.6vw, 24px);
  transition: color .25s ease, transform .25s var(--ease);
}
.directory-links a:hover, .directory-links a:focus-visible { color: var(--text); transform: translateX(8px); }

.project-stream { border-top: 1px solid var(--line); }
.project-entry {
  scroll-margin-top: 84px;
  padding-top: clamp(110px, 13vw, 200px);
  padding-bottom: clamp(120px, 14vw, 220px);
  border-bottom: 1px solid var(--line);
}
.project-entry.own-project { background: var(--surface); }
.project-entry-head { position: relative; }
.project-kind { color: var(--violet-soft); font-size: 13px; font-weight: 700; }
.project-entry-head h2 {
  margin-top: 20px;
  max-width: 1220px;
  font-family: var(--display);
  font-size: clamp(62px, 9vw, 140px);
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.075em;
  overflow-wrap: anywhere;
}
.project-summary {
  max-width: 720px;
  margin-top: 46px;
  font-size: clamp(21px, 2.4vw, 36px);
  font-weight: 600;
  line-height: 1.5;
}
.project-scope {
  max-width: 760px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.project-mosaic {
  margin-top: clamp(64px, 8vw, 120px);
  display: grid;
  grid-template-columns: 1.22fr .78fr;
  gap: 12px;
  align-items: stretch;
}
.project-mosaic figure {
  min-width: 0;
  background: #111113;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.project-mosaic img { width: 100%; height: auto; object-fit: contain; }
.project-mosaic figure:first-child { grid-row: span 2; }
.project-mosaic.expanded {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 18px);
}
.project-mosaic.expanded figure:first-child,
.project-mosaic.expanded figure:nth-child(6n + 1) {
  grid-column: 1 / -1;
  grid-row: auto;
}
.project-mosaic.expanded figure { border: 1px solid rgba(255,255,255,.05); }
.project-entry:nth-child(3n+2) .project-mosaic {
  grid-template-columns: 1fr 1fr;
}
.project-entry:nth-child(3n+2) .project-mosaic figure:first-child {
  grid-column: 1 / -1;
  grid-row: auto;
}
.project-entry:nth-child(3n+3) .project-mosaic {
  grid-template-columns: 1.34fr .83fr .83fr;
}
.project-entry:nth-child(3n+3) .project-mosaic figure:first-child { grid-row: auto; }
.project-entry:nth-child(3n+2) .project-mosaic.expanded,
.project-entry:nth-child(3n+3) .project-mosaic.expanded {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.project-entry:nth-child(3n+2) .project-mosaic.expanded figure:first-child,
.project-entry:nth-child(3n+3) .project-mosaic.expanded figure:first-child {
  grid-column: 1 / -1;
  grid-row: auto;
}

.projects-closing {
  min-height: 100dvh;
  padding-top: clamp(130px, 15vw, 230px);
  padding-bottom: clamp(80px, 10vw, 150px);
  display: flex;
  align-items: center;
  background: var(--violet);
}
.projects-closing img { width: 220px; filter: brightness(0) invert(1); }
.projects-closing h2 {
  max-width: 1100px;
  margin-top: 80px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(58px, 8.5vw, 132px);
  line-height: .92;
  letter-spacing: -.07em;
}
.projects-closing p {
  max-width: 610px;
  margin-top: 34px;
  color: rgba(255,255,255,.76);
  font-size: 18px;
  line-height: 1.75;
}
.projects-closing .button { margin-top: 38px; background: #fff; color: #111; }

@media (max-width: 1050px) {
  .projects-hero { grid-template-columns: .55fr 1.45fr; }
  .project-entry:nth-child(3n+3) .project-mosaic { grid-template-columns: 1.25fr .75fr; }
  .project-entry:nth-child(3n+3) .project-mosaic figure:first-child { grid-row: span 2; }
}

@media (max-width: 767px) {
  .projects-hero {
    min-height: auto;
    padding-top: 140px;
    grid-template-columns: 1fr;
    align-items: start;
  }
  .projects-hero-count strong { font-size: 116px; }
  .projects-hero-count span { margin-top: 18px; }
  .projects-hero-copy h1 { font-size: clamp(48px, 14vw, 68px); line-height: .96; }
  .projects-hero-copy p { margin-top: 28px; }
  .directory-groups { grid-template-columns: 1fr; margin-top: 54px; }
  .directory-links { grid-template-columns: 1fr 1fr; column-gap: 18px; }
  .directory-links a { font-size: 16px; }
  .project-entry { scroll-margin-top: 68px; }
  .project-entry-head h2 { font-size: clamp(48px, 15vw, 72px); line-height: .94; }
  .project-summary { margin-top: 32px; font-size: 21px; }
  .project-mosaic,
  .project-entry:nth-child(3n+2) .project-mosaic,
  .project-entry:nth-child(3n+3) .project-mosaic { grid-template-columns: 1fr; gap: 9px; }
  .project-mosaic figure:first-child,
  .project-mosaic.expanded figure:nth-child(6n + 1),
  .project-entry:nth-child(3n+2) .project-mosaic figure:first-child,
  .project-entry:nth-child(3n+3) .project-mosaic figure:first-child { grid-column: auto; grid-row: auto; }
  .projects-closing { min-height: 100dvh; }
  .projects-closing img { width: 160px; }
  .projects-closing h2 { margin-top: 64px; font-size: clamp(49px, 14vw, 70px); }
}

/* Content commerce */
.commerce-teaser {
  padding: clamp(100px, 13vw, 200px) 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(128,104,255,.16), transparent 48%),
    var(--surface);
}
.commerce-teaser-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: end;
}
.commerce-teaser-copy h2 {
  margin-top: 20px;
  font-family: var(--display);
  font-size: clamp(72px, 10vw, 154px);
  line-height: .9;
  letter-spacing: -.075em;
}
.commerce-teaser-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 38px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.75;
}
.commerce-teaser-copy .button { margin-top: 34px; }
.commerce-teaser-proof { border-top: 1px solid rgba(255,255,255,.36); }
.commerce-teaser-proof article {
  min-height: 136px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 22px;
}
.commerce-teaser-proof strong {
  color: var(--violet-soft);
  font-family: var(--display);
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 500;
  letter-spacing: -.06em;
}
.commerce-teaser-proof span { max-width: 170px; color: var(--muted); font-size: 13px; line-height: 1.6; }

.ecommerce-page { background: var(--bg); }
.ecommerce-page .site-header { background: rgba(10,10,11,.9); }
.commerce-hero {
  position: relative;
  min-height: 100dvh;
  padding-top: 72px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 38%, rgba(128,104,255,.22), transparent 34%),
    linear-gradient(135deg, #09090a 0%, #0d0c12 55%, #121021 100%);
}
.commerce-hero::before {
  content: "";
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  top: 94px;
  height: 5px;
  background: var(--violet);
}
.commerce-hero-inner { position: relative; z-index: 1; padding-top: 110px; padding-bottom: 130px; }
.commerce-hero h1 {
  margin-top: 26px;
  font-family: var(--display);
  font-size: clamp(88px, 17vw, 280px);
  font-weight: 600;
  line-height: .78;
  letter-spacing: -.09em;
  white-space: nowrap;
}
.commerce-hero-bottom {
  margin-top: clamp(80px, 10vw, 150px);
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.36);
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}
.commerce-hero-bottom p { font-size: clamp(24px, 3vw, 44px); font-weight: 600; letter-spacing: -.04em; }
.commerce-hero-bottom span { max-width: 500px; color: var(--muted); font-size: 15px; line-height: 1.8; text-align: right; }
.commerce-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  padding: 0 var(--pad);
  display: flex;
  justify-content: space-between;
  color: #706d79;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: .12em;
}

.commerce-position {
  min-height: 94dvh;
  padding-top: clamp(120px, 15vw, 230px);
  padding-bottom: clamp(120px, 15vw, 230px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: center;
}
.commerce-position h2,
.commerce-section-head h2,
.commerce-closing h2 {
  margin-top: 22px;
  font-family: var(--display);
  font-size: clamp(58px, 7.8vw, 118px);
  line-height: .94;
  letter-spacing: -.07em;
}
.commerce-position-body > p { color: #d6d4dc; font-size: clamp(22px, 2.3vw, 34px); line-height: 1.55; }
.commerce-position-line {
  margin-top: 70px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.35);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: 13px;
}
.commerce-position-line b { color: var(--violet-soft); font-weight: 400; }

.commerce-capabilities { padding: clamp(100px, 13vw, 200px) 0; background: var(--surface); border-block: 1px solid var(--line); }
.commerce-section-head { max-width: 1050px; }
.commerce-capability-grid {
  margin-top: clamp(70px, 9vw, 135px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.commerce-capability-grid article { min-height: 400px; padding: 26px 24px 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.commerce-capability-grid article > span { color: var(--violet-soft); font-family: var(--display); font-size: 12px; }
.commerce-capability-grid h3 { margin-top: auto; font-family: var(--display); font-size: clamp(28px, 2.5vw, 38px); letter-spacing: -.04em; }
.commerce-capability-grid p { margin-top: 20px; color: var(--muted); font-size: 14px; line-height: 1.75; }

.commerce-case { padding: clamp(120px, 15vw, 230px) 0; }
.wishmore-intro { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr); gap: clamp(60px, 10vw, 160px); align-items: end; }
.wishmore-title h2 {
  margin-top: 24px;
  font-family: var(--display);
  font-size: clamp(70px, 11.5vw, 178px);
  line-height: .82;
  letter-spacing: -.085em;
}
.wishmore-title > p:last-child { max-width: 760px; margin-top: 46px; font-size: clamp(22px, 2.5vw, 36px); font-weight: 600; line-height: 1.5; }
.wishmore-answer { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.36); }
.wishmore-answer span { color: var(--violet-soft); font-size: 13px; font-weight: 700; }
.wishmore-answer p { margin-top: 24px; color: var(--muted); line-height: 1.85; }
.commerce-proof-wide { margin-top: clamp(70px, 9vw, 140px); }
.commerce-proof-wide img,
.commerce-influencer-image img { width: 100%; height: auto; object-fit: contain; }
.commerce-results {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.commerce-results article { min-height: 210px; padding: 28px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.commerce-results strong { color: var(--violet-soft); font-family: var(--display); font-size: clamp(42px, 4.2vw, 68px); font-weight: 500; letter-spacing: -.065em; }
.commerce-results span { color: var(--muted); font-size: 13px; }
.wishmore-retail { margin-top: clamp(100px, 13vw, 200px); display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); gap: clamp(50px, 8vw, 125px); align-items: center; }
.wishmore-retail figure { background: #161618; }
.wishmore-retail figure img { width: 100%; height: auto; object-fit: contain; }
.wishmore-retail-copy h3 { margin-top: 22px; font-family: var(--display); font-size: clamp(42px, 5vw, 76px); line-height: 1; letter-spacing: -.06em; }
.wishmore-retail-stats { margin-top: 56px; border-top: 1px solid rgba(255,255,255,.35); }
.wishmore-retail-stats article { padding: 24px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; align-items: baseline; }
.wishmore-retail-stats strong { color: var(--violet-soft); font-family: var(--display); font-size: 45px; font-weight: 500; }
.wishmore-retail-stats span { max-width: 230px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.commerce-data-note { margin-top: 26px; color: #77747e; font-size: 11px; line-height: 1.7; }

.commerce-support { padding: clamp(110px, 14vw, 220px) 0; background: var(--surface); border-block: 1px solid var(--line); }
.support-case-grid { margin-top: clamp(72px, 9vw, 135px); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.6vw, 40px); }
.support-case { border-top: 1px solid rgba(255,255,255,.35); }
.support-case figure { aspect-ratio: .86; margin-top: 18px; background: #0f0f11; display: grid; place-items: center; overflow: hidden; }
.support-case figure img { width: 100%; height: 100%; object-fit: contain; }
.support-case > div { padding-top: 24px; }
.support-case span { color: var(--violet-soft); font-size: 12px; font-weight: 700; }
.support-case h3 { margin-top: 14px; font-family: var(--display); font-size: clamp(30px, 3vw, 47px); line-height: 1; letter-spacing: -.055em; overflow-wrap: anywhere; }
.support-case p { margin-top: 20px; color: var(--muted); line-height: 1.7; }

.commerce-influencer { padding: clamp(120px, 15vw, 230px) 0; }
.commerce-influencer-head > p:last-child { max-width: 640px; margin-top: 35px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.commerce-influencer-image { margin-top: clamp(70px, 9vw, 140px); }
.influencer-categories { margin-top: 22px; display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.influencer-categories span { min-height: 72px; padding: 12px 8px; display: grid; place-items: center; background: var(--bg); color: #c8c6ce; font-size: 12px; text-align: center; }
.commerce-influencer-image-secondary { margin-top: clamp(80px, 10vw, 150px); }

.commerce-process { padding-top: clamp(100px, 13vw, 200px); padding-bottom: clamp(120px, 15vw, 230px); border-top: 1px solid var(--line); }
.commerce-process-line { margin-top: clamp(70px, 9vw, 135px); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.commerce-process-line article { min-height: 270px; padding: 24px; border: 1px solid var(--line); border-right: 0; display: flex; flex-direction: column; }
.commerce-process-line article:last-child { border-right: 1px solid var(--line); }
.commerce-process-line strong { color: var(--violet-soft); font-family: var(--display); font-size: 12px; }
.commerce-process-line span { margin-top: auto; font-size: 23px; font-weight: 700; }
.commerce-process-line p { margin-top: 15px; color: var(--muted); font-size: 13px; line-height: 1.6; }

.commerce-closing { min-height: 100dvh; padding: clamp(120px, 15vw, 220px) 0 100px; display: flex; align-items: center; background: var(--violet); }
.commerce-closing img { width: 220px; filter: brightness(0) invert(1); }
.commerce-closing .eyebrow { margin-top: 70px; color: rgba(255,255,255,.7); }
.commerce-closing h2 { color: #fff; }
.commerce-closing > div > p:not(.eyebrow) { max-width: 610px; margin-top: 34px; color: rgba(255,255,255,.76); font-size: 18px; line-height: 1.75; }
.commerce-closing .button { margin-top: 38px; background: #fff; color: #111; }

@media (max-width: 1050px) {
  .commerce-teaser-grid,
  .commerce-position,
  .wishmore-intro,
  .wishmore-retail { grid-template-columns: 1fr; }
  .commerce-capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .commerce-capability-grid article { min-height: 320px; }
  .commerce-results { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support-case-grid { grid-template-columns: 1fr 1fr; }
  .support-case:last-child { grid-column: 1 / -1; width: calc(50% - 10px); }
  .influencer-categories { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .commerce-teaser-grid { grid-template-columns: 1fr; }
  .commerce-teaser-copy h2 { font-size: clamp(62px, 20vw, 92px); }
  .commerce-teaser-proof article { min-height: 112px; }
  .commerce-hero { min-height: 100svh; padding-top: 64px; }
  .commerce-hero::before { top: 80px; height: 4px; }
  .commerce-hero-inner { padding-top: 100px; padding-bottom: 105px; }
  .commerce-hero h1 { font-size: clamp(70px, 24vw, 108px); line-height: .84; }
  .commerce-hero-bottom { margin-top: 68px; flex-direction: column; }
  .commerce-hero-bottom span { text-align: left; }
  .commerce-marquee span:nth-child(even) { display: none; }
  .commerce-position { min-height: auto; grid-template-columns: 1fr; }
  .commerce-position h2,
  .commerce-section-head h2,
  .commerce-closing h2 { font-size: clamp(46px, 13.5vw, 68px); }
  .commerce-position-line { align-items: flex-start; flex-direction: column; }
  .commerce-position-line b { transform: rotate(90deg); }
  .commerce-capability-grid { grid-template-columns: 1fr; }
  .commerce-capability-grid article { min-height: 280px; }
  .wishmore-title h2 { font-size: clamp(60px, 18vw, 82px); }
  .wishmore-title > p:last-child { font-size: 21px; }
  .commerce-results { grid-template-columns: 1fr; }
  .commerce-results article { min-height: 150px; }
  .wishmore-retail { grid-template-columns: 1fr; }
  .wishmore-retail-copy h3 { font-size: 43px; }
  .support-case-grid { grid-template-columns: 1fr; }
  .support-case:last-child { grid-column: auto; width: auto; }
  .influencer-categories { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .commerce-process-line { grid-template-columns: 1fr 1fr; }
  .commerce-process-line article:nth-child(2) { border-right: 1px solid var(--line); }
  .commerce-process-line article:nth-child(n+3) { border-top: 0; }
  .commerce-process-line article { min-height: 220px; }
  .commerce-closing img { width: 160px; }
}

/* Conversion and readability refinements */
.hero-center { transform: translateY(-1.5vh); }
.hero-sub {
  color: #bbb8c2;
  animation-delay: .55s;
}
.hero-actions { animation-delay: .72s; }

.home-proof {
  padding: clamp(58px, 7vw, 100px) 0 clamp(75px, 9vw, 135px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0d0f;
}
.home-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.34);
  border-left: 1px solid var(--line);
}
.home-proof-grid article {
  min-height: 225px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.home-proof-grid article > span {
  color: var(--violet-soft);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}
.home-proof-grid strong {
  margin-top: auto;
  font-family: var(--display);
  font-size: clamp(42px, 4vw, 66px);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.065em;
}
.home-proof-grid p { margin-top: 16px; color: var(--muted); font-size: 13px; }
.home-proof-note { margin-top: 18px; color: #76737d; font-size: 11px; line-height: 1.7; }

.belief {
  min-height: 82dvh;
  padding-top: clamp(95px, 12vw, 175px);
  padding-bottom: clamp(90px, 11vw, 160px);
}
.belief-quote { margin-top: clamp(50px, 7vw, 105px); }
.problems { padding-top: clamp(80px, 9vw, 135px); padding-bottom: clamp(95px, 11vw, 165px); }
.problem-field { min-height: 650px; margin-top: clamp(65px, 8vw, 115px); }
.problem-c { top: 310px; }
.problem-d { top: 400px; }

.quick-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  min-width: 310px;
  min-height: 62px;
  padding: 10px 10px 10px 16px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(18,18,20,.9);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 14px 44px rgba(0,0,0,.25);
}
.quick-contact div { display: grid; gap: 4px; }
.quick-contact span { color: var(--muted); font-size: 10px; }
.quick-contact strong { font-size: 12px; font-weight: 600; }
.quick-contact button {
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  background: var(--violet-soft);
  color: #0b0b0d;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.directory-links a {
  min-height: 82px;
  padding: 12px 0 12px 94px;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.directory-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 78px;
  height: 56px;
  background-color: #171719;
  background-image: var(--cover);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(.75) brightness(.78);
  transition: filter .25s ease, transform .25s var(--ease);
}
.directory-links a:hover::before,
.directory-links a:focus-visible::before { filter: saturate(1) brightness(1); transform: scale(1.03); }
.directory-links a:hover,
.directory-links a:focus-visible { transform: none; }

.project-logic {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.34);
  border-left: 1px solid var(--line);
}
.project-logic article {
  min-height: 175px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.project-logic span { color: var(--violet-soft); font-size: 11px; font-weight: 700; }
.project-logic p { margin-top: 38px; color: #d1cfd7; font-size: 14px; line-height: 1.75; }
.project-mosaic.is-collapsed {
  grid-template-columns: 1fr !important;
}
.project-mosaic.is-collapsed figure:not(:first-child) { display: none; }
.project-mosaic.is-collapsed figure:first-child {
  grid-column: 1 / -1 !important;
  grid-row: auto !important;
}
.project-controls { margin-top: 22px; display: flex; justify-content: center; }
.project-toggle { min-width: 240px; }
.project-entry:not(.is-expanded) {
  padding-top: clamp(85px, 10vw, 150px);
  padding-bottom: clamp(90px, 11vw, 165px);
}

.commerce-results small {
  color: #77747e;
  font-size: 10px;
  letter-spacing: .05em;
}
.ecommerce-page .image-reveal {
  opacity: 1;
  transform: none;
  clip-path: none;
}
.ecommerce-page .image-reveal.is-visible { clip-path: none; }

@media (max-width: 767px) {
  body { padding-bottom: 66px; }
  .hero-center { transform: translateY(-2vh); }
  .home-proof-grid { grid-template-columns: 1fr; }
  .home-proof-grid article { min-height: 165px; }
  .belief { min-height: auto; }
  .problem-field { min-height: auto; }
  .quick-contact {
    left: 0;
    right: 0;
    bottom: 0;
    min-width: 0;
    min-height: 66px;
    padding: 9px 12px 9px 16px;
    border-inline: 0;
    border-bottom: 0;
  }
  .quick-contact strong { font-size: 11px; }
  .directory-links { grid-template-columns: 1fr; }
  .directory-links a { min-height: 72px; padding-left: 82px; }
  .directory-links a::before { width: 68px; height: 48px; }
  .project-logic { grid-template-columns: 1fr; margin-top: 38px; }
  .project-logic article { min-height: auto; }
  .project-logic p { margin-top: 20px; }
  .project-entry:not(.is-expanded) { padding-top: 85px; padding-bottom: 100px; }
}
