.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 9rem 0 8rem;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.hero-copy {
  max-width: 800px;
}
.hero h1 { max-width: 780px; }
.hero h1 span { display: block; }
.hero h1 em { color: var(--gold-400); font-style: normal; }
.hero-intro {
  max-width: 650px;
  margin-top: 2rem;
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  line-height: 1.68;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.5rem; }
.hero-note {
  max-width: 560px;
  margin: 1.35rem 0 0;
  color: var(--stone-300);
  font-size: .82rem;
}

/* The opening establishes reading order without turning the hero into a showreel. */
.js .hero-copy > * {
  opacity: 0;
  transform: translateY(10px);
}
.js .hero.is-hero-ready .hero-copy .eyebrow,
.js .hero.is-hero-ready .hero-copy h1 {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}
.js .hero.is-hero-ready .hero-copy .hero-intro {
  opacity: 1;
  transform: none;
  transition: opacity 700ms 200ms ease, transform 700ms 200ms cubic-bezier(.2,.7,.2,1);
}
.js .hero.is-hero-ready .hero-copy .hero-actions {
  opacity: 1;
  transform: none;
  transition: opacity 650ms 410ms ease, transform 650ms 410ms cubic-bezier(.2,.7,.2,1);
}
.js .hero.is-hero-ready .hero-copy .hero-note {
  opacity: 1;
  transform: none;
  transition: opacity 600ms 540ms ease, transform 600ms 540ms cubic-bezier(.2,.7,.2,1);
}

.hero-actions .button:hover { transform: none; }
.hero-actions .button-primary:hover {
  background: #ebc47f;
  box-shadow: 0 10px 28px rgba(214,161,75,.16);
}
.hero-actions .button-secondary:hover {
  border-color: rgba(226,185,111,.36);
  background: rgba(226,185,111,.07);
}

.hero-mark-panel {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
  border-radius: 40px;
  perspective: 1000px;
  overflow: hidden;
  background: linear-gradient(155deg, rgba(255,255,255,.052), rgba(255,255,255,.012) 62%);
  box-shadow: 0 38px 100px rgba(0,0,0,.32), inset 0 1px rgba(255,255,255,.035);
}
.hero-mark-panel::before {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(214,161,75,.055);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(214,161,75,.018),
    0 0 0 96px rgba(214,161,75,.012);
}

/* Homepage V3: progress moves around a stable central relationship. */
.hero-emblem-panel::before {
  inset: 1%;
  border: 0;
  background: radial-gradient(circle, rgba(214,161,75,.075), rgba(214,161,75,.018) 42%, transparent 71%);
  box-shadow: none;
  filter: blur(9px);
}

/* The outer limestone backing gives the emblem the weight of a crafted mount. */
.hero-emblem-panel::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: min(110%, 610px);
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 2px;
  background:
    radial-gradient(ellipse at 18% 16%, rgba(255,255,255,.38), transparent 27%),
    radial-gradient(ellipse at 79% 74%, rgba(99,78,51,.15), transparent 34%),
    radial-gradient(ellipse at 56% 39%, rgba(160,140,107,.13), transparent 46%),
    radial-gradient(ellipse at 31% 68%, rgba(255,255,255,.13), transparent 32%),
    radial-gradient(circle at 28% 34%, rgba(81,64,42,.18) 0 .85px, rgba(255,255,255,.13) 1.05px 1.55px, transparent 1.9px),
    radial-gradient(circle at 72% 61%, rgba(88,69,45,.15) 0 .7px, transparent 1.5px),
    radial-gradient(circle at 44% 78%, rgba(255,255,255,.22) 0 .7px, transparent 1.4px),
    linear-gradient(138deg, #e1dbcf 0%, #d0c5b4 48%, #b9aa93 100%);
  background-size: auto, auto, auto, auto, 71px 67px, 109px 101px, 137px 127px, auto;
  background-position: center, center, center, center, 5px 9px, 31px 23px, 11px 47px, center;
  box-shadow:
    0 11px 0 #9a8b74,
    0 15px 0 #746754,
    0 19px 7px rgba(45,35,23,.34),
    0 38px 62px rgba(0,0,0,.34),
    inset 0 1px rgba(255,255,255,.62),
    inset 14px 10px 26px rgba(255,255,255,.15),
    inset -18px -26px 38px rgba(83,65,42,.15);
  filter: saturate(.69) contrast(1.035);
  opacity: .96;
  transform: translate(-50%, -50%) rotate(-.7deg);
}

/* The mount arrives first: a quiet placement rather than a decorative reveal. */
.js .hero-emblem-panel::after {
  opacity: 0;
  transform: translate(-50%, calc(-50% - 12px)) rotate(-.7deg) scale(.985);
  transition:
    opacity 760ms cubic-bezier(.22,.61,.36,1),
    transform 920ms cubic-bezier(.22,.61,.36,1);
}

.js .hero-emblem-panel.is-mount-revealed::after {
  opacity: .96;
  transform: translate(-50%, -50%) rotate(-.7deg) scale(1);
}

/* A raised inset face makes the limestone read as an intentional mount. */
.hero-emblem-mount {
  position: absolute;
  z-index: 1;
  width: min(110%, 610px);
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-.7deg);
}

.hero-emblem-mount::before {
  content: "";
  position: absolute;
  inset: 4.5%;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 1px;
  background:
    radial-gradient(ellipse at 20% 14%, rgba(255,255,255,.46), transparent 30%),
    radial-gradient(ellipse at 76% 78%, rgba(111,88,56,.11), transparent 38%),
    radial-gradient(circle at 22% 36%, rgba(94,75,49,.15) 0 .7px, transparent 1.45px),
    radial-gradient(circle at 70% 63%, rgba(255,255,255,.24) 0 .65px, transparent 1.35px),
    linear-gradient(142deg, #eee9df 0%, #ded6c9 52%, #cfc3b1 100%);
  background-size: auto, auto, 83px 79px, 121px 113px, auto;
  box-shadow:
    0 5px 0 rgba(151,137,116,.9),
    0 10px 18px rgba(45,35,23,.28),
    inset 0 1px rgba(255,255,255,.78),
    inset 9px 8px 20px rgba(255,255,255,.13),
    inset -14px -18px 30px rgba(84,66,43,.11);
  filter: saturate(.68) contrast(1.025);
}

.mount-pin {
  position: absolute;
  z-index: 2;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff1bf 0 10%, #ddb971 26%, #a87931 68%, #6d4518 100%);
  box-shadow: 0 1px 3px rgba(39,27,13,.42), 0 0 0 1px rgba(255,234,182,.2);
  opacity: .72;
}
.mount-pin--tl { top: 7.4%; left: 7.4%; }
.mount-pin--tr { top: 7.4%; right: 7.4%; }
.mount-pin--bl { bottom: 7.4%; left: 7.4%; }
.mount-pin--br { right: 7.4%; bottom: 7.4%; }

.js .hero-emblem-mount {
  opacity: 0;
  transform: translate(-50%, calc(-50% - 12px)) rotate(-.7deg) scale(.985);
  transition:
    opacity 760ms cubic-bezier(.22,.61,.36,1),
    transform 920ms cubic-bezier(.22,.61,.36,1);
}

.js .hero-emblem-panel.is-mount-revealed .hero-emblem-mount {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-.7deg) scale(1);
}

.js .hero-emblem-panel.is-mount-revealed .mount-pin {
  animation: mount-pin-catch 620ms 620ms both;
}

@keyframes mount-pin-catch {
  0% { opacity: .35; filter: brightness(.8); }
  55% { opacity: 1; filter: brightness(1.45); }
  100% { opacity: .72; filter: brightness(1); }
}

