:root {
  --bg: #f5efe8;
  --bg-warm: #f7f0e8;
  --bg-warm-transparent: rgba(247, 240, 232, 0);
  --bg-accent-wash: #fff7f1;
  --ink: #0e0e0e;
  --ink-rgb: 14, 14, 14;
  --accent-rgb: 255, 97, 35;
  --muted: rgba(var(--ink-rgb), 0.68);
  --line: rgba(var(--ink-rgb), 0.14);
  --line-strong: rgba(var(--ink-rgb), 0.28);
  --accent: #ff6123;
  --accent-soft: rgba(var(--accent-rgb), 0.14);
  --text-on-accent-soft: rgba(248, 241, 235, 0.6);
  --text-on-accent-muted: rgba(250, 250, 249, 0.74);
  --max-width: 1380px;
  --gutter: clamp(1.2rem, 2.8vw, 2.4rem);
  --display: "Anton", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: "Epilogue", "Segoe UI", sans-serif;
  --type-display-section: clamp(2.8rem, 8vw, 6.5rem);
  --type-display-hero: clamp(4.35rem, 7.15vw, 5.85rem);
  --type-body-support: clamp(0.98rem, 1.05vw, 1.06rem);
  --type-body-section: clamp(1rem, 1.6vw, 1.18rem);
  --leading-display: 0.95;
  --leading-display-tight: 0.9;
  --leading-support: 1.58;
  --leading-body: 1.75;
  --section-top-space: clamp(3rem, 5.2vw, 4.8rem);
  --section-bottom-space: clamp(3rem, 5.2vw, 4.8rem);
  --section-headline-gap: var(--section-top-space);
  --offer-step-inactive-offset: clamp(-2.2rem, -2.25vw, -1rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  cursor: default;
}

body::before {
  display: none;
}

html.is-booting .crawlable-shell {
  display: none;
}

#app {
  min-height: 100vh;
}

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

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

button,
[role="button"] {
  cursor: pointer;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

.site-shell {
  position: relative;
  padding-bottom: 0;
}

.section-inner {
  width: min(calc(100% - 2 * var(--gutter)), var(--max-width));
  margin: 0 auto;
  position: relative;
}

.section-rail {
  position: fixed;
  top: 50%;
  right: 2.55rem;
  z-index: 10;
  --rail-chip-bg: var(--accent);
  --rail-chip-fg: var(--ink);
  --rail-chip-active-bg: var(--ink);
  --rail-chip-active-fg: var(--bg);
  --rail-focus: var(--ink);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0;
  padding: 0.46rem 0;
  min-width: 10.2rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  transform: translateY(-50%) translateX(0.62rem);
  color: var(--muted);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 140ms ease,
    transform 180ms ease;
}

.section-rail::before {
  display: none;
}

.section-rail.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.section-rail-items {
  display: grid;
  gap: 0.54rem;
}

.section-rail-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.5rem 0.94rem;
  background: var(--rail-chip-bg);
  color: var(--rail-chip-fg);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.05;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    background-color 160ms ease,
    color 170ms ease,
    transform 170ms ease;
}

.section-rail-item.is-active {
  background: var(--rail-chip-active-bg);
  color: var(--rail-chip-active-fg);
  transform: translateX(-0.05rem);
}

.section-rail-item:hover,
.section-rail-item:focus-visible {
  transform: translateX(-0.12rem);
}

.section-rail-item:focus-visible {
  outline: 1px solid var(--rail-focus);
  outline-offset: 2px;
  border-radius: 0;
}

.section-rail.is-on-accent {
  --rail-chip-bg: var(--bg);
  --rail-chip-fg: var(--ink);
  --rail-chip-active-bg: var(--ink);
  --rail-chip-active-fg: var(--bg);
  --rail-focus: var(--ink);
}

.section-rail.is-on-ink {
  --rail-chip-bg: var(--accent);
  --rail-chip-fg: var(--ink);
  --rail-chip-active-bg: var(--bg);
  --rail-chip-active-fg: var(--ink);
  --rail-focus: var(--bg);
}

.section {
  position: relative;
  padding: var(--section-top-space) 0 var(--section-bottom-space);
}

.section > .section-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(7rem, 16vw);
  height: 1px;
  background: var(--line-strong);
}

.section-hero > .section-inner::before {
  display: none;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.15rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: var(--section-headline-gap);
}

