:root {
  --black: #000;
  --white: #f5f5f7;
  --grey-1: #a1a1a6;
  --grey-2: #6e6e73;
  --signal-blue: #69adf5;
  --signal-orange: #f08a4b;
  --hairline: rgba(255, 255, 255, 0.16);
  --page: clamp(24px, 2.5vw, 40px);
  --header-height: 72px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-smooth: cubic-bezier(.2, .72, .2, 1);
  --process: 0;
  --assemble: 1;
  --resolve: 1;
  --blueprint-opacity: 1;
  --trace-opacity: 0;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 84px; background: var(--black); }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background: var(--black);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin: 0; }
button { font: inherit; }
::selection { color: #000; background: #f5f5f7; }
a:focus-visible, button:focus-visible { outline: 1px solid var(--white); outline-offset: 4px; }
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: none; border-color: var(--white); }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

.page-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
  background: transparent;
}
.page-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(245,245,247,.88);
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 14px var(--page);
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(0,0,0,.88);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: .03em;
  text-transform: uppercase;
  opacity: 0;
  animation: header-in .8s .45s var(--ease-smooth) forwards;
  transition: border-color .35s ease, background .35s ease;
}
.site-header.is-scrolled { border-color: rgba(255,255,255,.14); background: rgba(0,0,0,.94); }
@keyframes header-in { to { opacity: 1; } }
.wordmark { width: fit-content; font-size: 18px; line-height: 1; font-weight: 650; letter-spacing: -.055em; }
.site-header p { color: var(--grey-2); }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a { position: relative; min-height: 44px; padding: 10px 0; display: flex; align-items: center; color: var(--grey-1); transition: color .25s ease; }
.site-nav > a:not(.site-nav-primary):after { content: ""; position: absolute; left: 0; right: 0; bottom: 5px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .3s cubic-bezier(.2,.72,.2,1); }
.site-nav > a:hover, .site-nav > a:focus-visible { color: var(--white); }
.site-nav > a:not(.site-nav-primary):hover:after,
.site-nav > a:not(.site-nav-primary):focus-visible:after,
.site-nav > a[aria-current="true"]:after { transform: scaleX(1); transform-origin: left; }
.site-nav > a[aria-current="true"] { color: var(--white); }
.site-nav-primary { padding: 11px 17px !important; border-radius: 999px; background: var(--white); color: #050505 !important; font-weight: 650; letter-spacing: .01em; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px var(--page) 28px;
}
.hero-edition {
  display: flex;
  justify-content: space-between;
  width: 40%;
  margin: 0 0 clamp(50px, 8vh, 100px) auto;
  color: var(--grey-2);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero h1 {
  display: block;
  width: 100%;
  margin-left: -.055em;
  font-size: clamp(108px, 25.5vw, 390px);
  line-height: .69;
  font-weight: 620;
  letter-spacing: -.105em;
  white-space: nowrap;
}
.hero-wordmark { display: block; }
.hero-wordmark > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(42px);
  animation: hero-letter 1.15s cubic-bezier(.16, 1, .3, 1) forwards;
}
.hero-wordmark > span:nth-child(2) { animation-delay: .04s; }
.hero-wordmark > span:nth-child(3) { animation-delay: .08s; }
.hero-wordmark > span:nth-child(4) { animation-delay: .12s; }
.hero-wordmark > span:nth-child(5) { animation-delay: .16s; }
.hero-wordmark > span:nth-child(6) { animation-delay: .20s; }
@keyframes hero-letter { to { opacity: 1; transform: translateY(0); } }
.hero-baseline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(48px, 8vh, 90px);
  padding: 20px 33.33% 0 25%;
  border-top: 1px solid var(--hairline);
  color: var(--grey-1);
  font-size: 13px;
  line-height: 1.28;
  letter-spacing: -.01em;
}
.hero-actions {
  position: absolute;
  right: var(--page);
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.scroll-cue {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 176px;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.scroll-cue i { font-style: normal; }
.cta-primary { min-height: 46px; padding: 0 17px; border-radius: 999px; background: var(--white); color: #050505; font-weight: 670; transition: transform .25s ease, background .25s ease; }
.cta-primary:hover { transform: translateY(-2px); background: #fff; }
.cta-primary i, .section-next a i, .contact-primary span { transition: transform .35s var(--ease-out); }
.cta-primary:hover i, .cta-primary:focus-visible i { transform: translate(2px,-2px); }
.cta-secondary { min-height: 44px; padding: 11px 0 9px; display: flex; align-items: center; border-bottom: 1px solid #66666a; color: var(--grey-1); font-size: 10px; letter-spacing: .01em; transition: color .25s ease, border-color .25s ease; }
.cta-secondary:hover { color: var(--white); border-color: var(--white); }

.silence {
  position: relative;
  min-height: 110vh;
  padding: 28px var(--page) 14vh;
  display: grid;
  grid-template-columns: 16.66% 1fr;
  align-content: end;
}
.silence-rule { position: absolute; top: 0; left: var(--page); right: var(--page); height: 1px; background: var(--hairline); }
.silence-index { align-self: start; color: var(--grey-2); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.silence-line {
  justify-self: end;
  width: 66.66%;
  font-size: clamp(54px, 7.7vw, 118px);
  line-height: .9;
  letter-spacing: -.065em;
  font-weight: 560;
}
.silence-line span { color: #3f3f42; }
.silence-line.is-visible span { transition: color 1.4s .3s ease; color: #626267; }

.case { padding: 0 var(--page); }
.case-meal { padding-top: clamp(120px, 14vw, 220px); padding-bottom: 14vw; }

.project-color { color: #111; }
.meal-case-head {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: end;
  padding: 0 0 clamp(56px, 7vw, 110px);
}
.meal-case-head > p:first-child { align-self: start; color: var(--grey-2); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.meal-case-head h2 { text-align: center; font-size: clamp(112px, 17vw, 260px); line-height: .72; letter-spacing: -.09em; font-weight: 610; }
.meal-case-lead { justify-self: end; color: var(--grey-1); font-size: 13px; line-height: 1.22; letter-spacing: -.015em; }

.meal-showcase {
  --meal-text-primary: rgba(15,23,42,.92);
  --meal-text-secondary: rgba(15,23,42,.62);
  --meal-text-tertiary: rgba(15,23,42,.42);
  --meal-signature: linear-gradient(92deg, #5faaf5 0%, #72b7f0 20%, #a0b9c8 34%, #d8ae8c 48%, #ec9a64 66%, #e47a3f 86%, #d8612e 100%);
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.meal-scenes {
  position: relative;
  height: min(84vh, 850px);
  min-height: 720px;
  overflow: hidden;
  border-radius: 22px;
  background: #f7f5f0;
  box-shadow: 0 60px 140px rgba(0,0,0,.42);
}
.meal-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: scale(.992);
  transition: opacity .55s ease, transform .9s cubic-bezier(.16,1,.3,1), visibility 0s .55s;
}
.meal-scene.is-active { z-index: 2; opacity: 1; visibility: visible; transform: scale(1); transition-delay: 0s; }
.meal-scene--hero {
  background:
    radial-gradient(72% 92% at 12% 12%, rgba(205,225,255,.94), transparent 72%),
    radial-gradient(68% 88% at 90% 92%, rgba(255,228,191,.82), transparent 74%),
    linear-gradient(180deg, #eef5ff 0%, #f7f5f0 60%, #f5e3c9 100%);
}
.meal-scene--hero:after {
  content: "";
  position: absolute;
  inset: auto -8% -36% 30%;
  height: 72%;
  border-radius: 50%;
  background: rgba(255,228,191,.38);
  filter: blur(110px);
}
.meal-site-bar {
  position: absolute;
  z-index: 4;
  top: 28px;
  left: 50%;
  width: min(86%, 1240px);
  min-height: 72px;
  padding: 0 18px 0 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid rgba(255,255,255,.64);
  border-radius: 34px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 24px 64px rgba(15,23,42,.13), inset 0 1px 0 rgba(255,255,255,.62);
  transform: translateX(-50%);
}
.meal-site-brand { display: flex; align-items: center; gap: 12px; font-size: 18px; }
.meal-site-brand img { width: 31px; height: 31px; border-radius: 50%; }
.meal-site-brand b { font-weight: 720; letter-spacing: -.02em; }
.meal-site-links { display: flex; gap: clamp(20px, 2.4vw, 34px); color: rgba(31,41,57,.74); font-size: 14px; font-weight: 650; letter-spacing: -.015em; }
.meal-site-links i { font-style: normal; }
.meal-site-button { justify-self: end; padding: 15px 25px; border-radius: 999px; background: #1d1d1f; color: #fff; font-size: 13px; font-weight: 720; box-shadow: 0 16px 34px rgba(5,5,7,.24); }
.meal-scene-copy { position: absolute; z-index: 3; left: 8%; top: 28%; }
.meal-scene-copy > span,
.meal-scene-center > span { display: block; margin-bottom: 22px; color: var(--meal-text-secondary); font-size: 11px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.meal-scene h3 { color: var(--meal-text-primary); font-size: clamp(54px, 5.8vw, 90px); line-height: .9; letter-spacing: -.064em; font-weight: 680; }
.meal-scene h3 em { font-style: normal; background: var(--meal-signature); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.meal-scene-copy h3 { max-width: 8.9ch; }
.meal-scene-copy p { margin-top: 28px; color: var(--meal-text-secondary); font-size: 15px; font-weight: 550; line-height: 1.34; }
.meal-scene-device {
  position: absolute;
  z-index: 3;
  top: 17%;
  right: 8%;
  width: clamp(230px, 19vw, 292px);
  height: auto;
  margin: 0;
  overflow: hidden;
  border-radius: 48px;
  background: #fff;
  box-shadow: 0 40px 90px rgba(60,74,95,.30), 0 0 0 1px rgba(0,0,0,.08);
}
.meal-scene-device img { width: 100%; height: auto; display: block; }

.meal-device-shell {
  --phone-radius: 52px;
  --screen-radius: 47px;
  --phone-bezel: 9px;
  overflow: visible;
  padding: 4px;
  border: 2px solid #000;
  border-radius: var(--phone-radius);
  background: #000;
  box-shadow: 0 0 0 1px #000, 0 34px 78px -10px rgba(15,23,42,.40), 0 18px 38px -12px rgba(15,23,42,.28), 0 5px 12px rgba(15,23,42,.14);
  isolation: isolate;
}
.meal-device-shell:before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: calc(6px + var(--phone-bezel));
  border-radius: var(--screen-radius);
  pointer-events: none;
  background: linear-gradient(155deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.04) 8%, rgba(255,255,255,0) 22%, rgba(255,255,255,0) 78%, rgba(255,255,255,.03) 92%, rgba(255,255,255,.08) 100%);
  mix-blend-mode: screen;
}
.meal-device-shell:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 23%;
  right: -2px;
  width: 4px;
  height: 13.5%;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(90deg, #0a0a0c 0%, #2a2a2c 22%, #7a7a7d 50%, #2a2a2c 78%, #0a0a0c 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), inset 0 -1px 0 rgba(0,0,0,.55), 1px 0 1px rgba(0,0,0,.4);
}
.meal-device-shell img {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  border: var(--phone-bezel) solid #000;
  border-radius: var(--screen-radius);
  background: #000;
  box-shadow: 0 0 0 1px #000 inset;
}
.meal-device-shell__buttons { position: absolute; z-index: 0; top: 13%; left: -2px; width: 4px; height: 26%; pointer-events: none; }
.meal-device-shell__buttons:before,
.meal-device-shell__buttons:after { content: ""; position: absolute; left: 0; width: 100%; border-radius: 2px 0 0 2px; }
.meal-device-shell__buttons:before { top: 0; height: 22%; background: linear-gradient(90deg, #0a0a0c 0%, #2a2a2c 22%, #7a7a7d 50%, #2a2a2c 78%, #0a0a0c 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,.22), inset 0 -1px 0 rgba(0,0,0,.55), -1px 0 1px rgba(0,0,0,.4); }
.meal-device-shell__buttons:after { top: 36%; height: 64%; background: linear-gradient(180deg, #0a0a0c 0%, #2a2a2c 4%, #7a7a7d 10%, #5a5a5d 44%, transparent 46%, transparent 54%, #5a5a5d 56%, #7a7a7d 90%, #2a2a2c 96%, #0a0a0c 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,.18), inset 0 -1px 0 rgba(0,0,0,.55), -1px 0 1px rgba(0,0,0,.4); }

.meal-scene--courses {
  background:
    radial-gradient(76% 92% at 12% 8%, rgba(205,225,255,.76), transparent 72%),
    radial-gradient(72% 94% at 88% 92%, rgba(255,199,158,.68), transparent 72%),
    linear-gradient(180deg, #eef5ff 0%, #faf7ef 46%, #ffe3bc 100%);
}
.meal-scene-center { position: absolute; z-index: 4; top: 10%; left: 0; right: 0; text-align: center; }
.meal-scene-center > span { margin-bottom: 16px; }
.meal-scene--courses h3 { font-size: clamp(54px, 5.8vw, 88px); }
.meal-ui-crop { position: absolute; z-index: 2; bottom: 28px; width: clamp(218px, 19vw, 282px); margin: 0; overflow: visible; border-radius: 48px; background: #fff; box-shadow: 0 30px 80px rgba(84,59,36,.18); }
.meal-ui-crop img { display: block; width: 100%; height: auto; }
.meal-ui-crop--menu { left: 18%; transform: rotate(-2deg); }
.meal-ui-crop--list { right: 18%; bottom: 28px; transform: rotate(2deg); }
.meal-scene-caption { position: absolute; z-index: 4; left: 50%; bottom: 7%; width: 200px; color: var(--meal-text-secondary); font-size: 12px; font-weight: 550; line-height: 1.3; text-align: center; transform: translateX(-50%); }

.meal-scene--cook {
  background:
    radial-gradient(76% 92% at 12% 8%, rgba(215,228,250,.84), transparent 72%),
    radial-gradient(70% 88% at 92% 94%, rgba(255,226,198,.70), transparent 72%),
    linear-gradient(180deg, #f4f9ff 0%, #f7f5f0 58%, #ffe2c6 100%);
}
.meal-scene--cook .meal-scene-center { top: 9%; text-align: left; left: 7%; right: auto; }
.meal-scene--cook h3 { font-size: clamp(58px, 6.7vw, 104px); }
.meal-cook-focus { position: absolute; z-index: 2; top: 8%; right: 10%; width: clamp(232px, 22vw, 320px); height: auto; margin: 0; overflow: visible; border-radius: 48px; background: #fff; box-shadow: 0 44px 100px rgba(0,0,0,.18); }
.meal-cook-focus img { display: block; width: 100%; height: auto; }
.meal-scene-device.meal-device-shell,
.meal-ui-crop.meal-device-shell,
.meal-cook-focus.meal-device-shell { background: #000; }
.meal-scene--cook .meal-scene-caption { right: auto; left: 7%; bottom: 7%; color: var(--meal-text-secondary); text-align: left; transform: none; }

.meal-feature-tabs { width: max-content; display: flex; gap: 8px; margin: 24px auto 0; padding: 5px; border: 1px solid #242426; border-radius: 999px; background: #0a0a0b; }
.meal-feature-tabs button { display: flex; gap: 10px; align-items: center; padding: 13px 18px; border: 0; border-radius: 999px; background: transparent; color: #717176; font: inherit; font-size: 10px; letter-spacing: .035em; cursor: pointer; transition: color .25s ease, background .25s ease; }
.meal-feature-tabs button span { color: #45454a; font-size: 8px; }
.meal-feature-tabs button:hover,
.meal-feature-tabs button:focus-visible { color: #c7c7cb; }
.meal-feature-tabs button:focus-visible { outline: 1px solid #77777c; outline-offset: 3px; }
.meal-feature-tabs button.is-active { background: #f5f5f7; color: #111; }
.meal-feature-tabs button.is-active span { color: #8a8a90; }

.case-brand { padding-top: clamp(96px, 8vw, 130px); padding-bottom: 8vw; }
.case-position { min-height: 220px; display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: center; margin-bottom: 8vw; padding: 22px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.case-position p:first-child { color: var(--grey-2); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.case-position p:nth-child(2) { font-size: clamp(28px, 3.2vw, 50px); font-weight: 560; letter-spacing: -.045em; }
.case-position p:last-child { color: var(--grey-1); font-size: 13px; line-height: 1.2; }
.brand-case-head { display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: end; padding: 0 0 clamp(56px, 7vw, 110px); }
.brand-case-head > p:first-child { align-self: start; color: var(--grey-2); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.brand-case-head h2 { text-align: center; font-size: clamp(98px, 15.2vw, 232px); line-height: .72; letter-spacing: -.09em; font-weight: 610; }
.brand-case-lead { justify-self: end; color: var(--grey-1); font-size: 13px; line-height: 1.22; letter-spacing: -.015em; }

.brand-showcase { --brand-paper: #e9e5dc; --brand-paper-light: #f4f1eb; --brand-ink: #090909; --brand-accent: #d94c34; position: relative; font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif; }
.brand-scenes { position: relative; height: clamp(620px, calc(100svh - 104px), 820px); overflow: hidden; border-radius: 18px; background: var(--brand-paper); box-shadow: 0 60px 140px rgba(0,0,0,.42); }
.brand-scene { position: absolute; inset: 0; overflow: hidden; opacity: 0; visibility: hidden; transform: scale(.992) translateY(5px); filter: blur(7px); transition: opacity .45s ease, transform .8s var(--ease-out), filter .65s ease, visibility 0s .55s; }
.brand-scene.is-active { z-index: 2; opacity: 1; visibility: visible; transform: scale(1) translateY(0); filter: blur(0); transition-delay: 0s; }
.brand-scene-top { position: absolute; z-index: 5; top: 28px; left: 34px; right: 34px; display: flex; justify-content: space-between; padding-top: 12px; border-top: 1px solid currentColor; font-size: 9px; font-weight: 610; letter-spacing: .11em; text-transform: uppercase; }

.brand-scene--sign { background: var(--brand-paper); color: var(--brand-ink); }
.brand-sign-copy { position: absolute; z-index: 3; top: 28%; left: 7%; }
.brand-sign-copy > span { display: block; margin-bottom: 18px; font-size: 10px; font-weight: 620; letter-spacing: .1em; text-transform: uppercase; }
.brand-sign-copy h3 { max-width: 7.4ch; font-size: clamp(68px, 8vw, 122px); line-height: .83; letter-spacing: -.075em; font-weight: 610; }
.brand-signature { position: absolute; z-index: 2; top: 18%; right: 7%; width: 30%; height: 64%; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; background: var(--brand-ink); color: var(--brand-paper-light); border-top: 8px solid var(--brand-accent); box-shadow: 0 32px 70px rgba(0,0,0,.18); transform: rotate(1.3deg); }
.brand-signature > span { font-size: clamp(112px, 15vw, 228px); font-weight: 650; line-height: .72; letter-spacing: -.1em; }
.brand-signature p { align-self: flex-end; width: 48%; font-size: 11px; line-height: 1.2; }
.brand-signature b { font-size: clamp(22px, 2.8vw, 42px); font-weight: 620; letter-spacing: -.055em; }
.brand-scene-note { position: absolute; left: 7%; bottom: 7%; color: rgba(9,9,9,.52); font-size: 12px; line-height: 1.25; }

.brand-scene--system { background: var(--brand-paper-light); color: var(--brand-ink); }
.brand-scene--system > h3 { position: absolute; z-index: 3; top: 11%; left: 7%; font-size: clamp(58px, 6.4vw, 98px); line-height: .88; letter-spacing: -.072em; font-weight: 610; }
.brand-system-board { position: absolute; z-index: 2; left: 7%; right: 7%; top: 41%; bottom: 6%; display: grid; grid-template-columns: 1.2fr .9fr .72fr; gap: 18px; }
.brand-application { min-width: 0; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 24px 60px rgba(0,0,0,.12); }
.brand-application > span { font-size: 9px; font-weight: 620; letter-spacing: .1em; text-transform: uppercase; }
.brand-application--poster { background: var(--brand-ink); color: var(--brand-paper-light); }
.brand-application--poster b { font-size: clamp(54px, 6vw, 92px); font-weight: 610; line-height: .78; letter-spacing: -.075em; }
.brand-application small { font-size: 9px; line-height: 1.25; letter-spacing: .06em; text-transform: uppercase; }
.brand-application--type { background: var(--brand-paper); border: 1px solid rgba(9,9,9,.2); }
.brand-application--type b { font-size: clamp(80px, 10vw, 154px); font-weight: 590; line-height: .7; letter-spacing: -.1em; }
.brand-application--type p { font-size: clamp(20px, 2.3vw, 34px); font-weight: 590; line-height: .86; letter-spacing: -.055em; }
.brand-application--signal { background: var(--brand-accent); }
.brand-application--signal b { align-self: flex-end; font-size: clamp(76px, 9vw, 138px); font-weight: 650; line-height: .7; letter-spacing: -.11em; }

.brand-scene--presence { background: var(--brand-accent); color: var(--brand-ink); }
.brand-presence-index { position: absolute; right: 3%; bottom: -10%; color: rgba(9,9,9,.1); font-size: clamp(280px, 35vw, 540px); font-weight: 670; line-height: .7; letter-spacing: -.13em; }
.brand-scene--presence > h3 { position: absolute; z-index: 3; top: 27%; left: 7%; font-size: clamp(84px, 10vw, 154px); font-weight: 620; line-height: .82; letter-spacing: -.082em; }
.brand-presence-band { position: absolute; z-index: 4; left: 7%; right: 7%; bottom: 6%; padding-top: 16px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--brand-ink); font-size: 11px; font-weight: 610; }
.brand-presence-band span:nth-child(2) { text-align: center; }
.brand-presence-band span:last-child { text-align: right; }

.brand-feature-tabs { --tab-x: 5px; --tab-w: 94px; position: relative; isolation: isolate; width: max-content; display: flex; gap: 8px; margin: 24px auto 0; padding: 5px; border: 1px solid #242426; border-radius: 999px; background: #0a0a0b; }
.brand-feature-tabs:before { content: ""; position: absolute; z-index: -1; top: 5px; bottom: 5px; left: 0; width: var(--tab-w); border-radius: 999px; background: var(--white); transform: translateX(var(--tab-x)); transition: width .5s var(--ease-out), transform .5s var(--ease-out); }
.brand-feature-tabs button { position: relative; display: flex; gap: 10px; align-items: center; padding: 13px 18px; border: 0; border-radius: 999px; background: transparent; color: #717176; font: inherit; font-size: 10px; letter-spacing: .035em; cursor: pointer; transition: color .25s ease; }
.brand-feature-tabs button span { color: #45454a; font-size: 8px; }
.brand-feature-tabs button:hover,
.brand-feature-tabs button:focus-visible { color: #c7c7cb; }
.brand-feature-tabs button:focus-visible { outline: 1px solid #77777c; outline-offset: 3px; }
.brand-feature-tabs button.is-active { background: transparent; color: #111; }
.brand-feature-tabs button.is-active span { color: #8a8a90; }

.offer-index { margin: clamp(60px,8vw,120px) 0 0 25%; border-top: 1px solid var(--hairline); }
.offer-index a { display: grid; grid-template-columns: 8.33% 27% 1fr auto; align-items: center; gap: 22px; min-height: 74px; border-bottom: 1px solid var(--hairline); transition: background .28s ease, padding .28s var(--ease-smooth); }
.offer-index a:hover, .offer-index a:focus-visible { padding: 0 16px; background: rgba(255,255,255,.035); }
.offer-index span { color: var(--grey-2); font-size: 8px; letter-spacing: .08em; }
.offer-index strong { font-size: clamp(18px,2vw,28px); line-height: 1; letter-spacing: -.035em; font-weight: 560; }
.offer-index em { color: var(--grey-1); font-size: 11px; line-height: 1.35; font-style: normal; }
.offer-index i { color: var(--grey-2); font-size: 13px; font-style: normal; transition: transform .25s ease, color .25s ease; }
.offer-index a:hover i, .offer-index a:focus-visible i { color: var(--white); transform: translate(2px,-2px); }
.section-next { display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: center; margin-top: 8vw; padding: 20px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.section-next p { color: var(--grey-2); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.section-next a { grid-column: 2 / 4; display: flex; justify-content: space-between; align-items: center; min-height: 46px; font-size: clamp(18px, 2vw, 30px); font-weight: 530; letter-spacing: -.035em; transition: color .25s ease, padding .35s cubic-bezier(.2,.72,.2,1); }
.section-next a i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--white); color: #050505; font-size: 13px; font-style: normal; }
.section-next a:hover { padding-left: 12px; color: #fff; }
.section-next a:hover i, .section-next a:focus-visible i { transform: translateY(3px); }

.method { height: 165svh; border-top: 1px solid var(--hairline); }
.method-sticky { position: sticky; top: var(--header-height); height: calc(100svh - var(--header-height)); overflow: hidden; padding: 28px var(--page); display: flex; flex-direction: column; justify-content: center; }
.method-label { position: absolute; top: 28px; left: var(--page); color: var(--grey-2); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; opacity: calc(.28 + var(--method-a, 0) * .72); transform: translateX(calc((1 - var(--method-a, 0)) * -16px)); }
.method-copy { padding-left: 8.33%; }
.method-copy p { font-size: clamp(68px, 10.7vw, 164px); line-height: .88; letter-spacing: -.07em; font-weight: 580; transition: color .6s ease, transform .6s ease; }
.method-copy p:first-child { color: rgba(245,245,247,calc(.28 + var(--method-a, 0) * .72)); }
.method-copy p:last-child { padding-left: 16.66%; color: rgba(245,245,247,calc(.22 + var(--method-b, 0) * .78)); }
.method-copy p:first-child { transform: translateX(calc((1 - var(--method-a, 0)) * -18px)); }
.method-copy p:last-child { transform: translateX(calc((1 - var(--method-b, 0)) * 18px)); }
.method-counter { position: absolute; right: var(--page); bottom: 34px; display: grid; grid-template-columns: auto 160px auto; align-items: center; gap: 14px; color: var(--grey-2); font-size: 8px; letter-spacing: .09em; text-transform: uppercase; opacity: calc(.32 + var(--method-progress, 0) * .68); transform: translateX(calc((1 - var(--method-progress, 0)) * 12px)); }
.method-counter i { position: relative; height: 1px; background: #242426; }.method-counter i:after { content: ""; position: absolute; inset: 0; background: #c8c8cb; transform: scaleX(var(--method-progress, 0)); transform-origin: left; }

.construction { padding: 6vw var(--page) 0; }
.construction-header { display: grid; grid-template-columns: 2fr 1fr; align-items: end; padding-bottom: 5vw; }
.construction-header p { font-size: clamp(56px, 8.1vw, 124px); line-height: .9; letter-spacing: -.065em; font-weight: 570; }
.construction-header span { color: var(--grey-2); font-size: 14px; line-height: 1.2; }
.construction-scroll { height: 195svh; }
.construction-stage { position: sticky; top: calc(var(--header-height) + 18px); height: calc(100svh - var(--header-height) - 36px); overflow: hidden; display: grid; place-items: center; border: 1px solid #242426; background: #090909; box-shadow: inset 0 0 120px rgba(0,0,0,calc(.42 - var(--resolve) * .18)); }
.stage-grid { position: absolute; inset: -3%; opacity: calc(.07 + var(--assemble) * .24); background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 8.333% 12.5%; transform-origin: center; }
.construction-index { position: absolute; z-index: 5; top: 22px; left: 22px; color: rgba(110,110,115,calc(.45 + var(--resolve) * .55)); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.construction-index:after { content: ""; display: inline-block; width: 74px; height: 1px; margin: 0 0 2px 14px; background: rgba(105,173,245,.34); transform: scaleX(var(--process)); transform-origin: left; }
.construction-chapters { position: absolute; z-index: 5; top: 22px; right: 22px; display: flex; gap: 22px; font-size: 7px; letter-spacing: .09em; text-transform: uppercase; }
.construction-chapters span { color: #4b4b4f; transition: color .2s linear; }
.construction-chapters span:nth-child(1) { color: rgba(105,173,245,calc(.12 + var(--chapter-a, 0) * .36)); }
.construction-chapters span:nth-child(2) { color: rgba(200,200,203,calc(.16 + var(--chapter-b, 0) * .7)); }
.construction-chapters span:nth-child(3) { color: rgba(240,138,75,calc(.1 + var(--chapter-c, 0) * .34)); }
.construction-traces { position: absolute; z-index: 2; inset: 0; pointer-events: none; }
.trace { position: absolute; display: block; background: rgba(245,245,247,.34); opacity: var(--trace-opacity); box-shadow: 0 0 16px rgba(245,245,247,.04); transform-origin: center; }
.trace--top { top: 19%; left: 19.5%; width: 61%; height: 1px; }
.trace--bar { top: 24.55%; left: 19.5%; width: 61%; height: 1px; }
.trace--bottom { top: 81%; left: 19.5%; width: 61%; height: 1px; }
.trace--left { top: 19%; left: 19.5%; width: 1px; height: 62%; }
.trace--nav { top: 24.55%; left: 31.1%; width: 1px; height: 56.45%; }
.trace--right { top: 19%; left: 80.5%; width: 1px; height: 62%; }
.trace--top, .trace--left { background: rgba(105,173,245,.22); }
.trace--bottom, .trace--right { background: rgba(240,138,75,.2); }
[data-construct-piece], [data-construct-shell] { will-change: transform, opacity; }
.blueprint { position: relative; z-index: 3; width: 61%; height: 62%; border: 1px solid #4a4a4d; background: rgba(10,10,10,.94); opacity: var(--blueprint-opacity); transform: translate3d(0,0,0); transform-origin: center; box-shadow: inset 1px 0 rgba(105,173,245,.12), inset -1px 0 rgba(240,138,75,.1), 0 35px 100px rgba(0,0,0,.5); }
.blueprint:after { content: ""; position: absolute; inset: -1px; pointer-events: none; border: 1px solid rgba(245,245,247,calc(var(--resolve) * .38)); box-shadow: 0 0 calc(var(--resolve) * 80px) rgba(255,255,255,.035); }
.blueprint-bar { height: 8%; display: flex; justify-content: space-between; align-items: center; padding: 0 14px; border-bottom: 1px solid #343436; }
.blueprint-bar span { color: #626266; font-size: 6px; letter-spacing: .11em; text-transform: uppercase; }
.blueprint-bar span:last-child { color: #626266; }
.blueprint-body { height: 92%; display: grid; grid-template-columns: 22% 1fr; }
.blueprint-nav { display: flex; flex-direction: column; gap: 20px; padding: 30px 18px; border-right: 1px solid #343436; }
.blueprint-nav span { color: #555559; font-size: 7px; letter-spacing: .07em; text-transform: uppercase; }
.blueprint-nav span:first-child { color: rgba(105,173,245,.48); }
.blueprint-nav span:last-child { color: rgba(240,138,75,.42); }
.blueprint-main { padding: 7% 8%; }
.bp-kicker { display: block; color: #77777b; font-size: 7px; letter-spacing: .09em; text-transform: uppercase; }
.blueprint-main h3 { margin-top: 16px; color: #d4d4d7; font-size: clamp(24px, 3.1vw, 48px); line-height: .86; letter-spacing: -.055em; font-weight: 560; }
.bp-line { display: block; overflow: hidden; }
.bp-line > span { display: block; will-change: transform, opacity; }
.bp-blue-mark, .bp-orange-mark { font-style: normal; }
.bp-blue-mark { color: rgba(105,173,245,.72); }
.bp-orange-mark { color: rgba(240,138,75,.68); }
.blueprint-main > p { margin-top: 13px; color: #656569; font-size: 8px; }
.bp-decisions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 9%; }
.bp-decisions article { min-height: 84px; padding: 12px 2px 0; display: flex; flex-direction: column; border: 0; border-top: 1px solid #343436; }
.bp-decisions article:first-child { border-top-color: rgba(105,173,245,.36); }
.bp-decisions article:last-child { border-top-color: rgba(240,138,75,.32); }
.bp-decisions small { color: #5f5f63; font-size: 6px; }
.bp-decisions article:first-child small { color: rgba(105,173,245,.52); }
.bp-decisions article:last-child small { color: rgba(240,138,75,.48); }
.bp-decisions strong { margin-top: auto; color: #a7a7ab; font-size: 9px; font-weight: 540; }
.bp-decisions span { margin-top: 4px; color: #555559; font-size: 6px; line-height: 1.25; }
.construction-notes { position: absolute; z-index: 5; left: 22px; right: 22px; bottom: 22px; display: flex; justify-content: space-between; color: rgba(110,110,115,calc(.4 + var(--resolve) * .45)); font-size: 8px; letter-spacing: calc(.08em + (1 - var(--resolve)) * .12em); text-transform: uppercase; }
.construction-notes span:first-child { color: rgba(105,173,245,calc(.16 + var(--resolve) * .24)); }
.construction-notes span:last-child { color: rgba(240,138,75,calc(.14 + var(--resolve) * .22)); }

.work { padding: 10vw var(--page) 5vw; }
.work-header { display: grid; grid-template-columns: 33.33% 1fr; align-items: start; padding-top: 18px; border-top: 1px solid var(--hairline); }
.work-header > span { color: var(--grey-2); font-size: 9px; letter-spacing: .08em; }
.work-header p { font-size: clamp(46px, 6vw, 92px); line-height: .92; letter-spacing: -.06em; font-weight: 560; }.work-header p span { color: #454548; }
.work-item { margin-top: 8vw; }
.work-item.apsodia { width: 83.33%; }
.work-item.gspark { width: 66.66%; margin-left: auto; }
.work-frame { position: relative; overflow: hidden; aspect-ratio: 1.36; }
.apsodia .work-frame { padding: 4%; background: #d2c8b7; color: #161513; }
.apsodia-grid { position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(0,0,0,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.1) 1px, transparent 1px); background-size: 12.5% 16.66%; }
.apsodia-reader { position: relative; height: 100%; display: grid; grid-template-columns: 22% 1fr; grid-template-rows: 58px 1fr 52px; border: 1px solid rgba(22,21,19,.28); background: rgba(238,232,220,.68); box-shadow: 0 34px 80px rgba(60,48,34,.12); transition: grid-template-columns .65s cubic-bezier(.2,.72,.2,1); }
.apsodia-reader header { grid-column: 1 / 3; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 20px; border-bottom: 1px solid rgba(22,21,19,.22); }
.apsodia-reader header strong { font-size: 13px; letter-spacing: -.04em; }
.apsodia-nav { display: flex; gap: 28px; font-size: 7px; text-transform: uppercase; letter-spacing: .08em; }
.apsodia-reader header small { justify-self: end; font-size: 7px; }
.apsodia-reader aside { padding: 24px 18px; display: flex; flex-direction: column; overflow: hidden; border-right: 1px solid rgba(22,21,19,.22); transition: opacity .35s ease, padding .55s ease; }
.apsodia-reader aside > span, .apsodia-reader aside small { font-size: 7px; letter-spacing: .08em; text-transform: uppercase; }
.apsodia-reader aside ol { margin: 34px 0 0; padding: 0; list-style: none; counter-reset: item; }
.apsodia-reader aside li { padding: 8px 0; border-top: 1px solid rgba(22,21,19,.14); color: rgba(22,21,19,.42); font-size: 8px; }
.apsodia-reader aside li.is-current { color: #161513; }
.apsodia-reader aside small { margin-top: auto; color: rgba(22,21,19,.5); }
.apsodia-content { position: relative; padding: 7% 8%; }
.apsodia-content > span { font-size: 7px; letter-spacing: .1em; text-transform: uppercase; }
.apsodia-content h3 { margin-top: 7%; font: 400 clamp(42px, 5.8vw, 88px)/.84 Georgia, serif; letter-spacing: -.055em; }
.apsodia-content p { position: absolute; right: 8%; top: 11%; font: 400 clamp(12px, 1.15vw, 18px)/1.1 Georgia, serif; color: rgba(22,21,19,.55); }
.apsodia-open { position: absolute; right: 8%; bottom: 9%; padding: 0 0 5px; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: inherit; font-size: 8px; text-transform: uppercase; letter-spacing: .06em; cursor: pointer; }
.apsodia-reader.is-reading { grid-template-columns: 0 1fr; }
.apsodia-reader.is-reading aside { padding-left: 0; padding-right: 0; opacity: 0; border-right-color: transparent; }
.apsodia-reader.is-reading .apsodia-content h3 { font-size: clamp(54px, 7vw, 106px); }
.apsodia-player { grid-column: 1 / 3; display: grid; grid-template-columns: auto 1fr 1fr auto; gap: 18px; align-items: center; padding: 0 18px; border-top: 1px solid rgba(22,21,19,.22); font-size: 7px; text-transform: uppercase; letter-spacing: .05em; }
.apsodia-player i { height: 1px; background: linear-gradient(90deg,#161513 0 34%,rgba(22,21,19,.22) 34% 100%); }
.apsodia-player button { padding: 8px 13px; border: 1px solid rgba(22,21,19,.32); border-radius: 999px; background: transparent; color: inherit; font-size: 7px; text-transform: uppercase; cursor: pointer; }
.apsodia-player button.is-playing { background: #161513; color: #eee8dc; }

.gspark .work-frame { padding: 4%; background: #aeb9c2; color: #111317; }
.gspark-console { height: 100%; display: grid; grid-template-columns: 19% 1fr; grid-template-rows: 52px 1fr 44px; border: 1px solid rgba(17,19,23,.26); background: rgba(225,231,235,.45); box-shadow: 0 34px 80px rgba(13,23,30,.12); }
.gspark-console header { grid-column: 1 / 3; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 17px; border-bottom: 1px solid rgba(17,19,23,.2); }
.gspark-console header strong, .gspark-console header span, .gspark-console header small { font-size: 7px; letter-spacing: .08em; text-transform: uppercase; }
.gspark-console header small { justify-self: end; }
.gspark-console aside { padding: 22px 16px; display: flex; flex-direction: column; gap: 16px; border-right: 1px solid rgba(17,19,23,.2); color: rgba(17,19,23,.45); font-size: 7px; text-transform: uppercase; }
.gspark-console aside span:first-child { color: #111317; }
.gspark-console aside b { margin-top: auto; font-size: clamp(44px, 6vw, 92px); line-height: .7; letter-spacing: -.12em; }
.gspark-content { position: relative; padding: 7%; overflow: hidden; }
.gspark-main-stat > span { font-size: 7px; letter-spacing: .08em; text-transform: uppercase; }
.gspark-main-stat > strong { display: block; margin-top: 6px; font-size: clamp(54px, 8vw, 122px); line-height: .8; letter-spacing: -.09em; font-weight: 560; }
.gspark-main-stat > strong small, .gspark-orbit strong small { font-size: .22em; letter-spacing: 0; }
.gspark-main-stat p { margin-top: 12px; color: rgba(17,19,23,.48); font-size: 7px; }
.gspark-orbit { position: absolute; top: 16%; right: 8%; width: 34%; aspect-ratio: 1; display: grid; place-items: center; }
.gspark-orbit i { position: absolute; border: 1px solid rgba(17,19,23,.2); border-radius: 50%; aspect-ratio: 1; }
.gspark-orbit i:nth-child(1){width:100%}.gspark-orbit i:nth-child(2){width:72%}.gspark-orbit i:nth-child(3){width:44%;background:#1a1d20;box-shadow:0 20px 50px rgba(13,23,30,.24)}
.gspark-orbit strong { z-index: 1; color: #d8dee2; font-size: clamp(20px, 3vw, 46px); font-weight: 480; letter-spacing: -.05em; }
.gspark-bars { position: absolute; left: 7%; right: 48%; bottom: 9%; height: 24%; display: flex; gap: 7px; align-items: end; border-bottom: 1px solid rgba(17,19,23,.25); }
.gspark-bars span { flex: 1; height: var(--h); background: rgba(17,19,23,.34); }
.gspark-console footer { grid-column: 1 / 3; display: grid; grid-template-columns: repeat(3,1fr); align-items: center; padding: 0 17px; border-top: 1px solid rgba(17,19,23,.2); font-size: 6px; letter-spacing: .06em; text-transform: uppercase; }
.gspark-console footer span:nth-child(2){text-align:center}.gspark-console footer span:last-child{text-align:right}
.work-meta { display: grid; grid-template-columns: 1fr 1fr auto; align-items: baseline; padding-top: 15px; border-top: 1px solid var(--hairline); margin-top: 14px; }
.work-meta h2 { font-size: 20px; font-weight: 520; letter-spacing: -.03em; }.work-meta p, .work-meta > span { color: var(--grey-2); font-size: 8px; letter-spacing: .07em; text-transform: uppercase; }

.process-continuation { padding: 10vw var(--page) 3vw; border-top: 1px solid var(--hairline); }
.process-continuation-header { display: grid; grid-template-columns: 33.33% 1fr; align-items: start; padding-top: 18px; }
.process-continuation-header > span { color: var(--grey-2); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.process-continuation-header p { font-size: clamp(46px, 6vw, 92px); line-height: .92; letter-spacing: -.06em; font-weight: 560; }
.process-continuation-header p span { color: #454548; }
.sequence { margin-top: 13vw; }
.sequence + .sequence { margin-top: 10vw; }
.sequence-heading { display: grid; grid-template-columns: 20% 55% 25%; align-items: end; padding: 18px 0 5vw; border-top: 1px solid var(--hairline); }
.sequence-heading > span { align-self: start; color: var(--grey-2); font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }
.sequence-heading h2 { font-size: clamp(58px, 7.4vw, 112px); line-height: .84; letter-spacing: -.064em; font-weight: 570; }
.sequence-heading p { align-self: end; color: var(--grey-2); font-size: 12px; line-height: 1.25; }
.sequence-scroll { height: 170svh; }
.sequence-stage { position: sticky; top: calc(var(--header-height) + 18px); height: calc(100svh - var(--header-height) - 36px); overflow: hidden; border: 1px solid #242426; background: #090909; box-shadow: inset 0 0 120px rgba(0,0,0,.28); }
.sequence-grid { position: absolute; inset: -3%; opacity: calc(.06 + var(--sequence-frame, 0) * .18); background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.07) 1px,transparent 1px); background-size: 8.333% 12.5%; transform-origin: center; }
.sequence-grid--wide { background-size: 12.5% 10%; }
.sequence-folio { position: absolute; z-index: 5; top: 22px; left: 22px; right: 22px; display: flex; justify-content: space-between; color: rgba(110,110,115,calc(.42 + var(--sequence-resolve, 0) * .45)); font-size: 7px; letter-spacing: .09em; text-transform: uppercase; }
.sequence-rule { position: absolute; z-index: 2; display: block; background: rgba(245,245,247,.28); transform-origin: center; will-change: transform, opacity; }
.sequence-rule--h { height: 1px; }
.sequence-rule--v { width: 1px; }
.hierarchy-rule--top { top: 22%; left: 13%; width: 74%; transform-origin: left; background: rgba(105,173,245,.16); }
.hierarchy-rule--left { top: 16%; left: 27%; height: 68%; transform-origin: top; }
.hierarchy-rule--middle { top: 58%; left: 27%; width: 60%; transform-origin: left; }
.hierarchy-rule--right { top: 28%; right: 13%; height: 56%; transform-origin: bottom; background: rgba(240,138,75,.13); }
.hierarchy-layout { position: absolute; z-index: 3; left: 15%; top: 20%; width: 70%; height: 62%; display: grid; grid-template-columns: 27% 1fr; border-top: 1px solid #48484b; border-bottom: 1px solid #343436; background: rgba(8,8,8,.9); transform-origin: center; will-change: transform, opacity; }
.hierarchy-number { display: flex; align-items: flex-end; padding: 0 8% 7%; overflow: hidden; border-right: 1px solid #343436; color: #222225; font-size: clamp(120px,18vw,280px); line-height: .65; letter-spacing: -.12em; font-weight: 580; }
.hierarchy-main { padding: 8% 8% 6%; display: flex; flex-direction: column; }
.hierarchy-main > span { color: #67676b; font-size: 7px; letter-spacing: .09em; text-transform: uppercase; }
.hierarchy-main h3 { margin-top: 7%; color: #d6d6d9; font-size: clamp(48px,6.4vw,98px); line-height: .82; letter-spacing: -.06em; font-weight: 560; }
.sequence-copy-line { display: block; overflow: hidden; }
.sequence-copy-line > span { display: block; will-change: transform, opacity; }
.hierarchy-main > p { margin-top: 4%; color: #68686c; font-size: 9px; }
.hierarchy-levels { margin-top: auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.hierarchy-levels span { padding-top: 9px; border-top: 1px solid #303033; color: #87878b; font-size: 8px; }
.hierarchy-levels b { display: block; margin-bottom: 10px; color: #555559; font-size: 6px; font-weight: 500; }
.hierarchy-levels span:first-child b { color: rgba(105,173,245,.48); }
.hierarchy-levels span:last-child b { color: rgba(240,138,75,.42); }
.sequence-chapters { position: absolute; z-index: 5; left: 22px; right: 22px; bottom: 22px; display: flex; justify-content: space-between; color: rgba(110,110,115,calc(.35 + var(--sequence-resolve, 0) * .45)); font-size: 7px; letter-spacing: .09em; text-transform: uppercase; }
.presence-rule--top { top: 24%; left: 14%; width: 72%; transform-origin: right; background: rgba(105,173,245,.14); }
.presence-rule--center { top: 14%; left: 50%; height: 72%; transform-origin: top; }
.presence-rule--base { top: 76%; left: 14%; width: 72%; transform-origin: left; background: rgba(240,138,75,.12); }
.presence-layout { position: absolute; z-index: 3; left: 14%; top: 18%; width: 72%; height: 64%; display: flex; flex-direction: column; justify-content: center; padding: 7% 8%; border-top: 1px solid #444447; border-bottom: 1px solid #343436; background: rgba(8,8,8,.9); transform-origin: center; will-change: transform, opacity; }
.presence-kicker { color: #68686c; font-size: 7px; letter-spacing: .09em; text-transform: uppercase; }
.presence-layout h3 { margin-top: 5%; color: #d6d6d9; font-size: clamp(72px,10.2vw,156px); line-height: .7; letter-spacing: -.075em; font-weight: 570; }
.presence-last-line { padding-left: 14%; }
.presence-last-line em { color: rgba(240,138,75,.62); font-style: normal; }
.presence-layout > p { align-self: flex-end; margin-top: 4%; color: #68686c; font-size: 9px; }
.presence-axis { margin-top: auto; display: grid; grid-template-columns: repeat(3,1fr); padding-top: 10px; border-top: 1px solid #303033; color: #77777b; font-size: 7px; letter-spacing: .08em; text-transform: uppercase; }
.presence-axis span:nth-child(2) { text-align: center; }
.presence-axis span:last-child { text-align: right; }
[data-sequence-piece], [data-sequence-shell], [data-sequence-word] > span { will-change: transform, opacity; }

.practice { min-height: 120vh; padding: 14vw var(--page); border-top: 1px solid var(--hairline); display: flex; flex-direction: column; justify-content: center; }
.practice-label { display: flex; justify-content: space-between; margin-bottom: 10vw; color: var(--grey-2); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.practice-lines p { padding: 12px 0; border-top: 1px solid var(--hairline); font-size: clamp(52px, 7.7vw, 118px); line-height: .88; letter-spacing: -.065em; font-weight: 570; }.practice-lines p span { color: #48484b; }
.practice-lines p:nth-child(2) { padding-left: 8.33%; }
.practice-lines p:nth-child(3) { padding-left: 16.66%; }
.practice-note { align-self: flex-end; margin-top: 9vw; width: 33.33%; color: var(--grey-2); font-size: 13px; line-height: 1.25; }

.local-scope { min-height: 78svh; padding: clamp(110px,14vw,210px) var(--page) clamp(90px,10vw,150px); border-top: 1px solid var(--hairline); display: grid; grid-template-columns: 25% 1fr; align-content: center; }
.local-scope-label { color: var(--grey-2); font-size: 9px; line-height: 1.4; letter-spacing: .08em; text-transform: uppercase; }
.local-scope h2 { font-size: clamp(58px,8.4vw,128px); line-height: .86; letter-spacing: -.068em; font-weight: 570; }
.local-scope h2 span { color: #4a4a4e; }
.local-scope-copy { grid-column: 2; width: 50%; margin: clamp(52px,7vw,100px) 0 0 25%; }
.local-scope-copy p { color: var(--grey-1); font-size: 14px; line-height: 1.52; }
.local-scope-copy a { display: flex; justify-content: space-between; margin-top: 32px; padding: 15px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.local-scope-copy a span { color: var(--grey-2); transition: transform .25s ease, color .25s ease; }
.local-scope-copy a:hover span, .local-scope-copy a:focus-visible span { color: var(--white); transform: translate(2px,-2px); }

.contact { min-height: calc(100svh - 84px); padding: 98px var(--page) 40px; display: flex; flex-direction: column; justify-content: space-between; border-top: 1px solid var(--hairline); }
.contact-top { display: flex; justify-content: space-between; color: var(--grey-2); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.contact h2 { margin: auto 0; font-size: clamp(58px, 8.6vw, 132px); line-height: .9; letter-spacing: -.067em; font-weight: 580; }.contact h2 span { color: #49494c; }
.contact-bottom { display: grid; grid-template-columns: 1fr 2fr; align-items: end; gap: 8.33%; padding-left: 25%; }.contact-bottom p { color: var(--grey-1); font-size: 13px; line-height: 1.3; }
.contact-primary { display: flex; justify-content: space-between; align-items: center; min-height: 64px; padding: 0 22px; border-radius: 999px; background: var(--white); color: #050505; transition: transform .25s ease, background .25s ease; }
.contact-primary strong { font-size: 13px; font-weight: 680; letter-spacing: -.015em; }
.contact-primary span { color: #5a5a5f; font-size: 10px; }
.contact-primary:hover { transform: translateY(-2px); background: #fff; }
.contact-primary:hover span, .contact-primary:focus-visible span { transform: translate(2px,-2px); }

.site-footer { padding: 0 var(--page) 30px; border-top: 1px solid var(--hairline); }
.footer-main { min-height: 220px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; align-items: start; gap: 28px; padding: 34px 0 48px; }
.footer-wordmark { width: fit-content; font-size: clamp(34px,4.2vw,64px); line-height: .86; font-weight: 620; letter-spacing: -.075em; }
.footer-main p { color: var(--grey-1); font-size: 10px; line-height: 1.35; letter-spacing: .04em; text-transform: uppercase; }
.footer-email { justify-self: end; padding-bottom: 6px; border-bottom: 1px solid #55555a; color: var(--white); font-size: 11px; transition: border-color .25s ease, color .25s ease; }
.footer-email:hover { border-color: var(--white); }
.footer-legal { display: grid; grid-template-columns: 2fr 1.2fr .7fr auto; align-items: end; gap: 28px; padding-top: 18px; border-top: 1px solid var(--hairline); }
.footer-legal p, .footer-legal a { color: var(--grey-2); font-size: 8px; line-height: 1.45; letter-spacing: .06em; text-transform: uppercase; }
.footer-legal nav { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.footer-legal nav a { position: relative; color: var(--grey-1); }
.footer-legal nav a:after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease-smooth); }
.footer-legal nav a:hover:after, .footer-legal nav a:focus-visible:after { transform: scaleX(1); transform-origin: left; }

.legal-page { min-height: 100svh; }
.legal-main { padding: 0 var(--page); }
.legal-hero { min-height: 76svh; padding: calc(var(--header-height) + 72px) 0 70px; display: grid; grid-template-columns: 25% 1fr 25%; align-items: end; border-bottom: 1px solid var(--hairline); }
.legal-hero > p:first-child { align-self: start; color: var(--grey-2); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.legal-hero h1 { grid-column: 2 / 4; font-size: clamp(82px,12vw,184px); line-height: .78; letter-spacing: -.078em; font-weight: 590; }
.legal-hero h1 span { color: #4a4a4e; }
.legal-hero > p:last-child { grid-column: 3; margin-top: 50px; color: var(--grey-2); font-size: 9px; line-height: 1.45; letter-spacing: .06em; text-transform: uppercase; }
.legal-summary { display: grid; grid-template-columns: 25% repeat(4,minmax(0,1fr)); gap: 16px 28px; padding: 22px 0; border-bottom: 1px solid var(--hairline); }
.legal-summary p, .legal-summary a { color: var(--grey-2); font-size: 8px; line-height: 1.4; letter-spacing: .07em; text-transform: uppercase; }
.legal-summary p { grid-row: 1 / span 2; }
.legal-summary a { width: fit-content; color: var(--grey-1); border-bottom: 1px solid transparent; transition: color .25s ease, border-color .25s ease; }
.legal-summary a:hover, .legal-summary a:focus-visible { color: var(--white); border-color: #55555a; }
.legal-print { width: fit-content; padding: 0 0 3px; border: 0; border-bottom: 1px solid #55555a; background: transparent; color: var(--grey-1); font: inherit; font-size: 8px; line-height: 1.4; letter-spacing: .07em; text-align: left; text-transform: uppercase; cursor: pointer; transition: color .25s ease, border-color .25s ease; }
.legal-print:hover, .legal-print:focus-visible { color: var(--white); border-color: var(--white); }
.legal-callout { display: grid; grid-template-columns: 25% 1fr 25%; gap: 28px; padding: clamp(38px,5vw,72px) 0; border-bottom: 1px solid var(--hairline); }
.legal-callout > p:first-child { color: var(--grey-2); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.legal-callout strong { max-width: 670px; font-size: clamp(28px,3.5vw,52px); line-height: .98; letter-spacing: -.045em; font-weight: 560; }
.legal-callout strong + p { color: var(--grey-1); font-size: 12px; line-height: 1.5; }
.legal-section { display: grid; grid-template-columns: 25% 1fr; padding: clamp(80px,10vw,150px) 0; border-bottom: 1px solid var(--hairline); }
.legal-section > header { padding-right: 32px; }
.legal-section > header p { position: sticky; top: calc(var(--header-height) + 28px); color: var(--grey-2); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.legal-content { display: grid; }
.legal-content article { display: grid; grid-template-columns: 12.5% 1fr; gap: 24px; padding: 32px 0 42px; border-top: 1px solid var(--hairline); }
.legal-content article:first-child { padding-top: 0; border-top: 0; }
.legal-content article > span { color: var(--grey-2); font-size: 8px; letter-spacing: .08em; }
.legal-copy { max-width: 720px; }
.legal-copy h2 { font-size: clamp(28px,3vw,46px); line-height: .96; letter-spacing: -.048em; font-weight: 560; }
.legal-copy p { margin-top: 18px; color: var(--grey-1); font-size: 14px; line-height: 1.52; }
.legal-copy p + p { margin-top: 12px; }
.legal-copy a { color: var(--white); border-bottom: 1px solid #55555a; }
.legal-copy strong { color: var(--white); font-weight: 560; }
.legal-note { color: var(--grey-2) !important; font-size: 11px !important; }
.legal-facts { margin-top: 26px; border-top: 1px solid var(--hairline); }
.legal-facts > div { display: grid; grid-template-columns: minmax(120px,32%) 1fr; gap: 24px; padding: 13px 0; border-bottom: 1px solid var(--hairline); }
.legal-facts dt { color: var(--grey-2); font-size: 8px; line-height: 1.45; letter-spacing: .07em; text-transform: uppercase; }
.legal-facts dd { color: var(--grey-1); font-size: 12px; line-height: 1.45; }
.legal-facts dd a { color: var(--white); }
.legal-facts--wide > div { grid-template-columns: minmax(160px,38%) 1fr; }
.legal-section[id] { scroll-margin-top: calc(var(--header-height) + 24px); }
.legal-back { padding: 28px 0; display: flex; justify-content: space-between; color: var(--grey-2); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

/* Expertise and studio pages */
.service-page { min-height: 100svh; }
.service-main { padding: 0 var(--page); }
.service-hero { min-height: 92svh; padding: calc(var(--header-height) + 68px) 0 58px; display: grid; grid-template-columns: 25% 1fr; align-content: space-between; border-bottom: 1px solid var(--hairline); }
.service-hero-kicker { color: var(--grey-2); font-size: 9px; line-height: 1.4; letter-spacing: .09em; text-transform: uppercase; }
.service-hero-title { grid-column: 1 / -1; max-width: 1500px; font-size: clamp(72px,12.4vw,190px); line-height: .76; letter-spacing: -.083em; font-weight: 590; }
.service-hero-title span { display: block; color: #4a4a4e; }
.service-hero-bottom { grid-column: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 8.33%; align-items: end; }
.service-hero-lead { max-width: 620px; font-size: clamp(20px,2.5vw,38px); line-height: 1; letter-spacing: -.04em; }
.service-hero-meta { color: var(--grey-1); font-size: 11px; line-height: 1.55; }
.service-summary { display: grid; grid-template-columns: 25% repeat(3,1fr); border-bottom: 1px solid var(--hairline); }
.service-summary > p, .service-summary > div { min-height: 126px; padding: 22px 22px 28px 0; border-right: 1px solid var(--hairline); }
.service-summary > :last-child { border-right: 0; padding-left: 22px; }
.service-summary > div + div { padding-left: 22px; }
.service-summary > p { color: var(--grey-2); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.service-summary span { color: var(--grey-2); font-size: 8px; letter-spacing: .08em; }
.service-summary strong { display: block; margin-top: 22px; font-size: 15px; line-height: 1.1; font-weight: 540; }
.service-section { display: grid; grid-template-columns: 25% 1fr; padding: clamp(95px,11vw,170px) 0; border-bottom: 1px solid var(--hairline); }
.service-section-label { color: var(--grey-2); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.service-section-body { max-width: 1050px; }
.service-section-heading { max-width: 960px; font-size: clamp(44px,6.3vw,96px); line-height: .87; letter-spacing: -.065em; font-weight: 570; }
.service-section-heading span { color: #4a4a4e; }
.service-section-intro { max-width: 720px; margin: clamp(42px,6vw,82px) 0 0 25%; color: var(--grey-1); font-size: 16px; line-height: 1.52; }
.service-cards { margin-top: clamp(58px,7vw,96px); display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--hairline); }
.service-card { min-height: 250px; padding: 25px 32px 38px 0; border-bottom: 1px solid var(--hairline); }
.service-card:nth-child(odd) { border-right: 1px solid var(--hairline); }
.service-card:nth-child(even) { padding-left: 32px; }
.service-card > span { color: var(--grey-2); font-size: 8px; letter-spacing: .08em; }
.service-card h3 { max-width: 440px; margin-top: 38px; font-size: clamp(27px,3.1vw,46px); line-height: .96; letter-spacing: -.048em; font-weight: 560; }
.service-card p { max-width: 520px; margin-top: 22px; color: var(--grey-1); font-size: 13px; line-height: 1.52; }
.service-list { margin-top: clamp(54px,7vw,92px); border-top: 1px solid var(--hairline); }
.service-list article { display: grid; grid-template-columns: 10% 35% 1fr; gap: 24px; padding: 27px 0 34px; border-bottom: 1px solid var(--hairline); }
.service-list article > span { color: var(--grey-2); font-size: 8px; letter-spacing: .08em; }
.service-list h3 { font-size: clamp(21px,2.5vw,36px); line-height: .98; letter-spacing: -.04em; font-weight: 550; }
.service-list p { max-width: 560px; color: var(--grey-1); font-size: 13px; line-height: 1.52; }
.service-faq { margin-top: clamp(58px,7vw,94px); border-top: 1px solid var(--hairline); }
.service-faq details { border-bottom: 1px solid var(--hairline); }
.service-faq summary { position: relative; padding: 26px 54px 26px 0; cursor: pointer; list-style: none; font-size: clamp(20px,2.1vw,31px); line-height: 1.1; letter-spacing: -.035em; }
.service-faq summary::-webkit-details-marker { display: none; }
.service-faq summary:after { content: "+"; position: absolute; right: 3px; top: 24px; color: var(--grey-2); font-weight: 400; }
.service-faq details[open] summary:after { content: "−"; }
.service-faq details p { max-width: 720px; padding: 0 0 30px 25%; color: var(--grey-1); font-size: 14px; line-height: 1.55; }
.service-area { margin-top: clamp(56px,7vw,96px); display: grid; grid-template-columns: 1fr 1fr; gap: 8.33%; }
.service-area p { color: var(--grey-1); font-size: 14px; line-height: 1.55; }
.service-area dl { margin: 0; border-top: 1px solid var(--hairline); }
.service-area div { display: grid; grid-template-columns: 35% 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--hairline); }
.service-area dt { color: var(--grey-2); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.service-area dd { margin: 0; color: var(--grey-1); font-size: 12px; line-height: 1.4; }
.service-cta { min-height: 78svh; display: grid; grid-template-columns: 25% 1fr; align-content: center; padding: clamp(100px,13vw,190px) 0; border-bottom: 1px solid var(--hairline); }
.service-cta > p { color: var(--grey-2); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.service-cta-content h2 { font-size: clamp(54px,8vw,122px); line-height: .86; letter-spacing: -.068em; font-weight: 570; }
.service-cta-content h2 span { color: #4a4a4e; }
.service-cta-content > p { width: 50%; margin: 50px 0 0 25%; color: var(--grey-1); font-size: 14px; line-height: 1.5; }
.service-cta-actions { width: 50%; margin: 28px 0 0 25%; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 22px; }
.service-cta-primary { display: flex; justify-content: space-between; align-items: center; min-height: 62px; padding: 0 21px; border-radius: 999px; background: var(--white); color: #050505; font-size: 12px; font-weight: 650; }
.service-cta-email { color: var(--grey-1); padding-bottom: 4px; border-bottom: 1px solid #55555a; font-size: 10px; }
.service-siblings { padding: 24px 0 42px; display: grid; grid-template-columns: 25% 1fr; }
.service-siblings > p { color: var(--grey-2); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.service-siblings nav { display: flex; flex-wrap: wrap; gap: 14px 30px; }
.service-siblings a { color: var(--grey-1); font-size: 10px; padding-bottom: 4px; border-bottom: 1px solid #55555a; }

body.has-contact-dialog { overflow: hidden; }
.contact-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: #050505;
  color: var(--white);
  overflow: auto;
}
.contact-dialog::backdrop { background: rgba(0,0,0,.88); }
.contact-dialog[open] { animation: contact-dialog-in .58s cubic-bezier(.16,1,.3,1) both; }
@keyframes contact-dialog-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes contact-content-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.contact-dialog-shell { min-height: 100%; display: grid; grid-template-rows: 72px 1fr; }
.contact-dialog-header {
  position: sticky;
  z-index: 2;
  top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  min-height: 72px;
  padding: 14px var(--page);
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: #050505;
}
.contact-dialog-header p { color: var(--grey-2); font-size: 9px; line-height: 1.35; letter-spacing: .06em; text-transform: uppercase; }
.contact-dialog-close { min-height: 42px; padding: 0 17px; border: 1px solid #3d3d40; border-radius: 999px; background: transparent; color: var(--white); font-size: 9px; font-weight: 650; letter-spacing: .07em; text-transform: uppercase; cursor: pointer; transition: border-color .25s ease, background .25s ease, color .25s ease; }
.contact-dialog-close:hover { border-color: var(--white); background: var(--white); color: #050505; }
.contact-dialog-body { min-height: calc(100svh - 72px); display: grid; grid-template-columns: 5fr 7fr; gap: 8.33%; padding: clamp(48px,7vh,82px) var(--page) 40px; }
.contact-dialog-intro { min-height: 100%; display: flex; flex-direction: column; }
.contact-dialog[open] .contact-dialog-intro > *,
.contact-dialog[open] .contact-form-field,
.contact-dialog[open] .contact-form-actions { opacity: 0; animation: contact-content-in .72s var(--ease-out) forwards; }
.contact-dialog[open] .contact-dialog-intro > :nth-child(1) { animation-delay: .08s; }
.contact-dialog[open] .contact-dialog-intro > :nth-child(2) { animation-delay: .14s; }
.contact-dialog[open] .contact-dialog-intro > :nth-child(3) { animation-delay: .2s; }
.contact-dialog[open] .contact-form-field:nth-child(1) { animation-delay: .12s; }
.contact-dialog[open] .contact-form-field:nth-child(2) { animation-delay: .16s; }
.contact-dialog[open] .contact-form-field:nth-child(3) { animation-delay: .2s; }
.contact-dialog[open] .contact-form-field:nth-child(4) { animation-delay: .24s; }
.contact-dialog[open] .contact-form-field:nth-child(5) { animation-delay: .28s; }
.contact-dialog[open] .contact-form-field:nth-child(6) { animation-delay: .32s; }
.contact-dialog[open] .contact-form-actions { animation-delay: .36s; }
.contact-dialog-kicker { color: var(--grey-2); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.contact-dialog-intro h2 { margin-top: clamp(70px,11vh,130px); font-size: clamp(76px,8.3vw,128px); line-height: .79; letter-spacing: -.075em; font-weight: 580; }
.contact-dialog-intro h2 span { color: #4b4b4f; }
.contact-dialog-note { max-width: 390px; margin-top: auto; color: var(--grey-1); font-size: 13px; line-height: 1.38; }
.contact-dialog-flow { max-width: 430px; margin-top: 30px; border-top: 1px solid var(--hairline); list-style: none; }
.contact-dialog-flow li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding: 13px 0 14px; border-bottom: 1px solid var(--hairline); }
.contact-dialog-flow li > span { padding-top: 2px; color: #5b5b60; font-size: 8px; letter-spacing: .08em; }
.contact-dialog-flow p { color: var(--grey-2); font-size: 10px; line-height: 1.42; }
.contact-dialog-flow strong { display: block; margin-bottom: 2px; color: var(--grey-1); font-size: 11px; font-weight: 630; letter-spacing: -.01em; }
.contact-form { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 28px 32px; align-content: start; padding: 2vh 0 0 8.33%; border-left: 1px solid var(--hairline); }
.contact-form[hidden] { display: none; }
.contact-form-field { min-width: 0; display: grid; gap: 10px; }
.contact-form-field--full { grid-column: 1 / -1; }
.contact-form-field label { display: flex; justify-content: space-between; gap: 16px; color: var(--grey-1); font-size: 9px; line-height: 1.2; letter-spacing: .08em; text-transform: uppercase; }
.contact-form-field label span { color: #55555a; font-size: 7px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-width: 0; border: 0; border-bottom: 1px solid #3a3a3e; border-radius: 0; background: transparent; color: var(--white); font: inherit; font-size: 17px; line-height: 1.35; transition: border-color .25s ease; }
.contact-form input, .contact-form select { min-height: 44px; padding: 0 0 13px; }
.contact-form select { color-scheme: dark; }
.contact-form textarea { min-height: 94px; padding: 0 0 14px; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #5d5d62; opacity: 1; }
.contact-form input:user-invalid, .contact-form select:user-invalid, .contact-form textarea:user-invalid { border-color: rgba(240,138,75,.72); }
.contact-form-trap { position: fixed; left: -10000px; top: 0; width: 1px; height: 1px; overflow: hidden; }
.contact-form-error { grid-column: 1 / -1; margin: -6px 0 0; padding: 12px 14px; border: 1px solid rgba(240,138,75,.34); background: rgba(240,138,75,.06); color: #d8d8da; font-size: 10px; line-height: 1.45; }
.contact-form-error[hidden] { display: none; }
.contact-form-error a { color: var(--white); border-bottom: 1px solid #66666a; }
.contact-form-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 24px; padding-top: 4px; }
.contact-form-submit { min-height: 58px; padding: 0 24px; border: 0; border-radius: 999px; background: var(--white); color: #050505; font-size: 11px; font-weight: 680; letter-spacing: -.01em; cursor: pointer; transition: transform .25s ease, background .25s ease; }
.contact-form-submit:hover { transform: translateY(-2px); background: #fff; }
.contact-form-submit:disabled { cursor: wait; opacity: .62; transform: none; }
.contact-form-actions p { max-width: 520px; color: var(--grey-2); font-size: 9px; line-height: 1.5; }
.contact-form-actions p a { color: var(--grey-1); border-bottom: 1px solid #4b4b50; }
.contact-form-success { min-height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 2vh 0 0 8.33%; border-left: 1px solid var(--hairline); }
.contact-form-success[hidden] { display: none; }
.contact-form-success:focus { outline: none; }
.contact-form-success > p:first-child { color: var(--grey-2); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.contact-form-success h3 { margin-top: clamp(70px,11vh,130px); font-size: clamp(76px,8.3vw,128px); line-height: .79; letter-spacing: -.075em; font-weight: 580; }
.contact-form-success h3 span { color: #4b4b4f; }
.contact-form-success h3 + p { max-width: 430px; margin-top: 44px; color: var(--grey-1); font-size: 13px; line-height: 1.4; }
.contact-form-success button { width: fit-content; min-height: 52px; margin-top: 34px; padding: 0 20px; border: 1px solid #3d3d40; border-radius: 999px; background: transparent; color: var(--white); font-size: 10px; font-weight: 650; cursor: pointer; }
.contact-form-success button:hover { border-color: var(--white); }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .9s cubic-bezier(.2,.72,.2,1), transform .9s cubic-bezier(.2,.72,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

[data-project] {
  clip-path: none;
}
[data-project].is-visible { clip-path: none; }
[data-project] > * { transform-origin: center; }
[data-compose-piece] { transform-origin: center; will-change: transform, opacity; }
.hero-wordmark > span, .hero-edition, .hero-baseline p, .hero-actions { will-change: transform, opacity; }
.work-frame[data-project] > * { opacity: 0; transition: opacity .8s .55s ease, transform 1.3s .35s cubic-bezier(.16,1,.3,1); }
.work-frame[data-project].is-visible > * { opacity: 1; }
.apsodia .work-frame[data-project] .apsodia-letter { transform: translateY(6%); }
.apsodia .work-frame[data-project].is-visible .apsodia-letter { transform: translateY(0); }
.gspark .work-frame[data-project] .gspark-object { transform: translate(-50%,-45%) scale(.92); }
.gspark .work-frame[data-project].is-visible .gspark-object { transform: translate(-50%,-50%) scale(1); }

@media (max-width: 760px) {
  :root { --page: 18px; --header-height: 64px; }
  .site-header { grid-template-columns: 1fr auto; min-height: 64px; padding: 10px var(--page); }.site-header p { display: none; }.site-nav { gap: 16px; }.site-nav > a { display: none; }.site-nav > a:first-child, .site-nav > a.site-nav-primary { display: block; }.site-nav-primary { padding: 10px 13px !important; }
  .hero { padding-top: 90px; padding-bottom: 120px; }.hero-edition { width: 60%; margin-bottom: 22vh; }.hero h1 { font-size: 22.5vw; line-height: .76; }.hero-baseline { grid-template-columns: 1fr; gap: 18px; margin-top: 12vh; padding: 15px 0 0; }.hero-baseline p:last-child { color: var(--grey-2); }.hero-actions { left: var(--page); right: var(--page); bottom: 22px; justify-content: space-between; gap: 14px; }.scroll-cue { min-width: 164px; }.cta-secondary { font-size: 9px; }
  .silence { min-height: 95vh; grid-template-columns: 1fr; }.silence-line { width: 100%; font-size: 16vw; }.silence-index { margin-bottom: 80px; }
  .case-meal { padding-top: 30vw; padding-bottom: 28vw; }.meal-case-head { grid-template-columns: 1fr; gap: 32px; padding-bottom: 18vw; }.meal-case-head > p:first-child { order: 1; }.meal-case-head h2 { order: 2; text-align: left; font-size: 31vw; }.meal-case-lead { order: 3; justify-self: start; }.meal-scenes { height: 720px; min-height: 0; border-radius: 18px; }.meal-site-bar { top: 14px; width: calc(100% - 28px); min-height: 52px; padding: 0 12px; grid-template-columns: 1fr auto; }.meal-site-links { display: none; }.meal-site-brand { font-size: 13px; }.meal-site-brand img { width: 22px; height: 22px; }.meal-site-button { padding: 10px 14px; font-size: 9px; }.meal-scene-copy { left: 8%; right: 8%; top: 17%; }.meal-scene h3 { font-size: 14vw; }.meal-scene-copy p { font-size: 12px; }.meal-scene-device { top: 47%; right: 4%; width: 52%; height: auto; border-radius: 40px; }.meal-scene-center { top: 8%; padding: 0 24px; }.meal-scene--courses h3 { font-size: 12.4vw; }.meal-ui-crop { width: 49%; bottom: 24px; border-radius: 40px; }.meal-ui-crop--menu { left: 2%; }.meal-ui-crop--list { right: 2%; bottom: 24px; }.meal-scene-caption { display: none; }.meal-scene--cook .meal-scene-center { top: 8%; left: 8%; }.meal-scene--cook h3 { font-size: 14vw; }.meal-cook-focus { top: 36%; right: 6%; width: 58%; height: auto; border-radius: 40px; }.meal-device-shell { --phone-radius: 40px; --screen-radius: 36px; --phone-bezel: 6px; padding: 3px; border-width: 2px; }.meal-device-shell:before { inset: calc(5px + var(--phone-bezel)); }.meal-feature-tabs { width: 100%; justify-content: center; gap: 2px; margin-top: 16px; }.meal-feature-tabs button { gap: 5px; padding: 11px 10px; font-size: 9px; }
  .case-brand { padding-top: 22vw; padding-bottom: 22vw; }.case-position { min-height: 240px; grid-template-columns: 1fr; gap: 22px; margin-bottom: 22vw; }.case-position p:nth-child(2) { font-size: 9vw; }.brand-case-head { grid-template-columns: 1fr; gap: 32px; padding-bottom: 18vw; }.brand-case-head > p:first-child { order: 1; }.brand-case-head h2 { order: 2; text-align: left; font-size: 27vw; }.brand-case-lead { order: 3; justify-self: start; }.brand-scenes { height: 700px; min-height: 0; border-radius: 14px; }.brand-scene-top { top: 18px; left: 18px; right: 18px; font-size: 7px; }.brand-scene-top span:last-child { display: none; }.brand-sign-copy { top: 15%; left: 8%; }.brand-sign-copy h3 { font-size: 15vw; }.brand-signature { top: 40%; right: 5%; width: 58%; height: 47%; padding: 20px; }.brand-signature > span { font-size: 29vw; }.brand-signature p { width: 66%; font-size: 9px; }.brand-scene-note { display: none; }.brand-scene--system > h3 { top: 12%; left: 7%; font-size: 13vw; }.brand-system-board { left: 5%; right: 5%; top: 35%; bottom: 5%; grid-template-columns: 1.1fr .9fr; grid-template-rows: 1fr 1fr; gap: 10px; }.brand-application { padding: 16px; }.brand-application--poster { grid-row: 1 / 3; }.brand-application--poster b { font-size: 11vw; }.brand-application--type b { font-size: 17vw; }.brand-application--type p { font-size: 5vw; }.brand-application--signal b { font-size: 16vw; }.brand-scene--presence > h3 { top: 25%; left: 7%; font-size: 17vw; }.brand-presence-index { right: 0; bottom: 10%; font-size: 64vw; }.brand-presence-band { left: 7%; right: 7%; bottom: 6%; grid-template-columns: 1fr; gap: 8px; font-size: 9px; }.brand-presence-band span:nth-child(2), .brand-presence-band span:last-child { text-align: left; }.brand-feature-tabs { width: 100%; justify-content: center; gap: 2px; margin-top: 16px; }.brand-feature-tabs button { gap: 5px; padding: 11px 10px; font-size: 9px; }.section-next { grid-template-columns: 1fr; gap: 12px; margin-top: 20vw; }.section-next a { grid-column: 1; font-size: 20px; }
  .offer-index { margin: 18vw 0 0; }.offer-index a { grid-template-columns: 28px 1fr auto; gap: 12px; min-height: 76px; }.offer-index strong { font-size: 20px; }.offer-index em { display: none; }.offer-index a:hover, .offer-index a:focus-visible { padding: 0 10px; }
  .method { height: 155svh; }.method-copy { padding-left: 0; }.method-copy p { font-size: 17vw; }.method-copy p:last-child { padding-left: 0; }.method-counter { grid-template-columns: auto 70px auto; }
  .construction { padding-top: 18vw; }.construction-header { grid-template-columns: 1fr; gap: 48px; padding-bottom: 16vw; }.construction-header p { font-size: 15vw; }.construction-scroll { height: 180svh; }.construction-stage { top: calc(var(--header-height) + 14px); height: calc(100svh - var(--header-height) - 28px); }.construction-traces { display: block; }.construction-chapters { top: auto; bottom: 17px; left: 50%; right: auto; gap: 12px; transform: translateX(-50%); white-space: nowrap; }.construction-index { top: 18px; left: 18px; }.blueprint { width: 90%; height: 58%; }.blueprint-bar { padding: 0 10px; }.blueprint-nav { padding: 16px 8px; gap: 13px; }.blueprint-nav span { font-size: 5px; }.blueprint-main { padding: 8% 6%; }.blueprint-main h3 { font-size: 7vw; }.bp-decisions { margin-top: 12%; gap: 8px; }.bp-decisions article { min-height: 68px; padding: 7px 1px 0; }.bp-decisions span { display: none; }.construction-notes { display: none; }
  .process-continuation { padding-top: 24vw; }.process-continuation-header { grid-template-columns: 1fr; gap: 42px; }.process-continuation-header p { font-size: 13vw; }.sequence { margin-top: 24vw; }.sequence + .sequence { margin-top: 18vw; }.sequence-heading { grid-template-columns: 1fr; gap: 32px; padding-bottom: 16vw; }.sequence-heading h2 { font-size: 14vw; }.sequence-heading p { font-size: 11px; }.sequence-scroll { height: 165svh; }.sequence-stage { top: calc(var(--header-height) + 14px); height: calc(100svh - var(--header-height) - 28px); }.sequence-folio { top: 18px; left: 18px; right: 18px; }.sequence-chapters { left: 18px; right: 18px; bottom: 18px; font-size: 6px; }.hierarchy-layout { left: 7%; top: 22%; width: 86%; height: 56%; grid-template-columns: 24% 1fr; }.hierarchy-number { font-size: 26vw; }.hierarchy-main { padding: 10% 7% 7%; }.hierarchy-main h3 { font-size: 10vw; }.hierarchy-main > p { font-size: 7px; }.hierarchy-levels { gap: 8px; }.hierarchy-levels span { font-size: 6px; }.presence-layout { left: 7%; top: 21%; width: 86%; height: 58%; padding: 9% 7%; }.presence-layout h3 { font-size: 15.5vw; }.presence-layout > p { font-size: 7px; }.presence-axis { font-size: 6px; }
  .work { padding-top: 24vw; }.work-header { grid-template-columns: 1fr; gap: 54px; }.work-header p { font-size: 13vw; }.work-item { margin-top: 18vw; }.work-item.apsodia, .work-item.gspark { width: 100%; }.work-frame { aspect-ratio: .82; }.apsodia-reader { grid-template-columns: 27% 1fr; grid-template-rows: 50px 1fr 48px; }.apsodia-nav { display: none; }.apsodia-reader header { grid-template-columns: 1fr auto; }.apsodia-content { padding: 12% 9%; }.apsodia-content h3 { font-size: 12vw; }.apsodia-content p { position: static; margin-top: 24px; font-size: 11px; }.apsodia-player { grid-template-columns: auto 1fr auto; }.apsodia-player strong { display: none; }.gspark-console { grid-template-columns: 24% 1fr; }.gspark-console header span { display: none; }.gspark-console header { grid-template-columns: 1fr auto; }.gspark-content { padding: 10%; }.gspark-main-stat > strong { font-size: 18vw; }.gspark-orbit { top: 43%; width: 54%; }.gspark-bars { right: 10%; height: 16%; }.work-meta { grid-template-columns: 1fr auto; row-gap: 7px; }.work-meta p { grid-row: 2; }.work-meta > span { grid-column: 2; grid-row: 1; }
  .practice { min-height: 100vh; padding-top: 28vw; padding-bottom: 28vw; }.practice-label { margin-bottom: 22vw; }.practice-lines p { font-size: 13vw; padding: 16px 0; }.practice-lines p:nth-child(2), .practice-lines p:nth-child(3) { padding-left: 0; }.practice-note { width: 75%; margin-top: 20vw; }
  .local-scope { min-height: 90svh; grid-template-columns: 1fr; gap: 17vw; padding-top: 24vw; padding-bottom: 22vw; }.local-scope h2 { font-size: 14.5vw; }.local-scope-copy { grid-column: 1; width: 100%; margin: 0; }.local-scope-copy p { max-width: 520px; font-size: 13px; }
  .contact { min-height: 90vh; padding-top: 86px; }.contact h2 { font-size: 14.2vw; }.contact-bottom { grid-template-columns: 1fr; gap: 28px; padding-left: 0; }.contact-primary { min-height: 58px; padding: 0 17px; }.contact-primary span { font-size: 9px; }
  .site-footer { padding-bottom: 22px; }.footer-main { min-height: 0; grid-template-columns: 1fr 1fr; gap: 34px 18px; padding: 30px 0 48px; }.footer-wordmark { grid-column: 1 / -1; font-size: 44px; }.footer-main p { font-size: 9px; }.footer-email { grid-column: 1 / -1; justify-self: start; margin-top: 8px; }.footer-legal { grid-template-columns: 1fr auto; gap: 24px 18px; }.footer-legal > p:first-child, .footer-legal nav { grid-column: 1 / -1; }.footer-legal nav { gap: 14px 22px; }.footer-legal > p:nth-of-type(2) { align-self: end; }.footer-legal > a:last-child { align-self: end; }
  .legal-hero { min-height: 72svh; padding-top: calc(var(--header-height) + 54px); grid-template-columns: 1fr; }.legal-hero h1 { grid-column: 1; font-size: 19vw; }.legal-hero > p:last-child { grid-column: 1; margin-top: 42px; }.legal-summary { grid-template-columns: 1fr 1fr; gap: 16px 18px; padding: 20px 0; }.legal-summary p { grid-row: auto; grid-column: 1 / -1; margin-bottom: 6px; }.legal-callout { grid-template-columns: 1fr; gap: 22px; padding: 18vw 0; }.legal-callout strong + p { max-width: 460px; }.legal-section { grid-template-columns: 1fr; gap: 60px; padding: 22vw 0; }.legal-section > header p { position: static; }.legal-content article { grid-template-columns: 1fr; gap: 18px; padding: 30px 0 38px; }.legal-copy h2 { font-size: 9vw; }.legal-copy p { font-size: 13px; }.legal-facts > div, .legal-facts--wide > div { grid-template-columns: 1fr; gap: 6px; }.legal-back { padding: 24px 0; }
  .service-hero { min-height: 88svh; grid-template-columns: 1fr; gap: 12vw; padding-top: calc(var(--header-height) + 48px); }.service-hero-title { grid-column: 1; font-size: 19vw; }.service-hero-bottom { grid-column: 1; grid-template-columns: 1fr; gap: 26px; }.service-hero-lead { font-size: 27px; }.service-summary { grid-template-columns: 1fr; }.service-summary > p, .service-summary > div, .service-summary > :last-child, .service-summary > div + div { min-height: 0; padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--hairline); }.service-summary > :last-child { border-bottom: 0; }.service-summary strong { margin-top: 12px; }.service-section { grid-template-columns: 1fr; gap: 58px; padding: 23vw 0; }.service-section-heading { font-size: 12.5vw; }.service-section-intro { margin: 44px 0 0; font-size: 14px; }.service-cards { grid-template-columns: 1fr; }.service-card, .service-card:nth-child(even) { min-height: 0; padding: 28px 0 36px; border-right: 0; }.service-card h3 { margin-top: 24px; font-size: 9vw; }.service-list article { grid-template-columns: 34px 1fr; gap: 18px; }.service-list article p { grid-column: 2; }.service-faq details p { padding-left: 0; }.service-area { grid-template-columns: 1fr; gap: 50px; }.service-cta { min-height: 86svh; grid-template-columns: 1fr; gap: 15vw; }.service-cta-content h2 { font-size: 14vw; }.service-cta-content > p, .service-cta-actions { width: 100%; margin-left: 0; }.service-cta-actions { grid-template-columns: 1fr; }.service-cta-email { width: fit-content; }.service-siblings { grid-template-columns: 1fr; gap: 22px; }
  .contact-dialog-shell { grid-template-rows: 64px 1fr; }.contact-dialog-header { grid-template-columns: 1fr auto; min-height: 64px; padding: 10px var(--page); }.contact-dialog-header p { display: none; }.contact-dialog-close { min-height: 40px; padding: 0 14px; }.contact-dialog-body { min-height: calc(100svh - 64px); grid-template-columns: 1fr; gap: 46px; padding: 42px var(--page) 32px; }.contact-dialog-intro { min-height: auto; }.contact-dialog-intro h2 { margin-top: 54px; font-size: 18vw; }.contact-dialog-note { margin-top: 34px; }.contact-dialog-flow { max-width: none; margin-top: 26px; }.contact-dialog-flow li { padding: 14px 0; }.contact-form { grid-template-columns: 1fr; gap: 26px; padding: 38px 0 0; border-top: 1px solid var(--hairline); border-left: 0; }.contact-form-field, .contact-form-field--full { grid-column: 1; }.contact-form-actions { grid-column: 1; flex-direction: column; align-items: stretch; gap: 16px; }.contact-form-submit { width: 100%; }.contact-form-actions p { max-width: none; font-size: 10px; text-align: left; }.contact-form-success { min-height: 520px; padding: 38px 0 0; border-top: 1px solid var(--hairline); border-left: 0; }.contact-form-success h3 { margin-top: 54px; font-size: 18vw; }
}

@media print {
  @page { size: A4; margin: 17mm 16mm 18mm; }
  html { scroll-behavior: auto; }
  body.legal-page { background: #fff; color: #111; }
  .legal-page .page-progress,
  .legal-page .site-header,
  .legal-page .site-footer,
  .legal-page .legal-summary,
  .legal-page .legal-back { display: none !important; }
  .legal-main { padding: 0; }
  .legal-hero { min-height: 0; display: block; padding: 0 0 14mm; border-bottom: 1px solid #aaa; }
  .legal-hero > p:first-child, .legal-hero > p:last-child { color: #555; font-size: 8pt; }
  .legal-hero h1 { margin: 13mm 0 9mm; font-size: 46pt; line-height: .84; color: #111; }
  .legal-hero h1 span { color: #666; }
  .legal-callout { display: block; padding: 11mm 0; border-bottom: 1px solid #aaa; }
  .legal-callout > p:first-child { margin-bottom: 5mm; color: #555; }
  .legal-callout strong { display: block; max-width: none; font-size: 22pt; color: #111; }
  .legal-callout strong + p { margin-top: 5mm; color: #333; font-size: 9.5pt; }
  .legal-section { display: block; padding: 11mm 0 3mm; border-bottom: 1px solid #aaa; }
  .legal-section > header { padding: 0 0 7mm; }
  .legal-section > header p { position: static; color: #555; font-size: 8pt; }
  .legal-content article { grid-template-columns: 11mm 1fr; gap: 4mm; padding: 7mm 0; border-top-color: #bbb; break-inside: avoid-page; page-break-inside: avoid; }
  .legal-content article > span { color: #666; font-size: 7.5pt; }
  .legal-copy { max-width: none; }
  .legal-copy h2 { color: #111; font-size: 17pt; line-height: 1.05; }
  .legal-copy p, .legal-copy .legal-note { color: #222 !important; font-size: 9.5pt !important; line-height: 1.5; }
  .legal-copy strong { color: #111; }
  .legal-copy a { color: #111; border: 0; text-decoration: underline; }
  .legal-facts { border-top-color: #aaa; }
  .legal-facts > div { border-bottom-color: #bbb; }
  .legal-facts dt { color: #555; }
  .legal-facts dd { color: #222; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-wordmark > span, [data-reveal] { opacity: 1; transform: none; animation: none; transition: none; }
  .site-header { opacity: 1; animation: none; }
  .contact-dialog[open] { animation: none; }
  .contact-dialog[open] .contact-dialog-intro > *, .contact-dialog[open] .contact-form-field, .contact-dialog[open] .contact-form-actions { opacity: 1; transform: none; animation: none; }
  [data-project] { clip-path: none; transition: none; }
  [data-project] > * { opacity: 1 !important; transform: none; transition: none; }
  .meal-scene, .brand-scene { transition: none; }
}