.hero-mark-panel.hero-emblem-panel {
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.hero-emblem-stage {
  position: relative;
  z-index: 2;
  width: min(100%, 550px);
  aspect-ratio: 1;
}

@media (max-width: 720px) {
  .hero-emblem-panel::after,
  .hero-emblem-mount {
    width: min(106%, 410px);
  }
}

.three-mark {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.three-mark-canvas {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 12px 9px rgba(57,43,24,.24));
}

.hero-emblem {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Prevent the static fallback from flashing before the 3D mark is ready. */
.js .three-mark:not(.is-three-ready):not(.has-three-error) ~ .hero-emblem .hero-emblem-track,
.js .three-mark:not(.is-three-ready):not(.has-three-error) ~ .hero-emblem .hero-emblem-progress,
.js .three-mark:not(.is-three-ready):not(.has-three-error) ~ .hero-emblem .hero-emblem-connection {
  opacity: 0;
}

/* Once WebGL is ready, the SVG retains only the traveller and narrative points. */
.three-mark.is-three-ready ~ .hero-emblem .hero-emblem-track,
.three-mark.is-three-ready ~ .hero-emblem .hero-emblem-progress,
.three-mark.is-three-ready ~ .hero-emblem .hero-emblem-connection {
  opacity: 0;
}

.hero-emblem-track,
.hero-emblem-progress {
  fill: none;
  stroke-width: 4;
}

.hero-emblem-track { stroke: rgba(159,116,48,.16); }

.hero-emblem-stage.is-sequencing .hero-emblem-track {
  opacity: 0;
}

.hero-emblem-progress {
  stroke: url(#heroRingGold);
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  opacity: .9;
  transform: rotate(135deg);
  transform-origin: 220px 220px;
  filter: drop-shadow(0 0 4px rgba(214,161,75,.1));
}

.hero-emblem-pillar circle { fill: var(--gold-400); }

.hero-emblem-pillar {
  display: none;
}

.hero-emblem-stage.is-sequencing .hero-emblem-pillar {
  opacity: 0;
}

.hero-emblem-stage.is-sequencing .hero-emblem-pillar.is-revealed {
  opacity: 1;
}

.hero-emblem-traveller,
.hero-emblem-traveller-glow {
  display: none;
  pointer-events: none;
}

.hero-emblem-traveller {
  fill: #e0bd76;
  filter: drop-shadow(0 0 4px rgba(224,189,118,.55));
}

.hero-emblem-traveller-glow {
  fill: rgba(224,189,118,.08);
  filter: drop-shadow(0 0 7px rgba(224,189,118,.22));
}

.hero-emblem-stage.is-sequencing.is-orbiting .hero-emblem-traveller,
.hero-emblem-stage.is-sequencing.is-orbiting .hero-emblem-traveller-glow {
  opacity: .72;
  transition: opacity 220ms ease;
}

.hero-emblem-labels {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}

/* Labels remain hidden until the emblem sequence deliberately reveals them. */
.js .hero-emblem-stage:not(.is-sequencing) .hero-emblem-label,
.js .hero-emblem-stage:not(.is-sequencing) .hero-emblem-caption,
.js .hero-emblem-stage:not(.is-sequencing) .hero-emblem-pillar {
  opacity: 0;
}

.hero-emblem-label {
  position: absolute;
  width: max-content;
  color: #07563f;
  background: none;
  -webkit-text-fill-color: currentColor;
  font-family: var(--font-body);
  font-size: clamp(.8rem, 1.1vw, .98rem);
  font-weight: 850;
  letter-spacing: .145em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 1;
  translate: 0 0;
  filter:
    drop-shadow(0 1px 0 rgba(255,255,255,.42))
    drop-shadow(0 2px 2px rgba(3,42,31,.18));
  transition:
    opacity 460ms ease,
    translate 620ms cubic-bezier(.22,.61,.36,1);
}

.hero-emblem-label--clarity {
  top: auto;
  bottom: 5.5%;
  left: 1%;
}

.hero-emblem-label--confidence {
  top: auto;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
}

.hero-emblem-label--momentum {
  top: auto;
  right: 4%;
  bottom: 5.5%;
}

/* The complete Tandem Approach now lives on its dedicated page. */
#tandem-approach[hidden],
#offer + .living-connector {
  display: none !important;
}

.hero-emblem-bridge,
.hero-emblem-highlight {
  fill: none;
  stroke-linecap: round;
}

.hero-emblem-bridge {
  stroke: url(#heroBridgeGold);
  stroke-width: 11;
}

.hero-emblem-highlight {
  stroke: rgba(255,227,176,.34);
  stroke-width: 2.1;
}

.hero-emblem-node--moss {
  fill: url(#heroMossNode);
  filter:
    drop-shadow(0 0 5px rgba(75,190,178,.14))
    drop-shadow(0 4px 7px rgba(0,0,0,.2));
}

.hero-emblem-node--ivory {
  fill: url(#heroIvoryNode);
}

.hero-emblem-caption {
  position: absolute;
  z-index: 3;
  top: 3.5%;
  left: 50%;
  bottom: auto;
  width: max-content;
  margin: 0;
  color: var(--gold-400);
  font-family: var(--font-body);
  font-size: clamp(.68rem, 1vw, .82rem);
  font-weight: 600;
  letter-spacing: .2em;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.42));
}

.hero-emblem-stage.is-sequencing .hero-emblem-label,
.hero-emblem-stage.is-sequencing .hero-emblem-caption {
  opacity: 0;
}

.hero-emblem-stage.is-sequencing .hero-emblem-label {
  translate: 0 -10px;
}

.hero-emblem-stage.is-sequencing .hero-emblem-label.is-revealed {
  opacity: 1;
  translate: 0 0;
}

.hero-emblem-stage.is-sequencing .hero-emblem-caption.is-resolving {
  animation: hero-emblem-caption-resolve 820ms ease-out both;
}

.hero-emblem-stage.is-resting .hero-emblem-traveller,
.hero-emblem-stage.is-resting .hero-emblem-traveller-glow {
  opacity: 0;
  transition: opacity 360ms ease;
}

@keyframes hero-emblem-caption-resolve {
  0% { opacity: 0; }
  22% { opacity: .2; }
  48% { opacity: .45; }
  72% { opacity: .7; }
  100% { opacity: 1; }
}
.construction-grid {
  position: absolute;
  inset: 7%;
  opacity: .14;
  background:
    linear-gradient(rgba(214,161,75,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214,161,75,.11) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle, #000 0 56%, transparent 74%);
}

.hero-emblem-panel .construction-grid {
  inset: 3%;
  opacity: .045;
  mask-image: radial-gradient(circle, #000 0 52%, transparent 76%);
}
.mark-stage {
  position: relative;
  z-index: 2;
  width: min(74%, 420px);
  aspect-ratio: 1;
}
@media (min-width: 901px) {
  .hero-mark-panel { transform: translateY(-22px); }
  .hero-mark-panel .mark-stage { transform: translateY(-14px); }
  .hero-mark-panel .hero-emblem-stage { transform: translate(0, -2px); }
}
.three-mark-canvas,
.hero-mark-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.three-mark-canvas { opacity: 0; transition: opacity .6s ease; }
.three-mark.is-three-ready .three-mark-canvas { opacity: 1; }
.hero-mark-fallback {
  object-fit: contain;
  padding: 8%;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.22));
  transition: opacity .45s ease;
}
.mark-stage.is-three-ready .three-mark-canvas { opacity: 1; }
.mark-stage.is-three-ready .hero-mark-fallback { opacity: 0; }
.mark-status {
  position: absolute;
  left: 50%;
  bottom: 2%;
  margin: 0;
  color: var(--stone-300);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.mark-stage.is-three-ready .mark-status,
.mark-stage.has-three-error .mark-status { opacity: 0; }

.panel-sequence {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .8rem;
  color: rgba(244, 239, 229, .92);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .085em;
  text-transform: uppercase;
}
.panel-sequence i {
  width: 34px;
  height: 1px;
  background: var(--line);
}
.js .hero-mark-panel .panel-sequence span,
.js .hero-mark-panel .panel-sequence i {
  opacity: 0;
  transition: opacity 320ms ease;
}
.js .hero-mark-panel.has-ring .panel-sequence span:nth-of-type(1),
.js .hero-mark-panel.has-bridge .panel-sequence i:nth-of-type(1),
.js .hero-mark-panel.has-bridge .panel-sequence span:nth-of-type(2),
.js .hero-mark-panel.has-momentum .panel-sequence i:nth-of-type(2),
.js .hero-mark-panel.has-momentum .panel-sequence span:nth-of-type(3) { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .js .hero-emblem-panel::after {
    opacity: .96;
    transform: translate(-50%, -50%) rotate(-.7deg);
    transition: none;
  }

  .js .hero-emblem-mount {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-.7deg);
    transition: none;
  }

  .js .hero-emblem-panel .mount-pin { animation: none; }

  .js .hero-copy > *,
  .js .hero-mark-panel .panel-sequence span,
  .js .hero-mark-panel .panel-sequence i {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js .hero-emblem-progress {
    stroke-dashoffset: 0;
    animation: none;
  }

  .js .hero-emblem-pillar {
    opacity: 1;
    transition: none;
    animation: none;
  }

  .js .hero-emblem-label {
    opacity: 1;
    transition: none;
    animation: none;
  }

  .js .hero-emblem-caption {
    opacity: 1;
    animation: none;
  }

  .js .hero-emblem-traveller,
  .js .hero-emblem-traveller-glow {
    opacity: 0;
  }
}

.reality {
  padding-block: clamp(9rem, 14vw, 13rem);
}
.reality-layout {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) 80px minmax(280px,.75fr);
  gap: clamp(2rem,5vw,5rem);
  align-items: center;
}
.reality h2 {
  max-width: 780px;
  font-size: clamp(2.65rem, 4.8vw, 5.3rem);
  line-height: 1.06;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.reality-copy {
  grid-column: 3;
  max-width: 520px;
  padding-left: clamp(1.5rem, 3vw, 2.75rem);
  border-left: 1px solid rgba(214,161,75,.2);
  color: var(--stone-200);
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}
.reality-copy p:first-child {
  color: var(--ivory-100);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

[data-text-reveal] .text-reveal-heading,
[data-text-reveal] .text-reveal-support {
  opacity: 1;
  transform: none;
}
[data-text-reveal] {
  --text-reveal-duration: 720ms;
  --text-reveal-support-delay: 150ms;
}
[data-text-reveal][data-reveal="editorial"] {
  --text-reveal-duration: 820ms;
  --text-reveal-support-delay: 200ms;
}
[data-text-reveal][data-reveal="utility"] {
  --text-reveal-duration: 640ms;
  --text-reveal-support-delay: 100ms;
}
.js [data-text-reveal] .text-reveal-heading,
.js [data-text-reveal] .text-reveal-support {
  opacity: 0;
  transform: translateY(14px);
}
.js [data-text-reveal].is-text-visible .text-reveal-heading,
.js [data-text-reveal].is-text-visible .text-reveal-support {
  opacity: 1;
  transform: none;
  transition: opacity var(--text-reveal-duration) ease, transform var(--text-reveal-duration) cubic-bezier(.2,.7,.2,1);
}
.js [data-text-reveal].is-text-visible .text-reveal-support {
  transition-delay: var(--text-reveal-support-delay);
}

.offer-section { padding-block: clamp(6.75rem, 9vw, 8.75rem); }
.offer-editorial-point {
  max-width: 920px;
  margin: 0 auto clamp(6rem, 9vw, 8.5rem);
  padding: 0;
  border: 0;
  text-align: center;
}
.offer-editorial-statement {
  margin: 0;
  color: var(--stone-100);
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.4vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.offer-editorial-statement span,
.offer-editorial-statement strong { display: block; }
.offer-editorial-statement strong {
  color: var(--ivory-100);
  font-weight: 700;
}
.offer-editorial-support {
  max-width: 560px;
  margin: 1.6rem auto 0;
  color: var(--stone-200);
  font-size: clamp(1.03rem, 1.25vw, 1.16rem);
  line-height: 1.7;
}
.offer-editorial-point > .eyebrow { margin-bottom: 1.25rem; }
.service-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(214,161,75,.18);
  border-bottom: 1px solid rgba(214,161,75,.12);
}
.service-editorial-item {
  min-width: 0;
  padding: clamp(2.25rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 3rem);
}
.service-editorial-item:first-child { padding-left: 0; }
.service-editorial-item:last-child { padding-right: 0; }
.service-editorial-item + .service-editorial-item {
  border-left: 1px solid rgba(214,161,75,.12);
}
.service-editorial-index {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--gold-400);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
}
.service-editorial-item h3 {
  margin-bottom: .8rem;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}
.service-editorial-item p {
  max-width: 360px;
  margin: 0;
  color: var(--stone-300);
  font-size: clamp(.95rem, 1.05vw, 1.05rem);
  line-height: 1.65;
}

.offer-grid {
  --active-x: 16.666%;
  position: relative;
  padding-top: 1.65rem;
  gap: clamp(1.2rem, 2vw, 1.8rem);
}
.offer-grid::before {
  content: "";
  position: absolute;
  top: .55rem;
  left: 16.666%;
  right: 16.666%;
  height: 1px;
  background: rgba(214,161,75,.085);
}
.offer-grid::after {
  content: "";
  position: absolute;
  top: calc(.55rem - 3px);
  left: var(--active-x);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 14px rgba(214,161,75,.34);
  opacity: 0;
  transform: translateX(-50%);
  transition: left .65s cubic-bezier(.2,.7,.2,1), opacity .35s ease;
}
.offer-grid.has-active-card::after { opacity: 1; }
.offer-card {
  position: relative;
  min-height: 425px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.65rem, 2vw, 2rem);
  border-radius: var(--radius-md);
  isolation: isolate;
  transition: border-color .4s ease, background .4s ease, box-shadow .4s ease;
}
.offer-card::before {
  content: "";
  position: absolute;
  inset: -1px 12% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  opacity: 0;
  transform: scaleX(.2);
  transition: opacity .4s ease, transform .65s cubic-bezier(.2,.7,.2,1);
}
.offer-card.is-active {
  border-color: rgba(214,161,75,.36);
  background: linear-gradient(145deg, rgba(255,255,255,.058), rgba(255,255,255,.016));
  box-shadow: 0 24px 54px rgba(0,0,0,.15);
}
.offer-card.is-active::before { opacity: .8; transform: scaleX(1); }
.offer-card:focus-visible {
  outline: 2px solid rgba(226,185,111,.9);
  outline-offset: 3px;
}
.offer-copy { position: relative; z-index: 2; }
.offer-category {
  margin: 0 0 1rem;
  color: var(--gold-400) !important;
  font-size: .73rem !important;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}
.offer-card h3 {
  max-width: 350px;
  margin-bottom: .9rem;
  font-size: clamp(1.55rem, 2.05vw, 2rem);
  line-height: 1.14;
}
.offer-copy > p:last-child {
  max-width: 350px;
  margin-bottom: 0;
  color: var(--stone-300);
  font-size: clamp(.98rem, 1.1vw, 1.08rem);
  line-height: 1.68;
  transition: color .4s ease;
}
.offer-card.is-active .offer-copy > p:last-child { color: var(--stone-100); }
.offer-demo {
  position: relative;
  min-height: 160px;
  margin-top: auto;
  padding-top: .8rem;
  color: var(--stone-300);
}
.website-directions {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: .6rem;
}
.website-direction {
  min-height: 34px;
  padding: .45rem .65rem;
  border: 1px solid rgba(214,161,75,.16);
  border-radius: 999px;
  color: var(--stone-300);
  background: rgba(3,10,7,.2);
  font: inherit;
  font-size: .7rem;
  line-height: 1.15;
  cursor: pointer;
  transition: color .3s ease, border-color .3s ease, background .3s ease;
}
.direction-label-short { display: none; }
.website-direction:hover,
.website-direction:focus-visible,
.website-direction.is-selected {
  color: var(--ivory-100);
  border-color: rgba(214,161,75,.48);
  background: rgba(214,161,75,.08);
}
.website-direction:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 2px;
}
.demo-browser {
  overflow: hidden;
  border: 1px solid rgba(214,161,75,.18);
  border-radius: 12px;
  background: rgba(3,10,7,.34);
}
.demo-browser-bar {
  height: 25px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-inline: 9px;
  border-bottom: 1px solid rgba(214,161,75,.1);
}
.demo-browser-bar i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(226,185,111,.42);
}
.website-canvas {
  min-height: 120px;
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(72px,.8fr);
  grid-template-rows: auto auto auto auto;
  align-content: center;
  gap: 8px 14px;
  padding: 16px;
  transition: grid-template-columns .55s cubic-bezier(.2,.7,.2,1);
}
.website-canvas > * { display: block; border-radius: 999px; transition: all .55s cubic-bezier(.2,.7,.2,1); }
.website-kicker { width: 34%; height: 4px; background: rgba(214,161,75,.5); }
.website-title { width: 82%; height: 11px; background: rgba(239,235,225,.6); }
.website-copy { width: 68%; height: 5px; background: rgba(174,185,177,.3); }
.website-action { width: 38%; height: 11px; background: rgba(214,161,75,.45); }
.website-panel {
  grid-column: 2;
  grid-row: 1 / -1;
  min-height: 82px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(214,161,75,.18), rgba(239,235,225,.05));
}
[data-layout-preview="service"] .website-canvas { grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); }
[data-layout-preview="service"] .website-panel { grid-column: 1; }
[data-layout-preview="service"] .website-kicker,
[data-layout-preview="service"] .website-title,
[data-layout-preview="service"] .website-copy,
[data-layout-preview="service"] .website-action { grid-column: 2; }
[data-layout-preview="service"] .website-title { width: 94%; }
[data-layout-preview="conversion"] .website-canvas { grid-template-columns: 1fr; text-align: center; }
[data-layout-preview="conversion"] .website-canvas > :not(.website-panel) { margin-inline: auto; }
[data-layout-preview="conversion"] .website-kicker { width: 25%; }
[data-layout-preview="conversion"] .website-title { width: 68%; height: 13px; }
[data-layout-preview="conversion"] .website-copy { width: 54%; }
[data-layout-preview="conversion"] .website-action { width: 32%; height: 13px; }
[data-layout-preview="conversion"] .website-panel { display: none; }

