@font-face {
  font-family: 'ChewProtest';
  src: url('assets/fonts/ChewProtest-normal.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('assets/fonts/space-grotesk-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('assets/fonts/space-grotesk-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Mori';
  src: url('assets/fonts/pp-mori-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Mori';
  src: url('assets/fonts/pp-mori-semibold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --surface-black: #090908;
  --surface-charcoal: #141412;
  --surface-panel: #1c1b18;
  --content-max-width: 1480px;
  --anchor-offset: 0px;
  --text-primary: #c1c1c1;
  --text-light: #f4f4f4;
  --text-muted: #8f8f8f;
  --text-soft: #6f6f6f;
  --accent-pink: #f5136e;
  --accent-pink-dark: #c2005a;
  --accent-lime: #d3fa91;
  --border-pink: rgba(245, 19, 110, 0.22);
  --border-soft: rgba(255, 255, 255, 0.08);
  --field-bg: rgba(255, 255, 255, 0.04);
}

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

html {
  scroll-behavior: smooth;
  background: var(--surface-black);
  scroll-padding-top: calc(var(--nav-height, 96px) + var(--anchor-offset));
}

body {
  background: var(--surface-black);
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a,
button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

section[id] {
  scroll-margin-top: calc(var(--nav-height, 96px) + var(--anchor-offset));
}

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px max(52px, calc((100vw - var(--content-max-width)) / 2));
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, padding 0.3s;
}

nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(9, 9, 8, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

nav.scrolled {
  border-bottom-color: var(--border-soft);
}

nav.scrolled::before {
  opacity: 1;
}

.nav-logo {
  position: relative;
  z-index: 3;
  color: var(--text-light);
  font-family: 'ChewProtest', sans-serif;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.nav-logo .e {
  color: var(--accent-pink);
}

.nav-toggle {
  position: relative;
  z-index: 3;
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-light);
  transition: border-color 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.nav-toggle:focus-visible {
  outline: 1px solid rgba(211, 250, 145, 0.45);
  outline-offset: 4px;
}

.nav-toggle-box {
  position: relative;
  width: 22px;
  height: 16px;
}

.nav-toggle-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: top 0.24s ease, transform 0.24s ease, opacity 0.2s ease;
}

.nav-toggle-line:nth-child(1) {
  top: 0;
}

.nav-toggle-line:nth-child(2) {
  top: 7px;
}

.nav-toggle-line:nth-child(3) {
  top: 14px;
}

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(9, 9, 8, 0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.nav-panel {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  position: relative;
  --nav-indicator-x: 0px;
  --nav-indicator-width: 0px;
  --nav-indicator-opacity: 0;
}

.nav-links::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: var(--nav-indicator-width);
  height: 2px;
  background: var(--accent-lime);
  border-radius: 999px;
  opacity: var(--nav-indicator-opacity);
  pointer-events: none;
  transform: translateX(var(--nav-indicator-x));
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease;
}

.nav-links a {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.16em;
  opacity: 0.82;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.24s ease, opacity 0.24s ease;
}

.nav-links a:hover {
  color: var(--accent-pink);
  opacity: 1;
}

.nav-links a.is-active,
.nav-links a[aria-current='location'] {
  color: var(--accent-lime);
  opacity: 1;
}

.nav-links a:focus-visible {
  color: var(--accent-lime);
  opacity: 1;
  outline: 1px solid rgba(211, 250, 145, 0.45);
  outline-offset: 6px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-pink);
  border: 1px solid transparent;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 13px 22px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--accent-pink-dark);
  transform: translateY(-1px);
}

nav.is-menu-open .nav-toggle {
  color: var(--accent-lime);
  border-color: rgba(211, 250, 145, 0.26);
  background: rgba(211, 250, 145, 0.08);
}

nav.is-menu-open .nav-toggle-line:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

nav.is-menu-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

nav.is-menu-open .nav-toggle-line:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

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

  .nav-toggle,
  .nav-toggle-line,
  .nav-panel,
  .nav-scrim,
  .nav-links,
  .nav-links::after,
  .nav-links a {
    transition: none;
  }
}

/* ── HERO ── */
.hero {
  --hero-image-position: center center;
  --hero-overlay-horizontal: linear-gradient(90deg, rgba(9, 9, 8, 0.62) 0%, rgba(9, 9, 8, 0.42) 44%, rgba(9, 9, 8, 0.74) 100%);
  --hero-overlay-vertical: linear-gradient(180deg, rgba(9, 9, 8, 0.34) 0%, rgba(9, 9, 8, 0.08) 34%, rgba(9, 9, 8, 0.54) 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  overflow: hidden;
  padding: 0 max(52px, calc((100vw - var(--content-max-width)) / 2));
  background: var(--surface-black);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-image-position);
  transform: scale(1.02);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    var(--hero-overlay-horizontal),
    var(--hero-overlay-vertical);
}

.hero-wrap {
  position: relative;
  z-index: 1;
}

.hero-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 420px);
  gap: 72px;
  align-items: end;
  margin-top: auto;
  padding-top: 170px;
  padding-bottom: 88px;
}

