@font-face {
  font-family: "Local UI";
  src: local("Helvetica Neue"), local("Arial");
  size-adjust: 98%;
}

:root {
  color-scheme: light;
  --paper: #f3f0e7;
  --paper-deep: #e7e2d5;
  --ink: #0a1211;
  --ink-soft: #26302d;
  --blue: #0854d8;
  --blue-bright: #1262f1;
  --green: #77ee73;
  --green-acid: #a1ff88;
  --coral: #ff5b3d;
  --white: #fffdf7;
  --line: rgba(10, 18, 17, 0.2);
  --line-light: rgba(255, 253, 247, 0.22);
  --shadow: 0 28px 80px rgba(2, 12, 10, 0.18);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-frame: cubic-bezier(0.87, 0, 0.13, 1);
  --ease-ui: cubic-bezier(0.4, 0, 0.2, 1);
  --shell: min(1440px, calc(100vw - 40px));
  --header-h: 72px;
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 30px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Onest", "Local UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.015em;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

a {
  text-decoration: none;
}

.nowrap {
  white-space: nowrap;
}

p,
h1,
h2,
h3,
dl,
dd,
figure,
ol,
ul {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

::selection {
  background: var(--green-acid);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: transform 180ms var(--ease-ui);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  min-height: var(--header-h);
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 10px max(20px, calc((100vw - 1440px) / 2 + 20px));
  color: var(--white);
  transition:
    background-color 300ms var(--ease-ui),
    backdrop-filter 300ms var(--ease-ui),
    box-shadow 300ms var(--ease-ui);
}

.site-header.is-scrolled {
  background: rgba(6, 15, 14, 0.76);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.wordmark {
  width: fit-content;
  color: inherit;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 28px;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.04em;
}

a.wordmark {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 38px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-nav a {
  position: relative;
  min-width: 44px;
  min-height: 44px;
  padding: 12px 0;
  opacity: 0.9;
  transition:
    opacity 200ms var(--ease-ui),
    transform 200ms var(--ease-ui);
}

.site-nav a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 300ms var(--ease-out);
}

.site-nav a:hover {
  opacity: 1;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  display: inline-flex;
  min-width: 94px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px !important;
  border-radius: 8px;
  background: var(--coral);
  color: var(--ink);
  text-align: center;
}

.nav-contact:hover {
  transform: translateY(-2px);
}

.nav-contact:active {
  transform: scale(0.97);
}

.menu-toggle {
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  background: none;
  color: inherit;
  cursor: pointer;
  font-size: 12px;
}

.menu-toggle i {
  position: relative;
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms var(--ease-ui);
}

.menu-toggle i::after {
  position: absolute;
  top: 5px;
  left: 0;
  width: 18px;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform 220ms var(--ease-ui), top 220ms var(--ease-ui);
}

.menu-toggle[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i::after {
  top: 0;
  transform: rotate(90deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: max(720px, 100dvh);
  overflow: hidden;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-wash {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.035);
  will-change: transform;
}

.hero-wash {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 34, 111, 0.23) 0%, rgba(2, 14, 15, 0.03) 55%, rgba(2, 14, 15, 0.2) 100%),
    radial-gradient(circle at 31% 44%, rgba(0, 25, 100, 0.12), rgba(0, 0, 0, 0) 48%);
}

.hero::after,
.final-cta::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.3;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(670px, calc(100vw - 40px));
  margin-top: 2vh;
  margin-right: min(34vw, 500px);
}

.hero-kicker {
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.035em;
}

.hero h1 {
  max-width: 12.5em;
  font-size: clamp(38px, 4.3vw, 68px);
  font-weight: 500;
  line-height: 0.99;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero-note {
  max-width: 430px;
  margin-top: 28px;
  color: rgba(255, 253, 247, 0.8);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.55;
  text-wrap: pretty;
}

.hero-actions,
.final-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 19px;
  border-radius: 9px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition:
    transform 200ms var(--ease-ui),
    box-shadow 300ms var(--ease-out),
    background-color 200ms var(--ease-ui);
}

.button span {
  transition: transform 250ms var(--ease-out);
}

.button:hover {
  transform: translateY(-3px);
}

.button:hover span {
  transform: translate(2px, -2px);
}

.button:active {
  transform: scale(0.97);
}

.button-coral {
  background: var(--coral);
  box-shadow: 0 14px 35px rgba(107, 18, 2, 0.26);
  color: var(--ink);
}

.button-coral:hover {
  box-shadow: 0 18px 42px rgba(107, 18, 2, 0.34);
}

.button-ink {
  background: var(--ink);
  box-shadow: 0 14px 32px rgba(10, 18, 17, 0.2);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 500;
  transition: gap 280ms var(--ease-out), opacity 200ms var(--ease-ui);
}

.text-link:hover {
  gap: 18px;
  opacity: 0.72;
}

.text-link-light {
  color: var(--white);
}

.hero-meta {
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100vw - 1440px) / 2 + 20px));
  bottom: 22px;
  left: max(20px, calc((100vw - 1440px) / 2 + 20px));
  display: flex;
  justify-content: space-between;
  color: rgba(255, 253, 247, 0.7);
  font-size: 11px;
  letter-spacing: 0.015em;
}

.section {
  position: relative;
  padding: clamp(110px, 12vw, 190px) 0;
}

.section-shell,
.site-footer {
  width: var(--shell);
  margin: 0 auto;
}

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

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

.section-blue {
  background: var(--blue);
  color: var(--white);
}

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