.section-heading h2 {
  max-width: 18ch;
  margin: 0;
  font-family: var(--display);
  font-size: var(--type-display-section);
  font-weight: 400;
  line-height: var(--leading-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-heading p {
  max-width: 40rem;
  color: var(--muted);
  font-size: var(--type-body-section);
  line-height: var(--leading-body);
}

.hero {
  min-height: 100svh;
  padding: 0;
  background: var(--bg);
  overflow: clip;
  isolation: isolate;
}

.hero-inner {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: var(--section-top-space) 0 var(--section-bottom-space);
}

.hero-copy {
  display: grid;
  gap: clamp(1.35rem, 1.8vw, 2rem);
  position: relative;
  z-index: 2;
  max-width: min(47rem, 48vw);
  padding-right: clamp(1.5rem, 3.2vw, 3.6rem);
  background: transparent;
}

.hero-headline {
  display: grid;
  gap: 0.045em;
  max-width: 7.2ch;
  margin: 0;
  font-family: var(--display);
  font-size: var(--type-display-hero);
  font-weight: 400;
  line-height: var(--leading-display-tight);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero-headline span {
  display: block;
  white-space: nowrap;
}

.hero-headline span:last-child {
  color: var(--accent);
}

.hero-subhead {
  color: var(--muted);
  font-size: var(--type-body-support);
  line-height: 1.72;
  text-wrap: pretty;
}

.hero-body {
  display: grid;
  gap: clamp(1.05rem, 1.4vw, 1.6rem);
  max-width: 33.6rem;
  margin-top: clamp(1.25rem, 1.9vw, 2.15rem);
}

.hero-subhead-cta {
  color: var(--muted);
  font-weight: 400;
  max-width: 33.6rem;
  padding-top: 0;
}

.cta-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: clamp(0.95rem, 1.6vw, 1.35rem);
}

.button,
.text-link {
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.3rem;
  border: 1px solid var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.project-link:hover,
.project-link:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: var(--bg);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

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

.hero .button-primary:hover,
.hero .button-primary:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.whatsapp-fab {
  position: fixed;
  right: clamp(1.4rem, 3vw, 2.3rem);
  bottom: calc(clamp(1.4rem, 3vw, 2.3rem) + env(safe-area-inset-bottom, 0px));
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 999px;
  border: 0;
  background: var(--accent);
  color: var(--ink);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  transform: translateY(-2px);
  background: var(--ink);
  color: var(--bg);
}

.whatsapp-fab.is-on-orange {
  background: var(--bg);
  color: var(--ink);
}

.whatsapp-fab.is-on-orange:hover,
.whatsapp-fab.is-on-orange:focus-visible,
.whatsapp-fab:active {
  background: var(--ink);
  color: var(--bg);
}

.whatsapp-fab.is-on-ink-section:hover,
.whatsapp-fab.is-on-ink-section:focus-visible,
.whatsapp-fab.is-on-ink-section:active {
  background: var(--bg);
  color: var(--ink);
}

.whatsapp-fab:focus-visible {
  outline: 2px solid rgba(245, 239, 232, 0.95);
  outline-offset: 2px;
}

.whatsapp-fab-icon {
  position: absolute;
  width: 1.85rem;
  height: 1.85rem;
  transition: opacity 160ms ease;
}

.whatsapp-fab-icon-light {
  opacity: 0;
}

.whatsapp-fab:hover .whatsapp-fab-icon-ink,
.whatsapp-fab:focus-visible .whatsapp-fab-icon-ink,
.whatsapp-fab:active .whatsapp-fab-icon-ink {
  opacity: 0;
}

.whatsapp-fab:hover .whatsapp-fab-icon-light,
.whatsapp-fab:focus-visible .whatsapp-fab-icon-light,
.whatsapp-fab:active .whatsapp-fab-icon-light {
  opacity: 1;
}

.whatsapp-fab.is-on-ink-section:hover .whatsapp-fab-icon-ink,
.whatsapp-fab.is-on-ink-section:focus-visible .whatsapp-fab-icon-ink,
.whatsapp-fab.is-on-ink-section:active .whatsapp-fab-icon-ink {
  opacity: 1;
}

.whatsapp-fab.is-on-ink-section:hover .whatsapp-fab-icon-light,
.whatsapp-fab.is-on-ink-section:focus-visible .whatsapp-fab-icon-light,
.whatsapp-fab.is-on-ink-section:active .whatsapp-fab-icon-light {
  opacity: 0;
}

.text-link {
  position: relative;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.22rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(0.75);
}

.hero-edge-visual {
  position: absolute;
  top: clamp(0.95rem, 1.15vw, 1.45rem);
  right: clamp(-1.1rem, -0.75vw, -0.2rem);
  bottom: 0;
  width: clamp(44rem, 55vw, 62rem);
  overflow: visible;
  z-index: 1;
  pointer-events: none;
}

.hero-portrait-stage {
  position: absolute;
  inset: 0;
  overflow: visible;
}

.hero-portrait-accent {
  display: none;
}

.hero-portrait-frame {
  position: absolute;
  inset: -5% -2% -15% -13%;
  z-index: 1;
  overflow: visible;
  border: none;
  box-shadow: none;
  transform: none;
}

.hero-portrait-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-portrait-frame img {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: 56% 100%;
  transform: scale(1.39) translate(-3%, 6.4%);
  transform-origin: center bottom;
  filter: none;
  mix-blend-mode: normal;
  -webkit-mask-image: none;
  mask-image: none;
}

.section-value {
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 97, 35, 0.11), transparent 38%),
    radial-gradient(circle at 90% 86%, rgba(255, 97, 35, 0.08), transparent 32%),
    var(--bg-accent-wash);
}

.section-work,
.section-clients {
  background: var(--ink);
  color: var(--bg);
  --muted: rgba(245, 239, 232, 0.74);
  --line: rgba(245, 239, 232, 0.22);
  --line-strong: rgba(245, 239, 232, 0.34);
}

.section-work {
  padding: clamp(1.95rem, 2.9vw, 2.45rem) 0 clamp(1.95rem, 2.9vw, 2.45rem);
  --project-chip-bg: var(--accent);
  --project-chip-fg: var(--ink);
  --project-chip-active-bg: var(--bg);
  --project-chip-active-fg: var(--ink);
}

.section-work > .section-inner {
  padding-top: clamp(2.75rem, 4.2vw, 3.35rem);
}

.section-work > .section-inner::before {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(245, 239, 232, 0.62);
  box-shadow: none;
}

.section-clients {
  padding: var(--section-top-space) 0 clamp(0.18rem, 0.42vw, 0.34rem);
}

.section-clients > .section-inner::before {
  display: none;
}

.section-clients .work-clients-block {
  margin-top: 0;
  gap: clamp(1rem, 1.7vw, 1.35rem);
  padding-top: clamp(0.2rem, 0.45vw, 0.45rem);
  padding-bottom: clamp(0.2rem, 0.45vw, 0.45rem);
  border-top: none;
}

.section-clients .client-logo-marquee {
  --client-logo-filter: brightness(0) saturate(100%) invert(96%) sepia(8%) saturate(338%) hue-rotate(336deg) brightness(98%) contrast(92%);
  margin-top: clamp(1.25rem, 2.1vw, 2.05rem);
}

.section-clients .client-logo-marquee::before {
  background: linear-gradient(90deg, var(--ink) 8%, rgba(var(--ink-rgb), 0));
}

.section-clients .client-logo-marquee::after {
  background: linear-gradient(270deg, var(--ink) 8%, rgba(var(--ink-rgb), 0));
}

.section-about {
  background: var(--bg);
  scroll-margin-top: clamp(1.5rem, 3vw, 2.4rem);
  overflow-x: clip;
}

.section-about > .section-inner::before {
  display: none;
}

.section-final-cta {
  position: relative;
  background: var(--accent);
  color: var(--bg);
  padding: var(--section-top-space) 0 var(--section-bottom-space);
  overflow: hidden;
}

.section-final-cta > .section-inner::before {
  display: none;
}

.final-cta-layout {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: var(--section-headline-gap);
}

.final-cta-headline {
  display: grid;
  gap: 0.05em;
  margin: 0;
  color: var(--bg);
  font-family: var(--display);
  font-size: var(--type-display-hero);
  font-weight: 400;
  line-height: var(--leading-display-tight);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.final-cta-headline span {
  display: block;
  white-space: nowrap;
}

.final-cta-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  justify-content: center;
  margin-top: 0;
  gap: 0.86rem;
  width: min(100%, 29rem);
}

.final-cta-actions .button {
  min-width: 0;
  width: 100%;
  white-space: nowrap;
  padding-inline: clamp(0.8rem, 1.15vw, 1rem);
}

.button-final-book {
  background: var(--bg);
  border-color: var(--bg);
  color: var(--ink);
}

.button-final-book:hover,
.button-final-book:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.button-final-email {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.button-final-email:hover,
.button-final-email:focus-visible {
  background: var(--bg);
  border-color: var(--bg);
  color: var(--ink);
}

.site-footer {
  background: var(--accent);
  color: rgba(245, 239, 232, 0.84);
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0 calc(1.2rem + env(safe-area-inset-bottom, 0px));
  border-top: 0;
}

.site-footer-inner p {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.95rem;
}

.site-footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-footer-links a:hover::after,
.site-footer-links a:focus-visible::after {
  transform: scaleX(0.72);
}

/* ==========================================================================
   VALUE SECTION (FACT-FIRST, VIBRANT)
   ========================================================================== */

.section-value {
  background-color: var(--accent);
  color: var(--bg);
  border: none;
  padding: var(--section-top-space) 0 var(--section-bottom-space);
  cursor: default;
}

.section-value > .section-inner::before {
  display: none;
}

.section-value-services {
  background: var(--bg);
  color: var(--ink);
  padding: var(--section-top-space) 0 var(--section-bottom-space);
}

.section-value-services > .section-inner::before {
  display: none;
}

.section-value .section-label {
  color: var(--text-on-accent-soft);
}

.section-value h2,
.section-value p,
.section-value span,
.section-value strong,
.section-value li,
.section-value ul,
.section-value div,
.section-value article {
  cursor: inherit;
}

/* ── Research evidence (Top) ── */

.value-evidence {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 0;
  padding: 0;
  border-top: none;
  border-bottom: none;
  align-items: start;
}

.stat-annotation {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  width: min(100%, 21rem);
  color: var(--bg);
  cursor: default;
}

.stat-annotation * {
  cursor: default;
  pointer-events: none;
}

.value-evidence > .stat-annotation:nth-child(1) {
  justify-self: start;
}

.value-evidence > .stat-annotation:nth-child(2) {
  justify-self: center;
}

.value-evidence > .stat-annotation:nth-child(3) {
  justify-self: end;
}

.stat-number {
  color: currentColor;
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--type-display-hero);
  line-height: var(--leading-display-tight);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.stat-copy {
  color: currentColor;
  font-size: var(--type-body-support);
  line-height: 1.72;
  text-wrap: pretty;
}

.stat-source {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.45rem;
  color: var(--text-on-accent-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.62rem;
  font-weight: 700;
}

.stat-source-kicker {
  opacity: 0.56;
}

.stat-source-name {
  font-style: normal;
  letter-spacing: 0.08em;
}

.stat-source:hover,
.stat-source:focus-visible {
  color: var(--text-on-accent-muted);
}

/* ── Core Statement ── */

.value-statement {
  margin-bottom: var(--section-headline-gap);
  max-width: 100%;
}

.value-statement h2 {
  display: grid;
  gap: 0.045em;
  margin: 0;
  color: var(--bg);
  font-family: var(--display);
  font-weight: 400; /* Matches hero thickness */
  font-size: var(--type-display-hero);
  line-height: var(--leading-display-tight);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  max-width: none;
}

.value-statement h2 span {
  display: block;
  white-space: nowrap;
}

/* ── Offer Scroll Scene ── */

.value-offers {
  position: relative;
  margin-top: 0;
}

.offer-intro-wrap {
  margin: 0 0 var(--section-headline-gap);
}

.offer-bridge {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: var(--type-display-section);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: var(--leading-display);
  text-align: center;
  text-transform: uppercase;
}

.offer-scroll-scene {
  position: relative;
  --offer-card-height: clamp(17.4rem, 23.2vw, 19.2rem);
  --offer-problem-height: clamp(23rem, 31vw, 25.4rem);
}

.offer-scroll-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(1rem, 2.2vw, 2.2rem);
  align-items: start;
}

.offer-scroll-steps {
  display: grid;
  gap: clamp(11vh, 16vh, 18vh);
  padding-top: calc((var(--offer-problem-height) - var(--offer-card-height)) / 2);
  padding-bottom: calc((var(--offer-problem-height) - var(--offer-card-height)) / 2);
  padding-right: clamp(0.1rem, 0.8vw, 0.9rem);
}

.offer-step {
  min-height: var(--offer-card-height);
  display: flex;
  align-items: flex-start;
}

.offer-step-card {
  width: 100%;
  border: none;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--body);
  padding: clamp(1.1rem, 1.7vw, 1.5rem) clamp(1.3rem, 2vw, 1.9rem) clamp(0.35rem, 0.72vw, 0.62rem);
  height: var(--offer-card-height);
  display: grid;
  align-content: start;
  gap: clamp(0.45rem, 0.8vw, 0.72rem);
  overflow: hidden;
  text-align: left;
  transform: translateX(var(--offer-step-inactive-offset));
  opacity: 0.52;
  transition:
    opacity 420ms ease,
    transform 550ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 320ms ease;
}

.offer-step.is-active .offer-step-card {
  opacity: 1;
  transform: translateX(0);
  background: var(--accent);
  box-shadow: none;
}

.offer-step-card:hover,
.offer-step-card:focus-visible {
  opacity: 1;
  transform: translateX(clamp(-0.14rem, -0.2vw, -0.07rem));
}

.offer-step-card:focus-visible {
  outline: 2px solid rgba(14, 14, 14, 0.82);
  outline-offset: 2px;
}

.offer-step-number {
  display: block;
  margin-bottom: 0;
  color: var(--ink);
  opacity: 0.54;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  line-height: 1;
}

.offer-step.is-active .offer-step-number {
  color: var(--bg);
  opacity: 1;
}

.offer-step-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  max-width: 13ch;
}

.offer-step-description {
  margin: 0;
  font-family: var(--body);
  color: rgba(14, 14, 14, 0.78);
  font-size: var(--type-body-support);
  line-height: var(--leading-support);
  max-width: 40ch;
  overflow-wrap: anywhere;
}