.workflow-demo {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: .35rem;
}
.workflow-demo > b {
  height: 1px;
  background: rgba(214,161,75,.15);
  transform: scaleX(.35);
  transform-origin: left;
  transition: background .5s ease, transform .65s cubic-bezier(.2,.7,.2,1);
}
.workflow-step {
  width: 60px;
  display: grid;
  justify-items: center;
  gap: .55rem;
  text-align: center;
  opacity: .55;
  transition: opacity .45s ease;
}
.workflow-step i {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(214,161,75,.5);
  border-radius: 50%;
  background: var(--forest-950);
  transition: background .4s ease, box-shadow .4s ease;
}
.workflow-step span { font-size: .75rem; line-height: 1.35; }
.workflow-step--human {
  width: 82px;
  padding: .65rem .45rem;
  border: 1px solid rgba(214,161,75,.34);
  border-radius: 10px;
  color: var(--stone-100);
  font-weight: 600;
  opacity: .92;
}
.offer-card.is-active .workflow-demo > b { background: rgba(214,161,75,.48); transform: scaleX(1); }
.offer-card.is-active .workflow-demo > b:nth-of-type(2) { transition-delay: .24s; }
.offer-card.is-active .workflow-demo > b:nth-of-type(3) { transition-delay: .48s; }
.offer-card.is-active .workflow-step { opacity: .82; }
.offer-card.is-active .workflow-step i { background: var(--gold-500); }
.offer-card.is-active .workflow-step--human {
  border-color: rgba(226,185,111,.55);
  opacity: 1;
}
.offer-card.is-active .workflow-step--human i {
  background: var(--gold-400);
  box-shadow: 0 0 15px rgba(214,161,75,.28);
}

