/* Wexolab standalone stylesheet: services/seo.html
   Canonical source: styles.css */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,500&display=swap");

:root {
  --ink: #080808;
  --ink-soft: #111111;
  --surface: #161616;
  --surface-2: #202020;
  --paper: #f5f3ed;
  --white: #ffffff;
  --copy: #b8b8b8;
  --muted: #747474;
  --line: rgba(255, 255, 255, 0.14);
  --paper-line: rgba(8, 8, 8, 0.16);
  --orange: #ff7900;
  --orange-dark: #c64e00;
  --font: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", "Segoe UI", Arial, sans-serif;
  --container: min(92vw, 1440px);
  --gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(96px, 12vw, 190px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button {
  border: 0;
}

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

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

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

.section--tight {
  padding-block: clamp(72px, 8vw, 120px);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 34px;
  color: currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.section--orange .section-kicker::before {
  background: var(--ink);
}

.display,
.headline-xl,
.headline-lg,
.headline-md {
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.display {
  max-width: 1200px;
  font-size: clamp(4rem, 9.4vw, 9.4rem);
  line-height: 0.87;
}

.headline-xl {
  max-width: 1180px;
  font-size: clamp(3.25rem, 7.2vw, 7.8rem);
  line-height: 0.9;
}

.headline-lg {
  max-width: 1000px;
  font-size: clamp(2.8rem, 5.7vw, 6.2rem);
  line-height: 0.93;
}

.headline-md {
  font-size: clamp(2.1rem, 3.7vw, 4.4rem);
  line-height: 0.98;
}

.accent {
  color: var(--orange);
}

.outline-word {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.72);
}

.lede {
  max-width: 720px;
  color: var(--copy);
  font-size: clamp(1.14rem, 1.5vw, 1.45rem);
  line-height: 1.5;
}

.section--paper .lede,
.section--orange .lede {
  color: rgba(8, 8, 8, 0.72);
}

.meta-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 700;
  transition: transform 300ms var(--ease), background 250ms ease, color 250ms ease;
}

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

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

.button--dark:hover {
  background: var(--white);
  color: var(--ink);
}

.button--ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--white);
}

.button--ghost:hover {
  background: var(--white);
  color: var(--ink);
}

.button__arrow {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.text-link span {
  transition: transform 250ms var(--ease);
}

.text-link:hover span {
  transform: translate(4px, -4px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 103;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  transition: padding 300ms var(--ease), background 300ms ease, border-color 300ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  width: var(--container);
  min-height: 60px;
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.wordmark {
  position: relative;
  z-index: 102;
  display: inline-flex;
  width: clamp(158px, 12vw, 190px);
  align-items: center;
  justify-self: start;
  line-height: 0;
}

.wordmark img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
}

.desktop-nav > a,
.nav-dropdown > button {
  position: relative;
  padding: 12px 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav > .nav-home {
  padding: 10px 16px;
  border: 1px solid rgba(255, 121, 0, 0.35);
  border-radius: 999px;
  background: rgba(255, 121, 0, 0.1);
  color: var(--orange);
}

.desktop-nav > .nav-home[aria-current="page"],
.desktop-nav > .nav-home:hover {
  background: var(--orange);
  color: var(--ink);
}

.desktop-nav > .nav-home::after {
  display: none;
}

.desktop-nav > a::after,
.nav-dropdown > button::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--orange);
  content: "";
  transition: transform 300ms var(--ease);
}

.desktop-nav > a:hover::after,
.desktop-nav > a[aria-current="page"]::after,
.nav-dropdown > button:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown > button svg {
  transition: transform 250ms var(--ease);
}

.nav-dropdown:hover > button svg,
.nav-dropdown:focus-within > button svg {
  transform: rotate(180deg);
}

.nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  width: min(680px, 80vw);
  padding: 18px;
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  background: rgba(18, 18, 18, 0.98);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  grid-template-columns: repeat(2, 1fr);
  transition: opacity 220ms ease, transform 300ms var(--ease), visibility 220ms;
}

.nav-dropdown:hover .nav-panel,
.nav-dropdown:focus-within .nav-panel,
.nav-dropdown.is-open .nav-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-panel a {
  padding: 13px 15px;
  color: #d0d0d0;
  font-size: 13px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  background: var(--orange);
  color: var(--ink);
}

.header-action {
  justify-self: end;
}

.header-action .button {
  min-height: 46px;
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 2px;
  background: var(--ink);
  content: "";
  transition: transform 250ms var(--ease), opacity 200ms ease;
}

.menu-toggle::before {
  top: 17px;
}

.menu-toggle span {
  top: 23px;
}

.menu-toggle::after {
  top: 29px;
}

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

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

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