.eyebrow {
  margin-bottom: clamp(34px, 5vw, 74px);
  color: rgba(10, 18, 17, 0.58);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 253, 247, 0.58);
}

.display-title {
  max-width: 1060px;
  font-size: clamp(42px, 6.2vw, 94px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.display-title-light,
.section-title-light {
  color: var(--white);
}

.section-title {
  max-width: 880px;
  font-size: clamp(36px, 4.5vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.section-heading {
  display: grid;
  margin-bottom: clamp(64px, 9vw, 132px);
  gap: 30px;
}

.section-heading > .eyebrow {
  margin-bottom: 0;
}

.principle {
  overflow: clip;
}

.principle::after {
  position: absolute;
  right: -13vw;
  bottom: -24vw;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  content: "";
  background: var(--green);
  opacity: 0.72;
}

.principle-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: clamp(60px, 9vw, 150px);
}

.principle-list {
  border-top: 1px solid var(--line);
}

.principle-list li {
  display: grid;
  min-height: 74px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.principle-list span {
  color: rgba(10, 18, 17, 0.46);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.service-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.7fr);
  gap: clamp(56px, 7vw, 110px);
}

.service-index {
  position: sticky;
  top: max(100px, 14vh);
  align-self: start;
}

.service-index .eyebrow {
  margin-bottom: 32px;
}

.service-index .section-title {
  font-size: clamp(38px, 4.3vw, 66px);
}

.service-nav {
  display: grid;
  margin-top: 54px;
  border-top: 1px solid var(--line-light);
}

.service-nav-item {
  display: grid;
  min-height: 76px;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  padding: 0 2px;
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  color: rgba(255, 253, 247, 0.56);
  cursor: pointer;
  text-align: left;
  transition:
    color 300ms var(--ease-ui),
    padding 300ms var(--ease-out);
}

.service-nav-item span,
.service-nav-item small {
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.service-nav-item strong {
  font-size: 13px;
  font-weight: 500;
}

.service-nav-item.is-active,
.service-nav-item:hover {
  padding-left: 10px;
  color: var(--white);
}

.service-nav-item.is-active span {
  color: var(--coral);
}

.service-scenes {
  display: grid;
  gap: 24px;
}

.service-scene {
  display: grid;
  min-height: min(78vh, 800px);
  align-content: space-between;
  padding: clamp(26px, 4vw, 56px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #111d1b;
}

.service-scene:nth-child(2) {
  background: #0c47bc;
}

.service-scene:nth-child(3) {
  background: #234f34;
}

.service-copy {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 640px;
  grid-template-columns: 44px 1fr;
  column-gap: 18px;
}

.service-number {
  padding-top: 9px;
  color: var(--coral);
  font-size: 11px;
}

.service-copy h3 {
  max-width: 13em;
  font-size: clamp(30px, 3.5vw, 55px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.service-copy p,
.service-copy .text-link {
  grid-column: 2;
}

.service-copy p {
  max-width: 530px;
  margin-top: 24px;
  color: rgba(255, 253, 247, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.service-copy .text-link {
  margin-top: 18px;
}

.scene-visual {
  position: relative;
  width: min(100%, 760px);
  min-height: 330px;
  margin-top: clamp(48px, 8vw, 110px);
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
  transform-origin: center bottom;
}

.visual-login {
  background: #f3f0e7;
  color: var(--ink);
}

.visual-bar {
  display: flex;
  height: 50px;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(10, 18, 17, 0.12);
  background: #e5e1d8;
}

.visual-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.visual-bar span:nth-child(2) {
  background: #e9b95f;
}

.visual-bar span:nth-child(3) {
  background: #80c992;
}

.visual-bar b {
  margin-left: 14px;
  color: rgba(10, 18, 17, 0.6);
  font-size: 10px;
  font-weight: 500;
}

.login-state {
  width: min(360px, calc(100% - 40px));
  margin: 42px auto 32px;
}

.visual-label {
  color: var(--coral);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-state > strong {
  display: block;
  margin: 5px 0 20px;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.login-field {
  display: grid;
  gap: 5px;
  margin-top: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(10, 18, 17, 0.15);
  border-radius: 8px;
}

.login-field span {
  color: rgba(10, 18, 17, 0.48);
  font-size: 9px;
}

.login-field b {
  font-size: 12px;
  font-weight: 500;
}

.visual-action {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  text-align: center;
}

.visual-status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(10, 18, 17, 0.12);
}

.visual-status span {
  padding: 12px;
  border-right: 1px solid rgba(10, 18, 17, 0.12);
  color: rgba(10, 18, 17, 0.5);
  font-size: 9px;
  text-align: center;
}

.visual-status span:last-child {
  border: 0;
}

.visual-flow {
  display: grid;
  padding: clamp(22px, 4vw, 48px);
  background: #061d53;
  color: var(--white);
  gap: 20px;
}

.flow-head {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 253, 247, 0.55);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.flow-head b {
  color: var(--green-acid);
  font-weight: 500;
}

.flow-card {
  display: grid;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  gap: 7px;
}

.flow-card small {
  color: rgba(255, 253, 247, 0.5);
  font-size: 9px;
}

.flow-card strong {
  font-size: 17px;
  font-weight: 500;
}

.flow-card span {
  color: rgba(255, 253, 247, 0.68);
  font-size: 11px;
}

.flow-line {
  position: relative;
  width: 2px;
  height: 40px;
  margin: -10px 0 -10px 38px;
  background: rgba(255, 255, 255, 0.18);
}

.flow-line i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(255, 91, 61, 0.18);
}

.flow-card .status-good {
  color: var(--green-acid);
}

.visual-sheet {
  background: #eff0e7;
  color: var(--ink);
}

.sheet-toolbar {
  display: grid;
  min-height: 54px;
  grid-template-columns: 90px 45px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(10, 18, 17, 0.13);
  background: #dde0d7;
  font-size: 10px;
}

.sheet-toolbar > * {
  padding: 0 14px;
}

.sheet-toolbar strong {
  border-right: 1px solid rgba(10, 18, 17, 0.13);
  border-left: 1px solid rgba(10, 18, 17, 0.13);
  font-weight: 600;
}

.sheet-toolbar b {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 500;
}

.sheet-grid {
  display: grid;
  grid-template-columns: 42px 1.15fr repeat(3, 1fr);
  align-content: stretch;
  min-height: 276px;
}

.sheet-grid > * {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  border-right: 1px solid rgba(10, 18, 17, 0.1);
  border-bottom: 1px solid rgba(10, 18, 17, 0.1);
  overflow: hidden;
  font-size: 10px;
  font-weight: 400;
}

.sheet-grid b,
.sheet-grid strong {
  background: rgba(10, 18, 17, 0.035);
  color: rgba(10, 18, 17, 0.62);
  font-weight: 500;
}

.sheet-grid .sheet-total {
  background: var(--green);
  color: var(--ink);
  font-weight: 600;
}

.service-shell {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.38fr);
  align-items: start;
}

.service-index {
  position: relative;
  top: auto;
}

.service-nav-item {
  min-height: 82px;
}

.service-nav-item:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
}

.service-stage {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 247, 0.09);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 91, 61, 0.13), transparent 30%),
    #111d1b;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
  isolation: isolate;
}

.service-atmosphere {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.service-atmosphere img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.92) brightness(0.72);
  transform: scale(1.025);
}

.service-stage::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 15, 14, 0.68) 0%, rgba(5, 15, 14, 0.74) 48%, rgba(5, 15, 14, 0.93) 100%),
    linear-gradient(90deg, rgba(5, 15, 14, 0.7) 0%, rgba(5, 15, 14, 0.18) 82%);
}