.decision-demo {
  min-height: 148px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr minmax(104px,auto);
  align-items: center;
  gap: .55rem;
}
.decision-demo > b {
  height: 1px;
  background: rgba(214,161,75,.15);
  transform: scaleX(.35);
  transform-origin: left;
  transition: background .5s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.decision-step {
  display: grid;
  justify-items: center;
  gap: .7rem;
  color: var(--stone-300);
  font-size: .72rem;
  text-align: center;
  opacity: .58;
  transition: color .4s ease, opacity .4s ease;
}
.decision-step i {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(214,161,75,.48);
  border-radius: 50%;
  background: var(--forest-950);
  transition: background .4s ease, box-shadow .4s ease;
}
.decision-step--outcome {
  min-height: 82px;
  align-content: center;
  padding: .75rem .8rem;
  border: 1px solid rgba(214,161,75,.36);
  border-radius: 10px;
  color: var(--stone-100);
  font-weight: 600;
  opacity: .92;
}
.offer-card.is-active .decision-demo > b { background: rgba(214,161,75,.5); transform: scaleX(1); }
.offer-card.is-active .decision-demo > b:nth-of-type(2) { transition-delay: .24s; }
.offer-card.is-active .decision-step { color: var(--stone-100); opacity: .88; }
.offer-card.is-active .decision-step i { background: var(--gold-500); }
.offer-card.is-active .decision-step--outcome {
  color: var(--ivory-100);
  border-color: rgba(226,185,111,.48);
  opacity: 1;
}

.tandem-moment {
  padding-block: clamp(8rem, 12vw, 11rem);
  text-align: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(214,161,75,.035), transparent 32rem);
}
.tandem-centred {
  width: min(100%, 880px);
  margin-inline: auto;
}
.tandem-centred > .eyebrow { margin-bottom: 2rem; }
.tandem-principles {
  display: grid;
  gap: .3rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem,5.6vw,5.9rem);
  line-height: 1.06;
  letter-spacing: -.052em;
}
.tandem-principles p { margin: 0; }
.tandem-principles em { color: var(--gold-400); font-style: normal; }
.tandem-divider {
  display: block;
  width: 34px;
  height: 1px;
  margin: 2.75rem auto;
  background: var(--gold-500);
}
.tandem-note {
  max-width: 590px;
  margin: 0 auto;
  color: var(--stone-200);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.72;
  letter-spacing: -.008em;
}

.capabilities .section-heading {
  margin-bottom: clamp(3.75rem, 6vw, 5.5rem);
}
.capabilities .section-heading .text-reveal-support {
  max-width: 430px;
}
.capabilities .section-heading .capabilities-intro {
  max-width: 650px;
  margin: 1.5rem 0 0;
  color: var(--stone-200);
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  line-height: 1.7;
  letter-spacing: -.008em;
}
.capability-system {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(2rem, 4.5vw, 5rem);
  margin-top: 0;
  padding-bottom: clamp(.5rem, 1.25vw, 1rem);
}

