:root {
  color-scheme: dark;
  --ink: #f2eee6;
  --muted-ink: #aaa399;
  --warm-black: #171512;
  --dot-size: clamp(2rem, min(4.1vw, 6.4vh), 3.6rem);
  --dot-gap: clamp(0.65rem, min(1.35vw, 2vh), 1.15rem);
  --edge: clamp(1.35rem, 6.5vw, 7.5rem);
}

* {
  box-sizing: border-box;
}

.experience {
  position: relative;
  overflow: hidden;
  background: var(--warm-black);
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background: var(--warm-black);
}

body {
  overflow-x: hidden;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 36%, rgba(95, 57, 32, 0.11), transparent 31rem),
    radial-gradient(circle at 18% 104%, rgba(115, 68, 39, 0.1), transparent 35rem),
    var(--warm-black);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.hero::before {
  inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero::after {
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 39%, rgba(10, 9, 8, 0.4) 100%);
}

.hero__atmosphere {
  position: absolute;
  top: -18rem;
  right: -12rem;
  width: min(54vw, 52rem);
  height: min(54vw, 52rem);
  border: 1px solid rgba(255, 207, 145, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(226, 133, 61, 0.012), 0 0 0 10rem rgba(226, 133, 61, 0.009);
  opacity: 0.8;
}

.hero__copy {
  position: absolute;
  top: 50%;
  right: var(--edge);
  z-index: 3;
  width: min(44vw, 44rem);
  margin: 0;
  padding: 0;
  transform: translateY(-48%);
}

.hero__sender {
  margin: 0 0 clamp(2.25rem, 7vh, 5rem);
  color: var(--muted-ink);
  font-size: clamp(0.65rem, 0.8vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.hero__sender span {
  display: inline-block;
  margin: 0 0.35em;
  color: #e8894e;
}

h1 {
  max-width: 11.2em;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.6rem, min(5.8vw, 9.5vh), 7.4rem);
  font-weight: 800;
  letter-spacing: -0.074em;
  line-height: 0.88;
  text-wrap: balance;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

.hero__title-accent {
  color: #ff7952;
}

.dot-stage {
  position: absolute;
  z-index: 1;
  top: 7vh;
  right: 54%;
  bottom: clamp(4.3rem, 7vh, 7.5rem);
  left: var(--edge);
  pointer-events: none;
  transform: translateY(clamp(-10rem, -12vh, -6rem));
}

.ambient-stage {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-dot {
  position: absolute;
  display: block;
  width: var(--ambient-size, var(--dot-size));
  height: var(--ambient-size, var(--dot-size));
  border-radius: 50%;
  background: var(--ambient-color, #F4794E);
  box-shadow: inset -0.28em -0.3em 0.35em rgba(42, 17, 10, 0.14), 0 0.55rem 1.5rem rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translate3d(
    calc(-50% + var(--ambient-start-x, 0px)),
    calc(-50% + var(--ambient-start-y, 0px)),
    0
  ) scale(0.86);
  will-change: transform, opacity;
}

.ambient-dot::after {
  position: absolute;
  inset: 17% 20% 23% 18%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.17);
  content: "";
  filter: blur(0.12em);
}

.ambient-dot.is-falling {
  animation: ambient-fall var(--ambient-fall-duration, 4.8s) cubic-bezier(0.18, 0.72, 0.24, 1) both;
}

.ambient-dot.is-fading {
  animation: ambient-fade var(--ambient-fade-duration, 1.6s) ease-out both;
}

.ambient-dot.is-holding {
  opacity: 1;
  animation: none;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

@keyframes ambient-fall {
  0% {
    opacity: 0;
    transform: translate3d(
      calc(-50% + var(--ambient-start-x, 0px)),
      calc(-50% + var(--ambient-start-y, 0px)),
      0
    ) scale(0.86);
  }
  13% {
    opacity: 0.96;
  }
  72% {
    opacity: 1;
    transform: translate3d(
      calc(-50% + var(--ambient-mid-x, 0px)),
      calc(-50% + var(--ambient-mid-y, 0px)),
      0
    ) scale(1.008);
  }
  100% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
}

@keyframes ambient-fade {
  0% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.86);
  }
}

.dot {
  position: absolute;
  bottom: calc(var(--row) * (var(--active-dot-size, var(--dot-size)) + var(--dot-gap)));
  left: calc(var(--column) * 100% / (var(--column-count) - 1));
  display: block;
  width: var(--active-dot-size, var(--dot-size));
  height: var(--active-dot-size, var(--dot-size));
  transform: translate3d(-50%, var(--bridge-shift-y, 0px), 0);
  will-change: transform, opacity;
}

.dot__core,
.pain-dot,
.bridge-dot {
  border-radius: 50%;
  background: var(--dot-color);
  box-shadow: inset -0.28em -0.3em 0.35em rgba(42, 17, 10, 0.14), 0 0.55rem 1.5rem rgba(0, 0, 0, 0.16);
}

.dot__core {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  background: var(--dot-color);
  animation: dot-drop var(--fall-duration, 1.7s) cubic-bezier(0.18, 0.77, 0.24, 1.02) var(--delay) both;
  will-change: transform, opacity;
}

.bridge-dot__trail {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}

.bridge-dot__trail span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38%;
  height: 38%;
  border-radius: 50%;
  background: var(--bridge-color);
  box-shadow: 0 0 0.9rem color-mix(in srgb, var(--bridge-color) 72%, transparent);
  filter: blur(0.16rem);
  opacity: var(--trail-opacity, 0);
  transform: translate3d(-50%, -50%, 0)
    translate3d(var(--trail-x, 0px), var(--trail-y, 0px), 0)
    scale(var(--trail-scale, 1));
  will-change: transform, opacity;
}

.dot__core::after,
.pain-dot::after,
.bridge-dot::after {
  position: absolute;
  inset: 17% 20% 23% 18%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.17);
  content: "";
  filter: blur(0.12em);
}

@keyframes dot-drop {
  0% {
    opacity: 0;
    transform: translate3d(0, calc(-1 * (var(--active-dot-size, var(--dot-size)) + var(--dot-gap))), 0) scale(0.86);
  }
  12% {
    opacity: 1;
  }
  84% {
    transform: translate3d(0, 0.05rem, 0) scale(1.015);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes hero-micro-drift {
  0%,
  66% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  73% {
    transform: translate3d(
      calc(var(--micro-x-factor, 0) * var(--micro-distance, clamp(1px, 0.25vw, 3.5px))),
      calc(var(--micro-y-factor, 0) * var(--micro-distance, clamp(1px, 0.25vw, 3.5px))),
      0
    ) scale(1.002);
  }
  82%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.dot--bridge-source.is-detached .dot__core {
  opacity: 0;
}

.dot--micro .dot__core {
  animation:
    dot-drop var(--fall-duration, 1.7s) cubic-bezier(0.18, 0.77, 0.24, 1.02) var(--delay) both,
    hero-micro-drift var(--micro-duration, 18s) cubic-bezier(0.22, 0.72, 0.28, 1) calc(var(--delay) + var(--fall-duration, 1.7s) + var(--micro-idle, 8s)) infinite;
}

.dot--bridge-source.is-bridging .dot__core {
  opacity: 1;
  animation: none;
  transform: translate3d(0, 0, 0) scale(1);
}

.scroll-bridge {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}

.bridge-dot {
  position: absolute;
  top: var(--bridge-start-y, 0px);
  left: var(--bridge-start-x, 0px);
  width: var(--bridge-size, var(--dot-size));
  height: var(--bridge-size, var(--dot-size));
  opacity: var(--bridge-opacity, 0);
  background: var(--bridge-color);
  transform: translate3d(-50%, -50%, 0) translate3d(var(--bridge-move-x, 0px), var(--bridge-move-y, 0px), 0) scale(var(--bridge-scale, 1));
  will-change: transform, opacity;
}

.bridge-dot--one {
  --bridge-color: #F4794E;
}

.bridge-dot--two {
  --bridge-color: #8060C9;
}

.bridge-dot--three {
  --bridge-color: #4CB8A4;
}

.bridge-dot--four {
  --bridge-color: #F5B940;
}

.bridge-dot--five {
  --bridge-color: #D75391;
}

.pain-point {
  position: relative;
  isolation: isolate;
  min-height: 112svh;
  overflow: hidden;
  --pain-visual-shift: clamp(3.25rem, 6.6vh, 4rem);
  background:
    radial-gradient(circle at 20% 44%, rgba(95, 57, 32, 0.13), transparent 26rem),
    radial-gradient(circle at 84% 82%, rgba(115, 68, 39, 0.1), transparent 30rem),
    var(--warm-black);
}

.pain-point::before,
.pain-point::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.pain-point::before {
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='pain-noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23pain-noise)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.pain-point::after {
  background: radial-gradient(ellipse at center, transparent 38%, rgba(10, 9, 8, 0.46) 100%);
}

.pain-point__atmosphere {
  position: absolute;
  top: 22%;
  left: 13%;
  width: min(34vw, 30rem);
  aspect-ratio: 1;
  transform: translateY(var(--pain-visual-shift, 3.25rem));
  border: 1px solid rgba(255, 207, 145, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 3.5rem rgba(226, 133, 61, 0.012), 0 0 0 7rem rgba(226, 133, 61, 0.009);
  opacity: 0.82;
}

.pain-point__field {
  position: absolute;
  z-index: 1;
  top: 22%;
  left: 13%;
  width: min(34vw, 30rem);
  height: min(34vw, 30rem);
  transform: translateY(var(--pain-visual-shift, 3.25rem));
}

.pain-dot {
  position: absolute;
  display: block;
  top: var(--target-y, 50%);
  left: var(--target-x, 50%);
  width: clamp(1.35rem, 3.8vw, 3.35rem);
  aspect-ratio: 1;
  background: var(--dot-color);
}

.pain-dot--target {
  opacity: 0;
}

.pain-dot--one {
  width: clamp(2.5rem, 5.5vw, 4.8rem);
  --dot-color: #F4794E;
}

.pain-dot--two {
  --dot-color: #8060C9;
}

.pain-dot--three {
  --dot-color: #4CB8A4;
}

.pain-dot--four {
  --dot-color: #F5B940;
}

.pain-dot--five {
  --dot-color: #D75391;
}

.pain-point__copy {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: var(--edge);
  width: min(47vw, 45rem);
  transform: translateY(-45%);
}

.pain-point h2 {
  max-width: 8.5em;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.9rem, min(7.2vw, 11vh), 8.6rem);
  font-weight: 800;
  letter-spacing: -0.077em;
  line-height: 0.86;
  text-wrap: balance;
  text-transform: uppercase;
}

.pain-point__problem,
.pain-point__consequence,
.pain-point__consequence span {
  display: block;
}

.pain-point__consequence {
  margin-top: clamp(2.15rem, 5vh, 3.75rem);
  font-size: 0.68em;
  line-height: 0.9;
}

.pain-point__accent {
  color: #ff7952;
}

.pain-point__copy p {
  margin: 0;
  color: var(--muted-ink);
  font-size: clamp(1.05rem, 1.45vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.pain-point__index {
  position: absolute;
  z-index: 3;
  right: var(--edge);
  bottom: clamp(1.35rem, 3.5vh, 2.8rem);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  color: #837c72;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.pain-point__index span {
  display: block;
  width: 3.2rem;
  height: 1px;
  background: #625d55;
}

.hero__index {
  position: absolute;
  z-index: 3;
  right: var(--edge);
  bottom: clamp(1.35rem, 3.5vh, 2.8rem);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  color: #837c72;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero__index span {
  display: block;
  width: 3.2rem;
  height: 1px;
  background: #625d55;
}

@media (max-width: 760px) {
  :root {
    --dot-size: clamp(1.65rem, 9vw, 2.85rem);
    --dot-gap: clamp(0.65rem, min(1.7vw, 2vh), 0.75rem);
    --edge: clamp(1.15rem, 5.3vw, 2.5rem);
  }

  .hero {
    min-height: 100svh;
  }

  .hero__atmosphere {
    top: -8rem;
    right: -11rem;
    width: 28rem;
    height: 28rem;
  }

  .hero__copy {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    margin: 0;
    padding: 2.2rem var(--edge) 0;
    transform: none;
  }

  .hero__sender {
    margin-bottom: 2.25rem;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  h1 {
    max-width: 10em;
    font-size: clamp(2.65rem, 10.8vw, 5.2rem);
    letter-spacing: -0.07em;
    line-height: 0.9;
  }

  .dot-stage {
    top: 46vh;
    right: var(--edge);
    bottom: 5.4rem;
    left: var(--edge);
    transform: translateY(clamp(-5.5rem, -10vh, -3.5rem));
  }

  .hero__index {
    bottom: 1.5rem;
  }

  .pain-point__atmosphere {
    top: 8%;
    left: 50%;
    width: min(84vw, 26rem);
    transform: translate(-50%, var(--pain-visual-shift, 3.25rem));
  }

  .pain-point__field {
    top: 8%;
    right: auto;
    left: 50%;
    width: min(84vw, 26rem);
    height: min(84vw, 26rem);
    transform: translate(-50%, var(--pain-visual-shift, 3.25rem));
  }

  .pain-point__copy {
    top: auto;
    right: auto;
    bottom: clamp(5.2rem, 12vh, 8rem);
    left: var(--edge);
    width: calc(100% - (2 * var(--edge)));
    transform: none;
  }

  .pain-point h2 {
    max-width: 9em;
    font-size: clamp(2.8rem, 11.8vw, 5.6rem);
  }

  .pain-point {
    --pain-visual-shift: clamp(2.5rem, 7vh, 4rem);
  }

  .pain-point__consequence {
    margin-top: 1.8rem;
    font-size: 0.7em;
  }

  .pain-point__index {
    bottom: 1.5rem;
  }
}

@media (max-width: 430px) {
  .hero__copy {
    padding: 1.8rem var(--edge) 0;
  }

  .hero__sender {
    margin-bottom: 1.85rem;
  }

  h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.8rem);
  }

  .dot-stage {
    inset: 0 var(--edge) 5.3rem;
  }

  .hero__index {
    font-size: 0.55rem;
  }

  .hero__index span {
    width: 2.4rem;
  }

  .pain-point__field {
    top: 7%;
    height: min(84vw, 26rem);
  }

  .pain-point__copy {
    bottom: 5.6rem;
  }

  .pain-point h2 {
    font-size: clamp(2.35rem, 10.5vw, 4.25rem);
  }
}

@media (max-width: 760px) and (max-height: 760px) {
  :root {
    --dot-size: clamp(1.45rem, 6.4vw, 2.2rem);
    --dot-gap: clamp(0.65rem, min(1vw, 1.4vh), 0.75rem);
  }

  .hero__copy {
    padding-top: 1.45rem;
  }

  .hero__sender {
    margin-bottom: 1.55rem;
  }

  h1 {
    font-size: clamp(2.25rem, 9.4vw, 4rem);
    line-height: 0.86;
  }

  .dot-stage {
    top: 51vh;
    bottom: 5.1rem;
  }

  .pain-point__field {
    top: 7%;
    height: min(84vw, 26rem);
  }

  .pain-point__copy {
    bottom: 5.45rem;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  :root {
    --dot-size: clamp(1.75rem, min(4.4vw, 4.5vh), 2.7rem);
    --dot-gap: clamp(0.65rem, min(1vw, 1.3vh), 0.75rem);
  }

  .hero__copy {
    width: 40vw;
  }

  .dot-stage {
    right: 55%;
    transform: translateY(calc(clamp(-18rem, -26.5vh, -11rem) + 10.02px));
  }

  .pain-point {
    --pain-visual-shift: clamp(7rem, 20.5vh, 14rem);
  }

  .pain-point__field {
    width: 38vw;
  }

  .pain-point__copy {
    width: 45vw;
  }

  .pain-point h2 {
    font-size: clamp(3rem, min(6.8vw, 8.5vh), 5.8rem);
  }
}

@media (min-width: 981px) and (max-height: 780px) {
  .hero__copy {
    top: 50%;
  }

  h1 {
    font-size: clamp(3.35rem, min(5.5vw, 9vh), 7rem);
  }

  .dot-stage {
    bottom: clamp(3.75rem, 7vh, 5rem);
    transform: translateY(calc(clamp(-9rem, -18vh, -7rem) - 0.43px));
  }

  .pain-point {
    --pain-visual-shift: clamp(4.5rem, 10.5vh, 6rem);
  }
}

@media (min-width: 1200px) and (min-height: 781px) {
  .dot-stage {
    transform: translateY(calc(clamp(-10rem, -12vh, -6rem) - 9.13px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-stage {
    display: none;
  }

  .dot__core {
    opacity: 1;
    animation: none;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .dot--micro .dot__core {
    animation: none !important;
  }

  .bridge-dot {
    opacity: 0 !important;
  }

  .bridge-dot__trail span {
    opacity: 0 !important;
  }

  .pain-dot--target {
    opacity: 1;
  }
}

/* V2 landing-page extension: the approved Hero and Screen 2 rules above stay intact. */
.site-nav {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.15rem var(--edge);
  color: var(--ink);
  background: linear-gradient(to bottom, rgba(23, 21, 18, 0.78), transparent);
  transition: background 240ms ease, backdrop-filter 240ms ease;
}

.site-nav.is-scrolled {
  background: rgba(23, 21, 18, 0.84);
  backdrop-filter: blur(14px);
}

.site-nav a,
.site-footer a,
.contact-details a {
  color: inherit;
  text-decoration: none;
}

.site-nav__brand {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.8vw, 3rem);
  color: var(--muted-ink);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a:focus-visible,
.site-footer a:focus-visible,
.contact-details a:focus-visible,
.contact-cta:focus-visible,
.project-item__toggle:focus-visible {
  outline: 2px solid #e2853d;
  outline-offset: 5px;
}

.site-nav a:hover,
.site-footer a:hover,
.contact-details a:hover {
  color: var(--ink);
}

.story-section,
.digital-section,
.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.story-section {
  min-height: 92svh;
  padding: clamp(5.5rem, 12vw, 10rem) var(--edge);
  background: var(--warm-black);
}

.story-section::before,
.digital-section::before,
.contact-section::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--muted-ink);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker span,
.section-index span {
  display: inline-block;
  width: 2.7rem;
  height: 1px;
  background: rgba(242, 238, 230, 0.3);
}

.section-index {
  position: absolute;
  right: var(--edge);
  bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  color: rgba(242, 238, 230, 0.48);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.story-copy,
.section-intro {
  position: relative;
  z-index: 2;
  max-width: 42rem;
}

.story-copy--right {
  max-width: min(48rem, 56vw);
  margin: clamp(5rem, 12vh, 10rem) 0 0 auto;
  text-align: right;
}

.story-copy--left {
  max-width: min(42rem, 48vw);
  margin: clamp(8rem, 19vh, 14rem) 0 0;
}

.story-copy h2,
.section-intro h2,
.stefan-section h2,
.contact-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 7.5vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.91;
  text-wrap: balance;
}

.story-copy p,
.section-intro > p,
.stefan-section__intro,
.fields-list p,
.method-list p,
.models-list p,
.digital-section p,
.project-item__detail,
.models-section__location {
  color: var(--muted-ink);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  line-height: 1.45;
}

.story-copy p {
  margin: 1.6rem 0 0;
  color: #e2853d;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.problem-screen--launch {
  background: radial-gradient(circle at 14% 78%, rgba(226, 133, 61, 0.13), transparent 25rem), var(--warm-black);
}

.problem-screen--market {
  background: radial-gradient(circle at 84% 42%, rgba(86, 155, 181, 0.12), transparent 28rem), var(--warm-black);
}

.scene-geometry {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.scene-geometry--launch {
  top: 28%;
  left: 8%;
  width: min(27vw, 26rem);
  height: 48%;
}

.scene-geometry--market {
  top: 20%;
  right: 7%;
  width: min(32vw, 30rem);
  height: 58%;
}

.scene-dot {
  position: absolute;
  display: block;
  width: clamp(1.8rem, 4.4vw, 4.6rem);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(1.2rem) scale(0.8);
  transition: opacity 900ms ease, transform 1400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.is-active .scene-dot { opacity: 1; transform: translateY(0) scale(1); }
.scene-dot--launch-1, .scene-dot--market-4 { background: #e2853d; }
.scene-dot--launch-2, .scene-dot--market-1 { background: #d8b45b; }
.scene-dot--launch-3, .scene-dot--market-5 { background: #83a8ae; }
.scene-dot--launch-4, .scene-dot--market-2 { background: #d15b40; }
.scene-dot--launch-5, .scene-dot--market-6 { background: #d9d0b8; }
.scene-dot--market-3 { background: #7889a0; }
.scene-dot--launch-1 { left: 8%; top: 50%; transition-delay: 40ms; }
.scene-dot--launch-2 { left: 34%; top: 50%; transition-delay: 150ms; }
.scene-dot--launch-3 { left: 69%; top: 18%; transition-delay: 260ms; }
.scene-dot--launch-4 { left: 82%; top: 50%; transition-delay: 370ms; }
.scene-dot--launch-5 { left: 69%; top: 82%; transition-delay: 480ms; }
.scene-dot--market-1 { left: 2%; top: 50%; transition-delay: 60ms; }
.scene-dot--market-2 { left: 50%; top: 24%; transition-delay: 170ms; }
.scene-dot--market-3 { left: 73%; top: 24%; transition-delay: 280ms; }
.scene-dot--market-4 { left: 50%; top: 68%; transition-delay: 390ms; }
.scene-dot--market-5 { left: 73%; top: 68%; transition-delay: 500ms; }
.scene-line--launch { display: none; }
.scene-line { position: absolute; display: block; background: rgba(242, 238, 230, 0.25); opacity: 0; transition: opacity 1500ms ease 500ms; }
.is-active .scene-line { opacity: 1; }
.scene-line--launch { left: 10%; right: 10%; bottom: 25%; height: 1px; transform: rotate(-18deg); transform-origin: left center; }

.stefan-section {
  min-height: 82svh;
  background: radial-gradient(circle at 78% 42%, rgba(226, 133, 61, 0.14), transparent 24rem), var(--warm-black);
}

.stefan-section__copy { max-width: 50rem; margin: clamp(6rem, 13vh, 10rem) 0 0 clamp(8vw, 15vw, 14rem); }
.stefan-section h2 { font-size: clamp(4rem, 11vw, 11rem); color: #e2853d; }
.stefan-section__name { margin: 2.8rem 0 0; font-size: clamp(1.5rem, 2.4vw, 2.4rem); font-weight: 700; }
.stefan-section__role { margin: 0.5rem 0 0; color: var(--muted-ink); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.stefan-section__focus { max-width: 30rem; margin: 3rem 0 0; font-size: clamp(1.25rem, 2.2vw, 2.2rem); line-height: 1.08; }
.stefan-section__intro { max-width: 32rem; margin: 1.5rem 0 0; }
.stefan-signal { position: absolute; right: 9%; bottom: 20%; width: clamp(8rem, 20vw, 18rem); height: clamp(8rem, 20vw, 18rem); border: 1px solid rgba(226, 133, 61, 0.35); border-radius: 50%; }
.stefan-signal span { position: absolute; inset: 22%; border: 1px solid rgba(226, 133, 61, 0.22); border-radius: 50%; }
.stefan-signal span:nth-child(2) { inset: 42%; background: #e2853d; border: 0; }
.stefan-signal span:nth-child(3) { inset: 0; border-style: dashed; }
.stefan-signal span:nth-child(4) { inset: 67%; background: #83a8ae; border: 0; }

.fields-section,
.projects-section,
.method-section,
.models-section { padding-top: clamp(5.5rem, 10vw, 9rem); padding-bottom: clamp(7rem, 13vw, 12rem); }
.section-intro { margin: clamp(5rem, 11vh, 9rem) 0 0; }
.section-intro > p { max-width: 31rem; margin: 2rem 0 0; }
.fields-list, .project-list, .method-list { max-width: 76rem; margin: clamp(5rem, 10vh, 8rem) 0 0; padding: 0; list-style: none; }
.fields-list li, .method-list li { display: grid; grid-template-columns: 4rem minmax(12rem, 1fr) minmax(15rem, 0.8fr); gap: 1.5rem; align-items: baseline; padding: 1.5rem 0; border-top: 1px solid rgba(242, 238, 230, 0.17); }
.fields-list__number, .method-list li > span, .models-list article > span { color: #e2853d; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; }
.fields-list h3, .method-list h3, .models-list h3 { margin: 0; font-size: clamp(1.25rem, 2.1vw, 2.2rem); letter-spacing: -0.035em; }
.fields-list p, .method-list p { margin: 0; font-size: 0.95rem; }

.digital-section { padding: clamp(6rem, 13vw, 12rem) var(--edge); background: #b85e35; color: #171512; }
.digital-section::before { opacity: 0.14; }
.digital-section__inner { max-width: 58rem; margin: 0 auto; }
.digital-section .section-kicker, .digital-section p { color: rgba(23, 21, 18, 0.72); }
.digital-section h2 { max-width: 47rem; margin: 4rem 0 0; font-size: clamp(3rem, 8vw, 8rem); letter-spacing: -0.07em; line-height: 0.9; }
.digital-section__answer { margin: 1.5rem 0 0; color: #171512 !important; font-size: clamp(1.8rem, 4vw, 4rem) !important; font-weight: 700; letter-spacing: -0.05em; }
.digital-section__inner > p:not(.digital-section__answer):not(.digital-section__note) { max-width: 33rem; margin-top: 2.5rem; }
.digital-section__note { margin-top: 4rem !important; font-size: 0.8rem !important; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.digital-section__note span { font-weight: 400; text-transform: none; }

.projects-section { background: #1c1916; }
.project-item { border-top: 1px solid rgba(242, 238, 230, 0.17); }
.project-item:last-child { border-bottom: 1px solid rgba(242, 238, 230, 0.17); }
.project-item__toggle { display: grid; grid-template-columns: 4rem 1fr 2rem; width: 100%; align-items: center; gap: 1rem; padding: 1.45rem 0; border: 0; color: var(--ink); background: transparent; font: inherit; text-align: left; cursor: pointer; }
.project-item__toggle > span:first-child { color: #e2853d; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; }
.project-item__toggle strong { font-size: clamp(1.25rem, 2.4vw, 2.5rem); letter-spacing: -0.04em; }
.project-item__plus { color: #e2853d; font-size: 1.8rem; font-weight: 300; text-align: right; transition: transform 240ms ease; }
.project-item.is-open .project-item__plus { transform: rotate(45deg); }
.project-item__detail { display: block; max-width: 52rem; max-height: 0; margin-left: 4rem; overflow: hidden; opacity: 0; transition: max-height 500ms ease, opacity 300ms ease, padding 500ms ease; }
.project-item__detail p { margin: 0; }
.project-item.is-open .project-item__detail { max-height: 40rem; padding: 0.2rem 0 2rem; opacity: 1; }

.method-section { background: radial-gradient(circle at 75% 16%, rgba(226, 133, 61, 0.11), transparent 26rem), var(--warm-black); }
.method-list li { grid-template-columns: 4rem minmax(10rem, 0.6fr) minmax(15rem, 1fr); }
.models-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2.5rem, 7vw, 8rem); margin-top: clamp(5rem, 10vh, 8rem); }
.models-list article { min-height: 17rem; padding-top: 1.5rem; border-top: 1px solid rgba(242, 238, 230, 0.17); }
.models-list h3 { margin-top: 4rem; }
.models-list p { margin-top: 1rem; font-size: 1rem; }
.models-section__location { margin: 6rem 0 0; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }

.contact-section { min-height: 82svh; padding: clamp(6rem, 14vw, 12rem) var(--edge); background: radial-gradient(circle at 80% 55%, rgba(226, 133, 61, 0.2), transparent 30rem), var(--warm-black); }
.contact-section__inner { max-width: 78rem; margin: 0 auto; }
.contact-section h2 { margin-top: 5rem; font-size: clamp(3.2rem, 8.2vw, 9rem); }
.contact-section h2 span { color: #e2853d; }
.contact-cta { display: inline-flex; align-items: center; gap: 1.5rem; margin-top: 4rem; padding-bottom: 0.65rem; color: var(--ink); border-bottom: 1px solid #e2853d; font-size: clamp(1.2rem, 2vw, 2rem); font-weight: 700; text-decoration: none; }
.contact-cta span { color: #e2853d; }
.contact-details { display: flex; flex-wrap: wrap; gap: 0.8rem 2rem; margin-top: 6rem; color: var(--muted-ink); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-details a:hover { color: #e2853d; }
.legal-section { display: none; }
.site-footer { display: flex; justify-content: space-between; gap: 2rem; padding: 1.5rem var(--edge); color: rgba(242, 238, 230, 0.52); border-top: 1px solid rgba(242, 238, 230, 0.15); font-size: 0.67rem; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer div { display: flex; gap: 1.5rem; }
.reveal { transition: opacity 800ms ease, transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1); }
.js-ready .reveal:not(.is-visible) { opacity: 0; transform: translateY(1.3rem); }
.js-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 760px) {
  .site-nav { align-items: flex-start; padding-top: 0.9rem; }
  .site-nav__links { gap: 0.75rem; font-size: 0.56rem; }
  .site-nav__links a:nth-child(-n+2) { display: none; }
  .story-section { min-height: 82svh; }
  .story-copy--right, .story-copy--left { max-width: none; margin-top: clamp(5rem, 13vh, 8rem); text-align: left; }
  .story-copy h2, .section-intro h2 { font-size: clamp(3.1rem, 14vw, 6rem); }
  .scene-geometry--launch { top: 72%; left: 8%; width: 76vw; height: 14%; }
  .scene-geometry--market { top: 72%; right: 8%; width: 76vw; height: 14%; }
  .stefan-section__copy { margin-left: 0; }
  .stefan-signal { right: 8%; bottom: 14%; width: 8rem; height: 8rem; opacity: 0.6; }
  .fields-list li, .method-list li { grid-template-columns: 2.5rem 1fr; gap: 0.6rem 1rem; }
  .fields-list p, .method-list p { grid-column: 2; }
  .models-list { grid-template-columns: 1fr; gap: 0; }
  .models-list article { min-height: auto; padding: 1.5rem 0 2rem; }
  .models-list h3 { margin-top: 1.4rem; }
  .models-section__location { margin-top: 4rem; line-height: 1.5; }
  .project-item__detail { margin-left: 3.5rem; }
  .contact-section h2 { margin-top: 4rem; font-size: clamp(3rem, 13vw, 5rem); }
  .contact-details { margin-top: 4rem; flex-direction: column; gap: 0.9rem; }
  .site-footer { flex-direction: column; gap: 1rem; line-height: 1.5; }
}

@media (max-width: 420px) {
  .site-nav__brand { font-size: 0.62rem; }
  .site-nav__links { gap: 0.55rem; font-size: 0.5rem; }
  .section-kicker { font-size: 0.58rem; }
  .story-section { padding-top: 5rem; }
  .project-item__toggle { grid-template-columns: 2.5rem 1fr 1.25rem; gap: 0.6rem; }
  .project-item__toggle strong { font-size: 1.15rem; }
  .project-item__detail { margin-left: 3.1rem; font-size: 0.95rem; }
}

@media (max-width: 430px) {
  .site-nav:not(.is-scrolled) { transform: translateY(-110%); }
  .site-nav.is-scrolled { transform: translateY(0); }
}

@media (max-width: 330px) and (max-height: 700px) {
  .dot-stage { transform: translateY(calc(clamp(-5.5rem, -10vh, -3.5rem) + 0.9rem)); }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav, .scene-dot, .scene-line, .reveal, .project-item__detail, .project-item__plus { transition: none !important; }
  .site-nav:not(.is-scrolled) { transform: none; }
  .js-ready .reveal:not(.is-visible) { opacity: 1; transform: none; }
  .scene-dot { opacity: 1; transform: none; }
  .scene-line { opacity: 1; }
  .project-item__detail { max-height: none; }
}

.legal-page {
  min-height: 100svh;
  padding: clamp(6rem, 12vw, 10rem) var(--edge) 4rem;
  background: var(--warm-black);
}

.legal-page__nav {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(5rem, 12vh, 9rem);
  color: var(--muted-ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-page__nav a { color: inherit; text-decoration: none; }
.legal-page__nav a:hover { color: var(--ink); }
.legal-page__content { max-width: 54rem; margin: 0 auto; }
.legal-page h1 { margin: 0; color: var(--ink); font-size: clamp(3.4rem, 9vw, 8rem); letter-spacing: -0.07em; line-height: 0.9; }
.legal-page h2 { margin: clamp(3.5rem, 8vh, 6rem) 0 1rem; color: var(--ink); font-size: clamp(1.3rem, 2vw, 2rem); letter-spacing: -0.035em; }
.legal-page p { max-width: 43rem; margin: 0.6rem 0; color: var(--muted-ink); font-size: 1rem; line-height: 1.6; }
.legal-page__todo { margin-top: 2rem !important; padding: 1rem 1.2rem; color: #171512 !important; background: #d8b45b; font-size: 0.88rem !important; }
.legal-page__footer { display: flex; justify-content: space-between; gap: 2rem; margin-top: clamp(6rem, 12vh, 10rem); padding-top: 1.2rem; color: rgba(242, 238, 230, 0.5); border-top: 1px solid rgba(242, 238, 230, 0.17); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; }
.legal-page__footer a { color: inherit; text-decoration: none; }

@media (max-width: 560px) {
  .legal-page { padding-top: 4rem; }
  .legal-page__nav, .legal-page__footer { flex-direction: column; }
  .legal-page--privacy h1 { font-size: clamp(2.4rem, 10.5vw, 8rem); }
}