.service-panel {
  position: relative;
  z-index: 2;
  min-height: clamp(500px, 48vw, 650px);
  padding: clamp(28px, 4vw, 58px);
  color: var(--white);
}

.js .service-panel:not(.is-active),
.service-panel[hidden] {
  display: none;
}

.service-panel.is-active {
  display: flex;
  flex-direction: column;
  animation: service-panel-in 340ms var(--ease-out) both;
}

.service-panel-head,
.service-panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.service-panel-head {
  color: rgba(255, 253, 247, 0.48);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-panel-head > span {
  color: var(--coral);
  font-variant-numeric: tabular-nums;
}

.service-panel-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: clamp(86px, 10vw, 148px);
}

.service-panel-body h3 {
  max-width: 9.6em;
  font-size: clamp(46px, 5.5vw, 78px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.service-panel-body > p {
  max-width: 520px;
  margin-top: 24px;
  color: rgba(255, 253, 247, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

.service-path {
  display: grid;
  margin-top: clamp(58px, 8vw, 96px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-path li {
  position: relative;
  display: grid;
  gap: 10px;
  padding-top: 16px;
}

.service-path li::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 253, 247, 0.18);
  content: "";
}

.service-path li:first-child::before {
  background: var(--coral);
}

.service-path span {
  color: rgba(255, 253, 247, 0.4);
  font-size: 9px;
  font-variant-numeric: tabular-nums;
}

.service-path strong {
  font-size: 12px;
  font-weight: 500;
}

.service-panel-foot {
  margin-top: auto;
  padding-top: 42px;
}

.service-panel-foot > span {
  color: rgba(255, 253, 247, 0.42);
  font-size: 10px;
}

@keyframes service-panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cases {
  overflow: clip;
}

.case-stack {
  display: grid;
  gap: clamp(26px, 3vw, 44px);
}

.case-card {
  position: relative;
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.45fr);
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 52px rgba(0, 22, 77, 0.15);
  scroll-margin-top: 18px;
}

.case-card-paper {
  background: var(--paper);
  color: var(--ink);
}

.case-card-ink {
  background: var(--ink);
  color: var(--white);
}

.case-card-green {
  background: var(--green);
  color: var(--ink);
}

.case-card-coral {
  background: var(--coral);
  color: var(--ink);
}

.case-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(32px, 4vw, 58px);
}

.case-meta {
  margin-bottom: clamp(42px, 4.5vw, 68px);
  color: currentColor;
  font-family: "Cabinet Grotesk", "Onest", sans-serif;
  font-size: 10px;
  letter-spacing: 0.04em;
  opacity: 0.56;
  text-transform: uppercase;
}

.case-copy h3 {
  max-width: 100%;
  margin-top: 0;
  font-size: clamp(34px, 3.6vw, 58px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
  hyphens: auto;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.case-copy > p:not(.case-meta) {
  max-width: 470px;
  margin-top: 26px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.68;
}

.case-copy > .text-link {
  margin-top: auto;
  padding-top: 32px;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 28px;
}

.work-tags li {
  padding: 7px 9px;
  border: 1px solid currentColor;
  border-radius: 7px;
  font-size: 9px;
  letter-spacing: 0.01em;
  opacity: 0.55;
}

.case-stats {
  display: grid;
  margin-top: 38px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.case-stats div {
  padding: 18px 12px 0 0;
}

.case-stats dt {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.case-stats dd {
  margin-top: 5px;
  color: rgba(10, 18, 17, 0.58);
  font-size: 10px;
  line-height: 1.4;
}

.case-media {
  display: grid;
  min-width: 0;
  min-height: 0;
  padding: clamp(14px, 1.5vw, 24px);
  overflow: hidden;
  background: #d8d9d5;
  place-items: center;
}

.case-media picture {
  display: block;
  width: 100%;
  height: auto;
}

.case-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  border-radius: 12px;
  box-shadow: 0 14px 38px rgba(10, 18, 17, 0.14);
  object-fit: contain;
  object-position: top center;
  filter: saturate(0.96) contrast(1.01);
  transform: none;
  transition: filter 500ms var(--ease-out);
  will-change: auto;
}

.case-media-align-left img {
  object-position: top center;
}

.case-card:hover .case-media img {
  filter: saturate(1) contrast(1);
}

.case-card-ink .case-media {
  background: #1a2321;
}

.case-card-green .case-media {
  background: #a1f59d;
}

.case-card-coral .case-media {
  background: #ff826b;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  align-items: start;
  gap: clamp(70px, 10vw, 160px);
}

.process-intro {
  position: sticky;
  top: max(100px, 14vh);
}

.process-title {
  max-width: 760px;
}

.process-list {
  position: relative;
  display: grid;
  gap: clamp(40px, 5vw, 72px);
  padding: 14px 0;
}

.process-list::before {
  position: absolute;
  top: 42px;
  bottom: 42px;
  left: 27px;
  width: 1px;
  background: linear-gradient(var(--coral), rgba(10, 18, 17, 0.12) 82%);
  content: "";
}

.process-list li,
.process-list li + li {
  position: relative;
  display: grid;
  min-height: 0;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: start;
  gap: clamp(22px, 3vw, 34px);
  padding: 0;
  border: 0;
}

.process-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(10, 18, 17, 0.14);
  border-radius: 50%;
  background: var(--paper);
  color: rgba(10, 18, 17, 0.55);
  font-size: 10px;
  place-items: center;
  transition:
    color 260ms var(--ease-ui),
    border-color 260ms var(--ease-ui),
    background-color 260ms var(--ease-ui);
}

.process-list li:first-child .process-marker {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.process-list li:hover .process-marker {
  border-color: var(--coral);
  background: var(--coral);
  color: var(--white);
}

.process-list h3 {
  max-width: 15em;
  margin-top: 2px;
  font-size: clamp(23px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.process-list p {
  max-width: 390px;
  margin-top: 14px;
  color: rgba(10, 18, 17, 0.58);
  font-size: 14px;
  line-height: 1.55;
}

.process-list.is-motion-ready li {
  opacity: 0;
  transform: translateY(8px);
}

.process-list.is-motion-ready.is-in-view li {
  animation: process-step-in 520ms var(--ease-out) forwards;
}

.process-list.is-motion-ready.is-in-view li:nth-child(2) {
  animation-delay: 70ms;
}

.process-list.is-motion-ready.is-in-view li:nth-child(3) {
  animation-delay: 140ms;
}

.process-list.is-motion-ready.is-in-view li:nth-child(4) {
  animation-delay: 210ms;
}

@keyframes process-step-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.prices {
  padding-top: 70px;
  border-top: 1px solid var(--line);
}

.prices-heading {
  display: grid;
  margin-bottom: clamp(50px, 6vw, 84px);
  grid-template-columns: minmax(160px, 0.48fr) minmax(0, 1.52fr);
  align-items: start;
  gap: clamp(36px, 7vw, 112px);
}

.prices-heading .eyebrow {
  margin-top: 11px;
}

.prices-heading .section-title {
  max-width: 960px;
}

.prices-intro {
  display: grid;
  gap: 20px;
}

.prices-note {
  max-width: 580px;
  color: rgba(10, 18, 17, 0.58);
  font-size: 14px;
  line-height: 1.55;
}

.price-list {
  border-top: 1px solid var(--line);
}

.price-item {
  display: grid;
  grid-template-columns:
    minmax(165px, 1.05fr)
    minmax(105px, 0.58fr)
    minmax(280px, 1.75fr)
    minmax(145px, 0.85fr);
  align-items: start;
  gap: clamp(18px, 2.5vw, 42px);
  padding: 30px 0 32px;
  border-bottom: 1px solid var(--line);
  transition: padding 300ms var(--ease-out), background-color 300ms var(--ease-ui);
}

.price-item:hover {
  padding-right: 10px;
  padding-left: 10px;
  background: rgba(119, 238, 115, 0.1);
}

.price-item h3 {
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.price-from,
.price-range strong {
  font-family: "Cabinet Grotesk", "Onest", sans-serif;
  font-variant-numeric: tabular-nums;
}

.price-from {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.price-scope {
  display: grid;
  max-width: 540px;
  gap: 9px;
}

.price-scope p {
  font-size: 14px;
  line-height: 1.5;
}

.price-scope small {
  color: rgba(10, 18, 17, 0.62);
  font-size: 11px;
  line-height: 1.5;
}

.price-range {
  display: grid;
  justify-items: end;
  gap: 7px;
  text-align: right;
}

.price-range span {
  color: rgba(10, 18, 17, 0.5);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-range strong {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.price-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 36px;
}

.price-terms {
  display: flex;
  max-width: 760px;
  flex-wrap: wrap;
  gap: 8px 22px;
  color: rgba(10, 18, 17, 0.62);
  font-size: 11px;
  line-height: 1.55;
}

.price-terms li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-terms li::before {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.prices .button-ink {
  flex: 0 0 auto;
  box-shadow: none;
  white-space: nowrap;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(60px, 10vw, 160px);
}

.about-portrait {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 3 / 4;
  justify-self: start;
  overflow: hidden;
  border-radius: 20px;
  background: var(--blue);
  box-shadow: 0 22px 56px rgba(8, 55, 45, 0.18);
}

.about-portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, rgba(8, 84, 216, 0.18), transparent 55%);
  mix-blend-mode: multiply;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.82) contrast(1.04);
}

.about-copy .eyebrow {
  margin-bottom: 34px;
}

.about-copy .display-title {
  max-width: 760px;
}

.about-lead {
  max-width: 580px;
  margin-top: 32px;
  font-size: clamp(17px, 1.6vw, 24px);
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.about-rules {
  max-width: 680px;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.about-rules li {
  display: grid;
  min-height: 66px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.about-rules span {
  color: rgba(10, 18, 17, 0.45);
  font-size: 9px;
}

.about-copy > .text-link {
  margin-top: 32px;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: max(680px, 94dvh);
  overflow: hidden;
  padding: clamp(100px, 13vw, 180px) 20px;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  isolation: isolate;
}

.final-media,
.final-wash {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.final-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  transform: scale(1.05);
}

.final-wash {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 19, 54, 0.7), rgba(0, 19, 54, 0.2) 60%, rgba(0, 0, 0, 0.05)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), transparent 68%);
}

.final-copy {
  position: relative;
  z-index: 2;
  width: min(1040px, 100%);
  margin-right: min(22vw, 320px);
}

.final-copy .eyebrow {
  margin-bottom: 34px;
}

.final-copy .display-title {
  max-width: 900px;
}

.final-note {
  max-width: 600px;
  margin-top: 30px;
  color: rgba(255, 253, 247, 0.7);
  font-size: 15px;
  line-height: 1.55;
}

.text-button {
  min-height: 44px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 253, 247, 0.72);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
}

.copy-status {
  min-height: 22px;
  margin-top: 16px;
  color: var(--green-acid);
  font-size: 11px;
}

.site-footer {
  display: flex;
  min-height: 250px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 60px 0 46px;
  background: var(--ink);
  box-shadow: 0 0 0 100vmax var(--ink);
  clip-path: inset(0 -100vmax);
  color: var(--white);
}

.wordmark-footer {
  display: block;
  margin-bottom: 18px;
  font-size: 48px;
}

.site-footer p {
  color: rgba(255, 253, 247, 0.48);
  font-size: 10px;
}

.site-footer nav {
  display: flex;
  gap: 30px;
  color: rgba(255, 253, 247, 0.68);
  font-size: 11px;
}

.site-footer a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  transition: color 200ms var(--ease-ui);
}

.site-footer a:hover {
  color: var(--white);
}

.works-hero {
  position: relative;
  display: grid;
  min-height: max(720px, 100dvh);
  overflow: hidden;
  padding: 120px max(20px, calc((100vw - 1440px) / 2 + 20px)) 60px;
  align-items: center;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.works-hero-media,
.works-hero-wash {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.works-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.04);
  will-change: transform;
}

.works-hero-wash {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 13, 14, 0.66) 0%, rgba(2, 13, 14, 0.34) 44%, rgba(2, 13, 14, 0.06) 78%),
    linear-gradient(0deg, rgba(2, 13, 14, 0.38), transparent 62%);
}

.works-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.28;
}

.works-hero-copy {
  position: relative;
  z-index: 2;
  width: min(800px, 66vw);
}

.works-hero-copy h1 {
  max-width: 11em;
  font-size: clamp(52px, 7vw, 108px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.works-hero-copy > p:not(.hero-kicker) {
  max-width: 520px;
  margin-top: 28px;
  color: rgba(255, 253, 247, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.works-hero-domain {
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100vw - 1440px) / 2 + 20px));
  bottom: 22px;
  color: rgba(255, 253, 247, 0.55);
  font-size: 10px;
  letter-spacing: 0.03em;
}

.project-reel {
  display: grid;
  height: auto;
  padding: 10px;
  overflow: hidden;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 6px;
  background: var(--ink);
}

.project-reel-item {
  position: relative;
  min-width: 0;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  border-radius: 12px;
  background: #12201e;
  color: var(--white);
  isolation: isolate;
}

.project-reel-item::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(2, 12, 11, 0.78));
  content: "";
  pointer-events: none;
}

.project-reel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  filter: saturate(0.66) contrast(1.04) brightness(0.78);
  transform: none;
  transition: filter 650ms var(--ease-out);
}

.project-reel-item-align-left img {
  object-position: top center;
}

.project-reel-item:is(:hover, :focus-visible) img {
  filter: saturate(0.96) contrast(1) brightness(0.94);
}

.project-reel-item span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.project-reel-item strong {
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
}

.project-reel-item small {
  color: rgba(255, 253, 247, 0.66);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-align: right;
  text-transform: uppercase;
}

.case-stack-works .case-card {
  min-height: 620px;
}

.bridge-layout {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) minmax(0, 1.4fr);
  gap: clamp(34px, 6vw, 100px);
}