.capabilities-services-link {
  display: inline-flex;
  gap: .65rem;
  align-items: center;
  margin-top: clamp(.75rem, 1.5vw, 1.25rem);
  padding-bottom: .35rem;
  border-bottom: 1px solid rgba(226,185,111,.42);
  color: var(--gold-400);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease, border-color .25s ease;
}
.capabilities-services-link:hover {
  border-color: var(--gold-400);
  color: var(--ivory-100);
}
.capability-rail {
  position: absolute;
  top: 7px;
  left: 16.666%;
  right: 16.666%;
  height: 2px;
  overflow: hidden;
  background: rgba(214,161,75,.28);
  box-shadow: 0 0 18px rgba(214,161,75,.08);
}
.capability-rail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(214,161,75,.5), var(--gold-400) 50%, rgba(214,161,75,.54));
  transform: scaleX(1);
  transform-origin: left;
}
.js .capability-rail::after { transform: scaleX(0); }
.js .capability-system.is-arrived .capability-rail::after {
  animation: capability-connect 1.75s cubic-bezier(.2,.7,.2,1) both;
}
.capability-stage {
  position: relative;
  min-width: 0;
  padding: clamp(4rem, 6vw, 5.25rem) clamp(.1rem, 1vw, .8rem) clamp(2.25rem, 3vw, 3.25rem);
  outline: none;
  opacity: 1;
  transition: opacity .4s ease, background .4s ease;
}
.js .capability-stage { opacity: .58; }
.js .capability-system.is-arrived .capability-stage {
  animation: capability-arrive .72s ease both;
}
.js .capability-system.is-arrived .capability-stage:nth-of-type(2) { animation-delay: .48s; }
.js .capability-system.is-arrived .capability-stage:nth-of-type(3) { animation-delay: .96s; }
.js .capability-system.is-arrived .capability-stage .capability-marker {
  animation: capability-marker-arrive .62s ease both;
}
.js .capability-system.is-arrived .capability-stage:nth-of-type(2) .capability-marker { animation-delay: .58s; }
.js .capability-system.is-arrived .capability-stage:nth-of-type(3) .capability-marker { animation-delay: 1.16s; }
.capability-marker {
  position: absolute;
  top: 0;
  left: 50%;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(214,161,75,.72);
  border-radius: 50%;
  background: var(--forest-950);
  box-shadow: 0 0 0 7px var(--forest-950);
  transform: translateX(-50%);
  transition: background .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.capability-index {
  display: block;
  margin-bottom: 1.65rem;
  color: var(--gold-400);
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.capability-stage h3 {
  max-width: 360px;
  margin-bottom: .85rem;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1.14;
}
.capability-stage p {
  max-width: 360px;
  margin: 0;
  color: var(--stone-300);
  font-size: clamp(1rem, 1.16vw, 1.08rem);
  line-height: 1.66;
  transition: color .4s ease;
}
.capability-details {
  display: block;
  max-width: 360px;
  margin-top: 1.15rem;
  color: var(--stone-300);
  font-size: .82rem;
  line-height: 1.62;
  letter-spacing: .025em;
}
.capability-stage.is-active { opacity: 1; animation: none !important; }
.capability-stage.is-active .capability-marker {
  animation: none !important;
  border-color: var(--gold-400);
  background: var(--gold-500);
  box-shadow: 0 0 0 7px var(--forest-950), 0 0 24px rgba(214,161,75,.42);
}
.capability-stage.is-active .capability-index,
.capability-stage.is-active h3 { color: var(--ivory-100); }
.capability-stage.is-active p { color: var(--stone-100); }
.capability-stage:focus-visible {
  outline: none;
}
.capability-stage:focus-visible .capability-marker {
  box-shadow: 0 0 0 4px var(--forest-950), 0 0 0 6px rgba(226,185,111,.9);
}
.capability-stage:focus-visible h3 {
  text-decoration: underline;
  text-decoration-color: rgba(226,185,111,.75);
  text-decoration-thickness: 1px;
  text-underline-offset: .22em;
}

@keyframes capability-connect {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes capability-connect-vertical {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}
@keyframes capability-arrive {
  from { opacity: .58; }
  to { opacity: .7; }
}
@keyframes capability-marker-arrive {
  0%, 100% { background: var(--forest-950); box-shadow: none; }
  52% { background: var(--gold-500); box-shadow: 0 0 16px rgba(214,161,75,.28); }
}

.case-study-proof {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, .58fr) minmax(0, 1fr);
  column-gap: clamp(3.5rem, 7vw, 7.5rem);
  row-gap: clamp(2rem, 4vw, 3.75rem);
  align-items: start;
  min-width: 0;
}
.case-study-proof::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 9%;
  right: -2%;
  width: 62%;
  aspect-ratio: 1.45;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,161,75,.09), rgba(214,161,75,.025) 42%, transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}
