@font-face {
  font-family: "Playfair Display Variable";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/assets/playfair-display-latin-wght-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display Variable";
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url("/assets/playfair-display-latin-wght-italic.woff2") format("woff2");
}

:root {
  --ink: #191916;
  --ink-soft: #2f312d;
  --olive-black: #22271f;
  --deep-olive: #465742;
  --paper: #faf8f2;
  --limestone: #ebe7de;
  --stone: #d8d5cd;
  --chalk: #fffdf8;
  --bronze: #a47d58;
  --bronze-light: #c3a282;
  --charcoal-base: var(--ink);
  --charcoal-deep: #121310;
  --charcoal-cool: var(--paper);
  --charcoal-pine: var(--olive-black);
  --charcoal-blue: var(--ink-soft);
  --charcoal-warm: var(--limestone);
  --charcoal-raised: var(--paper);
  --ivory: #f6f1e8;
  --muted: rgba(246, 241, 232, 0.7);
  --quiet: rgba(246, 241, 232, 0.56);
  --line: rgba(246, 241, 232, 0.15);
  --line-strong: rgba(246, 241, 232, 0.28);
  --accent: var(--bronze);
  --accent-soft: var(--bronze-light);
  --error: #f0a28b;
  --serif: "Playfair Display Variable", "Playfair Display", Georgia,
    "Times New Roman", serif;
  --serif-previous: "Iowan Old Style", "Palatino Linotype", "Book Antiqua",
    Palatino, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ivory);
  font-family: var(--sans);
  font-feature-settings: "liga" 0, "clig" 0;
  font-weight: 400;
  font-variant-ligatures: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html body {
  font-family: var(--sans);
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
label {
  -webkit-tap-highlight-color: transparent;
}

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

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

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

::selection {
  background: var(--accent);
  color: var(--charcoal-deep);
}

:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  outline-color: var(--deep-olive);
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  height: 82px;
  place-items: center;
  background: transparent;
  pointer-events: none;
}

.brand {
  width: clamp(150px, 17vw, 214px);
  pointer-events: auto;
}

.brand img {
  width: 100%;
  height: auto;
  filter: invert(1) brightness(2);
  transition: filter 220ms ease;
}

.site-header[data-logo-tone="dark"] .brand img {
  filter: none;
}

.hero {
  --hero-pan-x: 0px;
  --hero-pan-y: 0px;
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal-deep);
  isolation: isolate;
}

.hero-film,
.hero-wash {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-film {
  object-fit: cover;
  transform: scale(1.045) translate3d(var(--hero-pan-x), var(--hero-pan-y), 0);
  transition: transform 1.4s cubic-bezier(0.2, 0.7, 0, 1);
  animation: hero-settle 1.7s ease both;
  will-change: transform;
}

.hero-wash {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15, 15, 12, 0.34) 0%, rgba(15, 15, 12, 0.02) 36%),
    linear-gradient(90deg, rgba(12, 13, 10, 0.68) 0%, rgba(12, 13, 10, 0.16) 67%, rgba(12, 13, 10, 0.04) 100%),
    linear-gradient(0deg, rgba(12, 13, 10, 0.72) 0%, transparent 48%);
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: min(1380px, calc(100% - clamp(40px, 7vw, 112px)));
  margin: 0 auto;
  padding: 150px 0 clamp(88px, 12vh, 142px);
}

.hero-supporting-copy {
  display: block;
  grid-column: 3 / 10;
  margin: clamp(34px, 5vh, 52px) 0 30px;
}

.hero-kicker {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 253, 248, 0.84);
  font-family: var(--sans);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-align: left;
  text-transform: none;
}

.hero h1 {
  grid-column: 1 / 12;
  max-width: 1260px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 92px);
  font-weight: 400;
  letter-spacing: -0.042em;
  line-height: 0.9;
  text-align: left;
}

.hero h1 span {
  display: block;
  margin-top: 0.08em;
  margin-left: clamp(36px, 8vw, 120px);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.035em;
  text-align: right;
}

.hero-intro {
  max-width: 720px;
  margin: 6px 0 0;
  color: rgba(255, 253, 248, 0.9);
  font-family: var(--sans);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: left;
}

.hero-actions,
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  grid-column: 3 / 10;
  justify-content: flex-start;
}

.button {
  position: relative;
  z-index: 0;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 0 23px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  overflow: hidden;
  transition:
    background 280ms ease,
    border-color 280ms ease,
    color 280ms ease;
}

.button::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--bronze);
  content: "";
  transform: translateY(102%);
  transition: transform 420ms cubic-bezier(0.2, 0.7, 0, 1);
}

.button:hover::before {
  transform: translateY(0);
}

.button:hover {
  transform: none;
}