.offer-problem-panel {
  position: sticky;
  top: clamp(4.4rem, 8.8vh, 6.6rem);
  min-height: var(--offer-problem-height);
  border: none;
  background: var(--ink);
  padding: clamp(1.2rem, 2vw, 1.75rem) clamp(1.25rem, 2.1vw, 1.85rem) clamp(0.85rem, 1.25vw, 1.15rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.offer-problem-panel::before {
  display: none;
}

.offer-problem-stack {
  position: relative;
  z-index: 2;
  min-height: calc(var(--offer-problem-height) - clamp(4.4rem, 6vw, 5.1rem));
  height: auto;
  flex: 1;
  width: 100%;
  padding-right: clamp(6.6rem, 11vw, 8.4rem);
  padding-top: clamp(0.7rem, 1.2vw, 1rem);
  overflow: hidden;
}

.offer-problem-content {
  position: absolute;
  inset: 0;
  align-content: start;
  gap: 1.1rem;
  display: grid;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  max-height: none;
  overflow: visible;
  padding-right: 0.35rem;
  transition:
    opacity 360ms cubic-bezier(0.3, 0.08, 0.2, 1),
    visibility 0s linear 360ms;
}

.offer-problem-content.is-active,
.offer-problem-content.is-leaving {
  visibility: visible;
  transition-delay: 0s;
}

.offer-problem-content.is-active {
  opacity: 1;
  pointer-events: auto;
}

.offer-problem-content.is-leaving {
  opacity: 0;
}

.panel-section-label {
  margin: 0 0 clamp(0.72rem, 1.15vw, 0.95rem);
  color: var(--bg);
  font-family: var(--body);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.offer-problem-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
  max-width: 44ch;
}

.offer-problem-list li {
  position: relative;
  padding-left: 1.15rem;
  font-family: var(--body);
  color: var(--bg);
  font-size: var(--type-body-support);
  line-height: var(--leading-support);
  overflow-wrap: anywhere;
  opacity: 1;
  transition: none;
}

.offer-problem-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.offer-kinetic-graphic {
  position: absolute;
  right: clamp(0.35rem, 1.2vw, 0.7rem);
  top: clamp(0.45rem, 1.2vw, 0.8rem);
  width: clamp(8rem, 13vw, 11rem);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: rotate(-9deg) scale(1);
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.offer-graphic-ring,
.offer-graphic-axis,
.offer-graphic-node {
  position: absolute;
}

.offer-graphic-ring {
  border-radius: 50%;
  border: 1px solid rgba(245, 239, 232, 0.32);
}

.offer-graphic-ring-outer {
  inset: 0;
  animation: graphicSpin 11s linear infinite;
}

.offer-graphic-ring-inner {
  inset: 18%;
  border-style: dashed;
  border-color: rgba(255, 97, 35, 0.74);
  animation: graphicSpin 7.5s linear infinite reverse;
}

.offer-graphic-axis {
  left: 50%;
  top: 7%;
  width: 1px;
  height: 86%;
  background: linear-gradient(
    to bottom,
    rgba(245, 239, 232, 0.08),
    rgba(245, 239, 232, 0.45),
    rgba(245, 239, 232, 0.08)
  );
  transform: translateX(-50%) rotate(24deg);
}

.offer-graphic-node {
  width: 0.74rem;
  height: 0.74rem;
  border-radius: 50%;
  background: rgba(245, 239, 232, 0.45);
  border: none;
  transition:
    transform 380ms ease,
    background-color 320ms ease;
}

.offer-graphic-node-a {
  top: 12%;
  right: 18%;
}

.offer-graphic-node-b {
  bottom: 24%;
  left: 11%;
}

.offer-graphic-node-c {
  bottom: 10%;
  right: 25%;
}

.offer-graphic-node-d {
  top: 36%;
  left: 8%;
}

.offer-scroll-scene[data-active-offer="0"] .offer-kinetic-graphic {
  transform: rotate(-10deg) scale(1);
}

.offer-scroll-scene[data-active-offer="1"] .offer-kinetic-graphic {
  transform: rotate(5deg) scale(1.05);
}

.offer-scroll-scene[data-active-offer="2"] .offer-kinetic-graphic {
  transform: rotate(14deg) scale(1.08);
}

.offer-scroll-scene[data-active-offer="3"] .offer-kinetic-graphic {
  transform: rotate(24deg) scale(1.08);
}

.offer-scroll-scene[data-active-offer="0"] .offer-graphic-node-a,
.offer-scroll-scene[data-active-offer="1"] .offer-graphic-node-b,
.offer-scroll-scene[data-active-offer="2"] .offer-graphic-node-c,
.offer-scroll-scene[data-active-offer="3"] .offer-graphic-node-d {
  background: var(--accent);
  transform: scale(1.5);
}

@keyframes graphicSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.section-approach {
  background: var(--accent);
  color: var(--bg);
  padding: var(--section-top-space) 0 var(--section-bottom-space);
}

.section-approach > .section-inner::before {
  display: none;
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(2rem, 4.8vw, 4.6rem);
  align-items: start;
}

.approach-intro {
  display: grid;
  gap: var(--section-headline-gap);
  padding: 0;
}

.approach-title {
  display: grid;
  gap: 0.045em;
  margin: 0;
  font-family: var(--display);
  font-size: var(--type-display-hero);
  font-weight: 400;
  line-height: var(--leading-display-tight);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  max-width: 7.2ch;
}

.approach-title span {
  display: block;
  white-space: nowrap;
}

.approach-cta {
  width: min(18.5rem, 100%);
  margin-top: 0;
  background: var(--bg);
  border-color: var(--bg);
  color: var(--ink);
  box-shadow: none;
}

.approach-cta:hover,
.approach-cta:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}

.approach-accordion {
  border-top: 1px solid rgba(245, 239, 232, 0.62);
  padding-block: clamp(0.2rem, 0.65vw, 0.45rem);
}

.approach-accordion-item {
  border-bottom: 1px solid rgba(245, 239, 232, 0.62);
}

.approach-accordion-item.is-open {
  background: transparent;
}

.approach-accordion-trigger {
  appearance: none;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: 100%;
  padding: clamp(0.82rem, 2.4vw, 1.08rem) 0;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
  transition: color 180ms ease;
}

.approach-accordion-trigger:focus {
  outline: none;
}

.approach-accordion-trigger:focus-visible {
  outline: 2px solid rgba(245, 239, 232, 0.72);
  outline-offset: 4px;
}

.approach-accordion-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  gap: 1.1rem;
}

.approach-number {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-start;
  width: 2ch;
  color: var(--bg);
  font-family: var(--display);
  font-size: clamp(1.82rem, 3.55vw, 2.95rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0.005em;
  font-variant-numeric: tabular-nums;
}

.approach-accordion-head h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.95rem, 3.3vw, 3.02rem);
  font-weight: 400;
  line-height: var(--leading-display-tight);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.approach-accordion-icon {
  position: relative;
  width: 1.08rem;
  height: 1.08rem;
  flex-shrink: 0;
  color: var(--bg);
}

.approach-accordion-icon::before,
.approach-accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.approach-accordion-icon::before {
  width: 1.2rem;
  height: 1px;
}

.approach-accordion-icon::after {
  width: 1px;
  height: 1.2rem;
}

.approach-accordion-item.is-open .approach-accordion-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.approach-accordion-panel {
  max-width: 34rem;
  max-height: 0;
  padding: 0 2.2rem 0 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease;
}

.approach-accordion-panel-inner {
  padding-bottom: 1.35rem;
  transform: translateY(-6px);
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.approach-accordion-item.is-open .approach-accordion-panel {
  max-height: 14rem;
  opacity: 1;
}

.approach-accordion-item.is-open .approach-accordion-panel-inner {
  transform: translateY(0);
}

.approach-accordion-panel p {
  margin: 0;
  color: rgba(14, 14, 14, 0.82);
  font-size: var(--type-body-support);
  line-height: var(--leading-support);
}

.work-reveal-heading {
  margin: 0 0 clamp(1rem, 2vw, 1.45rem);
  padding-top: 0;
  color: var(--bg);
  font-family: var(--body);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.work-reveal-scene {
  display: grid;
  grid-template-columns: clamp(14.75rem, 22vw, 17.5rem) minmax(0, 1fr);
  gap: clamp(1.35rem, 2.7vw, 2.35rem);
  margin-top: 0;
  align-items: start;
}

.work-reveal-list {
  display: grid;
  gap: 0.84rem;
  align-self: start;
  justify-items: start;
}

.work-reveal-row {
  display: block;
}

.work-reveal-trigger {
  appearance: none;
  border: 0;
  width: clamp(14.75rem, 22vw, 17.5rem);
  margin: 0;
  min-height: 3rem;
  padding: 0.92rem 1rem 0.86rem;
  border-radius: 0;
  background: var(--project-chip-bg);
  color: var(--project-chip-fg);
  text-align: left;
  display: inline-flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  transition:
    background-color 220ms ease,
    color 180ms ease,
    transform 170ms ease;
}

.work-reveal-trigger:focus {
  outline: none;
}

.work-reveal-trigger:focus-visible {
  outline: 2px solid var(--bg);
  outline-offset: 2px;
}

.work-reveal-trigger:hover,
.work-reveal-trigger:focus-visible {
  transform: translateX(0.34rem);
}

.work-reveal-row-number {
  display: none;
}

.work-reveal-row-copy {
  display: grid;
  gap: 0;
}

.work-reveal-row-title {
  margin: 0;
  color: currentColor;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color 180ms ease,
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-reveal-row-meta {
  display: none;
}

.work-reveal-row.is-active .work-reveal-trigger {
  background: var(--project-chip-active-bg);
  color: var(--project-chip-active-fg);
  transform: translateX(0.16rem);
}

.work-reveal-row.is-active .work-reveal-row-number,
.work-reveal-row.is-active .work-reveal-row-title {
  color: currentColor;
}

.work-reveal-row.is-active .work-reveal-row-title {
  transform: none;
}

.work-reveal-support-stack {
  position: relative;
  padding: 0;
  border-radius: 0;
  align-self: start;
  justify-self: stretch;
}

.work-reveal-support {
  position: relative;
  inset: auto;
  display: none;
  transform: none;
  align-self: start;
}

.work-reveal-support.is-active {
  display: grid;
  animation: work-reveal-panel-in 220ms ease;
}

@keyframes work-reveal-panel-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.work-reveal-support-inner {
  display: grid;
  gap: clamp(1.85rem, 3vw, 2.55rem);
  max-width: none;
  padding-top: 0;
  padding-bottom: clamp(1.95rem, 2.9vw, 2.45rem);
  align-content: start;
  align-items: start;
}

.work-reveal-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  align-self: start;
  align-items: start;
}

.work-reveal-media.is-multi {
  --work-reveal-multi-gap: 1.27%;
  gap: var(--work-reveal-multi-gap);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  justify-content: stretch;
}

.work-reveal-media.is-single-video {
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}

.work-reveal-media.is-slideshow {
  gap: 0.95rem;
}

.work-reveal-slideshow-stage {
  --media-aspect-ratio: 1.731 / 1;
  position: relative;
  width: 100%;
  aspect-ratio: var(--media-aspect-ratio);
  overflow: hidden;
}

.work-reveal-slideshow-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.work-reveal-slideshow-slide.is-active {
  opacity: 1;
}

.work-reveal-slideshow-slide .work-reveal-media-frame {
  height: 100%;
}

.work-reveal-slideshow-slide:not(.is-editorial-grid) .work-reveal-media-frame img {
  object-fit: cover;
  object-position: center;
}

.work-reveal-slideshow-slide.is-editorial-grid {
  padding: clamp(0.55rem, 1vw, 0.75rem);
}

.work-reveal-slideshow-editorial-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: clamp(0.45rem, 0.9vw, 0.85rem);
  width: 100%;
  height: 100%;
  align-items: stretch;
}

.work-reveal-slideshow-editorial-grid.layout-editorial-mrt > .work-reveal-slideshow-editorial-card:nth-child(1) {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}

.work-reveal-slideshow-editorial-grid.layout-editorial-mrt > .work-reveal-slideshow-editorial-card:nth-child(2) {
  grid-column: 5 / 7;
  grid-row: 1 / 3;
}

.work-reveal-slideshow-editorial-grid.layout-editorial-mrt > .work-reveal-slideshow-editorial-card:nth-child(3) {
  grid-column: 1 / 4;
  grid-row: 3 / 5;
}

.work-reveal-slideshow-editorial-grid.layout-editorial-mrt > .work-reveal-slideshow-editorial-card:nth-child(4) {
  grid-column: 4 / 7;
  grid-row: 3 / 5;
}

.work-reveal-slideshow-editorial-grid.layout-editorial-dhoby > .work-reveal-slideshow-editorial-card:nth-child(1) {
  grid-column: 1 / 13;
  grid-row: 1 / 3;
}

.work-reveal-slideshow-editorial-grid.layout-editorial-dhoby > .work-reveal-slideshow-editorial-card:nth-child(2) {
  grid-column: 7 / 13;
  grid-row: 3 / 5;
}

.work-reveal-slideshow-editorial-grid.layout-editorial-dhoby > .work-reveal-slideshow-editorial-card:nth-child(3) {
  grid-column: 1 / 7;
  grid-row: 3 / 5;
}

.work-reveal-slideshow-editorial-grid.layout-editorial-dhoby {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: minmax(0, 0.86fr) minmax(0, 0.86fr) minmax(0, 1.14fr) minmax(0, 1.14fr);
}

.work-reveal-slideshow-editorial-grid.layout-editorial-dhoby > .work-reveal-slideshow-editorial-card:nth-child(1) img {
  object-fit: cover;
  object-position: 50% 34%;
}

.work-reveal-slideshow-editorial-grid.layout-editorial-dhoby > .work-reveal-slideshow-editorial-card:nth-child(2) img,
.work-reveal-slideshow-editorial-grid.layout-editorial-dhoby > .work-reveal-slideshow-editorial-card:nth-child(3) img {
  object-fit: cover;
}

.work-reveal-slideshow-editorial-grid.layout-editorial-jewel > .work-reveal-slideshow-editorial-card:nth-child(1) {
  grid-column: 1 / 9;
  grid-row: 1 / 5;
}

.work-reveal-slideshow-editorial-grid.layout-editorial-jewel > .work-reveal-slideshow-editorial-card:nth-child(2) {
  grid-column: 9 / 11;
  grid-row: 1 / 5;
}

.work-reveal-slideshow-editorial-grid.layout-editorial-jewel > .work-reveal-slideshow-editorial-card:nth-child(3) {
  grid-column: 11 / 13;
  grid-row: 1 / 5;
}

.work-reveal-slideshow-editorial-grid.layout-editorial-jewel {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.work-reveal-slideshow-editorial-grid.layout-editorial-sixup {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(0.45rem, 0.9vw, 0.85rem);
}

.work-reveal-slideshow-editorial-grid.layout-editorial-sixup > .work-reveal-slideshow-editorial-card img {
  object-fit: cover;
  object-position: 50% 50%;
}

.work-reveal-slideshow-editorial-grid.is-reactions {
  width: min(100%, 56rem);
  margin-inline: auto;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.76fr);
  grid-template-rows: minmax(0, 1fr);
  justify-items: stretch;
  justify-content: center;
  align-items: center;
  gap: clamp(0.15rem, 0.4vw, 0.4rem);
}

.work-reveal-slideshow-editorial-grid.is-reactions > .work-reveal-slideshow-editorial-card {
  width: 100%;
  height: 100%;
  align-self: center;
}

.work-reveal-slideshow-editorial-grid.is-reactions > .work-reveal-slideshow-editorial-card:nth-child(1) {
  width: 82%;
  height: 88%;
  justify-self: end;
}

.work-reveal-slideshow-editorial-grid.is-reactions > .work-reveal-slideshow-editorial-card:nth-child(2) {
  justify-self: start;
}

.work-reveal-slideshow-editorial-card {
  position: relative;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
}

.work-reveal-slideshow-editorial-card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.work-reveal-slideshow-editorial-grid.is-reactions .work-reveal-slideshow-editorial-card img {
  object-fit: contain;
  object-position: center;
}

.work-reveal-slideshow-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
}

.work-reveal-slideshow-dots {
  display: flex;
  align-items: center;
  gap: 0.52rem;
}

.work-reveal-slideshow-dot {
  width: 0.72rem;
  height: 0.72rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(245, 239, 232, 0.38);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease;
}

.work-reveal-slideshow-dot.is-active {
  background: var(--bg);
  transform: scale(1.08);
}

.work-reveal-slideshow-dot:hover,
.work-reveal-slideshow-dot:focus-visible {
  opacity: 1;
  transform: scale(1.08);
}

.work-reveal-slideshow-arrows {
  display: flex;
  align-items: center;
}

.work-reveal-slideshow-arrow {
  text-decoration: none;
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1.85rem;
  height: 1.85rem;
  line-height: 1;
  padding: 0;
  color: var(--bg);
  font-size: 1.32rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  border: 0;
}

.work-reveal-slideshow-arrow::after {
  content: none;
}

.work-reveal-media.is-multi .work-reveal-media-frame.is-portrait {
  --media-aspect-ratio: 9 / 16;
}

.work-reveal-media.is-portrait {
  width: min(100%, 22rem);
}

.work-reveal-media-frame {
  --media-aspect-ratio: 1.731;
  position: relative;
  width: 100%;
  aspect-ratio: var(--media-aspect-ratio);
  overflow: hidden;
  background: transparent;
}

.work-reveal-media-frame iframe,
.work-reveal-media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.work-reveal-media-frame iframe {
  position: absolute;
  inset: 0;
}

.work-reveal-media-link .work-reveal-media-frame iframe {
  pointer-events: none;
}

.work-reveal-media-link {
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
  align-self: start;
}

.work-reveal-media-frame.is-website img {
  object-fit: cover;
  object-position: 50% 0;
  transform: none;
}

.work-reveal-media-frame.is-website {
  --media-aspect-ratio: 1.731;
}

.work-reveal-media.is-portrait .work-reveal-media-frame,
.work-reveal-media-frame.is-portrait {
  --media-aspect-ratio: 9 / 16;
}

.work-reveal-media-caption {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.work-reveal-media.is-multi .work-reveal-media-caption {
  grid-column: 1 / -1;
}

.work-reveal-titleline {
  margin: 0;
  color: var(--bg);
  font-family: var(--display);
  font-size: clamp(1.12rem, 1.64vw, 1.46rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
  font-weight: 400;
  text-transform: uppercase;
  display: inline-grid;
  justify-items: start;
  gap: 0.14rem;
  white-space: normal;
  max-width: none;
}

.work-reveal-title-main {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  white-space: nowrap;
}

.work-reveal-title-separator {
  display: none;
}

.work-reveal-title-type {
  font-family: var(--body);
  font-size: 0.64em;
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: 0.04em;
  opacity: 0.78;
  display: inline-block;
  white-space: nowrap;
  text-transform: uppercase;
}

.work-reveal-copy-grid {
  display: grid;
  grid-template-columns: clamp(24rem, 30vw, 34rem) minmax(0, 1fr);
  gap: clamp(2rem, 3vw, 3rem);
  align-items: start;
}

.work-reveal-copy-stack {
  display: grid;
  gap: 0.16rem;
  min-width: 0;
}

.work-reveal-copy-stack-title {
  gap: 0.2rem;
}

.work-reveal-copy-stack-title .work-reveal-titleline {
  font-family: var(--body);
  font-size: clamp(1.24rem, 1.8vw, 1.54rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.06em;
}

.work-reveal-copy-stack-title .work-reveal-title-main {
  white-space: nowrap;
}

.work-reveal-copy-stack-title .work-reveal-title-type {
  font-size: 0.72rem;
  font-style: italic;
  letter-spacing: 0.075em;
  opacity: 0.84;
  margin-top: 0.04rem;
}

.work-reveal-copy-stack-copy {
  gap: clamp(0.96rem, 1.8vw, 1.55rem);
  padding-left: 0;
}

.work-reveal-copy-kicker {
  margin: 0;
  color: rgba(245, 239, 232, 0.72);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.work-reveal-copy-head {
  margin: 0;
  color: var(--bg);
  font-family: var(--body);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.work-reveal-copy-type {
  margin: 0;
  color: rgba(245, 239, 232, 0.84);
  font-family: var(--body);
  font-size: 0.68rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-reveal-copy-label {
  margin: 0;
  color: var(--bg);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-reveal-copy-text {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
  font-size: 0.95rem;
  line-height: 1.54;
}

.work-reveal-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 0.3rem;
  width: fit-content;
  color: var(--bg);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding-bottom: 0;
  border-bottom: 0;
}

.work-reveal-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform 180ms ease;
}

.work-reveal-link:hover::after,
.work-reveal-link:focus-visible::after {
  transform: scaleX(0.72);
}

.work-clients-block {
  display: grid;
  gap: clamp(1.2rem, 2vw, 1.7rem);
  margin-top: clamp(2.6rem, 5.3vw, 4.4rem);
  padding-top: clamp(2.3rem, 4.3vw, 3.8rem);
  padding-bottom: clamp(0.25rem, 0.9vw, 0.8rem);
  border-top: 1px solid var(--line-strong);
}

.work-clients-head {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.work-clients-head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.95rem, 3.75vw, 3.1rem);
  font-weight: 400;
  line-height: var(--leading-display);
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.work-clients-head p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.client-logo-marquee {
  --client-logo-filter: brightness(0) saturate(100%);
  position: relative;
  margin-top: clamp(0.95rem, 1.8vw, 1.4rem);
  overflow: hidden;
}

.client-logo-marquee::before,
.client-logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(0.55rem, 1.25vw, 1.2rem);
  z-index: 2;
  pointer-events: none;
}

.client-logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-warm) 10%, var(--bg-warm-transparent));
}

.client-logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-warm) 10%, var(--bg-warm-transparent));
}