.mobile-menu {
  position: fixed;
  z-index: 101;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  padding: 116px 5vw max(40px, env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-14px);
  background: var(--ink);
  transition: opacity 260ms ease, transform 420ms var(--ease), visibility 260ms;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu__main {
  display: grid;
  gap: 4px;
}

.mobile-menu__main > a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(2rem, 9vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.mobile-menu__services {
  display: grid;
  margin: 32px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mobile-menu__services a {
  padding: 12px 6px;
  color: var(--copy);
  font-size: 14px;
}

.mobile-menu__main > a,
.mobile-menu__services,
.mobile-menu > .button {
  opacity: 0;
  transform: translateY(16px);
}

.mobile-menu.is-open .mobile-menu__main > a,
.mobile-menu.is-open .mobile-menu__services,
.mobile-menu.is-open > .button {
  animation: menu-item-in 480ms var(--ease) both;
}

.mobile-menu.is-open .mobile-menu__main > a:nth-child(1) { animation-delay: 60ms; }
.mobile-menu.is-open .mobile-menu__main > a:nth-child(2) { animation-delay: 95ms; }
.mobile-menu.is-open .mobile-menu__main > a:nth-child(3) { animation-delay: 130ms; }
.mobile-menu.is-open .mobile-menu__main > a:nth-child(4) { animation-delay: 165ms; }
.mobile-menu.is-open .mobile-menu__main > a:nth-child(5) { animation-delay: 200ms; }
.mobile-menu.is-open .mobile-menu__main > a:nth-child(6) { animation-delay: 235ms; }
.mobile-menu.is-open .mobile-menu__services { animation-delay: 220ms; }
.mobile-menu.is-open > .button { animation-delay: 270ms; }

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

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  padding: clamp(150px, 17vh, 210px) 0 clamp(48px, 8vh, 88px);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 7.5vw 7.5vw;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  width: 55vw;
  height: 55vw;
  max-width: 860px;
  max-height: 860px;
  right: -16vw;
  top: -22vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 121, 0, 0.18), rgba(255, 121, 0, 0) 66%);
  content: "";
}

.hero__inner {
  position: relative;
  width: var(--container);
  margin-inline: auto;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 clamp(30px, 5vh, 64px);
  color: #d7d7d7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(255, 121, 0, 0.1);
  content: "";
}

.hero__line {
  display: block;
}

.hero__line--offset {
  padding-left: clamp(0px, 9vw, 150px);
}

.js .hero__eyebrow,
.js .hero__line,
.js .hero__bottom,
.js .page-hero .service-code,
.js .page-hero .display,
.js .page-hero__meta {
  opacity: 0;
  transform: translateY(28px);
}

.js .hero__line,
.js .page-hero .display {
  clip-path: inset(0 0 100% 0);
}

.js .hero__eyebrow,
.js .hero__line,
.js .hero__bottom,
.js .page-hero .service-code,
.js .page-hero .display,
.js .page-hero__meta,
.js .signal {
  transition:
    opacity 620ms ease,
    transform 820ms var(--ease),
    clip-path 900ms var(--ease),
    filter 820ms var(--ease);
}

.js .hero__line:nth-child(2) { transition-delay: 90ms; }
.js .hero__bottom { transition-delay: 210ms; }
.js .page-hero .display { transition-delay: 80ms; }
.js .page-hero__meta { transition-delay: 190ms; }

.js .signal {
  opacity: 0;
  filter: blur(8px);
}

.js body.is-ready .hero__eyebrow,
.js body.is-ready .hero__line,
.js body.is-ready .hero__bottom,
.js body.is-ready .page-hero .service-code,
.js body.is-ready .page-hero .display,
.js body.is-ready .page-hero__meta {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

.js body.is-ready .signal {
  opacity: var(--signal-opacity, 1);
  filter: blur(0);
}

.hero__bottom {
  display: grid;
  margin-top: clamp(46px, 8vh, 86px);
  padding-top: 30px;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr minmax(300px, 530px);
  align-items: end;
  gap: 40px;
}

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

.hero__copy {
  margin-bottom: 0;
  color: var(--copy);
  font-size: clamp(1rem, 1.35vw, 1.3rem);
}

.signal {
  --signal-opacity: 1;
  position: absolute;
  top: 24%;
  right: 3vw;
  display: grid;
  width: clamp(128px, 13vw, 220px);
  aspect-ratio: 1;
  place-items: center;
  pointer-events: none;
  transform: translate3d(calc(var(--pointer-x, 0) * 8px), calc(var(--pointer-y, 0) * 8px), 0);
  transition: transform 600ms var(--ease), opacity 620ms ease, filter 820ms var(--ease);
}

.js .signal {
  transition-delay: 300ms;
}

.signal__ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: spin 14s linear infinite;
}

.signal__ring::before,
.signal__ring::after {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.signal__ring::before {
  top: 14%;
  left: 13%;
}

.signal__ring::after {
  right: 4%;
  bottom: 33%;
}

.signal__core {
  display: grid;
  width: 62%;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 80px rgba(255, 121, 0, 0.33);
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 52px);
  transform: rotate(-45deg);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.capability-strip {
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-soft);
  contain: inline-size paint;
}

.capability-strip__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.capability-strip:hover .capability-strip__track,
.capability-strip:focus-within .capability-strip__track {
  animation-play-state: paused;
}

.capability-strip__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.capability-strip span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 24px 28px;
  color: #d3d3d3;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capability-strip span::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

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

/* Introduction */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.25fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: start;
}

.intro-grid__aside {
  position: sticky;
  top: 120px;
}

.intro-grid__body p {
  margin-bottom: 32px;
  font-size: clamp(1.7rem, 3vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.intro-grid__body p span {
  color: var(--orange-dark);
}

.intro-grid__note {
  max-width: 540px;
  color: rgba(8, 8, 8, 0.64);
  font-size: 17px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.6 !important;
}

/* Work */
.section-heading-row {
  display: flex;
  margin-bottom: clamp(52px, 7vw, 100px);
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.project-list {
  display: grid;
  gap: clamp(54px, 7vw, 110px);
}

.project-card {
  position: relative;
}

.project-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--surface);
}

.project-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 38%);
  content: "";
  pointer-events: none;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter 500ms ease;
}

.project-card:hover img {
  transform: scale(1.035);
}

.project-card__index {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.35);
  backdrop-filter: blur(10px);
  font-size: 12px;
}

.project-card__body {
  display: grid;
  padding-top: 25px;
  grid-template-columns: 1fr;
  gap: 30px;
}