.button-accent {
  border-color: var(--ink-soft);
  background: var(--ink-soft);
  color: var(--chalk);
}

.button-accent:hover {
  border-color: var(--bronze);
  background: var(--ink-soft);
  color: var(--ink);
}

.hero .button-accent {
  border-color: rgba(255, 253, 248, 0.78);
  background: transparent;
  color: var(--chalk);
}

.hero .button-accent::before {
  background: var(--chalk);
}

.hero .button-accent:hover {
  border-color: var(--chalk);
  background: transparent;
  color: var(--ink);
}

.button-outline {
  min-height: 58px;
  padding-right: 4px;
  padding-left: 4px;
  border-width: 0 0 1px;
  border-color: rgba(255, 253, 248, 0.56);
  background: transparent;
  color: var(--ivory);
}

.button-outline::before {
  display: none;
}

.button-outline:hover {
  border-color: var(--accent-soft);
  background: transparent;
  color: var(--accent-soft);
}

.button-framed {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.button-framed::before {
  display: none;
}

.button-framed:hover {
  border-color: var(--accent-soft);
  background: transparent;
  color: var(--accent-soft);
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 23px;
  color: inherit;
  opacity: 0.7;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.why-film {
  --ivory: var(--ink);
  --muted: rgba(25, 25, 22, 0.68);
  --quiet: rgba(25, 25, 22, 0.52);
  --line: rgba(25, 25, 22, 0.13);
  --line-strong: rgba(25, 25, 22, 0.24);
  border-top: 0;
  background: var(--paper);
  color: var(--ink);
}

.why-layout .still-frame figcaption {
  color: var(--chalk);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  border-bottom: 1px solid var(--line);
}

.why-media {
  padding: clamp(86px, 8vw, 132px) clamp(24px, 5vw, 80px);
  border-right: 1px solid var(--line);
  background: var(--limestone);
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(9px, 1.1vw, 17px);
}

.still-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal-raised);
}

.still-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0, 1);
}

.still-frame:hover img {
  transform: scale(1.02);
}

.still-frame figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 25px 13px 11px;
  background: linear-gradient(transparent, rgba(17, 16, 14, 0.68));
  color: var(--ivory);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.frame-transition {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin: 38px 0 18px;
  color: rgba(25, 25, 22, 0.62);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.frame-transition i {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(164, 125, 88, 0.4);
}

.frame-transition i::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 43%,
    rgba(195, 162, 130, 0.9) 50%,
    transparent 57%,
    transparent 100%
  );
  background-position: 125% 0;
  background-size: 220% 100%;
  content: "";
  opacity: 0;
  animation: story-line-glint 9s ease-in-out infinite;
}

.story-film-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--charcoal-deep);
}

.story-film-frame::before,
.story-film-frame::after {
  display: none;
}

.story-film-frame::before {
  top: 16px;
  left: 16px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.story-film-frame::after {
  right: 16px;
  bottom: 16px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.story-film-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-copy {
  padding: clamp(94px, 9vw, 154px) clamp(36px, 7vw, 112px);
  background: var(--paper);
}

.sticky-copy {
  position: sticky;
  top: 128px;
}

.why-copy h2,
.section-heading h2,
.process-heading h2,
.work-heading h2,
.about-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 4.65vw, 76px);
  font-weight: 400;
  letter-spacing: -0.038em;
  line-height: 1;
  text-wrap: balance;
}

.why-copy h2 span,
.process-heading h2 span,
.work-heading h2 span {
  display: block;
  margin-top: 0.08em;
  color: var(--bronze);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.editorial-copy {
  max-width: 54ch;
  margin-top: clamp(44px, 5vw, 66px);
}

.editorial-copy p {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: clamp(17px, 1.2vw, 20px);
  letter-spacing: -0.005em;
  line-height: 1.7;
}

.evidence {
  --ivory: #f6f1e8;
  --muted: rgba(246, 241, 232, 0.7);
  --quiet: rgba(246, 241, 232, 0.56);
  --line: rgba(246, 241, 232, 0.15);
  --line-strong: rgba(246, 241, 232, 0.28);
  padding: clamp(94px, 10vw, 164px) clamp(24px, 7vw, 112px);
  border-top: 1px solid var(--line);
  background: var(--charcoal-pine);
  color: var(--ivory);
}

.evidence-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  column-gap: clamp(54px, 7vw, 108px);
  row-gap: clamp(22px, 2vw, 32px);
  align-items: end;
  margin-bottom: clamp(56px, 5.5vw, 76px);
}

.evidence-heading .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.evidence-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5.2vw, 80px);
  font-weight: 400;
  letter-spacing: -0.044em;
  line-height: 0.96;
  text-wrap: balance;
}

.evidence-heading h3 span {
  color: var(--bronze-light);
  font-style: italic;
  font-weight: 400;
}