.bridge-layout .eyebrow {
  margin: 12px 0 0;
}

.bridge-actions {
  display: flex;
  grid-column: 2;
  align-items: center;
  gap: 28px;
  margin-top: 22px;
}

.not-found {
  position: relative;
  display: grid;
  min-height: 100dvh;
  overflow: hidden;
  padding: 28px;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  isolation: isolate;
}

.not-found > picture,
.not-found-wash {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.not-found > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.not-found-wash {
  z-index: -1;
  background: rgba(1, 17, 30, 0.62);
}

.not-found-copy {
  width: min(720px, 100%);
}

.not-found-copy > .wordmark {
  display: block;
  margin-bottom: clamp(70px, 14vh, 150px);
}

.not-found-copy > p:first-of-type {
  margin-bottom: 18px;
  color: rgba(255, 253, 247, 0.58);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.not-found-copy h1 {
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.not-found-copy > p:last-of-type {
  max-width: 470px;
  margin-top: 25px;
  color: rgba(255, 253, 247, 0.7);
  font-size: 14px;
}

.not-found-copy > div {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 32px, 960px);
  }

  .hero-copy {
    margin-right: 23vw;
  }

  .final-copy {
    width: min(900px, calc(100vw - 48px));
    margin-right: 0;
  }

  .service-shell {
    grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.5fr);
    gap: 42px;
  }

  .case-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .case-copy {
    min-height: 0;
  }

  .case-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 62px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 8px 16px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: flex;
  }

  .wordmark {
    position: relative;
    z-index: 2;
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    display: flex;
    width: 100%;
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 76px 34px 34px;
    background: var(--ink);
    box-shadow: -30px 0 80px rgba(0, 0, 0, 0.32);
    transform: translateX(105%);
    transition: transform 500ms var(--ease-frame);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--line-light);
    font-size: 20px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-contact {
    width: 100%;
    margin-top: 16px;
    padding: 14px 18px !important;
    border: 0;
    font-size: 14px;
  }

  .hero {
    min-height: max(680px, 100svh);
  }

  .hero-copy {
    width: min(680px, calc(100vw - 32px));
    margin-right: 8vw;
  }

  .hero h1 {
    font-size: clamp(38px, 7.6vw, 60px);
  }

  .principle-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .principle-list {
    max-width: 520px;
  }

  .service-shell {
    display: block;
  }

  .service-index {
    position: relative;
    top: auto;
    margin-bottom: 48px;
  }

  .service-nav {
    display: none;
  }

  .service-scene {
    min-height: 700px;
  }

  .case-card {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .case-stack-works .case-card {
    min-height: auto;
  }

  .case-copy {
    min-height: 0;
  }

  .case-meta {
    margin-bottom: 42px;
  }

  .case-copy h3 {
    margin-top: 0;
  }

  .case-media {
    min-height: 0;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list li {
    border-bottom: 1px solid var(--line);
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .prices-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .prices-heading .eyebrow {
    margin-top: 0;
  }

  .price-item {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 22px;
    padding: 26px 0 28px;
  }

  .price-item:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .price-scope,
  .price-range {
    grid-column: 1 / -1;
  }

  .price-range {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
  }

  .about-portrait {
    width: min(360px, 100%);
  }

  .final-copy {
    width: 100%;
    margin-right: 0;
  }

  .works-hero-copy {
    width: min(760px, calc(100vw - 32px));
  }

  .project-reel {
    height: auto;
    padding: 10px 16px 14px;
    overflow-x: auto;
    grid-template-columns: none !important;
    grid-auto-flow: column dense;
    grid-auto-columns: minmax(270px, 78vw);
    gap: 4px;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .project-reel::-webkit-scrollbar {
    display: none;
  }

  .project-reel-item {
    scroll-snap-align: start;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 32px);
    --radius-lg: 20px;
  }

  .wordmark {
    font-size: 25px;
  }

  .hero {
    place-items: start center;
  }

  .hero-media img {
    object-position: center bottom;
    transform: scale(1.02);
  }

  .hero-wash {
    background:
      linear-gradient(180deg, rgba(0, 41, 133, 0.32) 0%, rgba(0, 31, 102, 0.05) 52%, rgba(0, 15, 28, 0.28) 100%),
      linear-gradient(90deg, rgba(0, 40, 128, 0.12), transparent);
  }

  .hero-copy {
    width: calc(100vw - 32px);
    margin: 0;
    padding-top: 17vh;
  }

  .hero-kicker {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero h1 {
    max-width: 9.2em;
    font-size: clamp(36px, 10.5vw, 48px);
    line-height: 1.01;
  }

  .hero-note {
    max-width: 290px;
    margin-top: 18px;
    font-size: 12px;
  }

  .hero-actions,
  .final-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .button {
    min-height: 48px;
    padding: 13px 16px;
  }

  .hero-meta {
    right: 16px;
    bottom: 14px;
    left: 16px;
    font-size: 9px;
  }

  .hero-meta span:last-child {
    display: none;
  }

  .section {
    padding: 92px 0;
  }

  .eyebrow {
    margin-bottom: 28px;
    font-size: 9px;
  }

  .display-title {
    font-size: clamp(39px, 12vw, 58px);
    letter-spacing: -0.065em;
  }

  .section-title,
  .service-index .section-title {
    font-size: 39px;
  }

  .principle::after {
    right: -35vw;
    bottom: -14vw;
    width: 90vw;
    height: 90vw;
    opacity: 0.55;
  }

  .principle-layout {
    gap: 58px;
  }

  .principle-list li {
    font-size: 12px;
  }

  .service-scenes {
    gap: 16px;
  }

  .service-scene {
    min-height: auto;
    padding: 24px 18px 18px;
  }

  .service-copy {
    grid-template-columns: 34px 1fr;
    column-gap: 8px;
  }

  .service-number {
    padding-top: 5px;
    font-size: 9px;
  }

  .service-copy h3 {
    font-size: 31px;
  }

  .service-copy p {
    margin-top: 18px;
    font-size: 12px;
  }

  .scene-visual {
    min-height: 286px;
    margin-top: 54px;
    border-radius: 14px;
  }

  .login-state {
    margin-top: 26px;
  }

  .visual-status {
    display: none;
  }

  .visual-flow {
    padding: 20px;
  }

  .sheet-grid > * {
    padding: 8px 4px;
    font-size: 8px;
  }

  .cases .section-heading {
    margin-bottom: 56px;
  }

  .case-stack {
    gap: 22px;
  }

  .case-card {
    top: auto;
  }

  .case-copy {
    min-height: 0;
    padding: 24px 20px 28px;
  }

  .case-meta {
    margin-bottom: 36px;
  }

  .case-copy h3 {
    max-width: 100%;
    margin-top: 0;
    font-size: clamp(31px, 10vw, 36px);
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }

  .case-copy > p:not(.case-meta) {
    margin-top: 20px;
    font-size: 12px;
  }

  .case-media {
    min-height: 0;
    padding: 10px;
  }

  .case-stats dt {
    font-size: 19px;
  }

  .process-title {
    font-size: 41px;
  }

  .process-list {
    grid-template-columns: 1fr;
    margin-top: 62px;
  }

  .process-list li,
  .process-list li + li {
    min-height: 220px;
    padding: 18px 0 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list h3 {
    margin-top: 42px;
    font-size: 24px;
  }

  .prices {
    padding-top: 56px;
  }

  .prices-heading {
    margin-bottom: 48px;
  }

  .price-item {
    gap: 11px 16px;
    padding: 22px 0 24px;
  }

  .price-item h3 {
    font-size: 17px;
  }

  .price-from,
  .price-range strong {
    font-size: 12px;
  }

  .price-scope p {
    font-size: 13px;
  }

  .price-scope small {
    font-size: 10px;
  }

  .price-footer {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 28px;
  }

  .price-terms {
    display: grid;
    gap: 8px;
    font-size: 10px;
  }

  .about-layout {
    gap: 58px;
  }

  .about-portrait {
    width: min(320px, 100%);
    border-radius: 16px;
  }

  .about-lead {
    font-size: 17px;
  }

  .about-rules li {
    min-height: 62px;
    font-size: 11px;
  }

  .final-cta {
    min-height: 860px;
    padding: 100px 16px 80px;
    place-items: start center;
  }

  .final-media img {
    object-position: center bottom;
    transform: scale(1.02);
  }

  .final-wash {
    background:
      linear-gradient(180deg, rgba(0, 18, 48, 0.38) 0%, rgba(0, 18, 48, 0.1) 58%, rgba(0, 0, 0, 0.2)),
      linear-gradient(90deg, rgba(0, 18, 48, 0.16), transparent 72%);
  }

  .final-copy {
    width: 100%;
    margin: 0;
  }

  .final-copy .display-title {
    font-size: 42px;
  }

  .final-note {
    max-width: 320px;
    color: rgba(255, 253, 247, 0.82);
    font-size: 13px;
  }

  .site-footer {
    min-height: 280px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    gap: 36px;
    padding: 52px 0 34px;
  }

  .wordmark-footer {
    font-size: 44px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 22px;
  }

  .works-hero {
    min-height: max(720px, 100svh);
    padding: 110px 16px 60px;
    align-items: start;
  }

  .works-hero-media img {
    object-position: center bottom;
    transform: scale(1.02);
  }

  .works-hero-wash {
    background:
      linear-gradient(180deg, rgba(2, 13, 14, 0.58) 0%, rgba(2, 13, 14, 0.28) 54%, rgba(2, 13, 14, 0.1) 80%),
      linear-gradient(90deg, rgba(2, 13, 14, 0.18), transparent 72%);
  }

  .works-hero-copy {
    width: 100%;
  }

  .works-hero-copy h1 {
    max-width: 8.5em;
    font-size: clamp(43px, 13vw, 59px);
    line-height: 0.98;
  }

  .works-hero-copy > p:not(.hero-kicker) {
    max-width: 310px;
    margin-top: 20px;
    color: rgba(255, 253, 247, 0.8);
    font-size: 13px;
  }

  .works-hero-domain {
    right: 16px;
    bottom: 14px;
  }

  .project-reel {
    height: auto;
    grid-auto-columns: minmax(250px, 82vw);
  }

  .project-reel-item span {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .work-tags {
    margin-top: 22px;
  }

  .bridge-layout {
    display: block;
  }

  .bridge-layout .eyebrow {
    margin: 0 0 28px;
  }

  .bridge-actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 42px;
  }

  .not-found {
    padding: 16px;
  }

  .not-found > picture img {
    object-position: center bottom;
  }

  .not-found-copy > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-height: 420px) and (orientation: landscape) {
  .hero,
  .works-hero {
    min-height: max(500px, 100svh);
  }

  .hero-copy {
    width: min(760px, calc(100vw - 40px));
    margin: 0;
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(38px, 7vw, 54px);
  }

  .works-hero {
    padding: 86px 20px 42px;
    align-items: center;
  }

  .works-hero-copy {
    width: min(760px, calc(100vw - 40px));
  }

  .works-hero-copy h1 {
    max-width: 10em;
    font-size: clamp(42px, 7vw, 58px);
  }

  .works-hero-domain {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .final-cta {
    min-height: max(500px, 100svh);
    padding: 78px 20px 64px;
  }

  .final-copy .display-title {
    font-size: clamp(38px, 6vw, 54px);
  }

  .not-found {
    padding: 16px 28px;
  }

  .not-found-copy > .wordmark {
    margin-bottom: 24px;
  }

  .not-found-copy > p:first-of-type {
    margin-bottom: 10px;
  }

  .not-found-copy > p:last-of-type {
    margin-top: 14px;
  }

  .not-found-copy > div {
    margin-top: 16px;
  }
}

@media (max-width: 340px) {
  .about-layout {
    gap: 40px;
  }

  .about-portrait {
    width: min(250px, 100%);
  }
}

@media (max-width: 1080px) {
  .process-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.82fr);
    gap: 56px;
  }
}

@media (max-width: 820px) {
  .service-index {
    margin-bottom: 34px;
  }

  .service-nav {
    display: grid;
    margin-top: 36px;
  }

  .service-nav-item {
    min-height: 68px;
  }

  .service-stage {
    border-radius: 22px;
  }

  .service-panel {
    min-height: 540px;
  }

  .service-panel-body {
    padding-top: 76px;
  }

  .service-panel-body h3 {
    font-size: clamp(44px, 9vw, 66px);
  }

  .process-layout {
    display: block;
  }

  .process-intro {
    position: relative;
    top: auto;
  }

  .process-list {
    margin-top: 66px;
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li + li {
    min-height: 0;
    padding: 0;
    border: 0;
  }

  .process-list h3 {
    margin-top: 2px;
  }
}

@media (max-width: 560px) {
  .service-index {
    margin-bottom: 28px;
  }

  .service-nav {
    margin-top: 30px;
  }

  .service-nav-item {
    min-height: 64px;
    grid-template-columns: 30px minmax(0, 1fr) auto;
  }

  .service-nav-item.is-active,
  .service-nav-item:hover {
    padding-left: 6px;
  }

  .service-nav-item strong {
    font-size: 12px;
  }

  .service-nav-item small {
    font-size: 9px;
  }

  .service-stage {
    border-radius: 18px;
  }

  .service-atmosphere img {
    object-position: center bottom;
    filter: saturate(0.94) brightness(0.68);
    transform: scale(1.02);
  }

  .service-stage::after {
    background:
      linear-gradient(180deg, rgba(5, 15, 14, 0.8) 0%, rgba(5, 15, 14, 0.68) 50%, rgba(5, 15, 14, 0.94) 100%),
      linear-gradient(90deg, rgba(5, 15, 14, 0.58), rgba(5, 15, 14, 0.08));
  }

  .service-panel {
    min-height: 500px;
    padding: 22px 18px;
  }

  .service-panel-head {
    gap: 12px;
  }

  .service-panel-head p {
    text-align: right;
  }

  .service-panel-body {
    padding-top: 64px;
  }

  .service-panel-body h3 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .service-panel-body > p {
    margin-top: 20px;
    font-size: 12px;
  }

  .service-path {
    margin-top: 48px;
    gap: 8px;
  }

  .service-path li {
    gap: 8px;
    padding-top: 12px;
  }

  .service-path strong {
    font-size: 10px;
  }

  .service-panel-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-top: 34px;
  }

  .process-title {
    font-size: 41px;
  }

  .process-list {
    margin-top: 52px;
    gap: 38px;
    padding: 8px 0;
  }

  .process-list::before {
    top: 34px;
    bottom: 34px;
    left: 23px;
  }

  .process-list li,
  .process-list li + li {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 18px;
  }

  .process-marker {
    width: 46px;
    height: 46px;
  }

  .process-list h3 {
    margin-top: 1px;
    font-size: 23px;
  }

  .process-list p {
    margin-top: 10px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-media img,
  .works-hero-media img,
  .final-media img,
  .case-media img {
    transform: none !important;
  }

}

html:not(.js) .service-shell {
  display: block;
}

html:not(.js) .service-index {
  position: relative;
  top: auto;
  margin-bottom: 48px;
}

html:not(.js) .service-nav,
html:not(.js) [data-copy-brief] {
  display: none;
}

html:not(.js) .service-stage {
  display: grid;
  gap: 1px;
  overflow: visible;
  background: rgba(255, 253, 247, 0.1);
}

html:not(.js) .service-panel {
  display: flex;
  min-height: auto;
  flex-direction: column;
  background: #111d1b;
}

@media (max-width: 820px) {
  .js .site-nav:not(.is-open) {
    pointer-events: none;
  }

  html:not(.js) .site-header {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  html:not(.js) .menu-toggle {
    display: none;
  }

  html:not(.js) .site-nav {
    position: static;
    display: flex;
    width: 100%;
    height: auto;
    flex-flow: row wrap;
    justify-content: flex-start;
    gap: 14px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  html:not(.js) .site-nav a {
    width: auto;
    padding: 5px 0;
    border: 0;
    font-size: 10px;
  }

  html:not(.js) .site-nav .nav-contact {
    width: auto;
    margin-top: 0;
    padding: 5px 0 !important;
    background: transparent;
    border-radius: 0;
  }
}