.case-study-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  padding-top: clamp(.5rem, 2vw, 2rem);
}
.case-study-copy .eyebrow { margin-bottom: 1.2rem; }
.case-study-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(3rem, 5.7vw, 6.25rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.case-study-copy > p:last-child {
  max-width: 500px;
  margin: clamp(1.5rem, 2.5vw, 2.25rem) 0 0;
  color: var(--stone-200);
  font-size: clamp(1rem, 1.28vw, 1.16rem);
  line-height: 1.72;
}
.case-study-copy > p:last-child strong {
  display: block;
  margin-bottom: .65rem;
  color: var(--ivory-100);
  font-family: var(--font-display);
  font-size: 1.08em;
  line-height: 1.45;
}
.case-study-devices {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  min-width: 0;
  padding: clamp(.5rem, 1.5vw, 1.25rem) clamp(.75rem, 1.6vw, 1.5rem) clamp(4.5rem, 8vw, 7rem) 0;
}
.case-study-desktop {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(226,185,111,.34);
  border-radius: clamp(12px, 1.4vw, 18px);
  background: #f7e9ed;
  box-shadow: 0 28px 70px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.025) inset;
}
.case-study-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: clamp(24px, 2.3vw, 34px);
  padding-inline: 12px;
  border-bottom: 1px solid rgba(103,76,58,.13);
  background: linear-gradient(180deg, #fff9f7, #f3e8e8);
}
.case-study-browser-bar span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(103,76,58,.28);
}
.case-study-desktop img {
  display: block;
  width: 100%;
  height: auto;
}
.case-study-mobile {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(126px, 27%, 210px);
  aspect-ratio: 1 / 2;
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(226,185,111,.5);
  border-radius: clamp(20px, 2.4vw, 30px);
  background: #151817;
  box-shadow: 0 26px 52px rgba(0,0,0,.48), 0 0 0 1px rgba(255,255,255,.08) inset;
}
.case-study-mobile-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: calc(clamp(20px, 2.4vw, 30px) - 7px);
  object-fit: cover;
}
.case-study-mobile-speaker {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 50%;
  width: 28%;
  height: 4px;
  border-radius: 999px;
  background: rgba(14,17,16,.8);
  transform: translateX(-50%);
}
.case-study-mobile-screen {
  height: 100%;
  overflow: hidden;
  border-radius: calc(clamp(20px, 2.4vw, 30px) - 7px);
  background: linear-gradient(145deg, #fffafa 0%, #f7e5e9 58%, #fff7f3 100%);
  color: #322b2b;
}
.case-study-mobile-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem .75rem .7rem;
  border-bottom: 1px solid rgba(183,141,77,.24);
  font-size: clamp(.42rem, .62vw, .56rem);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.case-study-mobile-monogram {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 2px solid #c8a45f;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: 0;
}
.case-study-mobile-hero {
  display: flex;
  min-height: 74%;
  padding: clamp(1rem, 2vw, 1.6rem) .7rem 1rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.case-study-mobile-hero p {
  margin: 0 0 .8rem;
  font-family: Georgia, serif;
  font-size: clamp(.9rem, 1.55vw, 1.3rem);
  line-height: 1.05;
}
.case-study-mobile-hero strong {
  max-width: 150px;
  color: #b58c4c;
  font-family: Georgia, serif;
  font-size: clamp(.62rem, .85vw, .78rem);
  line-height: 1.25;
}
.case-study-mobile-hero > span {
  margin-top: .55rem;
  color: #756a69;
  font-size: clamp(.42rem, .6vw, .54rem);
}
.case-study-mobile-hero i {
  margin-top: 1rem;
  padding: .48rem .65rem;
  border-radius: 999px;
  background: #caa15e;
  color: #fff;
  font-size: clamp(.42rem, .58vw, .52rem);
  font-style: normal;
  font-weight: 700;
}
.case-study-outcome {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  display: grid;
  justify-items: center;
  gap: 1rem;
  width: min(100%, 760px);
  max-width: 760px;
  margin: clamp(-12rem, -12vw, -9rem) 0 0;
  color: var(--ivory-100);
  text-align: center;
}
.case-study-signature-kicker {
  color: var(--stone-300);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.case-study-signature-rule {
  width: 76px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  transform-origin: center;
}
.case-study-signature-statement {
  color: var(--ivory-100);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.9vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.025em;
}
.case-study-signature-statement em {
  color: var(--gold-400);
  font-style: normal;
  font-weight: 600;
}
.case-study-meta {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  display: flex;
  gap: 1.15rem;
  flex-direction: column;
  align-items: flex-start;
}
.case-study-meta p {
  margin: 0;
  color: var(--stone-300);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.case-study-link {
  display: inline-flex;
  gap: .6rem;
  align-items: center;
  padding-bottom: .35rem;
  border-bottom: 1px solid rgba(226,185,111,.5);
  color: var(--gold-400);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .25s ease, border-color .25s ease;
}
.case-study-link:hover {
  color: var(--ivory-100);
  border-color: var(--gold-400);
}
.case-study-link:focus-visible { border-radius: 2px; }

.js .case-study-proof {
  opacity: 1;
  transform: none;
}
.js .case-study-copy,
.js .case-study-meta,
.js .case-study-desktop,
.js .case-study-mobile {
  opacity: 0;
  transform: translateY(16px);
}
.js .case-study-signature-kicker,
.js .case-study-signature-statement {
  opacity: 0;
  transform: translateY(12px);
}
.js .case-study-signature-rule { transform: scaleX(0); }
.js .case-study-proof.is-case-study-visible .case-study-copy,
.js .case-study-proof.is-case-study-visible .case-study-meta,
.js .case-study-proof.is-case-study-visible .case-study-desktop,
.js .case-study-proof.is-case-study-visible .case-study-mobile {
  opacity: 1;
  transform: none;
  transition: opacity .72s ease, transform .72s cubic-bezier(.2,.7,.2,1);
}
.js .case-study-proof.is-case-study-visible .case-study-meta { transition-delay: 70ms; }
.js .case-study-proof.is-case-study-visible .case-study-desktop { transition-delay: 120ms; }
.js .case-study-proof.is-case-study-visible .case-study-mobile { transition-delay: 260ms; }
.js .case-study-proof.is-case-study-visible .case-study-signature-kicker {
  opacity: 1;
  transform: none;
  transition: opacity .62s 520ms ease, transform .62s 520ms cubic-bezier(.2,.7,.2,1);
}
.js .case-study-proof.is-case-study-visible .case-study-signature-rule {
  transform: scaleX(1);
  transition: transform .72s 800ms cubic-bezier(.2,.7,.2,1);
}
.js .case-study-proof.is-case-study-visible .case-study-signature-statement {
  opacity: 1;
  transform: none;
  transition: opacity .76s 1120ms ease, transform .76s 1120ms cubic-bezier(.2,.7,.2,1);
}

@media (max-width: 1050px) {
  .case-study-proof {
    grid-template-columns: minmax(250px, .68fr) minmax(0, 1fr);
    column-gap: clamp(2.25rem, 5vw, 4rem);
  }
  .case-study-copy h2 { font-size: clamp(2.8rem, 5.4vw, 4.8rem); }
  .case-study-mobile { width: clamp(112px, 29%, 170px); }
}

@media (max-width: 760px) {
  .case-study-proof {
    grid-template-columns: minmax(0, 1fr);
    row-gap: clamp(2.25rem, 8vw, 3.75rem);
  }
  .case-study-proof::before {
    top: 28%;
    right: -18%;
    width: 118%;
  }
  .case-study-copy,
  .case-study-devices,
  .case-study-outcome,
  .case-study-meta {
    grid-column: 1;
    grid-row: auto;
  }
  .case-study-copy { padding-top: 0; }
  .case-study-copy h2 { font-size: clamp(3rem, 13.2vw, 5rem); }
  .case-study-copy > p:last-child { max-width: 620px; }
  .case-study-devices {
    padding: .25rem clamp(.25rem, 2vw, .75rem) clamp(4rem, 17vw, 6.25rem) 0;
  }
  .case-study-mobile { width: clamp(108px, 30%, 158px); }
  .case-study-outcome {
    max-width: 620px;
    margin-top: clamp(-2.5rem, -7vw, -1.5rem);
    font-size: clamp(1.75rem, 7.3vw, 2.75rem);
  }
  .case-study-meta { gap: 1rem; }
}

@media (max-width: 420px) {
  .case-study-browser-bar { height: 22px; padding-inline: 9px; }
  .case-study-browser-bar span { width: 5px; height: 5px; }
  .case-study-mobile { width: 34%; padding: 5px; }
  .case-study-mobile-speaker { top: 8px; height: 3px; }
  .case-study-mobile-screen { border-radius: 17px; }
}

.narrative-pause {
  position: relative;
  padding: clamp(10rem, 15vw, 14rem) 0 clamp(10.5rem, 16vw, 15rem);
  overflow: hidden;
  text-align: center;
}
.narrative-pause-inner { max-width: 1160px; }
.narrative-pause h2 {
  max-width: 1080px;
  margin-inline: auto;
  font-size: clamp(3.4rem, 7.2vw, 7.6rem);
  line-height: .98;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.narrative-pause p {
  max-width: 560px;
  margin: clamp(2rem, 3.5vw, 3rem) auto 0;
  color: var(--stone-300);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.7;
}
.narrative-pause p.human-moment {
  margin-top: .9rem;
  color: var(--stone-100);
  font-size: clamp(.95rem, 1.25vw, 1.1rem);
}
.human-moment span { display: block; }
.approach-section .container {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.55fr);
  column-gap: clamp(3.5rem, 6vw, 7rem);
  align-items: start;
}
.approach-section .section-heading {
  grid-column: 1 / -1;
}
.approach-section .section-heading h2 {
  max-width: 1120px;
  font-size: clamp(3rem, 4.4vw, 4.8rem);
  letter-spacing: -.04em;
  text-transform: none;
  text-wrap: balance;
}
.approach-section .section-heading { margin-bottom: 0; }
.approach-section .section-heading > :first-child { max-width: 1120px; }
.approach-introduction {
  grid-column: 1;
  max-width: 430px;
  margin: clamp(4.5rem, 6vw, 6rem) 0 0;
}
.approach-belief {
  max-width: 390px;
  margin: 0 0 clamp(1.6rem, 2.5vw, 2.25rem);
  color: var(--stone-100);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.7vw, 1.6rem);
  line-height: 1.3;
  letter-spacing: -.018em;
}
.approach-manifesto {
  max-width: 430px;
  color: var(--stone-100);
  letter-spacing: -.012em;
}
.approach-manifesto-lead {
  display: block;
  max-width: 400px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.15vw, 2.15rem);
  line-height: 1.2;
}
.approach-manifesto-support {
  display: block;
  max-width: 390px;
  margin-top: clamp(1.6rem, 2.5vw, 2.25rem);
  color: var(--stone-200);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.7;
  letter-spacing: -.015em;
}
.approach-manifesto-support > span { display: block; }
.approach-manifesto-support > span + span { margin-top: 1rem; }
.approach-bridge {
  max-width: 390px;
  margin: clamp(2rem, 3vw, 2.75rem) 0 0;
  color: var(--stone-200);
  font-size: clamp(.95rem, 1.05vw, 1.05rem);
  line-height: 1.75;
}
.approach-bridge span {
  display: block;
}
.approach-bridge span + span {
  margin-top: 1.15rem;
}
.approach-section--summary .approach-manifesto-support { margin-top: 0; }
.approach-summary-link {
  display: inline-flex;
  gap: .65rem;
  align-items: center;
  margin-top: clamp(2rem, 3vw, 2.75rem);
  padding-bottom: .35rem;
  border-bottom: 1px solid rgba(226,185,111,.5);
  color: var(--gold-400);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease, border-color .25s ease;
}
.approach-summary-link:hover {
  color: var(--ivory-100);
  border-color: var(--gold-400);
}

.approach-visual {
  position: relative;
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(.7rem, 1vw, 1.15rem);
  margin: clamp(4.5rem, 6vw, 6rem) 0 0;
  padding: 1.5rem 0 0;
  list-style: none;
}
.approach-visual::before {
  content: "";
  position: absolute;
  top: 4.55rem;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(214,161,75,.56) 10%, var(--gold-500) 50%, rgba(214,161,75,.56) 90%, transparent);
  box-shadow: 0 0 18px rgba(214,161,75,.09);
}
.approach-stage {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 270px;
  padding: 1.35rem clamp(.65rem, .9vw, 1rem) 1.5rem;
  border: 1px solid rgba(220, 199, 158, .12);
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.006));
  text-align: center;
  transition: border-color .35s ease, background-color .35s ease, opacity .35s ease;
}
.approach-stage:hover {
  border-color: rgba(214,161,75,.28);
  background: rgba(255,255,255,.022);
  opacity: 1;
}
.approach-stage:hover .approach-icon {
  color: var(--ivory-100);
  filter: drop-shadow(0 0 12px rgba(214,161,75,.2));
}
.approach-stage:hover h3 { color: var(--gold-400); }
.approach-stage:hover p { color: var(--stone-100); }
.approach-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 1.25rem;
  place-items: center;
  color: var(--gold-400);
  background: var(--forest-950);
  box-shadow: 0 0 0 10px var(--forest-950);
  transition: color .35s ease, filter .35s ease;
}
.approach-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.72rem;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  background: var(--forest-950);
  transform: translateX(-50%);
}
.approach-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}
.approach-index {
  display: block;
  margin: 1.65rem 0 .42rem;
  color: var(--gold-400);
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
}
.approach-stage h3 {
  margin-top: 1.85rem;
  margin-bottom: .65rem;
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
  transition: color .35s ease;
}
.approach-stage p {
  margin: 0;
  color: var(--stone-300);
  font-size: clamp(.8rem, .84vw, .88rem);
  line-height: 1.52;
  transition: color .35s ease;
}
.approach-visual--summary .approach-stage { min-height: 185px; }
.approach-visual--summary .approach-stage h3 { margin-bottom: 0; }