.hero-eyebrow {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.45;
  margin-bottom: clamp(32px, 4vw, 40px);
  opacity: 0;
  text-transform: uppercase;
  animation: fadeUp 0.7s 0.1s forwards;
}

.hero-hed {
  color: var(--text-light);
  font-family: 'ChewProtest', sans-serif;
  font-size: clamp(60px, 9.5vw, 138px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeUp 0.8s 0.25s forwards;
}

.hero-hed .pk {
  color: var(--accent-pink);
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 10px;
  opacity: 0;
  animation: fadeUp 0.8s 0.42s forwards;
}

.hero-sub {
  max-width: 40ch;
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.75;
}

.hero-tag {
  max-width: 26ch;
  border-left: 3px solid var(--accent-lime);
  color: var(--accent-lime);
  font-family: 'PP Mori', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  padding-left: 18px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-p,
.btn-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 0 28px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-p {
  background: var(--accent-pink);
  color: var(--text-light);
}

.btn-p:hover {
  background: var(--accent-pink-dark);
  transform: translateY(-1px);
}

.btn-g {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text-light);
}

.btn-g:hover {
  border-color: var(--accent-pink);
  color: var(--accent-pink);
  transform: translateY(-1px);
}

/* ── STATS ── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-inline: max(0px, calc((100vw - var(--content-max-width)) / 2));
  background: var(--accent-pink);
}

.stat {
  padding: 34px 32px;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.stat:last-child {
  border-right: none;
}

.stat-n {
  color: var(--surface-black);
  font-family: 'PP Mori', sans-serif;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-variant-numeric: lining-nums tabular-nums;
}

.stat-l {
  margin-top: 8px;
  color: rgba(9, 9, 8, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

/* ── MARQUEE ── */
.mq {
  --mq-duration: 30s;
  overflow: hidden;
  padding: 15px 0;
  background: var(--surface-black);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.mq-track {
  display: flex;
  white-space: nowrap;
  animation: marquee var(--mq-duration) linear infinite;
}

.mq-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  color: var(--text-light);
  font-family: 'ChewProtest', sans-serif;
  font-size: 18px;
  letter-spacing: 0.03em;
}

.mq-sep {
  color: var(--accent-pink);
  font-size: 14px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── SHARED ── */
.sec {
  padding: 104px max(52px, calc((100vw - var(--content-max-width)) / 2));
}

.lbl {
  margin-bottom: 14px;
  color: var(--accent-pink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.rule {
  width: 54px;
  height: 2px;
  background: var(--accent-pink);
}

.hed {
  margin-top: 28px;
  color: var(--text-light);
  font-family: 'ChewProtest', sans-serif;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.01em;
}

.hed .pk {
  color: var(--accent-pink);
}

.hed .gd {
  color: var(--accent-lime);
}

/* ── REFORMATION BLOCK ── */
.sec.reform {
  background: var(--surface-charcoal);
  padding-bottom: 0;
}

.reform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--border-soft);
}

.reform-card {
  padding: 42px 34px;
  background: var(--surface-charcoal);
  border-bottom: 2px solid transparent;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.reform-card:hover {
  background: var(--surface-panel);
  border-color: var(--accent-pink);
  transform: translateY(-2px);
}

.reform-overline {
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.reform-hed {
  margin-bottom: 18px;
  color: var(--accent-pink);
  font-family: 'ChewProtest', sans-serif;
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1;
}

.reform-body {
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.75;
}

.stmt.stmt-image {
  position: relative;
  margin-top: 40px;
  min-height: clamp(360px, 34vw, 520px);
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.stmt-operating-principle {
  --stmt-image-position: center 50%;
  min-height: clamp(540px, 48vw, 760px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.stmt-image-picture {
  position: absolute;
  inset: 0;
}

.stmt-image-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--stmt-image-position, center);
  transform: scale(1.04) translate3d(0, var(--stmt-parallax-offset, 0px), 0);
  transition: transform 0.16s linear;
  will-change: transform;
}

.stmt-image-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 9, 8, 0.16) 0%, rgba(9, 9, 8, 0.06) 42%, rgba(9, 9, 8, 0.22) 100%),
    linear-gradient(90deg, rgba(9, 9, 8, 0.18) 0%, rgba(9, 9, 8, 0.08) 48%, rgba(9, 9, 8, 0.16) 100%);
}

.stmt-image-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 24px;
}

.stmt-operating-principle .stmt-txt {
  max-width: 7ch;
  text-shadow: 0 10px 30px rgba(9, 9, 8, 0.34);
}

.stmt-operating-principle .stmt-attr {
  margin-top: 18px;
  text-shadow: 0 8px 24px rgba(9, 9, 8, 0.32);
}

/* ── APPROACH ── */
.approach {
  background: var(--surface-black);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}

.approach-body {
  margin-bottom: 24px;
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.8;
}

.approach-callout {
  margin-bottom: 24px;
  padding: 24px;
  background: rgba(245, 19, 110, 0.08);
  border-left: 3px solid var(--accent-pink);
}

.callout-lbl {
  margin-bottom: 10px;
  color: var(--accent-pink);
  font-family: 'PP Mori', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.callout-txt {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
}

.modes {
  display: flex;
  flex-direction: column;
}

.mode {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
}

.mode-dot {
  width: 7px;
  height: 7px;
  margin-top: 10px;
  flex-shrink: 0;
  background: var(--accent-pink);
}

.mode-txt {
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.7;
}

.mode-txt strong {
  color: var(--text-light);
  font-weight: 700;
}

.pull {
  max-width: 10ch;
  margin-bottom: 32px;
  color: var(--text-light);
  font-family: 'PP Mori', sans-serif;
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 700;
  line-height: 1.02;
}

.pull-line {
  display: block;
}

.pull .pk {
  color: var(--accent-pink);
}

.pull em {
  font-style: italic;
}

.approach-emphasis {
  color: var(--text-light);
  font-family: 'PP Mori', sans-serif;
  line-height: 1.72;
  border-left: 3px solid var(--accent-pink);
  padding-left: 20px;
}

/* ── CHEW METHOD ── */
.method {
  background: var(--surface-charcoal);
}

.method-intro {
  max-width: 720px;
  margin-top: 40px;
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.8;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 52px;
  background: var(--border-soft);
}

.method-step {
  position: relative;
  overflow: hidden;
  padding: 34px 26px;
  background: var(--surface-charcoal);
  transition: background 0.3s;
}

.method-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.method-step:hover {
  background: var(--surface-panel);
}

.method-step:hover::before {
  transform: scaleX(1);
}

.method-letter {
  margin-bottom: 16px;
  color: var(--accent-pink);
  font-family: 'ChewProtest', sans-serif;
  font-size: 50px;
  line-height: 0.9;
}

.method-name {
  margin-bottom: 12px;
  color: var(--text-light);
  font-family: 'PP Mori', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.method-desc {
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.7;
}

.method-output {
  margin-top: 16px;
  color: var(--accent-pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.method-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 1px;
  background: var(--border-soft);
}

.timeline-cell {
  padding: 14px 18px;
  background: rgba(245, 19, 110, 0.08);
  color: var(--accent-pink);
  font-family: 'PP Mori', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.method-duration {
  display: none;
}

/* ── SERVICES ── */
.services {
  background: var(--surface-black);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--border-soft);
}

.svc {
  position: relative;
  overflow: hidden;
  padding: 42px 34px;
  background: var(--surface-black);
  transition: background 0.3s;
}

.svc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.svc:hover {
  background: var(--surface-charcoal);
}

.svc:hover::after {
  transform: scaleX(1);
}

.svc-n {
  margin-bottom: 18px;
  color: rgba(245, 19, 110, 0.5);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.svc-t {
  margin-bottom: 14px;
  color: var(--text-light);
  font-family: 'PP Mori', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.svc-b {
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.75;
}

/* ── CAPABILITIES ── */
.caps {
  background: var(--surface-charcoal);
}

.caps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 56px;
  background: var(--border-soft);
}

.cap-block {
  padding: 42px 38px;
  background: var(--surface-charcoal);
}

.cap-title {
  margin-bottom: 24px;
  color: var(--accent-pink);
  font-family: 'ChewProtest', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}

.cap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cap-tag {
  padding: 8px 14px;
  border: 1px solid var(--border-pink);
  background: transparent;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
  .cap-tag:hover {
    background: rgba(245, 19, 110, 0.06);
    border-color: var(--accent-pink);
    color: #fff;
    transform: translateY(-2px);
  }
}

/* ── WHO WE WORK WITH ── */
.who {
  background: var(--surface-black);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 52px;
  background: var(--border-soft);
}

.who-card {
  padding: 34px 28px;
  background: var(--surface-black);
  transition: background 0.3s;
}

.who-card:hover {
  background: var(--surface-charcoal);
}

.who-lbl {
  margin-bottom: 10px;
  color: var(--accent-pink);
  font-family: 'PP Mori', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.who-title {
  margin-bottom: 12px;
  color: var(--text-light);
  font-family: 'ChewProtest', sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.15;
}

.who-body {
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.75;
}

.who-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 52px;
}

.who-promise {
  color: var(--text-light);
  font-family: 'ChewProtest', sans-serif;
  font-size: clamp(30px, 3.5vw, 50px);
  line-height: 0.95;
}

.who-promise .pk {
  color: var(--accent-pink);
}

.who-note {
  padding-left: 24px;
  border-left: 3px solid var(--accent-lime);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.85;
}

/* ── CASE STUDIES ── */
.cases {
  background: var(--surface-charcoal);
}

.cases-intro {
  max-width: 720px;
  margin-top: 36px;
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.8;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 52px;
  background: var(--border-soft);
}

.case {
  position: relative;
  overflow: hidden;
  padding: 42px 38px;
  background: var(--surface-charcoal);
  transition: background 0.3s;
}

.case::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-pink);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s;
}

.case:hover {
  background: var(--surface-panel);
}

.case:hover::before {
  transform: scaleY(1);
}

.case-tag {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.case-title {
  margin-bottom: 16px;
  color: var(--text-light);
  font-family: 'PP Mori', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.case-body {
  margin-bottom: 0;
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.75;
}

.case-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}

.result-num {
  color: var(--accent-pink);
  font-family: 'PP Mori', sans-serif;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: lining-nums tabular-nums;
}

.result-lbl {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.case-runtime {
  margin-bottom: 18px;
  color: var(--accent-lime);
  font-family: 'PP Mori', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-quote {
  margin-top: 20px;
  padding-left: 16px;
  border-left: 2px solid var(--accent-pink);
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
}

.case-quote-attr {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── ADAM ── */
.adam,
.leadership-team {
  background: var(--surface-black);
}

.leadership-team {
  --leadership-divider-gap: clamp(56px, 6vw, 88px);
}

.adam-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 52px;
}

.leadership-team-hed {
  max-width: 15ch;
  margin: var(--leadership-divider-gap) auto;
  text-align: center;
}

.leadership-team-adam {
  margin-top: 0;
}

.adam-bio {
  margin-bottom: 20px;
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.85;
}

.adam-creds {
  display: flex;
  flex-direction: column;
}

.cred {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.5s, transform 0.5s;
}

.cred.visible {
  opacity: 1;
  transform: translateX(0);
}

.cred-dot {
  width: 6px;
  height: 6px;
  margin-top: 8px;
  flex-shrink: 0;
  background: var(--accent-pink);
}

.cred-txt {
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.7;
}

.cred-txt strong {
  color: var(--text-light);
  font-weight: 700;
}

/* ── TEAM ── */
.team {
  background: var(--surface-charcoal);
}

.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(52px, 6vw, 80px);
  align-items: center;
  margin-top: 52px;
}

.team-copy,
.team-vals {
  min-width: 0;
}

.team-body {
  margin-bottom: 22px;
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.85;
}

.team-vals {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-soft);
}

.tv {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-soft);
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.5s, transform 0.5s;
}

.tv.visible {
  opacity: 1;
  transform: translateX(0);
}

.tv-dot {
  width: 6px;
  height: 6px;
  margin-top: 8px;
  flex-shrink: 0;
  background: var(--accent-pink);
}

.tv-txt {
  color: var(--text-light);
  font-family: 'PP Mori', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

/* ── STATEMENT BLOCKS ── */
.stmt {
  padding: 72px 52px;
  text-align: center;
}

.stmt-future {
  padding-top: clamp(112px, 12vw, 176px);
  padding-bottom: clamp(112px, 12vw, 176px);
}

.stmt-txt {
  color: var(--text-light);
  font-family: 'ChewProtest', sans-serif;
  font-size: clamp(48px, 9vw, 132px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.01em;
}

.stmt-txt span {
  display: block;
}

.stmt-attr {
  margin-top: 20px;
  color: var(--text-light);
  font-family: 'PP Mori', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.6;
  opacity: 0.88;
}

.stmt-pink,
.stmt-gold {
  background: var(--accent-pink);
}

.stmt-pink .stmt-txt,
.stmt-gold .stmt-txt,
.stmt-pink .stmt-attr,
.stmt-gold .stmt-attr {
  color: var(--text-light);
}

.stmt-dark {
  background: var(--surface-charcoal);
}

.stmt-dark .stmt-txt {
  margin: 0 auto;
}

.stmt-dark .stmt-accent {
  color: var(--accent-pink);
}

.stmt-dark .stmt-contrast {
  color: var(--text-light);
}

.stmt-dark .stmt-attr {
  color: var(--text-primary);
}

/* ── CONTACT ── */
.contact {
  background: var(--surface-black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}

.ci-lbl {
  margin-bottom: 8px;
  color: var(--accent-pink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ci-val {
  margin-bottom: 28px;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
}

.ci-address {
  max-width: 22ch;
}

.ci-facility {
  color: var(--text-primary);
}

.ci-copy {
  display: inline-grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 12px;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.ci-copy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.ci-copy-icon svg {
  width: 100%;
  height: 100%;
}

.ci-copy-icon--action {
  display: inline-flex;
  color: var(--text-muted);
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.24s, opacity 0.24s, transform 0.24s;
}

.ci-copy-value {
  border-bottom: 1px solid rgba(245, 19, 110, 0.26);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.ci-copy-feedback {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 56px;
  height: 20px;
  overflow: visible;
}

.ci-copy-status {
  position: absolute;
  left: 0;
  top: 50%;
  color: var(--accent-pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateY(calc(-50% + 10px));
  transition: opacity 0.24s, transform 0.24s;
  white-space: nowrap;
}

.ci-copy:hover .ci-copy-value,
.ci-copy:focus-visible .ci-copy-value {
  color: var(--accent-pink);
  border-color: var(--accent-pink);
}

.ci-copy:hover .ci-copy-icon--action,
.ci-copy:focus-visible .ci-copy-icon--action,
.ci-copy.copied .ci-copy-icon--action {
  color: var(--accent-pink);
  transform: translateY(calc(-50% - 1px));
}

.ci-copy:focus-visible {
  outline: 2px solid rgba(245, 19, 110, 0.4);
  outline-offset: 6px;
}

.ci-copy.copied .ci-copy-status {
  opacity: 1;
  transform: translateY(-50%);
}

.ci-copy.copied .ci-copy-icon--action {
  opacity: 0;
  transform: translateY(calc(-50% - 10px));
}

.ci-copy.copied .ci-copy-value {
  color: var(--accent-pink);
  border-color: var(--accent-pink);
}

.ci-copy.error .ci-copy-status {
  opacity: 1;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.ci-copy.error .ci-copy-value {
  border-color: rgba(255, 255, 255, 0.18);
}

.ci-copy.error .ci-copy-icon--action {
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(calc(-50% - 10px));
}

.ci-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.ci-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--accent-pink);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}

.ci-social svg {
  display: block;
  width: 24px;
  height: 24px;
}

.ci-social--instagram svg {
  width: 26px;
  height: 26px;
}

.ci-social--linkedin svg {
  width: 23px;
  height: 23px;
}

.ci-social:hover,
.ci-social:focus-visible {
  color: var(--text-light);
  transform: translateY(-1px);
}

.ci-social:focus-visible {
  outline: 2px solid rgba(245, 19, 110, 0.4);
  outline-offset: 4px;
}

.ci-val a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 19, 110, 0.26);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.ci-val a:hover {
  color: var(--accent-pink);
  border-color: var(--accent-pink);
}

.conf {
  max-width: 34rem;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.8;
}

.f-lbl {
  display: block;
  margin-bottom: 8px;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.f-ctrl {
  width: 100%;
  margin-bottom: 18px;
  padding: 15px 16px;
  background: var(--field-bg);
  border: 1px solid rgba(245, 19, 110, 0.2);
  color: var(--text-light);
  font-size: 16px;
  outline: none;
  resize: none;
  transition: border-color 0.2s, background 0.2s;
}

.f-ctrl:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent-pink);
}

.f-ctrl::placeholder {
  color: rgba(244, 244, 244, 0.28);
}

.f-ta {
  min-height: 130px;
}

.f-btn {
  border: none;
  background: var(--accent-pink);
  color: var(--text-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 16px 40px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}

.f-btn:hover {
  background: var(--accent-pink-dark);
  transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(52px, calc((100vw - var(--content-max-width)) / 2));
  background: var(--surface-charcoal);
  border-top: 1px solid var(--border-soft);
}

.ftr-logo {
  color: var(--text-light);
  font-family: 'ChewProtest', sans-serif;
  font-size: 26px;
  line-height: 1;
  text-decoration: none;
}

.ftr-logo .e {
  color: var(--accent-pink);
}

.ftr-copy {
  margin-left: auto;
  color: var(--text-primary);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .ci-copy {
    grid-template-columns: 1fr auto;
  }

  .ci-copy-icon--action {
    display: inline-flex;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  nav {
    padding: 22px 24px;
  }

  .hero,
  .sec,
  .stmt,
  footer,
  .stats {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-wrap {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    gap: 48px;
  }
}

@media (max-width: 960px) {
  nav {
    padding: 18px 22px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  nav.is-menu-open .nav-scrim {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-panel {
    position: fixed;
    top: calc(var(--nav-height, 88px) + 18px);
    right: 0;
    bottom: auto;
    width: auto;
    max-width: min(78vw, 320px);
    max-height: calc(100svh - var(--nav-height, 88px) - 36px);
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    padding: 0 22px 0 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(28px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease;
  }

  nav.is-menu-open .nav-panel {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    width: auto;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
  }

  .nav-links::after {
    display: none;
  }

  .nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 52px;
    padding: 14px 18px;
    background: rgba(20, 20, 18, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.16em;
    line-height: 1.2;
    opacity: 0;
    text-align: right;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
    transform: translateX(24px);
    transition:
      color 0.22s ease,
      background 0.22s ease,
      border-color 0.22s ease,
      opacity 0.22s ease,
      transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  }

  nav.is-menu-open .nav-links a {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links li:nth-child(1) a {
    transition-delay: 0.02s;
  }

  .nav-links li:nth-child(2) a {
    transition-delay: 0.05s;
  }

  .nav-links li:nth-child(3) a {
    transition-delay: 0.08s;
  }

  .nav-links li:nth-child(4) a {
    transition-delay: 0.11s;
  }

  .nav-links li:nth-child(5) a {
    transition-delay: 0.14s;
  }

  .nav-links li:nth-child(6) a {
    transition-delay: 0.17s;
  }

  .nav-links a.is-active,
  .nav-links a[aria-current='location'] {
    color: var(--accent-lime);
    background: rgba(211, 250, 145, 0.08);
    border-color: rgba(211, 250, 145, 0.24);
  }

  .nav-cta {
    margin-top: 2px;
    align-self: flex-end;
    opacity: 0;
    transform: translateX(24px);
    transition:
      background 0.2s,
      transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.24s ease;
    transition-delay: 0.2s;
  }

  nav.is-menu-open .nav-cta {
    opacity: 1;
    transform: translateX(0);
  }

  .hero {
    --hero-overlay-horizontal: linear-gradient(90deg, rgba(9, 9, 8, 0.42) 0%, rgba(9, 9, 8, 0.2) 58%, rgba(9, 9, 8, 0.36) 100%);
    --hero-overlay-vertical: linear-gradient(180deg, rgba(9, 9, 8, 0.14) 0%, rgba(9, 9, 8, 0.16) 28%, rgba(9, 9, 8, 0.48) 100%);
    min-height: auto;
    padding: 0 22px;
  }

  .stats {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 140px;
    padding-bottom: 72px;
  }

  .hero-sub {
    max-width: none;
  }

  .hero-btns {
    align-items: flex-start;
  }

  .mq {
    --mq-duration: 18s;
  }

  .pull {
    max-width: none;
  }

  .pull-line {
    display: inline;
  }

  .pull-line + .pull-line::before {
    content: ' ';
  }

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

  .reform-grid,
  .method-steps,
  .method-timeline,
  .svc-grid,
  .caps-grid,
  .case-grid,
  .approach-grid,
  .adam-grid,
  .team-grid,
  .contact-grid,
  .who-bottom {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .reform-grid,
  .method-steps,
  .svc-grid,
  .caps-grid,
  .case-grid {
    background: transparent;
  }

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

  .case-results {
    grid-template-columns: 1fr;
  }

  .method-timeline {
    display: none;
  }

  .method-duration {
    display: block;
    margin: 24px -26px -34px;
  }

  .leadership-team {
    --leadership-divider-gap: 56px;
  }

  footer {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .sec {
    padding: 72px 20px;
  }

  .hero {
    --hero-image-position: center 18%;
    --hero-overlay-horizontal: linear-gradient(90deg, rgba(9, 9, 8, 0.56) 0%, rgba(9, 9, 8, 0.34) 58%, rgba(9, 9, 8, 0.48) 100%);
    --hero-overlay-vertical: linear-gradient(180deg, rgba(9, 9, 8, 0.24) 0%, rgba(9, 9, 8, 0.22) 28%, rgba(9, 9, 8, 0.68) 100%);
  }

  .hero-right {
    gap: 22px;
  }

  .hero-tag {
    display: none;
  }

  .mq {
    --mq-duration: 12s;
  }

  .stmt {
    padding: 56px 20px;
  }

  .stmt-future {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .stmt.stmt-image {
    min-height: min(540px, 82svh);
    padding: 0;
  }

  .stmt-operating-principle {
    --stmt-image-position: center 36%;
    min-height: min(760px, 92svh);
    margin-top: 48px;
  }

  .stmt-image-content {
    padding: 40px 20px;
  }

  .stmt-txt {
    font-size: clamp(56px, 15vw, 88px);
  }

  footer {
    padding: 28px 20px;
  }

  .ftr-copy {
    font-size: 11px;
    letter-spacing: 0.03em;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }

  .stat:last-child {
    border-bottom: none;
  }

  .who-grid {
    grid-template-columns: 1fr;
  }

  .hero-hed {
    font-size: clamp(54px, 18vw, 86px);
  }

  .hed {
    font-size: clamp(38px, 15vw, 60px);
  }

  .reform-card,
  .svc,
  .cap-block,
  .case,
  .method-step {
    padding: 30px 22px;
  }

  .timeline-cell {
    padding: 12px 16px;
  }

  .method-duration {
    margin: 20px -22px -30px;
  }

  .contact-grid,
  .approach-grid,
  .adam-grid,
  .team-grid,
  .who-bottom {
    gap: 36px;
  }

  .leadership-team {
    --leadership-divider-gap: 40px;
  }

  .leadership-team-hed {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .f-btn {
    width: 100%;
  }
}