.project-card__body h3 {
  margin-bottom: 8px;
  font-size: clamp(1.9rem, 3vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.project-card__body p {
  margin: 0;
  color: var(--copy);
}

.project-grid--editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(38px, 5vw, 80px) 24px;
}

.project-grid--editorial .project-card:nth-child(1) {
  grid-column: 1 / 13;
}

.project-grid--editorial .project-card:nth-child(2) {
  grid-column: 1 / 8;
}

.project-grid--editorial .project-card:nth-child(3) {
  grid-column: 8 / 13;
  margin-top: 16vw;
}

.project-grid--editorial .project-card:nth-child(2) .project-card__media,
.project-grid--editorial .project-card:nth-child(3) .project-card__media {
  aspect-ratio: 4 / 5;
}

/* Services */
.service-groups {
  display: grid;
  margin-top: clamp(70px, 9vw, 130px);
  border-top: 1px solid var(--paper-line);
  grid-template-columns: 1fr 1fr;
}

.service-group {
  padding: 34px clamp(24px, 4vw, 70px) 0 0;
}

.service-group + .service-group {
  padding-right: 0;
  padding-left: clamp(24px, 4vw, 70px);
  border-left: 1px solid var(--paper-line);
}

.service-group__title {
  display: flex;
  margin-bottom: 18px;
  align-items: center;
  justify-content: space-between;
  color: rgba(8, 8, 8, 0.52);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-row {
  display: grid;
  padding: 24px 0;
  border-bottom: 1px solid var(--paper-line);
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 12px;
  transition: padding 300ms var(--ease), color 200ms ease;
}

.service-row:hover {
  padding-left: 12px;
  color: var(--orange-dark);
}

.service-row__number {
  color: rgba(8, 8, 8, 0.45);
  font-size: 11px;
  font-weight: 700;
}

.service-row__name {
  font-size: clamp(1.35rem, 2.4vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.service-row__arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--paper-line);
  border-radius: 50%;
  transition: background 250ms ease, transform 300ms var(--ease);
}

.service-row:hover .service-row__arrow {
  transform: rotate(45deg);
  background: var(--orange);
  color: var(--ink);
}

/* Design + Growth statement */
.dual-engine {
  overflow: hidden;
}

.dual-engine__head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
}

.dual-engine__word {
  font-size: clamp(4.5rem, 13vw, 13.5rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.76;
  text-transform: uppercase;
}

.dual-engine__word:last-child {
  justify-self: end;
  color: var(--orange);
}

.dual-engine__plus {
  display: grid;
  width: clamp(70px, 9vw, 130px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--orange);
  font-size: clamp(2rem, 4vw, 5rem);
}

.dual-engine__body {
  display: grid;
  margin-top: clamp(70px, 10vw, 150px);
  padding-top: 34px;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr minmax(300px, 650px);
  gap: 40px;
}

.dual-engine__body p {
  margin: 0;
  color: var(--copy);
  font-size: clamp(1.35rem, 2.3vw, 2.65rem);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

/* Process */
.process-list {
  margin-top: clamp(70px, 9vw, 120px);
  border-top: 1px solid var(--paper-line);
}

.process-item {
  display: grid;
  padding: clamp(28px, 4vw, 50px) 0;
  border-bottom: 1px solid var(--paper-line);
  grid-template-columns: 90px minmax(240px, 0.8fr) minmax(280px, 1.2fr);
  gap: 30px;
}

.process-item__number {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.process-item h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3.3rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.process-item p {
  max-width: 570px;
  margin: 0;
  color: rgba(8, 8, 8, 0.64);
  font-size: 17px;
}

/* Keep service process-card copy legible on the dark hover state. */
section[aria-labelledby="process-title"] .process-item:hover h3 {
  color: #fff !important;
}

section[aria-labelledby="process-title"] .process-item:hover p {
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

/* Principles */
.principle-grid {
  display: grid;
  margin-top: clamp(60px, 8vw, 110px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.principle {
  min-height: 360px;
  padding: clamp(26px, 3vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle__number {
  display: block;
  margin-bottom: 90px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.principle h3 {
  margin-bottom: 20px;
  font-size: clamp(1.5rem, 2.2vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.principle p {
  margin: 0;
  color: var(--copy);
}

/* Insights */
.insight-grid {
  display: grid;
  margin-top: clamp(62px, 8vw, 110px);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--paper-line);
}

.insight-card {
  display: flex;
  min-height: 430px;
  padding: clamp(26px, 3vw, 44px);
  flex-direction: column;
  background: var(--paper);
  transition: background 300ms ease, color 300ms ease;
}

.insight-card:hover {
  background: var(--orange);
  color: var(--ink);
}

.insight-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.insight-card__index {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--paper-line);
  border-radius: 50%;
  font-size: 11px;
}

.insight-card h3 {
  margin: auto 0 22px;
  font-size: clamp(1.65rem, 2.6vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.insight-card p {
  margin: 0;
  color: rgba(8, 8, 8, 0.58);
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(450px, 1.3fr);
  gap: clamp(50px, 9vw, 150px);
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 28px 64px 28px 0;
  list-style: none;
  cursor: pointer;
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  font-weight: 550;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before,
.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 18px;
  height: 1px;
  background: var(--orange);
  content: "";
  transition: transform 280ms var(--ease);
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary::after {
  transform: rotate(0deg);
}

.faq-item__answer {
  max-width: 650px;
  padding: 0 60px 28px 0;
  color: var(--copy);
}

/* CTA and footer */
.closing-cta {
  overflow: hidden;
  padding-block: clamp(90px, 12vw, 180px);
  background: var(--orange);
  color: var(--ink);
}

.closing-cta__top {
  display: flex;
  margin-bottom: clamp(70px, 10vw, 145px);
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.closing-cta__badge {
  display: grid;
  width: clamp(90px, 12vw, 170px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(8, 8, 8, 0.3);
  border-radius: 50%;
  font-size: clamp(2rem, 4vw, 4.5rem);
  transform: rotate(-45deg);
}

.closing-cta .headline-xl {
  max-width: 1270px;
}

.closing-cta__bottom {
  display: flex;
  margin-top: clamp(55px, 8vw, 100px);
  padding-top: 28px;
  border-top: 1px solid rgba(8, 8, 8, 0.24);
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

/* Consistent compact closing CTA across every service page. */
body[data-service] .closing-cta {
  padding-block: clamp(54px, 5.2vw, 76px);
}

body[data-service] .closing-cta__top {
  margin-bottom: clamp(30px, 3.4vw, 46px);
  align-items: center;
}

body[data-service] .closing-cta__top .section-kicker {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

body[data-service] .closing-cta__top .section-kicker::before {
  background: var(--orange);
}

body[data-service] .closing-cta__badge {
  width: clamp(68px, 6.5vw, 92px);
  border: 0;
  background: #fff4e8;
  color: var(--ink);
  font-size: clamp(1.6rem, 2.5vw, 2.6rem);
  transform: none;
}

body[data-service] .closing-cta .headline-xl {
  max-width: 1100px;
  font-size: clamp(3rem, 5.8vw, 6rem);
  line-height: 0.91;
}

body[data-service] .closing-cta__bottom {
  margin-top: clamp(28px, 3.2vw, 44px);
  padding-top: clamp(18px, 1.8vw, 24px);
}

body[data-service] .closing-cta__bottom p {
  max-width: 440px;
  margin: 0;
  color: rgba(8, 8, 8, 0.7);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
}

body[data-service] .closing-cta .button--dark {
  min-width: 190px;
  min-height: 50px;
  justify-content: space-between;
}

.site-footer {
  position: relative;
  padding: clamp(28px, 4vw, 54px) 0 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 121, 0, 0.12), transparent 22%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--ink);
  background-size: auto, 88px 88px, 88px 88px, auto;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
}

.footer-cta {
  display: flex;
  min-height: 330px;
  padding: clamp(34px, 5vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 121, 0, 0.34), transparent 29%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.015));
}

.footer-cta__eyebrow {
  display: inline-flex;
  margin-bottom: clamp(44px, 6vw, 86px);
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-cta__eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.footer-cta h2 {
  margin: 0;
  font-size: clamp(2.9rem, 6.1vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.footer-cta h2 em {
  color: var(--orange);
  font-family: inherit;
  font-weight: 500;
}

.footer-cta > .button {
  flex: 0 0 auto;
  margin-bottom: 4px;
}

.footer-grid {
  display: grid;
  margin-top: 0;
  padding-bottom: 20px;
  grid-template-columns: minmax(280px, 1.25fr) repeat(3, minmax(150px, 0.75fr));
  gap: 14px;
}

.footer-intro,
.footer-column {
  padding: clamp(26px, 3vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.footer-intro .wordmark {
  width: min(224px, 100%);
  margin-bottom: 30px;
}

.footer-intro p {
  max-width: 380px;
  color: var(--copy);
}

.footer-contact {
  display: grid;
  max-width: 390px;
  margin-top: 28px;
  gap: 13px;
  font-style: normal;
}

.footer-contact a {
  display: grid;
  width: fit-content;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: #f2f2f2;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
  transition: color 180ms ease;
}

.footer-contact a > span:first-child {
  color: var(--orange);
  font-size: 17px;
  line-height: 1.2;
}

.footer-contact a:hover {
  color: var(--orange);
}

.footer-column h3 {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column h3::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 13px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.footer-column a:hover {
  color: var(--orange);
}

.footer-column--contact .footer-contact {
  margin-top: 0;
}

.footer-column--contact .footer-contact a {
  display: grid;
  margin: 0;
  color: #f2f2f2;
}

.footer-bottom {
  display: flex;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footer-bottom__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #62d48f;
  box-shadow: 0 0 0 5px rgba(98, 212, 143, 0.1);
}

.footer-back-to-top {
  position: fixed;
  z-index: 90;
  right: clamp(18px, 2.5vw, 38px);
  bottom: clamp(18px, 2.5vw, 38px);
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  visibility: hidden;
  transition: transform 220ms var(--ease), background 180ms ease, opacity 180ms ease, visibility 180ms ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.footer-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.footer-back-to-top svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-back-to-top:hover {
  transform: translateY(-5px);
  background: var(--white);
}

/* Inner pages */
.page-hero {
  position: relative;
  display: flex;
  min-height: 80svh;
  align-items: flex-end;
  padding: 180px 0 clamp(60px, 8vw, 110px);
  overflow: hidden;
}

.page-hero::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: min(58vw, 900px);
  height: 100%;
  background: radial-gradient(circle at 65% 35%, rgba(255, 121, 0, 0.2), transparent 42%), linear-gradient(135deg, transparent 49.7%, rgba(255, 255, 255, 0.05) 50%, transparent 50.3%);
  content: "";
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin-inline: auto;
}

.page-hero__meta {
  display: flex;
  margin-top: clamp(50px, 7vw, 100px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.page-hero__meta p {
  max-width: 610px;
  margin: 0;
  color: var(--copy);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}

.service-hero {
  min-height: 92svh;
}

.service-hero .display {
  max-width: 1320px;
}

.service-code {
  display: inline-flex;
  margin-bottom: 32px;
  align-items: center;
  gap: 12px;
  color: var(--copy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-code::before {
  width: 30px;
  height: 1px;
  background: var(--orange);
  content: "";
}

.service-intro {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(50px, 10vw, 170px);
}

.service-intro__body > p:first-child {
  margin-bottom: 42px;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.service-intro .meta-label {
  display: block;
}

.service-intro__mark {
  display: block;
  width: clamp(78px, 7vw, 104px);
  height: auto;
  margin: clamp(42px, 5vw, 72px) 0;
  object-fit: contain;
}

.service-intro__body > p:last-child {
  max-width: 660px;
  color: rgba(8, 8, 8, 0.62);
  font-size: 17px;
}

.service-overview {
  overflow: hidden;
}

.service-visual {
  margin-top: clamp(64px, 9vw, 140px);
}

.service-visual__figure {
  margin: 0;
}

.service-visual__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
  box-shadow: 0 34px 90px rgba(8, 8, 8, 0.16);
  isolation: isolate;
}

.service-visual__frame::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 121, 0, 0.2), transparent 28%),
    linear-gradient(to top, rgba(0, 0, 0, 0.24), transparent 35%);
  content: "";
  pointer-events: none;
}

.service-visual__frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.service-visual__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 700ms ease;
}

.service-visual__stamp {
  position: absolute;
  z-index: 2;
  top: clamp(16px, 2.4vw, 34px);
  left: clamp(16px, 2.4vw, 34px);
  display: inline-flex;
  min-height: 42px;
  padding: 0 16px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(8, 8, 8, 0.62);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  backdrop-filter: blur(12px);
}

.service-visual__caption {
  display: grid;
  padding: 18px 0 0;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  color: rgba(8, 8, 8, 0.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.service-visual__caption > span:first-child {
  color: var(--ink);
}

.service-visual__caption a {
  color: inherit;
  transition: color 200ms ease;
}

.service-visual__caption a:hover {
  color: var(--orange);
}

@media (hover: hover) {
  .service-visual__figure:hover .service-visual__image {
    transform: scale(1.025);
  }
}

.deliverable-grid {
  display: grid;
  margin-top: clamp(65px, 8vw, 110px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.deliverable-card {
  min-height: 340px;
  padding: clamp(28px, 4vw, 54px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.deliverable-card__number {
  display: block;
  margin-bottom: clamp(65px, 8vw, 110px);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.deliverable-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 2.4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.deliverable-card p {
  margin: 0;
  color: var(--copy);
}

.outcome-grid {
  display: grid;
  margin-top: clamp(60px, 8vw, 100px);
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.outcome-card {
  min-height: 320px;
  padding: clamp(26px, 3vw, 45px);
  background: var(--white);
  color: var(--ink);
}

.outcome-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 85px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  font-size: 19px;
}

.outcome-card h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.service-faq .faq-list {
  border-color: var(--paper-line);
}

.service-faq .faq-item {
  border-color: var(--paper-line);
}

.service-faq .faq-item__answer {
  color: rgba(8, 8, 8, 0.64);
}

/* About */
.manifesto {
  position: relative;
  overflow: hidden;
}

.manifesto__line {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(3rem, 8vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.manifesto__line:nth-child(even) {
  color: var(--orange);
  text-align: right;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(420px, 1.3fr);
  gap: clamp(50px, 10vw, 180px);
}

.about-story__copy p:first-child {
  font-size: clamp(1.8rem, 3.4vw, 3.9rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.about-story__copy p:not(:first-child) {
  max-width: 650px;
  color: rgba(8, 8, 8, 0.65);
  font-size: 17px;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(50px, 9vw, 150px);
}

.contact-details {
  position: sticky;
  top: 120px;
  align-self: start;
}

.contact-details h2 {
  margin-bottom: 30px;
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.contact-details p {
  color: rgba(8, 8, 8, 0.62);
}

.contact-details a {
  display: inline-block;
  margin-top: 22px;
  border-bottom: 1px solid var(--ink);
  font-weight: 700;
}

.project-form {
  display: grid;
  gap: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field {
  display: grid;
  gap: 10px;
}

.field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(8, 8, 8, 0.3);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
}

.field input,
.field select {
  min-height: 62px;
}

.field textarea {
  min-height: 150px;
  padding-top: 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange-dark);
  box-shadow: 0 1px 0 var(--orange-dark);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #315c22;
  font-weight: 700;
}

/* Utility */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 850ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

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

/* Responsive */
@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-action {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .signal {
    top: 21%;
    right: 2vw;
    --signal-opacity: 0.72;
  }

  .project-grid--editorial .project-card:nth-child(2),
  .project-grid--editorial .project-card:nth-child(3) {
    grid-column: span 6;
  }

  .project-grid--editorial .project-card:nth-child(3) {
    margin-top: 12vw;
  }

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

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

  .footer-intro {
    grid-column: 1 / 3;
  }

  .footer-column:last-child {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(90vw, 720px);
  }

  .hero {
    min-height: auto;
    padding-top: 155px;
  }

  .mobile-menu {
    min-height: 100dvh;
  }

  .hero__line--offset {
    padding-left: 0;
  }

  .signal {
    position: relative;
    top: auto;
    right: auto;
    width: 110px;
    margin: 35px 0 0 auto;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .hero__bottom,
  .intro-grid,
  .dual-engine__body,
  .faq-layout,
  .service-intro,
  .about-story,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .intro-grid__aside,
  .contact-details {
    position: static;
  }

  .project-grid--editorial {
    display: grid;
    grid-template-columns: 1fr;
  }

  .project-grid--editorial .project-card:nth-child(n) {
    grid-column: auto;
    margin-top: 0;
  }

  .project-grid--editorial .project-card:nth-child(2) .project-card__media,
  .project-grid--editorial .project-card:nth-child(3) .project-card__media {
    aspect-ratio: 16 / 10;
  }

  .service-groups {
    grid-template-columns: 1fr;
  }

  .service-group + .service-group {
    padding-left: 0;
    border-left: 0;
  }

  .dual-engine__head {
    display: flex;
    flex-wrap: wrap;
  }

  .dual-engine__word:last-child {
    margin-left: auto;
  }

  .process-item {
    grid-template-columns: 58px 1fr;
  }

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

  .insight-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .insight-card {
    min-height: 330px;
  }

  .principle-grid .principle:nth-child(3):last-child {
    grid-column: 1 / -1;
  }

  .page-hero {
    min-height: auto;
    padding-top: 150px;
  }

  .page-hero__meta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-intro {
    grid-column: 1 / 3;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-cta {
    min-height: 300px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-cta > .button {
    margin-top: auto;
  }
}

@media (max-width: 640px) {
  .service-visual {
    margin-top: 54px;
  }

  .service-visual__frame {
    aspect-ratio: 4 / 5;
    box-shadow: 0 24px 55px rgba(8, 8, 8, 0.14);
  }

  .service-visual__caption {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100vw - 38px);
    --section-space: 72px;
  }

  .display {
    font-size: clamp(2.75rem, 13vw, 3.7rem);
    line-height: 0.92;
  }

  .headline-xl {
    font-size: clamp(2.65rem, 12vw, 3.4rem);
  }

  .hero {
    padding-top: 128px;
    padding-bottom: 52px;
  }

  .hero__eyebrow {
    margin-bottom: 28px;
  }

  .signal {
    width: 102px;
    margin-top: 26px;
  }

  .hero__bottom {
    margin-top: 38px;
    padding-top: 22px;
    gap: 24px;
  }

  .page-hero {
    padding-top: 126px;
    padding-bottom: 64px;
  }

  .page-hero__meta {
    margin-top: 38px;
    padding-top: 20px;
    gap: 22px;
  }

  .hero__actions,
  .hero__actions .button {
    width: 100%;
  }

  .project-card__body {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 28px minmax(0, 1fr) 36px;
    gap: 10px;
  }

  .service-row__arrow {
    width: 36px;
    height: 36px;
  }

  .dual-engine__head {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .dual-engine__word:last-child {
    grid-column: 1 / 3;
    justify-self: end;
  }

  .dual-engine__plus {
    width: 62px;
  }

  .process-item {
    grid-template-columns: 1fr;
  }

  .process-item p {
    grid-column: auto;
  }

  .principle-grid,
  .deliverable-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .principle-grid .principle:nth-child(3):last-child {
    grid-column: auto;
  }

  .principle,
  .deliverable-card,
  .outcome-card,
  .insight-card {
    min-height: 0;
  }

  .principle__number,
  .deliverable-card__number {
    margin-bottom: 44px;
  }

  .outcome-card__icon {
    margin-bottom: 48px;
  }

  .section-heading-row,
  .closing-cta__top,
  .closing-cta__bottom,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .closing-cta__badge {
    width: 92px;
  }

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

  .footer-intro,
  .footer-column:last-child {
    grid-column: auto;
  }

  .mobile-menu__services {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 20px;
  }

  .footer-grid {
    padding-bottom: 20px;
  }

  .footer-cta {
    min-height: 360px;
    padding: 28px;
    border-radius: 22px;
  }

  .footer-cta__eyebrow {
    margin-bottom: 46px;
  }

  .footer-cta h2 {
    font-size: clamp(2.7rem, 12vw, 3.8rem);
  }

  .footer-cta > .button {
    width: 100%;
  }

  .footer-intro,
  .footer-column {
    padding: 26px;
    border-radius: 18px;
  }
}

@media (max-width: 360px) {
  :root {
    --container: calc(100vw - 32px);
  }

  .wordmark {
    width: 146px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .menu-toggle::before {
    top: 15px;
  }

  .menu-toggle span {
    top: 21px;
  }

  .menu-toggle::after {
    top: 27px;
  }

  .service-row {
    grid-template-columns: 26px minmax(0, 1fr) 36px;
    gap: 8px;
  }

  .service-row__name {
    font-size: 1.2rem;
    overflow-wrap: anywhere;
  }
}

@media (hover: none) {
  .button:active,
  .menu-toggle:active,
  .service-row:active .service-row__arrow {
    transform: scale(0.97);
  }

  .project-card:active img {
    transform: scale(1.018);
  }
}

@media (max-width: 560px) {
  body[data-service] .closing-cta {
    padding-block: 42px;
  }

  body[data-service] .closing-cta__top {
    margin-bottom: 26px;
    align-items: center;
    flex-direction: row;
  }

  body[data-service] .closing-cta__badge {
    width: 56px;
    flex: 0 0 56px;
  }

  body[data-service] .closing-cta .headline-xl {
    font-size: clamp(2.55rem, 11.5vw, 3.65rem);
  }

  body[data-service] .closing-cta__bottom {
    margin-top: 25px;
    gap: 22px;
  }

  body[data-service] .closing-cta .button--dark {
    width: 100%;
  }
}

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

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

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

  .js .hero__eyebrow,
  .js .hero__line,
  .js .hero__bottom,
  .js .page-hero .service-code,
  .js .page-hero .display,
  .js .page-hero__meta,
  .js .signal {
    opacity: 1;
    transform: none;
    clip-path: none;
    filter: none;
  }
}


/* Page-specific source: page-overrides/seo.css */
/* SEO: search pathways, evidence and compounding organic growth. */
.service-hero{min-height:94svh;padding-bottom:clamp(62px,7vw,96px);overflow:hidden;background:radial-gradient(circle at 84% 27%,rgba(255,121,0,.23),transparent 25%),linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),#080808;background-size:auto,80px 80px,80px 80px,auto}.service-hero::before{top:12%;right:3vw;width:min(38vw,560px);height:auto;aspect-ratio:1;border:1px solid rgba(255,255,255,.14);border-radius:50%;background:repeating-radial-gradient(circle,transparent 0 38px,rgba(255,255,255,.055) 39px 40px);box-shadow:0 0 90px rgba(255,121,0,.1)}.service-hero::after{position:absolute;top:22%;right:13vw;width:min(13vw,190px);aspect-ratio:1;border:1px solid rgba(255,121,0,.45);border-radius:50%;background:radial-gradient(circle,var(--orange) 0 8%,transparent 9%),conic-gradient(transparent 0 65%,rgba(255,121,0,.32) 66% 69%,transparent 70%);content:"";box-shadow:0 0 70px rgba(255,121,0,.3)}.service-hero .page-hero__inner{z-index:1}.service-hero .service-code{padding:10px 14px;border:1px solid rgba(255,121,0,.38);border-radius:999px;background:rgba(255,121,0,.1);color:var(--orange)}.service-hero .display{max-width:1160px;font-size:clamp(4rem,8vw,8.4rem);line-height:.88}.service-hero__actions{display:flex;margin-top:clamp(30px,4vw,48px);flex-wrap:wrap;gap:12px}
.seo-signals{display:grid;overflow:hidden;border-block:1px solid rgba(255,121,0,.25);background:#0b0b0b;grid-template-columns:repeat(4,1fr)}.seo-signals>div{display:flex;min-height:68px;padding:0 clamp(16px,2.7vw,40px);border-right:1px solid rgba(255,255,255,.1);align-items:center;justify-content:center;gap:12px;color:rgba(255,255,255,.72);font-size:10px;font-weight:750;letter-spacing:.11em;text-transform:uppercase}.seo-signals>div:last-child{border-right:0}.seo-signals span{color:var(--orange)}
.service-overview{padding-block:clamp(82px,9vw,140px);background:radial-gradient(circle at 4% 8%,rgba(255,121,0,.13),transparent 24%),#f4efe7}.service-intro{padding:clamp(12px,1.5vw,20px);border:1px solid rgba(8,8,8,.13);border-radius:30px;background:rgba(255,255,255,.76);box-shadow:0 28px 70px rgba(55,30,5,.08);grid-template-columns:minmax(260px,.62fr) minmax(0,1.38fr);gap:clamp(30px,5vw,76px)}.service-intro>div:first-child{display:flex;min-height:360px;padding:clamp(28px,3vw,44px);border-radius:20px;flex-direction:column;justify-content:space-between;background:radial-gradient(circle at 100% 0%,rgba(255,121,0,.3),transparent 38%),var(--ink);color:#fff}.service-intro>div:first-child .meta-label{color:rgba(255,255,255,.5)}.service-intro__mark{margin:auto 0}.service-intro__body{padding:clamp(24px,3vw,48px) clamp(10px,2vw,28px) 24px 0}.service-intro__body>p:first-child{font-size:clamp(2rem,3.35vw,3.75rem);line-height:1.04}.service-intro__body>p:last-child{padding-top:24px;border-top:1px solid rgba(8,8,8,.14)}
.service-visual{margin-top:clamp(40px,5vw,72px)}.service-visual__figure{padding:10px;border:1px solid rgba(8,8,8,.13);border-radius:30px;background:rgba(255,255,255,.72);box-shadow:0 30px 75px rgba(54,29,4,.11)}.service-visual__frame{border-radius:20px;box-shadow:none}.service-visual__stamp{border-radius:999px}.service-visual__overlay{position:absolute;z-index:2;right:clamp(16px,2.4vw,34px);bottom:clamp(16px,2.4vw,34px);display:flex;flex-wrap:wrap;justify-content:flex-end;gap:8px}.service-visual__overlay span{padding:9px 12px;border:1px solid rgba(255,255,255,.22);border-radius:999px;background:rgba(8,8,8,.7);color:#fff;font-size:9px;font-weight:750;letter-spacing:.1em;text-transform:uppercase;backdrop-filter:blur(12px)}
section[aria-labelledby="deliverables-title"],section[aria-labelledby="outcomes-title"]{overflow:hidden;background:radial-gradient(circle at 94% 5%,rgba(255,121,0,.14),transparent 23%),#080808;color:#fff}section[aria-labelledby="deliverables-title"] .section-heading-row{padding-bottom:clamp(30px,4vw,50px);border-bottom:1px solid rgba(255,255,255,.13)}.deliverable-grid{margin-top:0;border:0;gap:clamp(14px,1.5vw,22px)}.deliverable-card{display:flex;min-height:390px;padding:clamp(28px,3vw,44px);border:1px solid rgba(255,255,255,.12);border-radius:24px;flex-direction:column;background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.018));transition:transform 400ms var(--ease),border-color 280ms ease}.deliverable-card:nth-child(1),.deliverable-card:nth-child(3){border-color:var(--orange);background:var(--orange);color:var(--ink)}.deliverable-card:hover,.outcome-card:hover{transform:translateY(-8px);border-color:var(--orange)}.deliverable-card__number{display:grid;width:48px;aspect-ratio:1;margin:0;place-items:center;border-radius:50%;background:var(--orange);color:var(--ink)}.deliverable-card:nth-child(1) .deliverable-card__number,.deliverable-card:nth-child(3) .deliverable-card__number{background:var(--ink);color:#fff}.deliverable-card h3{margin:auto 0 18px}.deliverable-card p{padding-top:18px;border-top:1px solid rgba(255,255,255,.14)}.deliverable-card:nth-child(1) p,.deliverable-card:nth-child(3) p{border-color:rgba(8,8,8,.18);color:rgba(8,8,8,.65)}
section[aria-labelledby="process-title"]{background:radial-gradient(circle at 3% 4%,rgba(255,121,0,.1),transparent 23%),#fff0e1}section[aria-labelledby="process-title"] .section-heading-row{padding-bottom:clamp(30px,4vw,50px);border-bottom:1px solid rgba(8,8,8,.14)}section[aria-labelledby="process-title"] .process-list{display:grid;margin-top:0;border:0;grid-template-columns:repeat(4,1fr);gap:clamp(12px,1.4vw,20px)}section[aria-labelledby="process-title"] .process-item{display:flex;min-height:330px;padding:clamp(24px,2.5vw,36px);border:1px solid rgba(8,8,8,.13);border-radius:24px;flex-direction:column;background:rgba(255,250,244,.82);gap:0;transition:transform 380ms var(--ease),background 280ms ease,color 280ms ease}section[aria-labelledby="process-title"] .process-item:hover{transform:translateY(-7px);background:var(--ink);color:#fff}section[aria-labelledby="process-title"] .process-item:hover h3{color:#fff}section[aria-labelledby="process-title"] .process-item:hover p{color:rgba(255,255,255,.78);border-color:rgba(255,255,255,.2)}section[aria-labelledby="process-title"] .process-item__number{display:grid;width:46px;aspect-ratio:1;place-items:center;border-radius:50%;background:var(--orange);color:var(--ink)}section[aria-labelledby="process-title"] .process-item h3{margin:auto 0 20px}section[aria-labelledby="process-title"] .process-item p{padding-top:18px;border-top:1px solid rgba(8,8,8,.14)}
.outcome-grid{gap:clamp(14px,1.6vw,22px)}.outcome-card{min-height:360px;border:1px solid rgba(255,255,255,.14);border-radius:24px;background:linear-gradient(145deg,#1b1b1b,#0d0d0d);color:#fff;transition:transform 400ms var(--ease),border-color 280ms ease}.outcome-card h3{color:inherit}.outcome-card .meta-label{color:rgba(255,255,255,.5)}.outcome-card:nth-child(2){border-color:var(--orange);background:var(--orange);color:var(--ink)}.outcome-card:nth-child(2) .meta-label{color:rgba(8,8,8,.58)}.outcome-card:nth-child(2) .outcome-card__icon{background:var(--ink);color:#fff}.service-faq{background:#f4efe7}.service-faq .faq-layout>div:first-child{padding:clamp(26px,3vw,42px);border:1px solid rgba(8,8,8,.13);border-radius:24px;background:#fff0e1}.service-faq .faq-list{display:grid;border:0;gap:12px}.service-faq .faq-item{overflow:hidden;border:1px solid rgba(8,8,8,.13);border-radius:16px;background:rgba(255,255,255,.76)}.closing-cta{background:linear-gradient(rgba(8,8,8,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(8,8,8,.05) 1px,transparent 1px),var(--orange);background-size:100px 100px}
@media(max-width:980px){.seo-signals{grid-template-columns:repeat(2,1fr)}.seo-signals>div:nth-child(2){border-right:0}.seo-signals>div:nth-child(-n+2){border-bottom:1px solid rgba(255,255,255,.1)}.service-intro{grid-template-columns:1fr}.service-intro>div:first-child{min-height:250px}section[aria-labelledby="process-title"] .process-list{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.service-hero{min-height:auto;padding-top:132px;padding-bottom:64px;background-size:auto,58px 58px,58px 58px,auto}.service-hero::before{right:-27vw;width:64vw;opacity:.45}.service-hero::after{display:none}.service-hero .display{font-size:clamp(3rem,13.2vw,4.3rem)}.service-hero__actions,.service-hero__actions .button{width:100%}.seo-signals>div{min-height:58px;padding-inline:8px;gap:7px;font-size:8.5px}.service-overview,section[aria-labelledby="deliverables-title"],section[aria-labelledby="process-title"],section[aria-labelledby="outcomes-title"],.service-faq{padding-block:70px}.service-intro,.service-visual__figure{padding:8px;border-radius:22px}.service-intro>div:first-child{min-height:250px;padding:24px;border-radius:16px}.service-intro__mark{width:72px}.service-intro__body{padding:24px 14px 18px}.service-intro__body>p:first-child{font-size:clamp(1.9rem,9vw,2.55rem)}.service-visual__frame{border-radius:16px}.service-visual__overlay{display:none}.deliverable-grid,section[aria-labelledby="process-title"] .process-list,.outcome-grid{grid-template-columns:1fr}.deliverable-card,section[aria-labelledby="process-title"] .process-item,.outcome-card{min-height:290px;border-radius:20px}}
@media(prefers-reduced-motion:reduce){.deliverable-card,section[aria-labelledby="process-title"] .process-item,.outcome-card{transition:none}}