.evidence-heading > p:last-child {
  max-width: 40ch;
  margin: 0 0 0.32em;
  color: rgba(246, 241, 232, 0.76);
  font-family: var(--sans);
  font-size: clamp(15px, 1.08vw, 18px);
  letter-spacing: -0.005em;
  line-height: 1.62;
  text-wrap: balance;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.stat-card {
  display: flex;
  min-height: clamp(330px, 27vw, 430px);
  min-width: 0;
  flex-direction: column;
  margin: 0;
  padding: clamp(38px, 4.4vw, 68px) clamp(22px, 3vw, 48px);
  border-right: 1px solid var(--line-strong);
  border-bottom: 0;
  transition: background 350ms ease;
}

.stat-card:hover {
  background: rgba(255, 253, 248, 0.035);
}

.stat-card:first-child {
  padding-left: 0;
}

.stat-card:last-child {
  padding-right: 0;
  border-bottom: 0;
  border-right: 0;
}

.stat-card strong {
  display: block;
  align-self: flex-start;
  color: var(--accent);
  font-family: var(--serif-previous);
  font-size: clamp(56px, 5.6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.stat-card p {
  align-self: flex-start;
  max-width: 58ch;
  min-height: 0;
  margin: clamp(34px, 4vw, 58px) 0 20px;
  color: rgba(245, 242, 235, 0.88);
  font-family: var(--sans);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.58;
}

.stat-card cite {
  align-self: flex-start;
  margin-top: auto;
  color: var(--quiet);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.stat-card cite a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  transition: color 180ms ease;
}

.stat-card cite a:hover {
  color: var(--accent-soft);
}

.comparison {
  --ivory: var(--ink);
  --muted: rgba(25, 25, 22, 0.68);
  --quiet: rgba(25, 25, 22, 0.52);
  --line: rgba(25, 25, 22, 0.13);
  --line-strong: rgba(25, 25, 22, 0.24);
  padding: clamp(100px, 11vw, 176px) clamp(24px, 7vw, 112px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1.68fr);
  gap: clamp(38px, 5vw, 78px);
  align-items: end;
  margin-bottom: clamp(58px, 6.5vw, 92px);
}

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

.section-heading h2 {
  max-width: none;
  font-size: clamp(40px, 5.1vw, 76px);
  letter-spacing: -0.04em;
  line-height: 0.98;
  white-space: nowrap;
}

.comparison-table-wrap {
  border-top: 1px solid var(--line-strong);
}

.comparison table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison th,
.comparison td {
  padding: 26px clamp(16px, 2.4vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison th:first-child,
.comparison td:first-child {
  width: 20%;
  padding-left: 0;
}

.comparison th:last-child,
.comparison td:last-child {
  padding-right: 0;
  border-right: 0;
}

.comparison thead th {
  color: var(--quiet);
  font-family: var(--sans);
  font-size: clamp(10px, 0.7vw, 12px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.comparison thead th:last-child {
  border-top: 2px solid var(--accent);
  color: var(--deep-olive);
}

.comparison tbody th {
  font-family: var(--sans);
  font-size: clamp(10px, 0.7vw, 12px);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.comparison tbody td {
  color: var(--muted);
  font-family: var(--sans);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
}

.comparison tbody td:last-child {
  color: var(--ivory);
}

.comparison tbody tr {
  transition: background 300ms ease;
}

.comparison tbody tr:hover {
  background: rgba(70, 87, 66, 0.045);
}

.process {
  padding: clamp(100px, 11vw, 174px) clamp(24px, 7vw, 112px);
  background: var(--ink-soft);
}

.process-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(48px, 7vw, 104px);
  align-items: end;
  padding-bottom: clamp(68px, 8vw, 108px);
}

.process-heading h2 {
  font-size: clamp(48px, 5.8vw, 88px);
  letter-spacing: -0.042em;
  line-height: 0.94;
}

.process-heading h2 span {
  color: var(--bronze-light);
}

.turnaround-mark {
  position: relative;
  display: grid;
  width: clamp(190px, 19vw, 286px);
  aspect-ratio: 1;
  align-content: center;
  justify-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  isolation: isolate;
  text-transform: uppercase;
}

.turnaround-mark::before,
.turnaround-mark::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.turnaround-mark::before {
  inset: -1px;
  border: 1px solid transparent;
  border-top-color: var(--accent);
  border-right-color: rgba(201, 169, 110, 0.28);
  opacity: 0;
  transform: rotate(-45deg);
}

.turnaround-mark::after {
  inset: 13px;
  border: 1px solid rgba(245, 242, 235, 0.1);
  opacity: 0;
}

.turnaround-orbit {
  position: absolute;
  z-index: 2;
  inset: -5px;
  border-radius: 50%;
  opacity: 0;
}

.turnaround-orbit::before {
  position: absolute;
  top: 0;
  left: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: none;
  content: "";
}

.turnaround-mark.is-visible::before {
  opacity: 1;
  animation: turnaround-orbit 10s linear infinite;
}

.turnaround-mark.is-visible::after {
  animation: turnaround-breathe 5.2s ease-in-out 500ms infinite;
}

.turnaround-mark.is-visible .turnaround-orbit {
  opacity: 1;
  animation: turnaround-orbit 10s linear infinite reverse;
}

.turnaround-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  transform: translateY(-8px);
}

.turnaround-mark strong {
  position: relative;
  z-index: 1;
  display: block;
  padding-inline: 0.12em 0.2em;
  margin-inline: 0;
  background: linear-gradient(105deg, var(--ivory) 0 42%, var(--accent) 49%, var(--ivory) 56% 100%);
  background-position: 115% 0;
  background-size: 250% 100%;
  background-clip: text;
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(78px, 9vw, 126px);
  font-weight: 400;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: -0.045em;
  line-height: 0.94;
  white-space: nowrap;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.turnaround-mark span {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.turnaround-mark small {
  position: relative;
  z-index: 1;
  margin-top: 2px;
  color: var(--quiet);
  font-family: var(--serif);
  font-size: 12px;
  text-transform: none;
}

.turnaround-mark.is-visible strong {
  animation:
    turnaround-number-in 1.1s cubic-bezier(0.2, 0.7, 0, 1) 100ms both,
    turnaround-sheen 7s ease-in-out 1.2s infinite;
}

.process-body {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(52px, 8vw, 128px);
  align-items: start;
}

.process-phone-stage {
  position: sticky;
  top: 104px;
  display: grid;
  min-height: 720px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
}

.phone {
  position: relative;
  z-index: 3;
  width: min(100%, 330px);
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(246, 241, 232, 0.56);
  border-radius: 49px;
  background: #090b0a;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(9, 11, 10, 0.5);
  isolation: isolate;
}

.phone::after {
  position: absolute;
  z-index: 6;
  inset: 7px;
  border: 1px solid rgba(246, 241, 232, 0.2);
  border-radius: 41px;
  content: "";
  pointer-events: none;
}

.phone-screen {
  position: absolute;
  z-index: 2;
  inset: 8px;
  overflow: hidden;
  border-radius: 40px;
  background: #090b0a;
  clip-path: inset(0.5px round 39.5px);
  contain: paint;
  isolation: isolate;
}

.phone-screen video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: 50% 50%;
}

.phone-speaker {
  position: absolute;
  z-index: 7;
  top: 17px;
  left: 50%;
  width: 72px;
  height: 20px;
  border-radius: 20px;
  background: #090b0a;
  box-shadow: inset 0 1px 0 rgba(246, 241, 232, 0.08);
  transform: translateX(-50%);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(140px, 0.36fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 50px);
  align-items: baseline;
  overflow: hidden;
  padding: clamp(34px, 4vw, 52px) 0;
  border-top: 1px solid var(--line-strong);
}

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

.process-list li::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  background: rgba(195, 162, 130, 0.055);
  content: "";
  transform: translateY(101%);
  transition: transform 450ms cubic-bezier(0.2, 0.7, 0, 1);
  pointer-events: none;
}

.process-list li:hover::after {
  transform: translateY(0);
}

.step-number {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.process-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.45vw, 40px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.process-list p {
  max-width: 46ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.65;
}

.work-with-us {
  --ivory: var(--ink);
  --muted: rgba(25, 25, 22, 0.68);
  --quiet: rgba(25, 25, 22, 0.7);
  --error: #7a2e1f;
  --line: rgba(25, 25, 22, 0.13);
  --line-strong: rgba(25, 25, 22, 0.24);
  padding: clamp(105px, 12vw, 188px) clamp(24px, 7vw, 112px);
  border-top: 1px solid var(--line);
  background: var(--limestone);
  color: var(--ink);
}

.work-with-us :focus-visible,
.legal-page :focus-visible {
  outline-color: var(--deep-olive);
}

.work-heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1.66fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: end;
  margin-bottom: clamp(58px, 7vw, 94px);
}

.work-heading .eyebrow {
  margin: 0;
}

.work-heading h2 {
  max-width: 1050px;
  font-size: clamp(46px, 5.4vw, 82px);
  line-height: 0.98;
}

.work-heading h2 span {
  color: var(--deep-olive);
}

.inquiry-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
}

.inquiry-tabs button {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 16px 24px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.3;
  transition:
    background 220ms ease,
    color 220ms ease;
  text-transform: uppercase;
}

.inquiry-tabs button:last-child {
  justify-content: flex-end;
}

.inquiry-tabs button::before {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  background: var(--bronze);
  content: "";
  opacity: 0;
  transform: scale(0.4);
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.inquiry-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--bronze);
  content: "";
  transform: scaleX(0);
  transition: transform 260ms ease;
}

.inquiry-tabs button[aria-selected="true"] {
  background: rgba(255, 253, 248, 0.34);
  color: var(--ink);
  font-weight: 700;
}

.inquiry-tabs button[aria-selected="true"]::before {
  opacity: 1;
  transform: scale(1);
}

.inquiry-tabs button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.inquiry-tabs button:hover:not([aria-selected="true"]) {
  background: rgba(255, 253, 248, 0.16);
  color: var(--ink);
}

.inquiry-tabs button:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 4px;
}

.inquiry-tabs button > span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.inquiry-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(500px, 1.22fr);
  gap: clamp(46px, 7vw, 110px);
  align-items: start;
  padding: clamp(56px, 7vw, 96px) 0 0;
  border: 0;
  background: transparent;
}

#commission-panel,
#partner-panel {
  scroll-margin-top: 112px;
}

.inquiry-intro {
  position: sticky;
  top: 112px;
}

.inquiry-intro h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(33px, 3.35vw, 54px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.inquiry-intro > p:not(.eyebrow) {
  max-width: 560px;
  margin: 32px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 400;
  letter-spacing: -0.004em;
  line-height: 1.72;
}

.inquiry-form {
  position: relative;
  padding: 0 0 0 clamp(28px, 4vw, 64px);
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.whatsapp-field {
  display: grid;
  grid-template-columns: minmax(135px, 0.4fr) minmax(0, 1fr);
  gap: 0 24px;
}

.form-grid > label,
.whatsapp-field > label,
.full-field {
  display: block;
  padding: 17px 0 15px;
  border-bottom: 1px solid var(--line);
  transition: border-color 240ms ease;
}

.form-grid > label:focus-within,
.whatsapp-field > label:focus-within,
.full-field:focus-within {
  border-bottom-color: var(--deep-olive);
}

.form-grid > label > span,
.whatsapp-field > label > span,
.full-field > span,
.inquiry-form legend {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form input[type="tel"],
.inquiry-form input[type="url"],
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 4px 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  caret-color: var(--deep-olive);
  font-family: var(--serif);
  font-size: 18px;
}

.inquiry-form textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.5;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(25, 25, 22, 0.36);
}

.inquiry-form select {
  color-scheme: light;
}

.inquiry-form fieldset {
  margin: 0;
  padding: 23px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.inquiry-form legend {
  padding: 0;
}

.option-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.option-row-compact {
  grid-template-columns: repeat(2, 1fr);
}

.option-row-three {
  grid-template-columns: repeat(3, 1fr);
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.choice {
  position: relative;
  display: block;
  cursor: pointer;
}

.choice input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  opacity: 0;
}

.choice span {
  display: grid;
  min-height: 48px;
  place-items: center;
  padding: 8px 10px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.choice input:checked + span {
  border-color: var(--deep-olive);
  background: var(--deep-olive);
  color: var(--paper);
}

.choice input:focus-visible + span {
  outline: 2px solid var(--deep-olive);
  outline-offset: 3px;
}

.form-error {
  margin: 18px 0 0;
  padding: 12px 15px;
  border-left: 2px solid rgba(122, 46, 31, 0.72);
  background: rgba(122, 46, 31, 0.06);
  color: var(--error);
  font-size: 12px;
  line-height: 1.5;
}

.form-error:empty {
  display: none;
}

.form-error.is-success {
  border-left-color: var(--deep-olive);
  background: rgba(59, 73, 54, 0.08);
  color: var(--deep-olive);
}

.form-submit {
  width: min(100%, 360px);
  margin: 38px auto 0;
}

.work-with-us .button-accent {
  border-color: var(--deep-olive);
  background: var(--deep-olive);
  color: var(--paper);
}

.work-with-us .button-accent::before {
  background: var(--bronze-light);
}

.work-with-us .button-accent:hover {
  border-color: var(--bronze-light);
  background: var(--deep-olive);
  color: var(--ink);
}

.work-with-us .commission-submit {
  border-color: var(--deep-olive);
  background: transparent;
  color: var(--ink);
}

.work-with-us .commission-submit::before {
  background: var(--deep-olive);
}

.work-with-us .commission-submit:hover {
  border-color: var(--deep-olive);
  background: transparent;
  color: var(--paper);
}

.form-note {
  margin: 14px 0 0;
  color: var(--quiet);
  font-size: 11px;
  line-height: 1.55;
}

.legal-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.55;
}

.legal-consent input {
  appearance: none;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  border: 1px solid rgba(25, 25, 22, 0.48);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.legal-consent input:checked {
  border-color: var(--deep-olive);
  background: var(--deep-olive);
  box-shadow: inset 0 0 0 4px var(--limestone);
}

.legal-consent a {
  border-bottom: 1px solid currentColor;
}

.legal-consent a:hover {
  color: var(--deep-olive);
}

.about {
  --ivory: var(--ink);
  --muted: rgba(25, 25, 22, 0.68);
  --quiet: rgba(25, 25, 22, 0.52);
  --line: rgba(25, 25, 22, 0.13);
  --line-strong: rgba(25, 25, 22, 0.24);
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(64px, 9vw, 140px);
  padding: clamp(105px, 12vw, 188px) clamp(24px, 7vw, 112px);
  border-top: 1px solid var(--line);
  background: var(--stone);
  color: var(--ink);
}

.about-heading h2 {
  max-width: 580px;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1;
}

.about-copy {
  max-width: 720px;
}

.about-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 400;
  letter-spacing: -0.004em;
  line-height: 1.72;
}

.about-copy .about-lede {
  margin-bottom: 38px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(26px, 2.5vw, 39px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.22;
}

.about-actions {
  margin-top: 50px;
}

.about .button-accent {
  border-color: var(--deep-olive);
  background: var(--deep-olive);
  color: var(--paper);
}

.about .button-accent:hover {
  border-color: var(--bronze);
  background: var(--deep-olive);
  color: var(--ink);
}

.about .button-framed {
  min-width: min(270px, 100%);
  justify-content: center;
  border-color: rgba(25, 25, 22, 0.58);
  color: var(--ink);
}

.about .button-framed::before {
  display: block;
  background: var(--deep-olive);
}

.about .button-framed:hover {
  border-color: var(--deep-olive);
  color: var(--paper);
}

.about .button-outline {
  border-color: rgba(25, 25, 22, 0.42);
  color: var(--ink);
}

.about .button-outline:hover {
  border-color: var(--deep-olive);
  color: var(--deep-olive);
}

footer {
  padding: 82px clamp(24px, 5vw, 80px) 30px;
  border-top: 1px solid var(--line);
  background: #121310;
  color: var(--ivory);
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px clamp(20px, 3vw, 42px);
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

footer nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  transition: color 180ms ease;
}

footer nav a:hover {
  color: var(--accent-soft);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding-top: 28px;
  text-align: center;
}

.footer-brand {
  width: 136px;
}

.footer-brand img {
  width: 100%;
  filter: invert(1) brightness(2);
}

footer p,
footer small {
  margin: 0;
  color: var(--quiet);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

footer small {
  justify-self: auto;
}

.legal-page {
  min-height: 100svh;
  background: var(--paper);
  color: var(--ink);
}

.legal-topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 76px);
  border-bottom: 1px solid rgba(25, 25, 22, 0.12);
  background: rgba(250, 248, 242, 0.9);
  backdrop-filter: blur(18px);
}

.legal-topbar a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-topbar a:last-child {
  color: rgba(25, 25, 22, 0.58);
}

.legal-document {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(88px, 12vw, 156px) 0 70px;
}

.legal-header h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.legal-header p {
  margin: 32px 0 0;
  color: rgba(25, 25, 22, 0.52);
  font-family: var(--serif);
  font-size: 16px;
}

.legal-jump {
  display: flex;
  gap: 32px;
  margin-top: clamp(52px, 7vw, 86px);
  padding: 22px 0;
  border-top: 1px solid rgba(25, 25, 22, 0.2);
  border-bottom: 1px solid rgba(25, 25, 22, 0.2);
}

.legal-jump a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-document > hr {
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(25, 25, 22, 0.16);
}

.legal-jump + hr {
  display: none;
}

.legal-document > section {
  scroll-margin-top: 96px;
  padding: clamp(78px, 10vw, 124px) 0;
}

.legal-document > section > h2 {
  margin: 0 0 clamp(62px, 8vw, 94px);
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.legal-document > section > section {
  max-width: 720px;
  margin: 0 0 58px auto;
}

.legal-document h3 {
  margin: 0 0 18px;
  color: var(--deep-olive);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.legal-document h4 {
  margin: 28px 0 12px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.legal-document p,
.legal-document li {
  color: rgba(25, 25, 22, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.legal-document p {
  margin: 0 0 18px;
}

.legal-document ul {
  margin: 18px 0 24px;
  padding-left: 22px;
}

.legal-document li {
  margin-bottom: 8px;
  padding-left: 7px;
}

.legal-document a {
  border-bottom: 1px solid rgba(25, 25, 22, 0.42);
  transition: color 180ms ease, border-color 180ms ease;
}

.legal-document a:hover {
  border-color: var(--bronze);
  color: var(--deep-olive);
}

.legal-document > footer {
  padding: 32px 0 0;
  border-top: 0;
  background: transparent;
  color: var(--ink);
}

.legal-document > footer p {
  color: rgba(25, 25, 22, 0.5);
  font-size: 12px;
}

.will-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 700ms ease var(--delay, 0ms),
    transform 740ms cubic-bezier(0.2, 0.7, 0, 1) var(--delay, 0ms);
}

.will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-settle {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes story-line-glint {
  0%,
  54% {
    background-position: 125% 0;
    opacity: 0;
  }
  60% {
    opacity: 0.36;
  }
  76% {
    background-position: -125% 0;
    opacity: 0.36;
  }
  82%,
  100% {
    background-position: -125% 0;
    opacity: 0;
  }
}

@keyframes turnaround-orbit {
  from {
    transform: rotate(-45deg);
  }
  to {
    transform: rotate(315deg);
  }
}

@keyframes turnaround-breathe {
  0%,
  100% {
    opacity: 0.06;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.22;
    transform: scale(1.02);
  }
}

@keyframes turnaround-number-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes turnaround-sheen {
  0%,
  70% {
    background-position: 115% 0;
  }
  100% {
    background-position: -35% 0;
  }
}

@media (max-width: 1160px) {
  .section-heading h2 {
    white-space: normal;
  }

  .why-layout {
    grid-template-columns: 1fr;
  }

  .why-media {
    border-right: 0;
  }

  .why-copy {
    order: -1;
    padding-bottom: 58px;
  }

  .sticky-copy,
  .inquiry-intro {
    position: static;
  }

  .evidence-heading {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    column-gap: clamp(32px, 4.5vw, 58px);
  }

  .inquiry-panel {
    grid-template-columns: 1fr;
  }

  .inquiry-intro {
    max-width: 850px;
  }

  .inquiry-form {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 980px) {
  .process-body {
    grid-template-columns: 1fr;
  }

  .process-phone-stage {
    position: static;
    min-height: 700px;
  }

  .phone {
    width: min(72vw, 320px);
  }

  .work-heading,
  .about {
    grid-template-columns: 1fr;
  }

  .channel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .comparison {
    padding-right: clamp(20px, 4vw, 36px);
    padding-left: clamp(20px, 4vw, 36px);
  }

  .section-heading {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }

  .section-heading h2 {
    font-size: clamp(28px, 7.6vw, 38px);
    letter-spacing: -0.035em;
    white-space: normal;
  }

  .comparison-table-wrap {
    border-top: 0;
  }

  .comparison table,
  .comparison tbody,
  .comparison tr,
  .comparison th,
  .comparison td {
    display: block;
    width: 100%;
  }

  .comparison thead {
    display: none;
  }

  .comparison tr {
    margin-bottom: 18px;
    border: 1px solid var(--line-strong);
    background: rgba(70, 87, 66, 0.035);
  }

  .comparison th,
  .comparison td,
  .comparison th:first-child,
  .comparison td:first-child,
  .comparison th:last-child,
  .comparison td:last-child {
    width: 100%;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .comparison tbody th {
    color: var(--deep-olive);
  }

  .comparison tbody td::before {
    display: block;
    margin-bottom: 8px;
    color: var(--quiet);
    content: attr(data-label);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .comparison tbody td:last-child {
    border-bottom: 0;
    border-left: 2px solid var(--bronze);
  }
}

@media (max-width: 760px) {
  #commission-panel,
  #partner-panel {
    scroll-margin-top: 78px;
  }

  .legal-topbar {
    min-height: 62px;
    padding: 0 18px;
  }

  .legal-topbar a {
    font-size: 8px;
  }

  .legal-document {
    width: calc(100% - 40px);
    padding-top: 74px;
  }

  .legal-header h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .legal-jump {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .legal-document > section > section {
    margin-left: 0;
  }

  .site-header {
    height: 72px;
  }

  .brand {
    width: min(146px, 46vw);
  }

  .hero-content {
    display: block;
    width: calc(100% - 40px);
    padding: 104px 0 88px;
  }

  .hero h1 {
    font-size: clamp(42px, 8vw, 52px);
    line-height: 0.92;
    text-align: left;
  }

  .hero-supporting-copy {
    display: block;
    margin: 30px 0 28px;
  }

  .hero-kicker,
  .hero-intro {
    display: inline;
    margin: 0;
    text-align: left;
  }

  .hero h1 span {
    margin-left: 10%;
    text-align: left;
  }

  .hero-actions,
  .about-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero .button,
  .about-actions .button {
    width: auto;
    max-width: 100%;
  }

  .why-copy,
  .why-media,
  .evidence,
  .comparison,
  .process,
  .work-with-us,
  .about {
    padding-right: 20px;
    padding-left: 20px;
  }

  .why-copy h2,
  .work-heading h2 {
    font-size: clamp(40px, 11vw, 56px);
    line-height: 1;
  }

  .mosaic {
    gap: 7px;
  }

  .still-frame figcaption {
    padding: 22px 8px 8px;
    font-size: 7px;
  }

  .evidence-heading {
    grid-template-columns: 1fr;
    row-gap: 0;
    margin-bottom: 48px;
  }

  .evidence-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 30px;
  }

  .evidence-heading h3 {
    font-size: clamp(40px, 10.8vw, 54px);
    line-height: 0.98;
  }

  .evidence-heading > p:last-child {
    grid-column: auto;
    max-width: 34ch;
    margin: 20px 0 0;
    padding-left: 18px;
    border-left: 1px solid rgba(195, 162, 130, 0.56);
    font-size: 16px;
    line-height: 1.58;
    text-wrap: pretty;
  }

  .evidence-grid {
    display: grid;
    overflow-x: auto;
    padding-bottom: 14px;
    grid-auto-columns: minmax(250px, 78vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-color: var(--bronze) rgba(246, 241, 232, 0.16);
  }

  .stat-card,
  .stat-card:first-child,
  .stat-card:nth-child(2),
  .stat-card:nth-child(3),
  .stat-card:last-child {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    border-top: 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .stat-card:first-child {
    padding-left: 0;
    border-top: 0;
  }

  .stat-card:last-child {
    padding-right: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .stat-card strong {
    font-size: clamp(48px, 15vw, 68px);
    line-height: 0.88;
  }

  .stat-card p {
    min-height: 0;
    margin: 18px 0 14px;
    font-size: 16px;
    line-height: 1.55;
  }

  .stat-card cite {
    margin-top: auto;
    font-size: 10px;
    line-height: 1.45;
  }

  .process-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .process-heading h2 {
    font-size: clamp(44px, 11.8vw, 60px);
  }

  .turnaround-mark {
    width: 100%;
    aspect-ratio: auto;
    justify-self: stretch;
    padding: 18px 0;
    border: solid rgba(246, 241, 232, 0.2);
    border-width: 1px 0;
    border-radius: 0;
    text-align: left;
  }

  .turnaround-mark::before,
  .turnaround-mark::after,
  .turnaround-orbit {
    display: none;
  }

  .turnaround-mark span {
    grid-column: 2;
    align-self: end;
    margin-top: 0;
  }

  .turnaround-mark small {
    grid-column: 2;
    align-self: start;
    margin-top: 4px;
  }

  .turnaround-copy {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    justify-items: start;
    width: 100%;
    transform: none;
  }

  .turnaround-mark strong {
    grid-row: 1 / 3;
    grid-column: 1;
    align-self: center;
    padding: 0 0.06em 0 0;
    font-size: clamp(64px, 19vw, 78px);
    line-height: 0.82;
  }

  .process-phone-stage {
    min-height: 590px;
    padding: 0;
  }

  .phone {
    width: min(73vw, 286px);
  }

  .process-list li {
    grid-template-columns: 38px 1fr;
    gap: 13px;
    padding: 30px 0;
  }

  .process-list p {
    grid-column: 2;
  }

  .work-heading {
    margin-bottom: 50px;
  }

  .inquiry-tabs button {
    min-height: 78px;
    justify-content: center;
    gap: 8px;
    padding: 11px 9px;
    font-size: 10px;
    text-align: center;
  }

  .inquiry-tabs button > span {
    display: none;
  }

  .inquiry-tabs button:last-child {
    justify-content: center;
  }

  .inquiry-panel {
    gap: 42px;
    padding: 32px 0 0;
  }

  .inquiry-intro h3 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .inquiry-form {
    padding: 0;
    border-left: 0;
  }

  .form-grid,
  .whatsapp-field {
    grid-template-columns: 1fr;
  }

  .option-row-three {
    grid-template-columns: 1fr;
  }

  .channel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .choice span {
    min-height: 50px;
    font-size: 10px;
  }

  .form-submit {
    width: auto;
    max-width: 100%;
  }

  .about-heading h2 {
    font-size: clamp(40px, 11vw, 56px);
  }

  footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  footer nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 18px;
    padding-bottom: 42px;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

  .footer-brand {
    width: 124px;
  }

  .footer-bottom p {
    display: block;
  }

  footer small {
    justify-self: auto;
  }
}

@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;
  }

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

  .turnaround-mark::before,
  .turnaround-mark::after,
  .turnaround-mark strong,
  .turnaround-orbit {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .turnaround-mark strong {
    background: none;
    color: var(--ivory);
    -webkit-text-fill-color: currentColor;
  }
}