.conversation {
  position: relative;
  overflow: hidden;
  padding: clamp(9rem, 13vw, 12rem) 0 clamp(2.5rem, 4vw, 3.75rem);
}
.conversation::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 8%;
  width: clamp(240px, 32vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,161,75,.08), rgba(214,161,75,.02) 38%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.conversation-finale {
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px, .3fr) minmax(0, 1fr) auto;
  align-items: center;
  column-gap: clamp(2rem, 5vw, 5.5rem);
  min-height: 360px;
  padding: clamp(3.5rem, 6vw, 6rem) 0 0;
  border-top: 1px solid var(--line-soft);
  text-align: left;
}
.conversation-finale::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: clamp(86px, 9vw, 140px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}
.conversation-finale-mark {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 230px;
  place-items: center;
}
.conversation-finale-mark::before {
  content: "";
  position: absolute;
  width: 125%;
  aspect-ratio: 1.5;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,161,75,.12), rgba(214,161,75,.025) 46%, transparent 72%);
  filter: blur(14px);
}
.conversation-finale-mark img {
  position: relative;
  width: min(176px, 100%);
  filter: drop-shadow(0 22px 38px rgba(0,0,0,.34));
}
.conversation-finale-copy { min-width: 0; }
.conversation-finale-copy .eyebrow { margin-bottom: .9rem; }
.conversation-finale h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4.25rem);
}
.conversation-finale-copy > p:last-child {
  max-width: 620px;
  margin: 1rem 0 0;
  color: var(--stone-200);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.65;
}
.conversation-finale > .button { white-space: nowrap; }

.homepage-footer {
  padding: clamp(2.25rem, 4vw, 3.5rem) 0;
  background: rgba(4, 12, 9, .42);
}
.homepage-footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1.25rem, 3vw, 2.75rem);
  align-items: center;
}
.homepage-footer-mark {
  width: clamp(68px, 7vw, 92px);
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.28));
}
.homepage-footer-copy h2 {
  margin: 0;
  font-size: clamp(1.75rem, 2.8vw, 3rem);
  font-weight: 500;
  letter-spacing: -.045em;
}
.homepage-footer-copy h2 strong { font-weight: 600; }
.homepage-footer-copy p {
  margin: .5rem 0 0;
  color: var(--stone-300);
  font-size: clamp(.92rem, 1.1vw, 1.02rem);
}
.homepage-footer-link {
  display: inline-flex;
  gap: .6rem;
  align-items: center;
  padding: .35rem 0;
  border-bottom: 1px solid rgba(226,185,111,.5);
  color: var(--gold-400);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease, border-color .25s ease;
}
.homepage-footer-link:hover {
  color: var(--ivory-100);
  border-color: var(--gold-400);
}

.section.section-gap-compact { padding-block: var(--section-gap-compact); }
.section.section-gap-standard { padding-block: var(--section-gap-standard); }
.section.section-gap-reflective { padding-block: var(--section-gap-reflective); }
.section.approach-section.section-gap-reflective { padding-top: 0; }
.section.offer-section.section-gap-compact { padding-block: clamp(6.75rem, 9vw, 8.75rem); }
.section.capabilities.section-gap-standard,
#work.section-gap-standard { padding-block: clamp(7rem, 10vw, 9rem); }

/* Keep offer and proof connected, then allow the brand principle to breathe. */
.section.capabilities.section-gap-standard {
  padding-bottom: clamp(4.75rem, 6.5vw, 6.5rem);
}
#how-we-help + .living-connector--quiet {
  height: clamp(46px, 5vw, 66px);
}
#work.section-gap-standard {
  padding-top: clamp(4.75rem, 6.5vw, 6.5rem);
  padding-bottom: clamp(5.75rem, 7.5vw, 7.25rem);
}
#work + .living-connector--quiet {
  height: clamp(46px, 5vw, 66px);
}
.section.offer-section.section-gap-compact {
  padding-top: clamp(5.75rem, 7.5vw, 7.5rem);
  padding-bottom: clamp(7rem, 9vw, 8.75rem);
}
.living-connector--quiet {
  height: clamp(64px, 7vw, 90px);
  opacity: .44;
}