.client-logo-track {
  display: flex;
  align-items: center;
  gap: clamp(2.625rem, 3.6vw, 3.525rem);
  padding-inline: clamp(0.45rem, 0.9vw, 0.85rem);
  width: max-content;
  animation: logo-marquee 40s linear infinite;
  will-change: transform;
}

.client-logo-marquee:hover .client-logo-track,
.client-logo-marquee:focus-within .client-logo-track {
  animation-play-state: paused;
}

.client-logo-item {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(5.2rem, 6.5vw, 6.9rem);
  padding-inline: 0;
}

.client-logo-item img {
  display: block;
  width: auto;
  height: calc(var(--logo-scale, 1) * clamp(3.05rem, 4.25vw, 4.85rem));
  max-width: var(--logo-max-width, clamp(10.6rem, 13vw, 13.2rem));
  object-fit: contain;
  transform: translateY(var(--logo-offset-y, 0));
  filter: var(--logo-filter, var(--client-logo-filter));
}

.client-logo-item img[src*="starbucks.svg"] {
  border: 1.5px solid rgba(245, 239, 232, 0.96);
  border-radius: 999px;
  padding: 0.12rem;
  background: var(--bg);
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.project-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.4rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-link-muted {
  color: var(--muted);
  border-bottom-color: rgba(14, 14, 14, 0.22);
}

.why-work-layout {
  position: relative;
  display: grid;
  align-items: start;
  justify-items: stretch;
  width: 100%;
}

.why-work-scroll-chapter {
  position: relative;
  --why-work-progress: 0;
  --why-work-line-progress: 0;
  --why-work-chapter-height: clamp(38vh, 44vh, 50vh);
  display: grid;
  align-items: center;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  min-height: var(--why-work-chapter-height);
}

.why-work-stage {
  position: relative;
  --why-work-stage-height: clamp(16.5rem, 33svh, 22rem);
  top: auto;
  min-height: var(--why-work-stage-height);
  --why-work-anchor-x: 50%;
  --why-work-connector-gap: clamp(2.55rem, 4.1vw, 3.35rem);
  --why-work-connector-headline-gap: clamp(0.9rem, 1.2vw, 1.12rem);
  --why-work-connector-length: clamp(2rem, 2.8vw, 2.7rem);
  --why-work-connector-reason-gap: var(--why-work-connector-headline-gap);
  --why-work-connector-min-length: clamp(0.38rem, 0.55vw, 0.52rem);
  --why-work-connector-cap-size: 0.24rem;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: visible;
  padding: clamp(1rem, 2vw, 1.45rem) clamp(0.9rem, 2vw, 1.45rem) clamp(1rem, 2.2vw, 1.5rem);
  isolation: isolate;
}

.why-work-stage::before {
  display: none;
}

.why-work-headline {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 30;
  margin: 0;
  transform: translate(-50%, -50%);
  color: var(--ink);
  font-family: var(--display);
  font-size: var(--type-display-section);
  font-weight: 400;
  line-height: var(--leading-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  max-width: none;
  pointer-events: none;
}

.why-work-connector-layer,
.why-work-block-grid {
  position: absolute;
  inset: clamp(1.4rem, 4vh, 2.2rem) 0 clamp(0.8rem, 2vh, 1.15rem);
  width: min(100%, 56rem);
  margin-inline: auto;
}

.why-work-connector-layer {
  z-index: 14;
  pointer-events: none;
}

.why-work-connector {
  position: absolute;
  left: var(--why-work-link-left, calc(var(--why-work-anchor-x) + var(--why-work-link-x, var(--why-work-target-x, 0vw))));
  top: var(--why-work-link-top, calc(50% + var(--why-work-link-anchor-y, 0rem)));
  width: 1px;
  height: var(--why-work-link-height, var(--why-work-link-length, clamp(4.5rem, 7vw, 6.6rem)));
  opacity: 0;
  transform-origin: 50% var(--why-work-link-origin, 0%);
  transform: translateX(-50%) scaleY(var(--why-work-line-progress, var(--why-work-progress)));
  transition:
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.why-work-connector::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline: 0;
  background: var(--accent);
}

.why-work-connector::after {
  display: none;
}

.why-work-block {
  position: absolute;
  left: calc(var(--why-work-anchor-x) + var(--why-work-target-x, 0vw));
  top: 50%;
  z-index: var(--why-work-z, 1);
  display: grid;
  justify-items: center;
  align-content: center;
  width: min(max-content, clamp(14rem, 19.4vw, 17.8rem));
  min-height: 0;
  padding:
    var(--why-work-block-pad-y, clamp(0.42rem, 0.7vw, 0.62rem))
    clamp(0.4rem, 1vw, 0.7rem)
    var(--why-work-block-pad-y, clamp(0.42rem, 0.7vw, 0.62rem));
  border: 0;
  border-radius: 0;
  color: var(--ink);
  box-shadow: none;
  opacity: 0;
  transform: translate(-50%, -50%)
    translateY(
      calc(
        (var(--why-work-target-y, 0) * var(--why-work-progress)) +
        (var(--why-work-enter-y, 0) * (1 - var(--why-work-progress)))
      )
    )
    translateY(var(--why-work-correction-y, 0px))
    scale(calc(0.985 + (0.015 * var(--why-work-progress))));
  transform-origin: 50% 50%;
  transition: opacity 260ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
  pointer-events: none;
}

.why-work-block::before {
  display: none;
}

.why-work-block.is-revealed {
  opacity: 1;
}

.why-work-connector.is-revealed {
  opacity: calc(var(--why-work-line-progress, var(--why-work-progress)) * 0.96);
}

.why-work-block-title {
  display: grid;
  align-content: center;
  margin: 0;
  font-family: var(--body);
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.024em;
  text-transform: uppercase;
  white-space: normal;
  max-width: min(22ch, 100%);
  text-align: center;
  text-wrap: balance;
}

.why-work-block-title-line {
  display: block;
  white-space: nowrap;
}

.why-work-block[data-why-work-slot="0"],
.why-work-connector[data-why-work-slot="0"] {
  --why-work-target-x: -14vw;
  --why-work-target-y: -16.8vh;
  --why-work-enter-y: -12vh;
  --why-work-gap-adjust-top: clamp(0.88rem, 1.1vw, 0.98rem);
  --why-work-link-x: -14vw;
  --why-work-link-length: clamp(6rem, 8.2vw, 6.8rem);
  --why-work-link-anchor-y: calc(-1 * var(--why-work-connector-gap));
  --why-work-block-pad-bottom: clamp(0.9rem, 1.4vw, 1.2rem);
  --why-work-link-origin: 100%;
  --why-work-link-cap-top: 0;
  --why-work-link-cap-bottom: auto;
  --why-work-link-cap-shift: -50%;
}

.why-work-block[data-why-work-slot="1"],
.why-work-connector[data-why-work-slot="1"] {
  --why-work-target-x: 14vw;
  --why-work-target-y: -15.9vh;
  --why-work-enter-y: -6.2vh;
  --why-work-link-x: 14vw;
  --why-work-link-length: clamp(6rem, 8.2vw, 6.8rem);
  --why-work-link-anchor-y: calc(-1 * var(--why-work-connector-gap));
  --why-work-block-pad-bottom: clamp(0.9rem, 1.4vw, 1.2rem);
  --why-work-link-origin: 100%;
  --why-work-link-cap-top: 0;
  --why-work-link-cap-bottom: auto;
  --why-work-link-cap-shift: -50%;
}

.why-work-block[data-why-work-slot="2"],
.why-work-connector[data-why-work-slot="2"] {
  --why-work-target-x: -24vw;
  --why-work-target-y: 11.2vh;
  --why-work-enter-y: 5.3vh;
  --why-work-gap-adjust-bottom: clamp(0.08rem, 0.14vw, 0.12rem);
  --why-work-link-x: -24vw;
  --why-work-link-length: clamp(4.8rem, 6.8vw, 5.6rem);
  --why-work-link-anchor-y: var(--why-work-connector-gap);
  --why-work-block-pad-top: clamp(1rem, 1.6vw, 1.35rem);
  --why-work-link-origin: 0%;
  --why-work-link-cap-top: auto;
  --why-work-link-cap-bottom: 0;
  --why-work-link-cap-shift: 50%;
}

.why-work-block[data-why-work-slot="3"],
.why-work-connector[data-why-work-slot="3"] {
  --why-work-target-x: 24vw;
  --why-work-target-y: 11.2vh;
  --why-work-enter-y: 7.4vh;
  --why-work-gap-adjust-bottom: clamp(0.08rem, 0.14vw, 0.12rem);
  --why-work-link-x: 24vw;
  --why-work-link-length: clamp(4.8rem, 6.8vw, 5.6rem);
  --why-work-link-anchor-y: var(--why-work-connector-gap);
  --why-work-block-pad-top: clamp(1rem, 1.6vw, 1.35rem);
  --why-work-link-origin: 0%;
  --why-work-link-cap-top: auto;
  --why-work-link-cap-bottom: 0;
  --why-work-link-cap-shift: 50%;
}

.why-work-block[data-why-work-slot="4"],
.why-work-connector[data-why-work-slot="4"] {
  --why-work-target-x: 0vw;
  --why-work-target-y: 14.8vh;
  --why-work-enter-y: 9.6vh;
  --why-work-gap-adjust-bottom: clamp(0.5rem, 0.7vw, 0.62rem);
  --why-work-link-x: 0vw;
  --why-work-link-length: clamp(8.4rem, 11.8vw, 9.8rem);
  --why-work-link-anchor-y: var(--why-work-connector-gap);
  --why-work-block-pad-top: clamp(1.05rem, 1.7vw, 1.5rem);
  --why-work-link-origin: 0%;
  --why-work-link-cap-top: auto;
  --why-work-link-cap-bottom: 0;
  --why-work-link-cap-shift: 50%;
}

@media (max-width: 1320px) {
  .why-work-scroll-chapter {
    --why-work-chapter-height: clamp(38vh, 44vh, 50vh);
    min-height: var(--why-work-chapter-height);
  }

  .why-work-stage {
    --why-work-stage-height: clamp(16.5rem, 34svh, 22rem);
    min-height: var(--why-work-stage-height);
    --why-work-anchor-x: 50%;
    --why-work-connector-gap: clamp(2.25rem, 3.55vw, 2.95rem);
    --why-work-connector-headline-gap: clamp(0.8rem, 1.06vw, 0.98rem);
    --why-work-connector-length: clamp(1.7rem, 2.3vw, 2.2rem);
    --why-work-connector-reason-gap: var(--why-work-connector-headline-gap);
    --why-work-connector-min-length: clamp(0.34rem, 0.48vw, 0.46rem);
  }

  .why-work-block-title {
    font-size: clamp(0.86rem, 1.16vw, 0.98rem);
    max-width: min(21ch, 100%);
    text-align: center;
  }

  .why-work-block[data-why-work-slot="0"],
  .why-work-connector[data-why-work-slot="0"] {
    --why-work-target-x: -12vw;
    --why-work-target-y: -14.4vh;
    --why-work-enter-y: -9vh;
    --why-work-gap-adjust-top: clamp(0.72rem, 0.94vw, 0.82rem);
    --why-work-link-x: -12vw;
    --why-work-link-length: clamp(5.4rem, 7.6vw, 6.1rem);
    --why-work-link-anchor-y: calc(-1 * var(--why-work-connector-gap));
    --why-work-block-pad-bottom: clamp(0.8rem, 1.2vw, 1rem);
    --why-work-link-origin: 100%;
    --why-work-link-cap-top: 0;
    --why-work-link-cap-bottom: auto;
    --why-work-link-cap-shift: -50%;
  }

  .why-work-block[data-why-work-slot="1"],
  .why-work-connector[data-why-work-slot="1"] {
    --why-work-target-x: 12vw;
    --why-work-target-y: -14.4vh;
    --why-work-enter-y: -5.5vh;
    --why-work-link-x: 12vw;
    --why-work-link-length: clamp(5.4rem, 7.6vw, 6.1rem);
    --why-work-link-anchor-y: calc(-1 * var(--why-work-connector-gap));
    --why-work-block-pad-bottom: clamp(0.8rem, 1.2vw, 1rem);
    --why-work-link-origin: 100%;
    --why-work-link-cap-top: 0;
    --why-work-link-cap-bottom: auto;
    --why-work-link-cap-shift: -50%;
  }

  .why-work-block[data-why-work-slot="2"],
  .why-work-connector[data-why-work-slot="2"] {
    --why-work-target-x: -20vw;
    --why-work-target-y: 9.8vh;
    --why-work-enter-y: 4.2vh;
    --why-work-gap-adjust-bottom: clamp(0.06rem, 0.1vw, 0.09rem);
    --why-work-link-x: -20vw;
    --why-work-link-length: clamp(4.3rem, 6vw, 5rem);
    --why-work-link-anchor-y: var(--why-work-connector-gap);
    --why-work-block-pad-top: clamp(0.85rem, 1.3vw, 1.1rem);
    --why-work-link-origin: 0%;
    --why-work-link-cap-top: auto;
    --why-work-link-cap-bottom: 0;
    --why-work-link-cap-shift: 50%;
  }

  .why-work-block[data-why-work-slot="3"],
  .why-work-connector[data-why-work-slot="3"] {
    --why-work-target-x: 20vw;
    --why-work-target-y: 9.8vh;
    --why-work-enter-y: 6.1vh;
    --why-work-gap-adjust-bottom: clamp(0.06rem, 0.1vw, 0.09rem);
    --why-work-link-x: 20vw;
    --why-work-link-length: clamp(4.3rem, 6vw, 5rem);
    --why-work-link-anchor-y: var(--why-work-connector-gap);
    --why-work-block-pad-top: clamp(0.85rem, 1.3vw, 1.1rem);
    --why-work-link-origin: 0%;
    --why-work-link-cap-top: auto;
    --why-work-link-cap-bottom: 0;
    --why-work-link-cap-shift: 50%;
  }

  .why-work-block[data-why-work-slot="4"],
  .why-work-connector[data-why-work-slot="4"] {
    --why-work-target-x: 0vw;
    --why-work-target-y: 13.2vh;
    --why-work-enter-y: 7.4vh;
    --why-work-gap-adjust-bottom: clamp(0.4rem, 0.56vw, 0.48rem);
    --why-work-link-x: 0vw;
    --why-work-link-length: clamp(7.2rem, 10.3vw, 8.4rem);
    --why-work-link-anchor-y: var(--why-work-connector-gap);
    --why-work-block-pad-top: clamp(0.95rem, 1.5vw, 1.3rem);
    --why-work-link-origin: 0%;
    --why-work-link-cap-top: auto;
    --why-work-link-cap-bottom: 0;
    --why-work-link-cap-shift: 50%;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

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

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

  .reveal,
  .button,
  .text-link,
  .project-link,
  .client-logo-track,
  .offer-step-card,
  .offer-problem-list li,
  .offer-kinetic-graphic,
  .offer-graphic-ring,
  .work-reveal-row-title,
  .work-reveal-support,
  .why-work-stage,
  .why-work-headline,
  .why-work-connector,
  .why-work-block {
    transition: none;
    transform: none;
    opacity: 1;
    animation: none;
  }

  .why-work-scroll-chapter {
    min-height: auto;
  }

  .why-work-stage {
    position: relative;
    min-height: auto;
    overflow: visible;
    padding: clamp(0.8rem, 2.2vw, 1.2rem) 0;
  }

  .why-work-headline {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    white-space: normal;
    margin: 0 auto 0.95rem;
  }

  .why-work-connector-layer {
    display: none;
  }

  .why-work-block-grid {
    position: relative;
    inset: auto;
    width: min(100%, 48rem);
    margin-inline: auto;
    display: grid;
    gap: 0.72rem;
  }

  .why-work-block {
    position: relative;
    left: auto;
    top: auto;
    width: min(100%, 42rem);
    min-height: auto;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .offer-problem-content {
    transition: none;
  }

  .whatsapp-fab {
    transition: none;
  }

  .whatsapp-fab-icon {
    transition: none;
  }

  .section-rail,
  .section-rail-item {
    transition: none;
  }
}

@media (max-width: 1080px) {
  :root {
    --section-top-space: clamp(2.6rem, 4.5vw, 3.6rem);
    --section-bottom-space: clamp(2.6rem, 4.5vw, 3.6rem);
    --offer-step-inactive-offset: clamp(-1.05rem, -1.6vw, -0.58rem);
  }

  .section-rail {
    display: none;
  }

  .work-reveal-scene {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2.4vw, 1.5rem);
    align-items: start;
  }

  .work-reveal-support-inner {
    gap: clamp(1.45rem, 2.8vw, 1.95rem);
  }

  .work-reveal-list,
  .work-reveal-support-stack {
    align-self: stretch;
  }

  .work-reveal-list {
    transform: none;
  }

  .work-reveal-trigger {
    width: min(100%, 32rem);
  }

  .work-reveal-row-title {
    white-space: normal;
  }

  .work-reveal-titleline {
    gap: 0.05rem;
    font-size: clamp(1rem, 2.1vw, 1.26rem);
    line-height: 1.02;
  }

  .work-reveal-title-main {
    white-space: normal;
  }

  .why-work-scroll-chapter {
    --why-work-chapter-height: clamp(31vh, 36vh, 40vh);
    min-height: var(--why-work-chapter-height);
  }

  .why-work-stage {
    --why-work-stage-height: clamp(13.25rem, 25svh, 17.5rem);
    min-height: var(--why-work-stage-height);
    --why-work-anchor-x: 50%;
    --why-work-connector-gap: clamp(2.05rem, 3.2vw, 2.6rem);
    --why-work-connector-headline-gap: clamp(0.68rem, 0.92vw, 0.82rem);
    --why-work-connector-length: clamp(1.45rem, 2.05vw, 1.85rem);
    --why-work-connector-reason-gap: var(--why-work-connector-headline-gap);
    --why-work-connector-min-length: clamp(0.3rem, 0.42vw, 0.42rem);
  }

  .why-work-headline {
    font-size: var(--type-display-section);
    text-align: center;
    white-space: nowrap;
    max-width: none;
  }

  .why-work-block {
    width: min(max-content, clamp(12.8rem, 24vw, 15.8rem));
  }

  .why-work-block-title {
    font-size: clamp(0.88rem, 1.45vw, 1rem);
    max-width: min(20ch, 100%);
    text-align: center;
  }

  .why-work-block[data-why-work-slot="0"],
  .why-work-connector[data-why-work-slot="0"] {
    --why-work-target-x: -12vw;
    --why-work-target-y: -12.6vh;
    --why-work-enter-y: -9vh;
    --why-work-gap-adjust-top: clamp(0.56rem, 0.74vw, 0.64rem);
    --why-work-link-x: -12vw;
    --why-work-link-length: clamp(4.6rem, 6.6vw, 5.2rem);
    --why-work-link-anchor-y: calc(-1 * var(--why-work-connector-gap));
    --why-work-block-pad-bottom: clamp(0.75rem, 1.2vw, 0.95rem);
    --why-work-link-origin: 100%;
    --why-work-link-cap-top: 0;
    --why-work-link-cap-bottom: auto;
    --why-work-link-cap-shift: -50%;
  }

  .why-work-block[data-why-work-slot="1"],
  .why-work-connector[data-why-work-slot="1"] {
    --why-work-target-x: 12vw;
    --why-work-target-y: -12.6vh;
    --why-work-enter-y: -5.5vh;
    --why-work-link-x: 12vw;
    --why-work-link-length: clamp(4.6rem, 6.6vw, 5.2rem);
    --why-work-link-anchor-y: calc(-1 * var(--why-work-connector-gap));
    --why-work-block-pad-bottom: clamp(0.75rem, 1.2vw, 0.95rem);
    --why-work-link-origin: 100%;
    --why-work-link-cap-top: 0;
    --why-work-link-cap-bottom: auto;
    --why-work-link-cap-shift: -50%;
  }

  .why-work-block[data-why-work-slot="2"],
  .why-work-connector[data-why-work-slot="2"] {
    --why-work-target-x: -19vw;
    --why-work-target-y: 8.8vh;
    --why-work-enter-y: 3.8vh;
    --why-work-gap-adjust-bottom: clamp(0.04rem, 0.08vw, 0.07rem);
    --why-work-link-x: -19vw;
    --why-work-link-length: clamp(3.8rem, 5.5vw, 4.4rem);
    --why-work-link-anchor-y: var(--why-work-connector-gap);
    --why-work-block-pad-top: clamp(0.8rem, 1.2vw, 1rem);
    --why-work-link-origin: 0%;
    --why-work-link-cap-top: auto;
    --why-work-link-cap-bottom: 0;
    --why-work-link-cap-shift: 50%;
  }

  .why-work-block[data-why-work-slot="3"],
  .why-work-connector[data-why-work-slot="3"] {
    --why-work-target-x: 19vw;
    --why-work-target-y: 8.8vh;
    --why-work-enter-y: 5.5vh;
    --why-work-gap-adjust-bottom: clamp(0.04rem, 0.08vw, 0.07rem);
    --why-work-link-x: 19vw;
    --why-work-link-length: clamp(3.8rem, 5.5vw, 4.4rem);
    --why-work-link-anchor-y: var(--why-work-connector-gap);
    --why-work-block-pad-top: clamp(0.8rem, 1.2vw, 1rem);
    --why-work-link-origin: 0%;
    --why-work-link-cap-top: auto;
    --why-work-link-cap-bottom: 0;
    --why-work-link-cap-shift: 50%;
  }

  .why-work-block[data-why-work-slot="4"],
  .why-work-connector[data-why-work-slot="4"] {
    --why-work-target-x: 0vw;
    --why-work-target-y: 12vh;
    --why-work-enter-y: 7.2vh;
    --why-work-gap-adjust-bottom: clamp(0.3rem, 0.42vw, 0.36rem);
    --why-work-link-x: 0vw;
    --why-work-link-length: clamp(6.1rem, 8.8vw, 7.1rem);
    --why-work-link-anchor-y: var(--why-work-connector-gap);
    --why-work-block-pad-top: clamp(0.9rem, 1.3vw, 1.1rem);
    --why-work-link-origin: 0%;
    --why-work-link-cap-top: auto;
    --why-work-link-cap-bottom: 0;
    --why-work-link-cap-shift: 50%;
  }

  .work-reveal-support-stack {
    min-height: auto;
    padding: 0;
  }

  .work-reveal-support {
    position: relative;
    inset: auto;
    display: none;
    transform: none;
  }

  .work-reveal-support.is-active {
    display: grid;
  }

  .work-reveal-media {
    width: min(100%, 32rem);
  }

  .work-reveal-media.is-multi {
    --work-reveal-multi-gap: clamp(0.45rem, 1vw, 0.72rem);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--work-reveal-multi-gap);
    justify-content: stretch;
  }

  .work-reveal-slideshow-controls {
    justify-content: center;
    align-items: center;
    gap: 0.72rem;
  }

  .work-reveal-slideshow-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .work-reveal-slideshow-editorial-grid.is-reactions {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .work-reveal-slideshow-editorial-grid > .work-reveal-slideshow-editorial-card {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .work-reveal-slideshow-editorial-grid.layout-editorial-sixup {
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .work-reveal-media.is-portrait {
    width: min(100%, 12rem);
  }

  .client-logo-track {
    gap: clamp(1.68rem, 3.6vw, 2.475rem);
    animation-duration: 36s;
  }

  .offer-scroll-scene {
    --offer-card-height: clamp(17.6rem, 41vh, 19.4rem);
    --offer-problem-height: clamp(22.4rem, 52vh, 24.8rem);
  }

  .offer-scroll-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(1.15rem, 2.2vw, 2rem);
  }

  .offer-scroll-steps {
    gap: clamp(8vh, 12vh, 14vh);
  }

  .offer-step {
    min-height: var(--offer-card-height);
  }

  .offer-problem-panel {
    top: clamp(3.8rem, 8.3vh, 5.7rem);
    min-height: var(--offer-problem-height);
  }

  .offer-problem-stack {
    min-height: calc(var(--offer-problem-height) - clamp(4rem, 6vw, 5rem));
    height: auto;
    padding-right: clamp(5.2rem, 8vw, 6.8rem);
  }

  .value-evidence {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding: var(--section-top-space) 0 var(--section-bottom-space);
  }

  .hero-copy {
    max-width: min(40rem, 72vw);
    padding-right: 0;
    margin-top: 0;
  }

  .hero-edge-visual {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: 35rem;
    margin-top: clamp(0.8rem, 2vw, 1.75rem);
  }

  .hero-portrait-stage {
    position: relative;
    min-height: 35rem;
    width: 100%;
  }

  .hero-portrait-frame {
    inset: -14% -8% 0 14%;
  }

  .hero-portrait-frame img {
    object-position: 50% 0%;
    transform: scale(1.08) translate(5.2%, -4%);
  }
}

@media (max-width: 1080px) and (min-width: 761px) {
  :root {
    --section-top-space: clamp(2.6rem, 4vw, 3.4rem);
    --section-bottom-space: clamp(2.6rem, 4vw, 3.4rem);
  }

  .hero {
    min-height: 100svh;
  }

  .hero-inner {
    min-height: 100svh;
    padding: var(--section-top-space) 0 var(--section-bottom-space);
  }

  .hero-copy {
    max-width: min(40rem, 56vw);
    padding-right: clamp(0.8rem, 1.6vw, 1.3rem);
  }

  .hero-edge-visual {
    position: absolute;
    top: clamp(0.25rem, 0.45vw, 0.55rem);
    right: clamp(-3rem, -3.4vw, -1.6rem);
    bottom: 0;
    width: clamp(33rem, 48vw, 37rem);
    min-height: 0;
    margin-top: 0;
  }

  .hero-portrait-stage {
    position: absolute;
    inset: 0;
    min-height: 0;
  }

  .hero-portrait-frame {
    inset: -4% -2% -16% -11%;
  }

  .hero-portrait-frame img {
    object-position: 57% 100%;
    transform: scale(1.62) translate(-0.6%, 0.8%);
  }
}

@media (max-width: 1320px) and (min-width: 1081px) {
  .hero-copy {
    max-width: min(43rem, 51vw);
    padding-right: clamp(1.05rem, 1.9vw, 1.7rem);
  }

  .hero-body,
  .hero-subhead-cta {
    max-width: min(33rem, 43vw);
  }

  .hero-edge-visual {
    top: clamp(0.8rem, 1vw, 1.25rem);
    right: clamp(-1.3rem, -1.2vw, -0.4rem);
    width: clamp(35rem, 50vw, 43rem);
  }

  .hero-portrait-frame {
    inset: -4% -2% -17% -10%;
  }

  .hero-portrait-frame img {
    object-position: 56% 100%;
    transform: scale(1.41) translate(-0.8%, 3.1%);
  }
}

@media (min-width: 1500px) {
  .hero-copy {
    max-width: min(46rem, 46vw);
  }

  .hero-edge-visual {
    top: 1.05rem;
    right: -4.2rem;
    width: clamp(49rem, 53vw, 66rem);
  }

  .hero-portrait-frame {
    inset: -6% -1% -16% -14%;
  }

  .hero-portrait-frame img {
    object-position: 56% 100%;
    transform: scale(1.42) translate(-4.6%, 7.2%);
  }
}

@media (max-width: 980px) and (min-width: 761px) {
  .hero-copy {
    max-width: min(32rem, 51vw);
    padding-right: clamp(0.25rem, 0.8vw, 0.7rem);
  }

  .hero-body,
  .hero-subhead-cta {
    max-width: min(30rem, 49vw);
  }

  .hero-headline,
  .stat-number {
    font-size: clamp(3.6rem, 8.2vw, 4.8rem);
  }

  .hero-edge-visual {
    top: clamp(0.1rem, 0.3vw, 0.35rem);
    right: clamp(-2.6rem, -3vw, -1.8rem);
    width: clamp(28rem, 45vw, 31rem);
  }

  .hero-portrait-frame {
    inset: -4% -3% -16% -10%;
  }

  .hero-portrait-frame img {
    object-position: 58% 100%;
    transform: scale(1.6) translate(0.8%, 0.4%);
  }
}

@media (max-width: 1080px) and (min-width: 981px) and (max-height: 800px) {
  .hero-edge-visual {
    top: 0.8rem;
    right: clamp(-2.3rem, -2.5vw, -1.2rem);
    width: clamp(31rem, 45vw, 34rem);
  }

  .hero-portrait-frame {
    inset: -3% -2% -14% -10%;
  }

  .hero-portrait-frame img {
    transform: scale(1.5) translate(-0.2%, 2.6%);
  }
}

@media (max-width: 760px) {
  :root {
    --section-top-space: 2.75rem;
    --section-bottom-space: 2.75rem;
  }

  .site-shell {
    padding-bottom: 0;
  }

  .section-inner {
    width: min(calc(100% - 1.5rem), var(--max-width));
  }

  .hero-headline,
  .stat-number {
    font-size: clamp(2.95rem, 11.4vw, 3.65rem);
  }

  .hero-headline {
    max-width: 7.2ch;
  }

  .hero-copy {
    gap: 1rem;
  }

  .hero-subhead {
    font-size: 0.98rem;
    line-height: 1.54;
  }

  .hero-body {
    margin-top: 0;
  }

  .hero-inner {
    padding: var(--section-top-space) 0 var(--section-bottom-space);
  }

  .section-heading h2 {
    max-width: none;
  }

  .value-statement h2 {
    font-size: clamp(2.8rem, 10vw, 3.6rem);
  }

  .why-work-scroll-chapter {
    --why-work-chapter-height: clamp(47vh, 53vh, 59vh);
    min-height: var(--why-work-chapter-height);
  }

  .why-work-stage {
    --why-work-stage-height: clamp(20rem, 42svh, 25rem);
    min-height: var(--why-work-stage-height);
    --why-work-anchor-x: 50%;
  }

  .why-work-headline {
    font-size: var(--type-display-section);
    white-space: nowrap;
    line-height: var(--leading-display);
    text-align: center;
    max-width: none;
  }

  .why-work-block {
    width: min(max-content, clamp(11rem, 68vw, 14.5rem));
  }

  .why-work-block-title {
    font-size: clamp(0.82rem, 3vw, 0.92rem);
    line-height: 1.02;
    white-space: normal;
    text-wrap: balance;
    max-width: 18ch;
  }

  .why-work-block[data-why-work-slot="0"],
  .why-work-connector[data-why-work-slot="0"] {
    --why-work-target-x: -6vw;
    --why-work-target-y: -12vh;
    --why-work-enter-y: -8vh;
    --why-work-link-length: clamp(4rem, 12.5vw, 5.2rem);
  }

  .why-work-block[data-why-work-slot="1"],
  .why-work-connector[data-why-work-slot="1"] {
    --why-work-target-x: 5vw;
    --why-work-target-y: -7vh;
    --why-work-enter-y: -4vh;
    --why-work-link-length: clamp(3.7rem, 11.5vw, 4.8rem);
  }

  .why-work-block[data-why-work-slot="2"],
  .why-work-connector[data-why-work-slot="2"] {
    --why-work-target-x: -5vw;
    --why-work-target-y: 4vh;
    --why-work-enter-y: 1.5vh;
    --why-work-link-length: clamp(3.4rem, 10.8vw, 4.4rem);
  }

  .why-work-block[data-why-work-slot="3"],
  .why-work-connector[data-why-work-slot="3"] {
    --why-work-target-x: 5vw;
    --why-work-target-y: 8vh;
    --why-work-enter-y: 3.5vh;
    --why-work-link-length: clamp(3.8rem, 12.3vw, 5rem);
  }

  .why-work-block[data-why-work-slot="4"],
  .why-work-connector[data-why-work-slot="4"] {
    --why-work-target-x: -4vw;
    --why-work-target-y: 12vh;
    --why-work-enter-y: 5.5vh;
    --why-work-link-length: clamp(4rem, 13vw, 5.2rem);
  }

  .work-reveal-row-title {
    font-size: clamp(0.76rem, 2.55vw, 0.9rem);
    letter-spacing: 0.1em;
    white-space: normal;
  }

  .work-reveal-titleline {
    font-size: clamp(0.96rem, 5vw, 1.16rem);
    line-height: 1.03;
  }

  .work-reveal-copy-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .work-reveal-copy-head {
    font-size: clamp(1rem, 4.4vw, 1.16rem);
  }

  .work-reveal-copy-text {
    max-width: 100%;
  }

  .offer-bridge {
    font-size: clamp(2.25rem, 11vw, 3.45rem);
    line-height: var(--leading-display);
    letter-spacing: 0.02em;
    max-width: 100%;
  }

  .offer-scroll-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .offer-scroll-steps {
    gap: 0.8rem;
    padding-right: 0;
  }

  .offer-step {
    min-height: auto;
  }

  .offer-step-card,
  .offer-step-card:hover,
  .offer-step-card:focus-visible {
    height: auto;
    transform: none;
    opacity: 1;
  }

  .offer-problem-panel {
    position: relative;
    top: auto;
    min-height: auto;
    padding: 1rem;
  }

  .offer-problem-stack {
    min-height: 0;
    height: auto;
    width: 100%;
    padding-right: 0;
  }

  .offer-problem-content {
    position: relative;
    inset: auto;
    display: none;
    opacity: 1;
    max-height: none;
    overflow: visible;
    padding-right: 0;
    transition: none;
  }

  .offer-problem-content.is-active {
    display: grid;
  }

  .offer-kinetic-graphic {
    width: clamp(6rem, 24vw, 8rem);
    top: 0.45rem;
    right: 0.35rem;
  }

  .value-evidence {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 0;
    padding-top: 0;
  }

  .client-logo-track {
    gap: 1.38rem;
    animation-duration: 30s;
  }

  .client-logo-item img {
    height: calc(var(--logo-scale, 1) * 2.95rem);
  }

  .approach-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .section-approach {
    padding: var(--section-top-space) 0 var(--section-bottom-space);
  }

  .approach-title {
    font-size: clamp(3rem, 17vw, 4.3rem);
    max-width: 6.6ch;
  }

  .section-final-cta {
    padding: var(--section-top-space) 0 var(--section-bottom-space);
  }

  .final-cta-headline {
    font-size: clamp(1.35rem, 5.9vw, 2rem);
  }

  .final-cta-headline span {
    white-space: nowrap;
  }

  .final-cta-actions {
    width: min(100%, 23.8rem);
    gap: 0.52rem;
  }

  .final-cta-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 3rem;
    padding: 0.72rem 0.56rem;
    font-size: 0.71rem;
    letter-spacing: 0.02em;
  }

  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.68rem;
  }

  .site-footer-links {
    width: auto;
    justify-content: flex-end;
    gap: 0.74rem;
    align-self: flex-end;
  }

  .approach-intro {
    padding-top: 0;
    gap: var(--section-headline-gap);
  }

  .approach-accordion-head {
    gap: 0.86rem;
  }

  .approach-accordion-head h3 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .approach-accordion-panel {
    max-width: none;
    padding-right: 0;
  }

  .button,
  .text-link {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-fab {
    right: 1.6rem;
    bottom: calc(1.4rem + env(safe-area-inset-bottom, 0px));
    width: 3.35rem;
    height: 3.35rem;
  }

  .hero-edge-visual {
    min-height: 28rem;
  }

  .hero-portrait-stage {
    min-height: 28rem;
    width: 100%;
  }

  .hero-portrait-frame {
    inset: -8% -6% 0 4%;
  }

  .hero-portrait-frame img {
    transform: scale(1.04) translate(3.5%, -1.5%);
  }

}