@media (max-width: 1180px) {
  .approach-section .container { display: block; }
  .approach-introduction {
    max-width: 720px;
    margin: clamp(3.75rem, 7vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
  }
  .approach-manifesto,
  .approach-manifesto-lead,
  .approach-manifesto-support,
  .approach-bridge { max-width: 680px; }
  .approach-visual { margin-top: 0; }
}

@media (max-width: 900px) {
  .approach-section .container { display: block; }
  .approach-introduction {
    max-width: 720px;
    margin: clamp(3.75rem, 7vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
  }
  .approach-manifesto,
  .approach-manifesto-lead,
  .approach-manifesto-support,
  .approach-bridge { max-width: 680px; }
  .hero { min-height: auto; }
  .hero-grid,.reality-layout { grid-template-columns: 1fr; }
  .reality-copy {
    grid-column: auto;
    max-width: 640px;
    padding: 0;
    border-left: 0;
  }
  .hero-mark-panel { min-height: 520px; }
  .offer-card { min-height: 420px; }
  .approach-visual {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 760px;
    margin-top: 0;
    padding-top: 0;
  }
  .approach-visual::before {
    top: 2rem;
    bottom: 2rem;
    left: 44px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(to bottom, transparent, rgba(214,161,75,.54) 8%, rgba(214,161,75,.54) 92%, transparent);
  }
  .approach-stage {
    display: grid;
    grid-template-columns: 56px minmax(0,1fr);
    align-items: center;
    min-height: 0;
    padding: 1.35rem 1.35rem 1.35rem 1rem;
    text-align: left;
  }
  .approach-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 0;
  }
  .approach-icon::after { display: none; }
  .approach-index {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
  }
  .approach-stage h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
  }
  .approach-stage p {
    grid-column: 2;
    grid-row: 2;
    margin-top: .35rem;
  }
  .approach-visual--summary .approach-stage {
    min-height: 94px;
  }
  .conversation-finale {
    grid-template-columns: 140px minmax(0,1fr);
    min-height: 0;
  }
  .conversation-finale-mark { grid-row: 1 / span 2; min-height: 190px; }
  .conversation-finale-copy { align-self: end; }
  .conversation-finale > .button {
    grid-column: 2;
    justify-self: start;
    margin-top: 1.5rem;
  }
}
@media (max-width: 820px) {
  .capability-system {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .capability-rail {
    top: 8px;
    bottom: 8px;
    left: 7px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .capability-rail::after { transform: scaleY(1); transform-origin: top; }
  .js .capability-rail::after { transform: scaleY(0); }
  .js .capability-system.is-arrived .capability-rail::after {
    animation-name: capability-connect-vertical;
  }
  .capability-stage {
    min-height: 0;
    padding: .1rem 0 clamp(3.5rem, 8vw, 5rem) clamp(3.25rem, 8vw, 4.5rem);
  }
  .capability-stage:last-child { padding-bottom: .5rem; }
  .capability-marker { top: 0; left: 0; transform: none; }
  .capability-stage h3,
  .capability-stage p { max-width: 620px; }
}
@media (min-width: 701px) and (max-width: 1100px) {
  .offer-grid.grid-3 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .offer-card:last-child { grid-column: 1 / -1; min-height: 400px; }
  .offer-card:last-child .offer-copy { max-width: 560px; }
  .offer-card:last-child .decision-demo { width: min(100%,620px); margin-inline: auto; }
  .offer-grid::before,
  .offer-grid::after { display: none; }
}
@media (max-width: 1100px) {
  .direction-label-wide { display: none; }
  .direction-label-short { display: inline; }
}
@media (max-width: 700px) {
  .service-editorial-grid { grid-template-columns: 1fr; }
  .service-editorial-item,
  .service-editorial-item:first-child,
  .service-editorial-item:last-child { padding: 2rem 0; }
  .service-editorial-item + .service-editorial-item {
    border-top: 1px solid rgba(214,161,75,.12);
    border-left: 0;
  }
  .service-editorial-item p { max-width: 560px; }
  .offer-grid.grid-3 { grid-template-columns: 1fr; }
  .offer-grid { padding-top: 0; }
  .offer-grid::before,
  .offer-grid::after { display: none; }
  .offer-card { min-height: 0; }
  .offer-card::before { inset-inline: 18%; }
  .offer-demo { min-height: 150px; }
}
@media (max-width: 620px) {
  h1 { font-size: clamp(3.5rem,16vw,5.5rem); }
  .hero { padding: 8rem 0 6.5rem; }
  .hero-mark-panel { min-height: 380px; }
  .mark-stage { width: min(70%,280px); }
  .hero-emblem-stage { width: min(94%, 350px); }
  .panel-sequence { font-size: .58rem; gap: .45rem; }
  .panel-sequence i { width: 18px; }
  .narrative-pause { padding: clamp(7.5rem, 26vw, 10rem) 0 clamp(8rem, 28vw, 10.5rem); }
  .approach-introduction { margin-block: 3.2rem 4rem; }
  .approach-manifesto-lead { font-size: clamp(2rem, 10vw, 3rem); }
  .approach-manifesto-support { font-size: clamp(1.08rem, 5vw, 1.35rem); }
  .approach-stage { grid-template-columns: 54px minmax(0,1fr); }
  .approach-stage p { font-size: .88rem; }
  .conversation { padding-top: clamp(7rem, 24vw, 9rem); }
  .conversation-finale { display: block; padding-top: 3rem; }
  .conversation-finale-mark {
    min-height: 160px;
    justify-items: start;
  }
  .conversation-finale-mark::before { width: 75%; }
  .conversation-finale-mark img { width: 132px; }
  .conversation-finale-copy { margin-top: 1.5rem; }
  .conversation-finale > .button { margin-top: 2rem; }
  .homepage-footer-inner {
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: start;
  }
  .homepage-footer-mark { width: 64px; }
  .homepage-footer-link {
    grid-column: 2;
    justify-self: start;
  }
  .workflow-step { width: 55px; }
  .workflow-step--human { width: 64px; }
  .workflow-step span { font-size: .7rem; }
  .decision-demo { grid-template-columns: auto 1fr auto 1fr minmax(94px,auto); }
  .decision-step { font-size: .7rem; }
}

@media (prefers-reduced-motion: reduce) {
  .js [data-text-reveal] .text-reveal-heading,
  .js [data-text-reveal] .text-reveal-support { opacity: 1; transform: none; }
  .offer-grid::after { display: none; }
  .offer-card .workflow-step,
  .offer-card .decision-step { opacity: .82; transform: none; animation: none !important; }
  .offer-card .workflow-step--human,
  .offer-card .decision-step--outcome { opacity: 1; }
  .workflow-demo > b,
  .decision-demo > b { transform: scaleX(1); }
  .js .capability-stage,
  .js .capability-stage .capability-marker { opacity: 1; animation: none !important; }
  .js .capability-rail::after { transform: none; animation: none !important; }
  .js .case-study-copy,
  .js .case-study-meta,
  .js .case-study-desktop,
  .js .case-study-mobile,
  .js .case-study-outcome,
  .js .case-study-signature-kicker,
  .js .case-study-signature-statement {
    opacity: 1;
    transform: none;
    transition: none !important;
  }
  .js .case-study-signature-rule { transform: scaleX(1); transition: none !important; }
}
