:root {
  --ink: #070706;
  --charcoal: #11100e;
  --ivory: #f1ede4;
  --ivory-soft: #d2cab9;
  --gold: #806a4c;
  --line: rgba(241, 237, 228, 0.16);
  --panel: rgba(241, 237, 228, 0.045);
  --glow: rgba(128, 106, 76, 0.07);
  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
}

* { box-sizing: border-box; }

html,
body {
  min-height: 100%;
  width: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ivory);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 75% 10%, var(--glow), transparent 28rem),
    radial-gradient(circle at 20% 85%, rgba(241, 237, 228, 0.08), transparent 24rem),
    linear-gradient(140deg, #050504 0%, #11100e 54%, #17140f 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(241, 237, 228, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 237, 228, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

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

body.home-cinema,
body.service-cinema {
  overflow-x: hidden;
  min-height: 100svh;
  width: 100%;
  background-color: #010101;
  background:
    radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 34%), rgba(128, 106, 76, 0.035), transparent 20rem),
    radial-gradient(ellipse at 50% -8%, rgba(128, 106, 76, 0.1), transparent 34rem),
    radial-gradient(ellipse at 50% 48%, rgba(241, 237, 228, 0.055), transparent 32rem),
    linear-gradient(180deg, #010101 0%, #050403 42%, #100d09 100%);
}

body.home-cinema {
  background:
    radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 34%), rgba(140, 111, 71, 0.07), transparent 22rem),
    radial-gradient(ellipse at 50% -4%, rgba(170, 133, 79, 0.16), transparent 36rem),
    radial-gradient(ellipse at 50% 42%, rgba(241, 237, 228, 0.06), transparent 34rem),
    radial-gradient(120% 68% at 50% 108%, rgba(0, 0, 0, 0.74), transparent 62%),
    linear-gradient(180deg, #000 0%, #050403 40%, #0b0806 100%);
}

body.home-cinema::before,
body.service-cinema::before {
  z-index: 1;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(241, 237, 228, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 237, 228, 0.02) 1px, transparent 1px);
  background-size: 96px 96px;
}

body.home-cinema::after,
body.service-cinema::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 0%, transparent 42%, rgba(0, 0, 0, 0.58) 100%),
    radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 32%), rgba(128, 106, 76, 0.032), transparent 17rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.62));
  mix-blend-mode: screen;
}

body.home-cinema::after {
  background:
    radial-gradient(ellipse at center, transparent 0%, transparent 36%, rgba(0, 0, 0, 0.64) 100%),
    radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 34%), rgba(176, 141, 88, 0.05), transparent 18rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.68));
}

.webgl-stage {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100svh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 900ms ease;
}

.home-cinema.is-ready .webgl-stage,
.service-cinema.is-ready .webgl-stage {
  opacity: 1;
}

.service-cinema .webgl-stage {
  filter: saturate(0.34) brightness(0.52) contrast(1.08);
}

.webgl-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.energy-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100svh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.88;
  mix-blend-mode: screen;
}

.has-webgl .energy-canvas {
  display: none;
}

.hub {
  min-height: 100svh;
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 30px;
  padding: 40px 0;
}

.hub--cinematic {
  position: relative;
  min-height: 100svh;
  width: min(1040px, calc(100% - 36px));
  gap: 42px;
  justify-items: center;
  perspective: 1100px;
  z-index: 4;
}

.ambient {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100svh;
  z-index: 1;
  pointer-events: none;
}

.ambient--spotlight {
  background:
    radial-gradient(ellipse at 50% 19%, rgba(235, 197, 128, 0.42), transparent 19rem),
    conic-gradient(from 210deg at 50% 34%, transparent 0deg, rgba(214, 174, 107, 0.16) 52deg, transparent 112deg, transparent 360deg),
    linear-gradient(180deg, rgba(199, 148, 74, 0.18), transparent 42%);
  filter: blur(3px);
  mix-blend-mode: screen;
  animation: breathe-light 9s ease-in-out infinite alternate;
}

.ambient--grain {
  opacity: 0.16;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.16) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}

.ambient--particles {
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(241, 237, 228, 0.18) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 22%, rgba(182, 144, 95, 0.18) 0 1px, transparent 1.5px),
    radial-gradient(circle at 82% 68%, rgba(241, 237, 228, 0.12) 0 1px, transparent 1.5px),
    radial-gradient(circle at 28% 76%, rgba(182, 144, 95, 0.15) 0 1px, transparent 1.5px);
  background-size: 360px 360px, 420px 420px, 380px 380px, 460px 460px;
  animation: drift-particles 16s ease-in-out infinite alternate;
}

.depth-grid {
  position: fixed;
  left: 50%;
  bottom: -22vh;
  width: 160vw;
  height: 58vh;
  z-index: 1;
  pointer-events: none;
  opacity: 0.32;
  transform: translateX(-50%) perspective(720px) rotateX(68deg);
  transform-origin: center bottom;
  background-image:
    linear-gradient(rgba(216, 174, 104, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 174, 104, 0.09) 1px, transparent 1px);
  background-size: 78px 78px;
  filter: drop-shadow(0 0 18px rgba(216, 174, 104, 0.12));
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent 86%);
  animation: grid-breathe 10s ease-in-out infinite alternate;
}

.orbit-field {
  position: fixed;
  left: 50%;
  top: 42%;
  width: min(122vw, 1180px);
  aspect-ratio: 1;
  z-index: 1;
  pointer-events: none;
  transform: translate(-50%, -50%) rotateX(62deg);
  transform-style: preserve-3d;
  opacity: 0.92;
  mix-blend-mode: screen;
}

.service-cinema .ambient--spotlight {
  opacity: 0.86;
  background:
    radial-gradient(ellipse at 50% 8%, rgba(235, 197, 128, 0.34), transparent 24rem),
    conic-gradient(from 210deg at 52% 24%, transparent 0deg, rgba(214, 174, 107, 0.11) 54deg, transparent 114deg, transparent 360deg),
    linear-gradient(180deg, rgba(199, 148, 74, 0.12), transparent 46%);
}

.service-cinema .depth-grid--service {
  bottom: -26vh;
  opacity: 0.24;
}

.service-cinema .orbit-field--service {
  top: 22%;
  width: min(112vw, 1040px);
  opacity: 0.42;
}

.orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(216, 174, 104, 0.14);
  border-radius: 50%;
  filter: drop-shadow(0 0 16px rgba(216, 174, 104, 0.14));
  animation: orbit-drift 18s linear infinite;
}

.orbit::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(229, 200, 146, 0.82);
  box-shadow: 0 0 22px rgba(229, 200, 146, 0.48);
}

.orbit--two {
  inset: 10%;
  animation-duration: 24s;
  animation-direction: reverse;
  transform: rotateZ(34deg);
  opacity: 0.72;
}

.orbit--three {
  inset: 21%;
  animation-duration: 31s;
  transform: rotateZ(-28deg);
  opacity: 0.52;
}

.hub__core {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.hub__core--cinematic {
  gap: 22px;
  padding-top: 6px;
}

.brand {
  position: relative;
  display: inline-grid;
  justify-items: center;
}

.home-cinema .brand {
  animation: logo-float 7.4s ease-in-out infinite;
  isolation: isolate;
}

.home-cinema .brand::before,
.home-cinema .brand::after {
  content: "";
  position: absolute;
  inset: -42px;
  pointer-events: none;
  border: 1px solid rgba(216, 174, 104, 0.14);
  opacity: 0.78;
  transform: rotate(45deg);
  filter: drop-shadow(0 0 24px rgba(216, 174, 104, 0.12));
  z-index: 1;
}

.home-cinema .brand::before {
  animation: logo-orbit-frame 13s linear infinite, logo-ring-pulse 5.8s ease-in-out infinite alternate;
  opacity: 0.6;
}

.home-cinema .brand::after {
  inset: -62px;
  border-color: rgba(241, 237, 228, 0.055);
  opacity: 0.3;
  animation: logo-orbit-frame-reverse 18s linear infinite, logo-ring-pulse 7.2s ease-in-out infinite alternate;
}

.home-orbit-canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(300px, 41vw, 520px);
  height: clamp(300px, 41vw, 520px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.84;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 18px rgba(216, 174, 104, 0.12));
}

.home-orbit-canvas--back {
  z-index: 0;
  opacity: 0.78;
}

.home-orbit-canvas--front {
  z-index: 3;
  opacity: 0.58;
  filter: drop-shadow(0 0 14px rgba(216, 174, 104, 0.1));
}

.brand__mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(182, 144, 95, 0.78);
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand__mark--large {
  width: 238px;
  height: 238px;
  position: relative;
  z-index: 2;
  border-color: rgba(214, 174, 107, 0.88);
  color: transparent;
  background:
    radial-gradient(circle at 42% 18%, rgba(255, 246, 220, 0.32), transparent 30%),
    radial-gradient(circle at 80% 85%, rgba(255, 246, 220, 0.06), transparent 44%),
    linear-gradient(146deg, rgba(241, 237, 228, 0.18), rgba(10, 9, 7, 0.76)),
    conic-gradient(from 228deg, rgba(115, 80, 36, 0.2), rgba(252, 227, 166, 0.52), rgba(116, 86, 45, 0.15), rgba(214, 174, 107, 0.36), rgba(115, 80, 36, 0.2));
  background-size: 130% 130%, 140% 140%, 100% 100%, 176% 176%;
  background-clip: padding-box;
  box-shadow:
    0 0 0 1px rgba(214, 174, 107, 0.16) inset,
    0 38px 122px rgba(0, 0, 0, 0.76),
    0 0 116px rgba(182, 144, 95, 0.38),
    0 0 210px rgba(216, 174, 104, 0.12);
  font-family: var(--serif);
  font-size: 5.2rem;
  border-width: 1px;
  transform-style: preserve-3d;
  animation: monogram-arrive 980ms ease both, monogram-glow 7s ease-in-out infinite alternate, logo-core-breathe 8.2s ease-in-out infinite;
}

.brand__mark--large::before {
  content: "";
  position: absolute;
  inset: -30px;
  border: 1px solid rgba(216, 174, 104, 0.18);
  opacity: 0.82;
  transform: rotate(45deg);
  box-shadow: 0 0 64px rgba(216, 174, 104, 0.11);
}

.brand__mark--large::after {
  content: "H";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: transparent;
  background: linear-gradient(112deg, #745127 0%, #f5dc9d 32%, #b6905f 51%, #fff1c3 68%, #745127 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 28px rgba(216, 174, 104, 0.42));
  animation: metal-sheen 5.8s ease-in-out infinite alternate;
}

.brand-word {
  margin: 16px 0 0;
  color: rgba(241, 237, 228, 0.94);
  font-family: var(--serif);
  font-size: 1.34rem;
  letter-spacing: 0.86rem;
  line-height: 1;
  text-indent: 0.86rem;
  text-shadow: 0 0 32px rgba(216, 174, 104, 0.16);
}

.payoff {
  margin: 0;
  color: var(--ivory-soft);
  font-size: clamp(0.98rem, 2.2vw, 1.22rem);
  letter-spacing: 0.03em;
  max-width: 46ch;
}

.home-cinema .payoff {
  max-width: 44ch;
  color: rgba(210, 202, 185, 0.9);
  line-height: 1.7;
}

.home-cinema .ambient--grain {
  opacity: 0.19;
}

.home-cinema .ambient--spotlight {
  background:
    radial-gradient(ellipse at 50% 18%, rgba(235, 197, 128, 0.38), transparent 20rem),
    conic-gradient(from 210deg at 50% 33%, transparent 0deg, rgba(214, 174, 107, 0.14) 52deg, transparent 112deg, transparent 360deg),
    linear-gradient(180deg, rgba(199, 148, 74, 0.2), transparent 44%);
}

.choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.choices--compact {
  max-width: 620px;
  margin: 0 auto;
}

.choices--premium {
  width: min(100%, 780px);
  margin: 0 auto;
  gap: 18px;
  perspective: 1200px;
}

.choice {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
  display: grid;
  align-content: end;
  gap: 10px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.choice--premium {
  position: relative;
  min-height: 188px;
  padding: 24px;
  overflow: hidden;
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateZ(0);
  border-color: rgba(216, 174, 104, 0.42);
  background:
    radial-gradient(circle at var(--light-x, 50%) var(--light-y, 0%), rgba(229, 200, 146, 0.24), transparent 38%),
    linear-gradient(155deg, rgba(241, 237, 228, 0.095), rgba(241, 237, 228, 0.018)),
    radial-gradient(circle at 50% 0%, rgba(182, 144, 95, 0.18), transparent 68%);
  backdrop-filter: blur(22px) saturate(122%);
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.38),
    0 0 44px rgba(216, 174, 104, 0.08),
    0 0 0 1px rgba(241, 237, 228, 0.03) inset;
  transition: transform 420ms ease, border-color 420ms ease, background 420ms ease, box-shadow 420ms ease;
}

.choice--premium::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(120deg, transparent, rgba(214, 174, 107, 0.18), transparent);
  transform: translateX(-42%);
  transition: opacity 420ms ease, transform 620ms ease;
}

.choice--premium::after {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid transparent;
  background:
    linear-gradient(140deg, rgba(216, 174, 104, 0.6), transparent 24%, transparent 70%, rgba(216, 174, 104, 0.34)) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.45;
  pointer-events: none;
}

.choice--premium:hover,
.choice--premium:focus-visible {
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-7px) scale(1.026);
  border-color: rgba(216, 174, 104, 0.78);
  background:
    linear-gradient(155deg, rgba(241, 237, 228, 0.095), rgba(241, 237, 228, 0.026)),
    radial-gradient(circle at 50% 0%, rgba(182, 144, 95, 0.22), transparent 66%);
  box-shadow:
    0 34px 104px rgba(0, 0, 0, 0.48),
    0 0 72px rgba(182, 144, 95, 0.2),
    0 0 0 1px rgba(241, 237, 228, 0.05) inset;
}

.choice--premium:hover::before,
.choice--premium:focus-visible::before {
  opacity: 1;
  transform: translateX(38%);
}

.choice--small {
  min-height: 112px;
  padding: 16px;
}

.choice--premium .choice__label,
.choice--premium .choice__meta,
.choice--premium .choice__cta,
.choice--premium .choice__icon {
  position: relative;
  z-index: 1;
}

.choice:hover,
.choice:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(182, 144, 95, 0.68);
  background: rgba(241, 237, 228, 0.08);
}

.choice__label {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 0.9;
}

.choice--premium .choice__label {
  font-size: 2.02rem;
  letter-spacing: 0.02em;
}

.choice__meta {
  color: var(--ivory-soft);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.choice__icon {
  width: 34px;
  height: 26px;
  position: relative;
  display: block;
  margin-bottom: 20px;
  border: 1px solid rgba(216, 174, 104, 0.62);
  border-radius: 2px;
  box-shadow: 0 0 28px rgba(216, 174, 104, 0.18);
}

.choice__icon::before,
.choice__icon::after {
  content: "";
  position: absolute;
  background: rgba(216, 174, 104, 0.62);
}

.choice__icon::before {
  left: 5px;
  right: 5px;
  top: 7px;
  height: 1px;
}

.choice__icon::after {
  left: 5px;
  right: 10px;
  top: 13px;
  height: 1px;
}

.choice__icon--site {
  border-radius: 50% 50% 46% 46%;
}

.choice__icon--site::before {
  left: 50%;
  top: 3px;
  bottom: 3px;
  width: 1px;
  height: auto;
}

.choice__icon--site::after {
  left: 4px;
  right: 4px;
  top: 10px;
}

.choice__cta {
  margin-top: 14px;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.choice__cta::after {
  content: "  /";
  letter-spacing: 0;
}

.service-page {
  position: relative;
  z-index: 4;
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 34px;
  perspective: 1200px;
}

.service-hero {
  position: relative;
  display: grid;
  gap: 20px;
  margin-bottom: 18px;
  padding: clamp(28px, 5vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(216, 174, 104, 0.28);
  background:
    radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 16%), rgba(229, 200, 146, 0.14), transparent 34%),
    linear-gradient(150deg, rgba(241, 237, 228, 0.08), rgba(241, 237, 228, 0.018));
  backdrop-filter: blur(22px) saturate(118%);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.42),
    0 0 64px rgba(216, 174, 104, 0.08),
    0 0 0 1px rgba(241, 237, 228, 0.035) inset;
}

.service-hero::before,
.service-section::before,
.service-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.48;
  background:
    linear-gradient(130deg, rgba(216, 174, 104, 0.28), transparent 24%, transparent 74%, rgba(216, 174, 104, 0.16));
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  border: 1px solid transparent;
}

.service-hero::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -140px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 174, 104, 0.18), transparent 68%);
  filter: blur(4px);
  pointer-events: none;
}

.service-kicker {
  margin: 0;
  color: #d7b679;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.service-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.55rem, 6vw, 5.15rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 11ch;
  text-shadow: 0 0 42px rgba(216, 174, 104, 0.14);
}

.service-lead {
  margin: 0;
  max-width: 62ch;
  color: var(--ivory-soft);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.72;
}

.service-section {
  position: relative;
  margin-top: 14px;
  padding: clamp(22px, 3.4vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(216, 174, 104, 0.22);
  background:
    radial-gradient(circle at var(--mouse-x, 50%) 0%, rgba(229, 200, 146, 0.08), transparent 32%),
    linear-gradient(150deg, rgba(241, 237, 228, 0.064), rgba(241, 237, 228, 0.017));
  backdrop-filter: blur(18px) saturate(112%);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(241, 237, 228, 0.026) inset;
}

.service-section h2,
.service-cta h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
  color: rgba(241, 237, 228, 0.96);
}

.service-section p,
.service-cta p {
  margin: 0;
  color: var(--ivory-soft);
  line-height: 1.65;
}

.card-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.info-card {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(216, 174, 104, 0.18);
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 174, 104, 0.1), transparent 56%),
    rgba(241, 237, 228, 0.034);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
  transition: transform 320ms ease, border-color 320ms ease, background 320ms ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 174, 104, 0.4);
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 174, 104, 0.16), transparent 58%),
    rgba(241, 237, 228, 0.048);
}

.info-card h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1;
}

.info-card p {
  margin: 0;
  color: var(--ivory-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.check-list,
.step-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: var(--ivory-soft);
  line-height: 1.6;
}

.service-cta {
  position: relative;
  margin-top: 14px;
  padding: clamp(24px, 3.8vw, 40px);
  overflow: hidden;
  border: 1px solid rgba(216, 174, 104, 0.34);
  background:
    radial-gradient(circle at var(--mouse-x, 50%) 0%, rgba(229, 200, 146, 0.18), transparent 36%),
    linear-gradient(150deg, rgba(241, 237, 228, 0.09), rgba(241, 237, 228, 0.022));
  backdrop-filter: blur(22px) saturate(118%);
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.34),
    0 0 70px rgba(216, 174, 104, 0.1);
}

.service-actions {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  max-width: 420px;
}

.service-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 174, 104, 0.62);
  background:
    radial-gradient(circle at var(--mouse-x, 50%) 0%, rgba(229, 200, 146, 0.16), transparent 48%),
    rgba(241, 237, 228, 0.052);
  color: var(--ivory);
  padding: 0 16px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.service-link:hover,
.service-link:focus-visible {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24), 0 0 40px rgba(216, 174, 104, 0.12);
}

.service-link--ghost {
  border-color: var(--line);
  background: transparent;
}

.service-page--story {
  width: min(1160px, calc(100% - 36px));
  padding-top: 64px;
}

.service-hero--story {
  min-height: min(720px, calc(100svh - 96px));
  align-content: center;
  margin-bottom: 24px;
}

.service-hero--story h1 {
  max-width: 12.4ch;
}

.story-signal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.story-signal span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(216, 174, 104, 0.26);
  background: rgba(241, 237, 228, 0.038);
  color: rgba(241, 237, 228, 0.82);
  padding: 0 14px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.story-section {
  margin-top: clamp(18px, 4vw, 48px);
}

.story-section--problem {
  width: min(100%, 980px);
  margin-left: auto;
  transform: translateX(2vw);
}

.story-section--vision {
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(34px, 5vw, 64px);
}

.story-section--solution {
  width: min(100%, 1040px);
  margin-right: auto;
  transform: translateX(-2vw);
}

.story-section--examples {
  padding: clamp(26px, 4.4vw, 54px);
}

.story-section--change {
  width: min(100%, 900px);
  margin-left: auto;
}

.story-section--process {
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(34px, 5vw, 64px);
}

.story-label {
  margin: 0 0 14px;
  color: #d7b679;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1fr);
  gap: clamp(24px, 6vw, 76px);
  align-items: end;
}

.story-split--reverse {
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
}

.story-split h2,
.story-statement h2,
.story-section--examples h2,
.story-section--process h2,
.change-stack h2 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 4.7rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.story-copy {
  display: grid;
  gap: 14px;
}

.story-copy p,
.story-large-text {
  margin: 0;
  color: rgba(210, 202, 185, 0.88);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.78;
}

.story-large-text {
  font-family: var(--serif);
  color: rgba(241, 237, 228, 0.88);
  font-size: clamp(1.45rem, 2.8vw, 2.45rem);
  line-height: 1.22;
}

.story-statement {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(26px, 5vw, 52px);
}

.story-orbit-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.story-card,
.story-mosaic article,
.story-rail article,
.change-line {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 174, 104, 0.18);
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 174, 104, 0.1), transparent 58%),
    rgba(241, 237, 228, 0.032);
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.22);
}

.story-card {
  min-height: 240px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 22px;
  transition: transform 360ms ease, border-color 360ms ease, background 360ms ease;
}

.story-card--raised {
  transform: translateY(-28px);
}

.story-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 174, 104, 0.42);
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 174, 104, 0.16), transparent 58%),
    rgba(241, 237, 228, 0.046);
}

.story-card--raised:hover {
  transform: translateY(-36px);
}

.story-card span,
.story-rail span,
.change-line span {
  color: rgba(216, 174, 104, 0.78);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-card h3,
.story-mosaic h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1;
}

.story-card p,
.story-mosaic p,
.story-rail p,
.change-line p {
  margin: 0;
  color: rgba(210, 202, 185, 0.84);
  line-height: 1.62;
}

.story-mosaic {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-auto-rows: minmax(190px, auto);
  gap: 16px;
  margin-top: 24px;
}

.story-mosaic article {
  display: grid;
  align-content: end;
  gap: 10px;
  padding: clamp(20px, 3vw, 30px);
}

.story-mosaic article:nth-child(1) {
  min-height: 280px;
}

.story-mosaic article:nth-child(2) {
  transform: translateY(34px);
}

.story-mosaic article:nth-child(3) {
  transform: translateY(-18px);
}

.story-mosaic article:nth-child(4) {
  min-height: 260px;
}

.change-stack {
  display: grid;
  gap: 18px;
}

.change-stack h2 {
  max-width: 12ch;
  margin-bottom: 12px;
}

.change-line {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
}

.change-line--after {
  margin-left: clamp(0px, 8vw, 96px);
  border-color: rgba(216, 174, 104, 0.36);
  background:
    radial-gradient(circle at 25% 0%, rgba(216, 174, 104, 0.16), transparent 58%),
    rgba(241, 237, 228, 0.044);
}

.story-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.story-rail::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 174, 104, 0.42), transparent);
}

.story-rail article {
  min-height: 190px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 20px;
}

.story-rail article:nth-child(even) {
  margin-top: 42px;
}

.service-cta--story {
  margin-top: clamp(28px, 5vw, 62px);
  min-height: 360px;
  display: grid;
  align-content: center;
  padding: clamp(30px, 6vw, 70px);
}

.service-cta--story h2 {
  max-width: 15ch;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.service-cta--story p:not(.story-label) {
  max-width: 62ch;
  margin-top: 10px;
  font-size: 1.05rem;
}

.service-page--immersive {
  width: min(1180px, calc(100% - 36px));
  padding-top: 64px;
}

.immersive-opening {
  min-height: min(760px, calc(100svh - 72px));
  align-content: center;
  grid-template-columns: minmax(0, 1fr);
  isolation: isolate;
}

.immersive-opening h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.opening-console {
  width: min(100%, 640px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(18px, 4vw, 40px);
  border: 1px solid rgba(159, 127, 86, 0.16);
  background: rgba(159, 127, 86, 0.08);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.36);
}

.opening-console span {
  min-height: 72px;
  display: grid;
  align-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 174, 104, 0.09), transparent 58%),
    rgba(8, 7, 6, 0.72);
  color: rgba(241, 237, 228, 0.78);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-visual {
  position: absolute;
  right: clamp(24px, 5vw, 64px);
  bottom: clamp(24px, 5vw, 58px);
  width: min(42vw, 460px);
  min-height: 300px;
  border: 1px solid rgba(159, 127, 86, 0.2);
  background:
    radial-gradient(circle at 36% 20%, rgba(159, 127, 86, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(241, 237, 228, 0.06), rgba(241, 237, 228, 0.012));
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.42), 0 0 42px rgba(159, 127, 86, 0.045);
  backdrop-filter: blur(20px);
  transform: perspective(900px) rotateY(-10deg) rotateX(5deg);
  pointer-events: none;
  z-index: -1;
}

.service-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(241, 237, 228, 0.06);
}

.visual-topbar {
  display: flex;
  gap: 7px;
  padding: 18px;
}

.visual-topbar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(159, 127, 86, 0.46);
}

.visual-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px 24px 24px;
}

.visual-dashboard i,
.visual-dashboard em,
.visual-dashboard strong,
.visual-browser span,
.visual-browser strong,
.visual-browser i {
  display: block;
  background: rgba(241, 237, 228, 0.08);
  border: 1px solid rgba(159, 127, 86, 0.13);
}

.visual-dashboard i {
  min-height: 58px;
}

.visual-dashboard strong {
  grid-column: 1 / -1;
  min-height: 96px;
  background:
    linear-gradient(90deg, rgba(159, 127, 86, 0.18), transparent),
    rgba(241, 237, 228, 0.045);
}

.visual-dashboard em {
  min-height: 42px;
}

.service-visual--site {
  transform: perspective(900px) rotateY(10deg) rotateX(5deg);
}

.visual-browser {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.visual-browser span {
  width: 48%;
  min-height: 18px;
}

.visual-browser strong {
  min-height: 116px;
  background:
    radial-gradient(circle at 70% 36%, rgba(159, 127, 86, 0.14), transparent 36%),
    rgba(241, 237, 228, 0.046);
}

.visual-browser i {
  min-height: 34px;
  width: 72%;
}

.visual-browser i:nth-child(even) {
  width: 54%;
}

.js .service-scene,
.js .immersive-cta {
  opacity: 0;
  transform: translateY(44px) scale(0.985);
  transition: opacity 900ms ease, transform 900ms ease, border-color 420ms ease, box-shadow 420ms ease;
}

.js .service-scene.is-visible,
.js .immersive-cta.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-scene {
  min-height: clamp(440px, 72svh, 820px);
  display: grid;
  align-content: center;
  margin-top: clamp(28px, 7vw, 104px);
  padding: clamp(28px, 5.2vw, 76px);
}

.scene-index {
  margin: 0 0 18px;
  color: rgba(159, 127, 86, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scene-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.78fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: end;
}

.scene-copy h2,
.scene-vision h2,
.solution-core h2,
.scene-examples h2,
.scene-method h2,
.immersive-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.scene-copy p,
.vision-stack p,
.solution-core p,
.immersive-cta p {
  margin: 0;
  color: rgba(210, 202, 185, 0.88);
  font-size: clamp(1.02rem, 1.55vw, 1.24rem);
  line-height: 1.78;
}

.scene-problem {
  width: min(100%, 1040px);
  margin-left: auto;
}

.friction-map {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(28px, 4vw, 46px);
}

.friction-map span,
.tension-grid span,
.solution-orbit span {
  border: 1px solid rgba(159, 127, 86, 0.16);
  background: rgba(241, 237, 228, 0.034);
  color: rgba(241, 237, 228, 0.76);
  padding: 11px 14px;
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.chaos-visual {
  position: relative;
  height: 170px;
  margin-top: clamp(24px, 4vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(241, 237, 228, 0.06);
  background:
    linear-gradient(90deg, rgba(241, 237, 228, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(241, 237, 228, 0.03) 1px, transparent 1px);
  background-size: 46px 46px;
}

.chaos-visual i {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(159, 127, 86, 0.42), transparent);
  transform-origin: left center;
}

.chaos-visual i:nth-child(1) { left: 8%; top: 28%; width: 58%; transform: rotate(6deg); }
.chaos-visual i:nth-child(2) { left: 18%; top: 58%; width: 70%; transform: rotate(-12deg); }
.chaos-visual i:nth-child(3) { left: 40%; top: 18%; width: 48%; transform: rotate(18deg); }
.chaos-visual i:nth-child(4) { left: 6%; top: 76%; width: 40%; transform: rotate(-4deg); }
.chaos-visual i:nth-child(5) { left: 58%; top: 44%; width: 34%; transform: rotate(28deg); }

.scene-tension {
  min-height: clamp(520px, 82svh, 900px);
  text-align: center;
  border-color: rgba(159, 127, 86, 0.22);
  background:
    radial-gradient(circle at 50% 44%, rgba(159, 127, 86, 0.1), transparent 34%),
    linear-gradient(160deg, rgba(241, 237, 228, 0.074), rgba(241, 237, 228, 0.012));
}

.scene-tension blockquote {
  max-width: 13ch;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 8vw, 8rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
  color: rgba(241, 237, 228, 0.96);
}

.tension-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 760px);
  margin: clamp(34px, 5vw, 60px) auto 0;
  background: rgba(159, 127, 86, 0.1);
  border: 1px solid rgba(159, 127, 86, 0.12);
}

.tension-grid span {
  display: grid;
  place-items: center;
  min-height: 72px;
  border: 0;
  background: rgba(8, 7, 6, 0.68);
}

.scene-vision {
  width: min(100%, 980px);
  margin-right: auto;
}

.vision-stack {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(20px, 5vw, 72px);
  margin-top: clamp(24px, 5vw, 60px);
}

.system-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(30px, 5vw, 62px);
  border: 1px solid rgba(159, 127, 86, 0.14);
  background: rgba(159, 127, 86, 0.09);
}

.system-diagram::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 237, 228, 0.22), transparent);
}

.system-diagram span {
  min-height: 118px;
  display: grid;
  place-items: center;
  background: rgba(8, 7, 6, 0.72);
  color: rgba(241, 237, 228, 0.78);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scene-solution {
  position: relative;
  min-height: clamp(560px, 86svh, 920px);
  overflow: hidden;
}

.solution-core {
  width: min(720px, 100%);
  position: relative;
  z-index: 1;
}

.solution-orbit {
  position: absolute;
  right: clamp(24px, 7vw, 100px);
  top: 50%;
  width: min(36vw, 360px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  border: 1px solid rgba(159, 127, 86, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(159, 127, 86, 0.045) inset;
}

.solution-orbit span {
  position: absolute;
  min-width: 118px;
  text-align: center;
}

.solution-orbit span:nth-child(1) { left: 50%; top: -18px; transform: translateX(-50%); }
.solution-orbit span:nth-child(2) { right: -42px; top: 30%; }
.solution-orbit span:nth-child(3) { right: 4px; bottom: 18px; }
.solution-orbit span:nth-child(4) { left: -40px; bottom: 24%; }
.solution-orbit span:nth-child(5) { left: -18px; top: 22%; }

.project-wall {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  grid-auto-rows: minmax(150px, auto);
  gap: 14px;
  margin-top: clamp(26px, 4vw, 50px);
}

.project-wall article {
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 220px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(159, 127, 86, 0.14);
  background:
    radial-gradient(circle at 50% 0%, rgba(159, 127, 86, 0.07), transparent 58%),
    rgba(241, 237, 228, 0.032);
  transition: transform 360ms ease, border-color 360ms ease;
}

.project-glyph {
  width: 46px;
  height: 46px;
  margin-bottom: auto;
  border: 1px solid rgba(159, 127, 86, 0.18);
  background:
    linear-gradient(90deg, rgba(241, 237, 228, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(241, 237, 228, 0.08) 1px, transparent 1px);
  background-size: 12px 12px;
}

.project-wall article:nth-child(1) {
  grid-row: span 2;
}

.project-wall article:nth-child(3) {
  transform: translateY(48px);
}

.project-wall article:nth-child(5) {
  grid-column: span 2;
}

.project-wall article:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 174, 104, 0.44);
}

.project-wall article:nth-child(3):hover {
  transform: translateY(38px);
}

.project-wall span,
.before-after span,
.method-flow span {
  color: rgba(216, 174, 104, 0.78);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-wall h3,
.before-after h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.7vw, 2.5rem);
  line-height: 0.98;
}

.project-wall p,
.before-after p,
.method-flow p {
  margin: 0;
  color: rgba(210, 202, 185, 0.84);
  line-height: 1.62;
}

.before-after {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(14px, 3vw, 28px);
}

.before-after div {
  min-height: 340px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(241, 237, 228, 0.12);
  background: rgba(241, 237, 228, 0.025);
}

.before-after div:last-child {
  margin-top: clamp(42px, 7vw, 90px);
  border-color: rgba(159, 127, 86, 0.24);
  background:
    radial-gradient(circle at 50% 0%, rgba(159, 127, 86, 0.08), transparent 58%),
    rgba(241, 237, 228, 0.044);
}

.method-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(30px, 5vw, 58px);
}

.method-flow::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(159, 127, 86, 0.28), transparent);
}

.method-flow article {
  min-height: 230px;
  display: grid;
  align-content: space-between;
  padding: 20px;
  border: 1px solid rgba(159, 127, 86, 0.14);
  background: rgba(8, 7, 6, 0.62);
}

.method-flow article:nth-child(even) {
  transform: translateY(42px);
}

.immersive-cta {
  min-height: clamp(480px, 72svh, 780px);
  display: grid;
  align-content: center;
  margin-top: clamp(40px, 8vw, 120px);
  padding: clamp(30px, 6vw, 76px);
  border: 1px solid rgba(159, 127, 86, 0.24);
  background:
    radial-gradient(circle at 50% 0%, rgba(159, 127, 86, 0.09), transparent 44%),
    linear-gradient(150deg, rgba(241, 237, 228, 0.09), rgba(241, 237, 228, 0.018));
  backdrop-filter: blur(24px) saturate(116%);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42), 0 0 58px rgba(159, 127, 86, 0.045);
}

.immersive-cta h2 {
  max-width: 13ch;
}

.immersive-cta p:not(.scene-index) {
  max-width: 60ch;
  margin-top: 16px;
}

/* Gold intensity dampener: HITCH should feel dark-luxury, not gold-heavy. */
.home-cinema .ambient--spotlight,
.service-cinema .ambient--spotlight {
  opacity: 0.48;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(128, 106, 76, 0.12), transparent 18rem),
    conic-gradient(from 210deg at 50% 34%, transparent 0deg, rgba(128, 106, 76, 0.045) 52deg, transparent 112deg, transparent 360deg),
    linear-gradient(180deg, rgba(128, 106, 76, 0.05), transparent 42%);
}

.home-cinema .ambient--particles,
.service-cinema .ambient--particles {
  opacity: 0.12;
  filter: saturate(0.45);
}

.home-cinema .depth-grid,
.service-cinema .depth-grid {
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(128, 106, 76, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128, 106, 76, 0.045) 1px, transparent 1px);
  filter: drop-shadow(0 0 10px rgba(128, 106, 76, 0.04));
}

.home-cinema .orbit,
.service-cinema .orbit {
  border-color: rgba(128, 106, 76, 0.07);
  filter: drop-shadow(0 0 10px rgba(128, 106, 76, 0.045));
}

.home-cinema .orbit::before,
.service-cinema .orbit::before {
  background: rgba(150, 130, 96, 0.34);
  box-shadow: 0 0 14px rgba(128, 106, 76, 0.14);
}

.choice--premium {
  border-color: rgba(128, 106, 76, 0.24);
  background:
    radial-gradient(circle at var(--light-x, 50%) var(--light-y, 0%), rgba(150, 130, 96, 0.07), transparent 38%),
    linear-gradient(155deg, rgba(241, 237, 228, 0.08), rgba(241, 237, 228, 0.018)),
    radial-gradient(circle at 50% 0%, rgba(128, 106, 76, 0.055), transparent 68%);
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.42),
    0 0 22px rgba(128, 106, 76, 0.035),
    0 0 0 1px rgba(241, 237, 228, 0.03) inset;
}

.choice--premium::before {
  background: linear-gradient(120deg, transparent, rgba(128, 106, 76, 0.07), transparent);
}

.choice--premium::after {
  background:
    linear-gradient(140deg, rgba(128, 106, 76, 0.22), transparent 24%, transparent 70%, rgba(128, 106, 76, 0.14)) border-box;
}

.choice--premium:hover,
.choice--premium:focus-visible {
  border-color: rgba(128, 106, 76, 0.42);
  background:
    linear-gradient(155deg, rgba(241, 237, 228, 0.09), rgba(241, 237, 228, 0.026)),
    radial-gradient(circle at 50% 0%, rgba(128, 106, 76, 0.08), transparent 66%);
  box-shadow:
    0 34px 104px rgba(0, 0, 0, 0.5),
    0 0 32px rgba(128, 106, 76, 0.07),
    0 0 0 1px rgba(241, 237, 228, 0.05) inset;
}

.service-hero,
.service-section,
.service-cta,
.service-scene,
.immersive-cta {
  border-color: rgba(128, 106, 76, 0.16);
}

.service-hero,
.service-section,
.service-cta {
  background:
    radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 16%), rgba(128, 106, 76, 0.035), transparent 32%),
    linear-gradient(150deg, rgba(241, 237, 228, 0.068), rgba(241, 237, 228, 0.016));
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.44),
    0 0 28px rgba(128, 106, 76, 0.025),
    0 0 0 1px rgba(241, 237, 228, 0.03) inset;
}

.service-link {
  border-color: rgba(128, 106, 76, 0.34);
  background:
    radial-gradient(circle at var(--mouse-x, 50%) 0%, rgba(128, 106, 76, 0.055), transparent 48%),
    rgba(241, 237, 228, 0.052);
}

.service-link:hover,
.service-link:focus-visible {
  border-color: rgba(128, 106, 76, 0.54);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28), 0 0 24px rgba(128, 106, 76, 0.06);
}

.atelier-page {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0 42px;
}

.js .atelier-act {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 840ms ease, transform 840ms ease;
}

.js .atelier-act.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.atelier-opening {
  min-height: min(760px, calc(100svh - 74px));
  display: grid;
  align-content: center;
  position: relative;
}

.atelier-kicker,
.atelier-index {
  margin: 0 0 16px;
  color: rgba(160, 139, 105, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.atelier-opening__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.72fr);
  gap: clamp(32px, 8vw, 112px);
  align-items: center;
}

.atelier-opening h1,
.atelier-diagnosis h2,
.atelier-pressure blockquote,
.model-copy h2,
.blueprint-core h2,
.atelier-constellation h2,
.atelier-method h2,
.atelier-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
}

.atelier-opening h1 span {
  display: block;
}

.atelier-opening p:not(.atelier-kicker),
.model-copy p,
.blueprint-core p,
.atelier-cta p {
  max-width: 58ch;
  margin: 22px 0 0;
  color: rgba(210, 202, 185, 0.84);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

.atelier-artifact {
  min-height: 460px;
  position: relative;
  border: 1px solid rgba(128, 106, 76, 0.18);
  background:
    radial-gradient(circle at 50% 50%, rgba(128, 106, 76, 0.08), transparent 48%),
    linear-gradient(145deg, rgba(241, 237, 228, 0.052), rgba(241, 237, 228, 0.012));
  box-shadow: 0 40px 130px rgba(0, 0, 0, 0.42);
  transform: perspective(900px) rotateY(-9deg) rotateX(4deg);
}

.atelier-artifact::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(241, 237, 228, 0.055);
}

.artifact-node {
  position: absolute;
  min-width: 118px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(128, 106, 76, 0.2);
  background: rgba(8, 7, 6, 0.72);
  color: rgba(241, 237, 228, 0.78);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.artifact-node--main {
  left: 50%;
  top: 50%;
  min-width: 140px;
  min-height: 140px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.8rem;
  letter-spacing: 0.02em;
}

.artifact-node:nth-child(2) { left: 9%; top: 16%; }
.artifact-node:nth-child(3) { right: 9%; top: 22%; }
.artifact-node:nth-child(4) { left: 17%; bottom: 14%; }

.artifact-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, rgba(128, 106, 76, 0.28), transparent);
  transform-origin: left center;
}

.artifact-line:nth-last-child(3) { transform: rotate(214deg); }
.artifact-line:nth-last-child(2) { transform: rotate(330deg); }
.artifact-line:nth-last-child(1) { transform: rotate(126deg); }

.atelier-act:not(.atelier-opening) {
  margin-top: clamp(42px, 8vw, 128px);
}

.atelier-diagnosis {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.atelier-diagnosis h2,
.model-copy h2,
.blueprint-core h2,
.atelier-constellation h2,
.atelier-method h2,
.atelier-cta h2 {
  font-size: clamp(2.45rem, 5.6vw, 5.8rem);
}

.diagnosis-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.diagnosis-board article,
.blueprint-stack article,
.constellation-map article,
.transform-split div,
.method-strip span {
  border: 1px solid rgba(128, 106, 76, 0.15);
  background:
    radial-gradient(circle at 50% 0%, rgba(128, 106, 76, 0.055), transparent 56%),
    rgba(241, 237, 228, 0.028);
  box-shadow: 0 22px 76px rgba(0, 0, 0, 0.22);
}

.diagnosis-board article {
  min-height: 180px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 20px;
}

.diagnosis-board article:nth-child(2),
.diagnosis-board article:nth-child(3) {
  transform: translateY(32px);
}

.diagnosis-board span,
.constellation-map span,
.transform-split span,
.method-strip span {
  color: rgba(160, 139, 105, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.diagnosis-board strong,
.constellation-map strong {
  color: rgba(241, 237, 228, 0.92);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1;
}

.atelier-pressure {
  min-height: clamp(460px, 72svh, 780px);
  display: grid;
  align-content: center;
  text-align: center;
  border-top: 1px solid rgba(128, 106, 76, 0.16);
  border-bottom: 1px solid rgba(128, 106, 76, 0.16);
}

.atelier-pressure blockquote {
  max-width: 12ch;
  margin: 0 auto;
  font-size: clamp(3.2rem, 8.5vw, 8.4rem);
}

.pressure-meter {
  width: min(720px, 100%);
  height: 8px;
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.4fr 1.9fr;
  gap: 4px;
  margin: clamp(34px, 5vw, 66px) auto 0;
}

.pressure-meter span {
  background: rgba(128, 106, 76, 0.2);
}

.atelier-model,
.atelier-blueprint {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(32px, 8vw, 104px);
  align-items: center;
}

.model-flow {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(128, 106, 76, 0.14);
  background: rgba(128, 106, 76, 0.08);
}

.model-flow span {
  min-height: 88px;
  display: grid;
  place-items: center;
  background: rgba(8, 7, 6, 0.7);
  color: rgba(241, 237, 228, 0.75);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blueprint-stack {
  display: grid;
  gap: 10px;
  transform: perspective(900px) rotateY(8deg);
}

.blueprint-stack article {
  min-height: 74px;
  display: grid;
  align-items: center;
  padding: 0 22px;
  color: rgba(241, 237, 228, 0.86);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.blueprint-stack article:nth-child(even) {
  transform: translateX(42px);
}

.constellation-map {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  grid-auto-rows: minmax(170px, auto);
  gap: 14px;
  margin-top: clamp(28px, 5vw, 68px);
}

.constellation-map article {
  display: grid;
  align-content: end;
  gap: 10px;
  padding: clamp(20px, 3vw, 30px);
}

.constellation-map article:nth-child(1) { grid-row: span 2; }
.constellation-map article:nth-child(3) { transform: translateY(50px); }
.constellation-map article:nth-child(5) { grid-column: span 2; }

.constellation-map p {
  margin: 0;
  color: rgba(210, 202, 185, 0.8);
  line-height: 1.55;
}

.transform-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 4vw, 44px);
}

.transform-split div {
  min-height: 360px;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: clamp(24px, 4vw, 48px);
}

.transform-split div:last-child {
  margin-top: clamp(40px, 7vw, 90px);
  border-color: rgba(128, 106, 76, 0.3);
}

.transform-split h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.95;
}

.method-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(28px, 5vw, 60px);
  border: 1px solid rgba(128, 106, 76, 0.14);
  background: rgba(128, 106, 76, 0.08);
}

.method-strip span {
  min-height: 126px;
  display: grid;
  place-items: center;
  background: rgba(8, 7, 6, 0.72);
}

.atelier-cta {
  min-height: clamp(420px, 66svh, 720px);
  display: grid;
  align-content: center;
  padding: clamp(28px, 6vw, 70px);
  border: 1px solid rgba(128, 106, 76, 0.2);
  background:
    radial-gradient(circle at 50% 0%, rgba(128, 106, 76, 0.06), transparent 48%),
    linear-gradient(150deg, rgba(241, 237, 228, 0.065), rgba(241, 237, 228, 0.014));
  backdrop-filter: blur(22px) saturate(108%);
}

.atelier-cta h2 {
  max-width: 14ch;
}

.webapp-reset {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0 42px;
}

.wa-section {
  position: relative;
  min-height: clamp(420px, 72svh, 780px);
  display: grid;
  align-content: center;
  margin-top: clamp(34px, 8vw, 120px);
}

.wa-opening {
  min-height: min(760px, calc(100svh - 72px));
  margin-top: 0;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.7fr);
  gap: clamp(34px, 8vw, 120px);
  align-items: center;
}

.wa-kicker,
.wa-index {
  margin: 0 0 16px;
  color: rgba(160, 139, 105, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wa-opening h1,
.wa-tension h2,
.wa-turn h2,
.wa-solution h2,
.wa-final h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
}

.wa-opening p:not(.wa-kicker) {
  max-width: 58ch;
  margin: 24px 0 0;
  color: rgba(210, 202, 185, 0.86);
  font-size: clamp(1.03rem, 1.55vw, 1.24rem);
  line-height: 1.75;
}

.wa-chaos-stage {
  min-height: 430px;
  position: relative;
  border: 1px solid rgba(128, 106, 76, 0.16);
  background:
    linear-gradient(90deg, rgba(241, 237, 228, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(241, 237, 228, 0.035) 1px, transparent 1px),
    rgba(241, 237, 228, 0.018);
  background-size: 44px 44px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.4);
  transform: perspective(900px) rotateY(-8deg) rotateX(4deg);
}

.wa-chaos-stage span {
  position: absolute;
  min-width: 118px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(128, 106, 76, 0.18);
  background: rgba(8, 7, 6, 0.76);
  color: rgba(241, 237, 228, 0.74);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wa-chaos-stage span:nth-child(1) { left: 10%; top: 16%; transform: rotate(-8deg); }
.wa-chaos-stage span:nth-child(2) { right: 10%; top: 24%; transform: rotate(7deg); }
.wa-chaos-stage span:nth-child(3) { left: 18%; bottom: 18%; transform: rotate(10deg); }
.wa-chaos-stage span:nth-child(4) { right: 15%; bottom: 25%; transform: rotate(-11deg); }

.wa-chaos-stage i {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(128, 106, 76, 0.34), transparent);
}

.wa-chaos-stage i:nth-of-type(1) { left: 15%; top: 44%; width: 70%; transform: rotate(18deg); }
.wa-chaos-stage i:nth-of-type(2) { left: 8%; top: 62%; width: 62%; transform: rotate(-14deg); }
.wa-chaos-stage i:nth-of-type(3) { left: 30%; top: 34%; width: 42%; transform: rotate(42deg); }
.wa-chaos-stage i:nth-of-type(4) { left: 42%; top: 72%; width: 44%; transform: rotate(-32deg); }

.wa-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(128, 106, 76, 0.14);
  background: rgba(128, 106, 76, 0.08);
}

.wa-problem-grid article {
  min-height: 300px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(128, 106, 76, 0.055), transparent 58%),
    rgba(8, 7, 6, 0.72);
}

.wa-problem-grid span,
.wa-scenarios strong,
.wa-split span,
.wa-process-line span,
.wa-solution-system span,
.wa-loss-list span {
  color: rgba(241, 237, 228, 0.9);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1;
}

.wa-problem-grid p,
.wa-scenarios p {
  margin: 0;
  color: rgba(210, 202, 185, 0.76);
  line-height: 1.6;
}

.wa-tension {
  text-align: center;
  border-top: 1px solid rgba(128, 106, 76, 0.15);
  border-bottom: 1px solid rgba(128, 106, 76, 0.15);
}

.wa-tension h2 {
  max-width: 12ch;
  margin: 0 auto;
}

.wa-loss-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1px;
  margin-top: clamp(30px, 5vw, 60px);
}

.wa-loss-list span {
  min-width: 190px;
  min-height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(128, 106, 76, 0.15);
  background: rgba(241, 237, 228, 0.028);
}

.wa-turn {
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 1fr);
  gap: clamp(30px, 8vw, 110px);
  align-items: center;
}

.wa-turn h2,
.wa-solution h2,
.wa-final h2 {
  font-size: clamp(2.8rem, 6vw, 6.2rem);
}

.wa-order-transition {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  gap: 16px;
  align-items: center;
}

.wa-disorder,
.wa-order {
  min-height: 300px;
  position: relative;
  border: 1px solid rgba(128, 106, 76, 0.14);
  background: rgba(241, 237, 228, 0.025);
}

.wa-disorder span,
.wa-order span {
  position: absolute;
  width: 74px;
  height: 46px;
  border: 1px solid rgba(128, 106, 76, 0.15);
  background: rgba(8, 7, 6, 0.72);
}

.wa-disorder span:nth-child(1) { left: 12%; top: 16%; transform: rotate(-15deg); }
.wa-disorder span:nth-child(2) { right: 16%; top: 24%; transform: rotate(18deg); }
.wa-disorder span:nth-child(3) { left: 25%; bottom: 18%; transform: rotate(9deg); }
.wa-disorder span:nth-child(4) { right: 10%; bottom: 28%; transform: rotate(-22deg); }
.wa-order span:nth-child(1) { left: 18%; top: 18%; }
.wa-order span:nth-child(2) { right: 18%; top: 18%; }
.wa-order span:nth-child(3) { left: 18%; bottom: 18%; }
.wa-order span:nth-child(4) { right: 18%; bottom: 18%; }

.wa-arrow {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 237, 228, 0.34), transparent);
}

.wa-solution {
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(30px, 8vw, 110px);
  align-items: center;
}

.wa-solution-system {
  display: grid;
  gap: 10px;
}

.wa-solution-system span {
  min-height: 84px;
  display: grid;
  align-items: center;
  padding: 0 24px;
  border: 1px solid rgba(128, 106, 76, 0.16);
  background: rgba(241, 237, 228, 0.028);
}

.wa-scenarios {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-auto-rows: minmax(230px, auto);
  gap: 14px;
}

.wa-scenarios article {
  display: grid;
  align-content: end;
  gap: 12px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(128, 106, 76, 0.15);
  background:
    radial-gradient(circle at 50% 0%, rgba(128, 106, 76, 0.052), transparent 58%),
    rgba(241, 237, 228, 0.026);
}

.wa-scenarios article:nth-child(1) {
  grid-row: span 2;
}

.wa-scenarios article:nth-child(3) {
  transform: translateY(42px);
}

.wa-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 4vw, 42px);
}

.wa-split div {
  min-height: 420px;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid rgba(128, 106, 76, 0.15);
  background: rgba(241, 237, 228, 0.026);
}

.wa-split div:last-child {
  border-color: rgba(128, 106, 76, 0.28);
}

.wa-split p {
  margin: 0;
  color: rgba(241, 237, 228, 0.88);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 0.9;
}

.wa-process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(128, 106, 76, 0.14);
  background: rgba(128, 106, 76, 0.08);
}

.wa-process-line span {
  min-height: 150px;
  display: grid;
  place-items: center;
  background: rgba(8, 7, 6, 0.72);
}

.wa-final {
  min-height: clamp(420px, 64svh, 720px);
  padding: clamp(28px, 6vw, 72px);
  border: 1px solid rgba(128, 106, 76, 0.2);
  background:
    radial-gradient(circle at 50% 0%, rgba(128, 106, 76, 0.055), transparent 48%),
    linear-gradient(150deg, rgba(241, 237, 228, 0.06), rgba(241, 237, 228, 0.014));
}

.footer {
  min-height: 56px;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #998e7f;
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.footer--service {
  position: relative;
  z-index: 4;
  margin-top: 20px;
  border-top-color: rgba(216, 174, 104, 0.22);
  color: rgba(210, 202, 185, 0.72);
}

.reveal {
  animation: rise 650ms ease both;
}

.reveal:nth-child(2) { animation-delay: 80ms; }
.reveal:nth-child(3) { animation-delay: 140ms; }

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes breathe-light {
  from { opacity: 0.72; transform: translateY(-8px) scale(1); }
  to { opacity: 1; transform: translateY(8px) scale(1.035); }
}

@keyframes drift-particles {
  from { transform: translate3d(-10px, -8px, 0); }
  to { transform: translate3d(12px, 10px, 0); }
}

@keyframes orbit-drift {
  from { rotate: 0deg; }
  to { rotate: 360deg; }
}

@keyframes grid-breathe {
  from { opacity: 0.18; transform: translateX(-50%) perspective(720px) rotateX(68deg) translateY(8px); }
  to { opacity: 0.33; transform: translateX(-50%) perspective(720px) rotateX(68deg) translateY(-4px); }
}

@keyframes monogram-arrive {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes monogram-glow {
  from { box-shadow: 0 24px 88px rgba(0, 0, 0, 0.6), 0 0 58px rgba(182, 144, 95, 0.2), 0 0 0 1px rgba(214, 174, 107, 0.12) inset; }
  to { box-shadow: 0 30px 112px rgba(0, 0, 0, 0.66), 0 0 92px rgba(182, 144, 95, 0.33), 0 0 0 1px rgba(214, 174, 107, 0.18) inset; }
}

@keyframes logo-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotateX(0deg); }
  50% { transform: translate3d(0, -8px, 0) rotateX(1.6deg); }
}

@keyframes logo-orbit-frame {
  from { transform: rotate(45deg) scale(0.985); }
  to { transform: rotate(405deg) scale(0.985); }
}

@keyframes logo-orbit-frame-reverse {
  from { transform: rotate(12deg) scale(1.01); }
  to { transform: rotate(-348deg) scale(1.01); }
}

@keyframes logo-ring-pulse {
  from { opacity: 0.28; filter: drop-shadow(0 0 12px rgba(216, 174, 104, 0.08)); }
  to { opacity: 0.78; filter: drop-shadow(0 0 34px rgba(216, 174, 104, 0.16)); }
}

@keyframes logo-core-breathe {
  0%, 100% { background-position: 44% 18%, center, 0% 50%; filter: saturate(1) brightness(1); }
  50% { background-position: 54% 26%, center, 100% 50%; filter: saturate(1.08) brightness(1.08); }
}

@keyframes metal-sheen {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

@media (max-width: 880px) {
  .card-grid { grid-template-columns: 1fr; }
  .story-split,
  .story-split--reverse,
  .story-orbit-cards,
  .story-mosaic,
  .story-rail {
    grid-template-columns: 1fr;
  }
  .story-section--problem,
  .story-section--solution {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    transform: none;
  }
  .story-card--raised,
  .story-card--raised:hover,
  .story-mosaic article:nth-child(2),
  .story-mosaic article:nth-child(3),
  .story-rail article:nth-child(even) {
    transform: none;
    margin-top: 0;
  }
  .story-rail::before {
    top: 0;
    bottom: 0;
    left: 20px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(216, 174, 104, 0.34), transparent);
  }
  .scene-copy,
  .vision-stack,
  .system-diagram,
  .before-after,
  .method-flow,
  .project-wall {
    grid-template-columns: 1fr;
  }
  .solution-orbit {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 380px);
    margin: 40px auto 0;
    transform: none;
  }
  .project-wall article:nth-child(1),
  .project-wall article:nth-child(5) {
    grid-row: auto;
    grid-column: auto;
  }
  .project-wall article:nth-child(3),
  .project-wall article:nth-child(3):hover,
  .method-flow article:nth-child(even) {
    transform: none;
  }
  .method-flow::before {
    top: 0;
    bottom: 0;
    left: 20px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(216, 174, 104, 0.34), transparent);
  }
  .atelier-opening__grid,
  .atelier-diagnosis,
  .atelier-model,
  .atelier-blueprint,
  .transform-split,
  .constellation-map,
  .method-strip,
  .wa-opening,
  .wa-turn,
  .wa-solution,
  .wa-problem-grid,
  .wa-scenarios,
  .wa-split,
  .wa-process-line {
    grid-template-columns: 1fr;
  }
  .atelier-artifact,
  .blueprint-stack,
  .blueprint-stack article:nth-child(even),
  .diagnosis-board article:nth-child(2),
  .diagnosis-board article:nth-child(3),
  .constellation-map article:nth-child(3),
  .wa-chaos-stage,
  .wa-scenarios article:nth-child(3) {
    transform: none;
  }
  .constellation-map article:nth-child(1),
  .constellation-map article:nth-child(5),
  .wa-scenarios article:nth-child(1) {
    grid-row: auto;
    grid-column: auto;
  }
  .transform-split div:last-child {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .hub { gap: 26px; }
  .choices { grid-template-columns: 1fr; }
  .choice--small { min-height: 100px; }
  .hub--cinematic { gap: 28px; }
  .home-cinema,
  .service-cinema {
    background:
      radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 34%), rgba(221, 178, 105, 0.055), transparent 17rem),
      radial-gradient(ellipse at 50% -8%, rgba(225, 183, 112, 0.12), transparent 24rem),
      radial-gradient(ellipse at 50% 48%, rgba(241, 237, 228, 0.045), transparent 26rem),
      linear-gradient(180deg, #010101 0%, #050403 44%, #0b0907 100%);
  }
  .home-cinema::after,
  .service-cinema::after {
    background:
      radial-gradient(ellipse at center, transparent 0%, transparent 38%, rgba(0, 0, 0, 0.72) 100%),
      radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 32%), rgba(230, 196, 130, 0.06), transparent 15rem),
      linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.76));
  }
  .webgl-stage {
    filter: saturate(0.58) brightness(0.7) contrast(1.05);
  }
  .ambient--spotlight {
    opacity: 0.46;
    background:
      radial-gradient(ellipse at 50% 18%, rgba(235, 197, 128, 0.16), transparent 15rem),
      linear-gradient(180deg, rgba(199, 148, 74, 0.06), transparent 40%);
  }
  .brand__mark--large {
    width: 150px;
    height: 150px;
    font-size: 3.1rem;
    border-color: rgba(214, 174, 107, 0.5);
    background:
      radial-gradient(circle at 45% 20%, rgba(255, 246, 220, 0.14), transparent 29%),
      linear-gradient(145deg, rgba(241, 237, 228, 0.11), rgba(10, 9, 7, 0.82)),
      conic-gradient(from 225deg, rgba(115, 80, 36, 0.12), rgba(250, 220, 151, 0.24), rgba(116, 86, 45, 0.11), rgba(214, 174, 107, 0.2), rgba(115, 80, 36, 0.12));
    box-shadow:
      0 0 0 1px rgba(214, 174, 107, 0.08) inset,
      0 24px 88px rgba(0, 0, 0, 0.72),
      0 0 42px rgba(182, 144, 95, 0.16),
      0 0 120px rgba(216, 174, 104, 0.045);
  }
  .home-cinema .brand::before {
    inset: -30px;
    opacity: 0.28;
    border-color: rgba(216, 174, 104, 0.09);
  }
  .home-cinema .brand::after {
    inset: -44px;
    opacity: 0.12;
    border-color: rgba(241, 237, 228, 0.04);
  }
  .home-orbit-canvas {
    width: clamp(240px, 72vw, 360px);
    height: clamp(240px, 72vw, 360px);
    opacity: 0.5;
    filter: drop-shadow(0 0 10px rgba(216, 174, 104, 0.08));
  }
  .home-orbit-canvas--front {
    opacity: 0.33;
  }
  .brand-word {
    font-size: 1rem;
    letter-spacing: 0.45rem;
    text-indent: 0.45rem;
  }
  .choice--premium {
    min-height: 142px;
    padding: 20px;
    border-color: rgba(216, 174, 104, 0.24);
    background:
      radial-gradient(circle at var(--light-x, 50%) var(--light-y, 0%), rgba(229, 200, 146, 0.1), transparent 38%),
      linear-gradient(155deg, rgba(241, 237, 228, 0.07), rgba(241, 237, 228, 0.018)),
      radial-gradient(circle at 50% 0%, rgba(182, 144, 95, 0.08), transparent 68%);
    box-shadow:
      0 26px 80px rgba(0, 0, 0, 0.44),
      0 0 26px rgba(216, 174, 104, 0.04),
      0 0 0 1px rgba(241, 237, 228, 0.026) inset;
  }
  .orbit-field {
    width: 118vw;
    opacity: 0.22;
  }
  .depth-grid {
    height: 40vh;
    opacity: 0.12;
    background-size: 56px 56px;
  }
  .ambient--particles {
    opacity: 0.1;
  }
  .service-page { padding-top: 28px; }
  .service-page--story {
    width: min(100% - 28px, 680px);
    padding-top: 28px;
  }
  .service-page--immersive {
    width: min(100% - 28px, 680px);
    padding-top: 28px;
  }
  .atelier-page {
    width: min(100% - 28px, 680px);
    padding-top: 28px;
  }
  .webapp-reset {
    width: min(100% - 28px, 680px);
    padding-top: 28px;
  }
  .atelier-opening {
    min-height: auto;
  }
  .atelier-opening h1,
  .atelier-diagnosis h2,
  .atelier-pressure blockquote,
  .model-copy h2,
  .blueprint-core h2,
  .atelier-constellation h2,
  .atelier-method h2,
  .atelier-cta h2 {
    font-size: clamp(2.45rem, 14vw, 4.6rem);
    max-width: none;
  }
  .wa-opening h1,
  .wa-tension h2,
  .wa-turn h2,
  .wa-solution h2,
  .wa-final h2 {
    font-size: clamp(2.45rem, 14vw, 4.6rem);
  }
  .wa-section {
    min-height: auto;
    margin-top: 44px;
  }
  .wa-opening {
    min-height: auto;
  }
  .wa-chaos-stage {
    min-height: 300px;
  }
  .wa-problem-grid article,
  .wa-scenarios article,
  .wa-split div,
  .wa-process-line span {
    min-height: 150px;
  }
  .wa-order-transition {
    grid-template-columns: 1fr;
  }
  .wa-arrow {
    height: 58px;
    width: 1px;
    justify-self: center;
    background: linear-gradient(180deg, transparent, rgba(241, 237, 228, 0.34), transparent);
  }
  .wa-disorder,
  .wa-order {
    min-height: 220px;
  }
  .atelier-artifact {
    min-height: 300px;
  }
  .artifact-node {
    min-width: 92px;
    min-height: 38px;
    font-size: 0.58rem;
  }
  .artifact-node--main {
    min-width: 104px;
    min-height: 104px;
    font-size: 1.35rem;
  }
  .diagnosis-board {
    grid-template-columns: 1fr;
  }
  .diagnosis-board article,
  .transform-split div {
    min-height: 160px;
  }
  .atelier-pressure {
    min-height: auto;
    padding: 46px 0;
  }
  .pressure-meter {
    height: 6px;
  }
  .method-strip span {
    min-height: 72px;
  }
  .atelier-cta {
    min-height: auto;
    padding: 26px;
  }
  .immersive-opening {
    min-height: auto;
    padding: 24px;
  }
  .service-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: 220px;
    margin-top: 22px;
    transform: none;
    z-index: 0;
  }
  .visual-dashboard strong {
    min-height: 70px;
  }
  .visual-dashboard i {
    min-height: 42px;
  }
  .visual-browser strong {
    min-height: 84px;
  }
  .immersive-opening h1,
  .scene-copy h2,
  .scene-vision h2,
  .solution-core h2,
  .scene-examples h2,
  .scene-method h2,
  .immersive-cta h2 {
    max-width: none;
    font-size: clamp(2.35rem, 14vw, 4.2rem);
  }
  .opening-console,
  .tension-grid {
    grid-template-columns: 1fr;
  }
  .system-diagram span {
    min-height: 70px;
  }
  .system-diagram::before {
    left: 50%;
    right: auto;
    top: 12%;
    bottom: 12%;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(241, 237, 228, 0.18), transparent);
  }
  .chaos-visual {
    height: 120px;
  }
  .opening-console span,
  .tension-grid span {
    min-height: 54px;
  }
  .service-scene {
    min-height: auto;
    margin-top: 18px;
    padding: 24px;
  }
  .scene-tension blockquote {
    max-width: none;
    font-size: clamp(2.8rem, 16vw, 5.2rem);
  }
  .solution-orbit {
    aspect-ratio: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }
  .solution-orbit span {
    position: static;
    transform: none !important;
    min-width: auto;
  }
  .project-wall article,
  .before-after div,
  .method-flow article {
    min-height: 160px;
  }
  .before-after div:last-child {
    margin-top: 0;
  }
  .immersive-cta {
    min-height: auto;
    margin-top: 22px;
    padding: 26px;
  }
  .service-hero--story {
    min-height: auto;
    padding: 24px;
  }
  .service-hero--story h1,
  .story-split h2,
  .story-statement h2,
  .story-section--examples h2,
  .story-section--process h2,
  .change-stack h2,
  .service-cta--story h2 {
    max-width: none;
  }
  .story-signal {
    gap: 8px;
  }
  .story-signal span {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.62rem;
  }
  .story-section {
    margin-top: 16px;
    padding: 22px;
  }
  .story-large-text {
    font-size: 1.35rem;
  }
  .story-card,
  .story-mosaic article,
  .story-rail article {
    min-height: 160px;
  }
  .story-mosaic article:nth-child(1),
  .story-mosaic article:nth-child(4) {
    min-height: 180px;
  }
  .change-line,
  .change-line--after {
    grid-template-columns: 1fr;
    margin-left: 0;
  }
  .service-cta--story {
    min-height: auto;
    padding: 26px;
  }
  .footer {
    min-height: 64px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 8px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .energy-canvas {
    display: none;
  }

  .webgl-stage {
    display: none;
  }
}

/* Final narrative service pages */
.sf-page {
  --s24: 24px;
  --s32: 32px;
  --s48: 48px;
  --s64: 64px;
  --s96: 96px;
  --s120: 120px;
  --edge: min(1160px, calc(100% - 48px));
  --sf-line: rgba(160, 139, 105, 0.24);
  --sf-border: rgba(160, 139, 105, 0.3);
  --sf-soft: rgba(241, 237, 228, 0.08);
  --sf-panel: rgba(12, 10, 8, 0.72);
  --sf-panel-strong: rgba(10, 8, 6, 0.82);
  --sf-copy: rgba(220, 212, 195, 0.86);
  --sf-copy-soft: rgba(208, 198, 180, 0.74);
  position: relative;
  z-index: 4;
  width: var(--edge);
  margin: 0 auto;
  padding: var(--s48) 0 var(--s64);
}

.sf-page .atelier-act {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.sf-page .atelier-act.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sf-opening,
.sf-section {
  position: relative;
}

.sf-opening {
  min-height: min(760px, calc(100svh - 80px));
  padding: var(--s32) 0 var(--s48);
  display: grid;
  align-content: center;
}

.sf-opening__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: var(--s64);
  align-items: center;
}

.sf-kicker,
.sf-index {
  margin: 0 0 var(--s24);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(170, 149, 113, 0.7);
}

.sf-opening h1,
.sf-turn h2,
.sf-solution h2,
.sf-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.sf-opening p {
  margin: var(--s32) 0 0;
  max-width: 56ch;
  color: var(--sf-copy);
  font-size: clamp(1.02rem, 1.25vw, 1.2rem);
  line-height: 1.72;
}

.sf-stage {
  min-height: 420px;
  border: 1px solid var(--sf-border);
  background:
    radial-gradient(circle at 70% 0%, rgba(160, 139, 105, 0.16), transparent 56%),
    linear-gradient(135deg, rgba(241, 237, 228, 0.055), rgba(241, 237, 228, 0.01)),
    var(--sf-panel);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(241, 237, 228, 0.03) inset;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  transform: perspective(1100px) rotateY(-10deg) rotateX(5deg);
  backdrop-filter: blur(8px) saturate(110%);
}

.sf-stage span {
  position: absolute;
  min-width: 108px;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(160, 139, 105, 0.38);
  background: rgba(8, 7, 6, 0.72);
  color: rgba(241, 237, 228, 0.78);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sf-stage span:nth-child(1) { left: 10%; top: 15%; transform: rotate(-8deg); }
.sf-stage span:nth-child(2) { right: 9%; top: 24%; transform: rotate(7deg); }
.sf-stage span:nth-child(3) { left: 18%; bottom: 18%; transform: rotate(10deg); }
.sf-stage span:nth-child(4) { right: 15%; bottom: 26%; transform: rotate(-12deg); }

.sf-stage i {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160, 139, 105, 0.44), transparent);
}

.sf-stage i:nth-of-type(1) { left: 14%; top: 44%; width: 70%; transform: rotate(17deg); }
.sf-stage i:nth-of-type(2) { left: 8%; top: 60%; width: 62%; transform: rotate(-14deg); }
.sf-stage i:nth-of-type(3) { left: 30%; top: 32%; width: 44%; transform: rotate(42deg); }
.sf-stage i:nth-of-type(4) { left: 43%; top: 73%; width: 45%; transform: rotate(-30deg); }

.sf-section {
  margin-top: var(--s120);
}

.sf-mosaic {
  display: grid;
  gap: 1px;
  border: 1px solid var(--sf-line);
  background: rgba(160, 139, 105, 0.12);
}

.sf-mosaic article {
  min-height: 130px;
  display: grid;
  align-items: center;
  padding: var(--s32);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: rgba(241, 237, 228, 0.9);
  background:
    radial-gradient(circle at 0% 0%, rgba(160, 139, 105, 0.08), transparent 60%),
    var(--sf-panel-strong);
}

.sf-mosaic--webapp {
  grid-template-columns: 1.2fr 0.9fr;
}

.sf-mosaic--webapp article:nth-child(1) { min-height: 180px; }
.sf-mosaic--webapp article:nth-child(3) { grid-column: 1 / -1; }
.sf-mosaic--webapp article:nth-child(5) { grid-column: 1 / -1; min-height: 160px; }

.sf-mosaic--website {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sf-mosaic--website article:nth-child(1) {
  grid-row: span 2;
  min-height: 260px;
}

.sf-mosaic--website article:nth-child(4) {
  grid-column: 2 / -1;
}

.sf-tension {
  margin-top: var(--s96);
  padding: var(--s64) var(--s48);
  border: 1px solid var(--sf-line);
  background:
    radial-gradient(circle at 50% 0%, rgba(160, 139, 105, 0.12), transparent 62%),
    rgba(241, 237, 228, 0.03);
  text-align: center;
}

.sf-tension blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.sf-pillars {
  margin-top: var(--s48);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--sf-line);
  background: rgba(160, 139, 105, 0.12);
}

.sf-pillars span {
  min-height: 88px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  background: rgba(9, 8, 6, 0.78);
}

.sf-turn__grid,
.sf-solution__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1fr);
  gap: var(--s64);
  align-items: center;
}

.sf-transition {
  min-height: 260px;
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  gap: var(--s24);
  align-items: center;
}

.sf-transition__chaos,
.sf-transition__order {
  min-height: 220px;
  border: 1px solid var(--sf-line);
  background-color: rgba(9, 8, 6, 0.62);
}

.sf-transition__chaos {
  background-image:
    linear-gradient(18deg, transparent 48%, rgba(160, 139, 105, 0.35) 49%, transparent 50%),
    linear-gradient(-26deg, transparent 44%, rgba(160, 139, 105, 0.25) 45%, transparent 46%),
    linear-gradient(42deg, transparent 54%, rgba(241, 237, 228, 0.12) 55%, transparent 56%);
}

.sf-transition__order {
  background-image:
    linear-gradient(0deg, rgba(160, 139, 105, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160, 139, 105, 0.28) 1px, transparent 1px);
  background-size: 48px 48px;
}

.sf-transition__axis {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 237, 228, 0.48), transparent);
}

.sf-tags {
  display: grid;
  gap: 12px;
}

.sf-tags span {
  min-height: 80px;
  display: grid;
  align-items: center;
  padding: 0 var(--s24);
  border: 1px solid var(--sf-line);
  background: rgba(241, 237, 228, 0.03);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.sf-cases {
  display: grid;
  gap: 14px;
}

.sf-cases article {
  min-height: 150px;
  display: grid;
  align-items: end;
  padding: var(--s32);
  border: 1px solid var(--sf-line);
  background:
    radial-gradient(circle at 50% 0%, rgba(160, 139, 105, 0.08), transparent 62%),
    rgba(9, 8, 6, 0.74);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.sf-cases--webapp {
  grid-template-columns: 1.15fr 0.85fr;
}

.sf-cases--webapp article:nth-child(1) { min-height: 260px; }
.sf-cases--webapp article:nth-child(3) { min-height: 230px; transform: translateY(36px); }

.sf-cases--website {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.sf-cases--website article:nth-child(1) { grid-column: span 3; min-height: 220px; }
.sf-cases--website article:nth-child(2) { grid-column: span 3; min-height: 220px; }
.sf-cases--website article:nth-child(3) { grid-column: span 2; }
.sf-cases--website article:nth-child(4) { grid-column: span 2; }
.sf-cases--website article:nth-child(5) { grid-column: span 2; min-height: 190px; }

.sf-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s32);
}

.sf-split article {
  min-height: 420px;
  padding: var(--s48);
  border: 1px solid var(--sf-line);
  background: rgba(241, 237, 228, 0.03);
  display: grid;
  align-content: center;
  gap: var(--s24);
}

.sf-split article:last-child {
  border-color: rgba(160, 139, 105, 0.48);
  background:
    radial-gradient(circle at 50% 0%, rgba(160, 139, 105, 0.14), transparent 64%),
    rgba(241, 237, 228, 0.05);
}

.sf-split span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  color: rgba(170, 149, 113, 0.82);
}

.sf-split p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.6vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.sf-split--website article {
  min-height: 340px;
}

.sf-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--sf-line);
  background: rgba(160, 139, 105, 0.12);
}

.sf-steps span {
  min-height: 140px;
  display: grid;
  place-items: center;
  padding: 0 var(--s24);
  background: rgba(9, 8, 6, 0.78);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  text-align: center;
}

.sf-cta {
  min-height: 360px;
  padding: var(--s64) var(--s48);
  border: 1px solid rgba(160, 139, 105, 0.34);
  background:
    radial-gradient(circle at 50% 0%, rgba(160, 139, 105, 0.16), transparent 58%),
    linear-gradient(150deg, rgba(241, 237, 228, 0.075), rgba(241, 237, 228, 0.016));
  display: grid;
  align-content: center;
  justify-items: start;
  gap: var(--s32);
}

.sf-cta .service-link {
  margin-top: 0;
}

.sf-page--website .sf-stage {
  transform: perspective(1100px) rotateY(10deg) rotateX(4deg);
  background:
    radial-gradient(circle at 22% 0%, rgba(160, 139, 105, 0.14), transparent 58%),
    linear-gradient(135deg, rgba(241, 237, 228, 0.065), rgba(241, 237, 228, 0.012)),
    var(--sf-panel);
}

.sf-page--website .sf-stage span {
  border-radius: 24px;
}

.sf-page--website .sf-mosaic article,
.sf-page--website .sf-cases article,
.sf-page--website .sf-steps span {
  background:
    radial-gradient(circle at 100% 0%, rgba(160, 139, 105, 0.09), transparent 62%),
    rgba(10, 9, 7, 0.74);
}

.sf-page--website .sf-turn h2,
.sf-page--website .sf-solution h2,
.sf-page--website .sf-cta h2 {
  max-width: 17ch;
}

@media (hover: hover) and (pointer: fine) {
  .sf-stage,
  .sf-cases article,
  .sf-mosaic article,
  .sf-tags span,
  .sf-split article,
  .sf-steps span {
    transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background-color 260ms ease;
  }

  .sf-cases article:hover,
  .sf-mosaic article:hover,
  .sf-tags span:hover {
    transform: translateY(-4px);
    border-color: rgba(180, 158, 121, 0.5);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  }

  .sf-split article:hover,
  .sf-steps span:hover {
    border-color: rgba(180, 158, 121, 0.52);
  }
}

@media (max-width: 960px) {
  .sf-page {
    --edge: min(760px, calc(100% - 36px));
    --s120: 96px;
    --s96: 72px;
  }

  .sf-opening {
    min-height: auto;
  }

  .sf-opening__grid,
  .sf-turn__grid,
  .sf-solution__grid,
  .sf-split,
  .sf-steps,
  .sf-pillars {
    grid-template-columns: 1fr;
  }

  .sf-transition {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sf-transition__axis {
    width: 1px;
    height: 52px;
    justify-self: center;
    background: linear-gradient(180deg, transparent, rgba(241, 237, 228, 0.48), transparent);
  }

  .sf-stage,
  .sf-page--website .sf-stage,
  .sf-cases--webapp article:nth-child(3) {
    transform: none;
  }

  .sf-cases--webapp,
  .sf-cases--website,
  .sf-mosaic--webapp,
  .sf-mosaic--website {
    grid-template-columns: 1fr;
  }

  .sf-mosaic--website article:nth-child(1),
  .sf-mosaic--website article:nth-child(4),
  .sf-cases--website article {
    grid-column: auto;
    grid-row: auto;
    min-height: 150px;
  }

  .sf-split article {
    min-height: 280px;
    padding: var(--s32);
  }
}

@media (max-width: 760px) {
  .sf-page {
    --edge: min(680px, calc(100% - 28px));
    --s120: 64px;
    --s96: 64px;
    --s64: 48px;
    --s48: 32px;
    --s32: 24px;
    --s24: 24px;
    padding-top: 28px;
  }

  .sf-opening h1,
  .sf-turn h2,
  .sf-solution h2,
  .sf-cta h2,
  .sf-tension blockquote {
    font-size: clamp(2.15rem, 11vw, 3.9rem);
  }

  .sf-opening p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .sf-stage {
    min-height: 300px;
  }

  .sf-stage span {
    min-width: 86px;
    min-height: 36px;
    font-size: 0.58rem;
  }

  .sf-tension {
    padding: var(--s48) var(--s24);
  }

  .sf-mosaic article,
  .sf-cases article,
  .sf-tags span,
  .sf-steps span {
    min-height: 120px;
    padding: var(--s24);
  }

  .sf-split p {
    font-size: clamp(1.8rem, 10vw, 3rem);
  }

  .sf-cta {
    min-height: 300px;
    padding: var(--s48) var(--s24);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sf-page .atelier-act {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .sf-stage,
  .sf-cases article,
  .sf-mosaic article,
  .sf-tags span,
  .sf-split article,
  .sf-steps span {
    transition: none;
  }
}

/* Service pages visual depth upgrade (no structure/copy change) */
.sf-page {
  --sf-glow-a: rgba(184, 150, 95, 0.14);
  --sf-glow-b: rgba(241, 237, 228, 0.08);
  --sf-vignette: rgba(0, 0, 0, 0.52);
}

.sf-page::before,
.sf-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.sf-page::before {
  background:
    radial-gradient(70% 42% at 50% 2%, var(--sf-glow-a), transparent 70%),
    radial-gradient(44% 24% at 86% 40%, rgba(186, 156, 108, 0.08), transparent 80%),
    radial-gradient(36% 20% at 12% 64%, rgba(186, 156, 108, 0.06), transparent 80%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.sf-page::after {
  background:
    radial-gradient(150% 90% at 50% 100%, transparent 38%, var(--sf-vignette) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34));
}

.sf-opening,
.sf-section,
.sf-cta {
  isolation: isolate;
}

.sf-opening::before,
.sf-section::before,
.sf-cta::before {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  top: -18%;
  bottom: -18%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(60% 48% at 50% 50%, rgba(241, 237, 228, 0.02), transparent 72%);
}

.sf-opening {
  min-height: min(820px, calc(100svh - 68px));
  padding-top: var(--s48);
  padding-bottom: var(--s64);
}

.sf-opening__copy {
  position: relative;
  padding: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(145deg, rgba(241, 237, 228, 0.055), rgba(241, 237, 228, 0.01)),
    rgba(9, 8, 6, 0.42);
  border: 1px solid rgba(160, 139, 105, 0.22);
  backdrop-filter: blur(7px) saturate(108%);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(241, 237, 228, 0.03) inset;
}

.sf-opening__copy::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: radial-gradient(80% 34% at 50% 0%, rgba(184, 150, 95, 0.22), transparent 74%);
  mix-blend-mode: screen;
  opacity: 0.6;
}

.sf-opening h1 {
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.52), 0 0 28px rgba(184, 150, 95, 0.12);
}

.sf-stage {
  border-color: rgba(166, 143, 105, 0.36);
  background:
    radial-gradient(100% 70% at 50% -4%, rgba(196, 164, 110, 0.2), transparent 62%),
    radial-gradient(40% 40% at 80% 74%, rgba(241, 237, 228, 0.07), transparent 84%),
    linear-gradient(145deg, rgba(241, 237, 228, 0.06), rgba(241, 237, 228, 0.008)),
    var(--sf-panel);
  box-shadow:
    0 48px 132px rgba(0, 0, 0, 0.52),
    0 0 42px rgba(184, 150, 95, 0.11),
    0 0 0 1px rgba(241, 237, 228, 0.04) inset;
}

.sf-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
  opacity: 0.12;
}

.sf-section {
  margin-top: clamp(88px, 9vw, 132px);
  padding: 0;
}

.sf-section:nth-of-type(odd)::before {
  background: radial-gradient(55% 45% at 76% 40%, rgba(184, 150, 95, 0.09), transparent 78%);
}

.sf-section:nth-of-type(even)::before {
  background: radial-gradient(60% 40% at 20% 30%, rgba(241, 237, 228, 0.04), transparent 78%);
}

.sf-tension,
.sf-cta {
  position: relative;
  overflow: hidden;
}

.sf-tension::after,
.sf-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(241, 237, 228, 0.03), transparent 26%, transparent 74%, rgba(160, 139, 105, 0.08));
}

.sf-mosaic,
.sf-pillars,
.sf-tags,
.sf-cases,
.sf-split,
.sf-steps {
  position: relative;
}

.sf-mosaic::before,
.sf-cases::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(55% 35% at 50% 0%, rgba(184, 150, 95, 0.11), transparent 80%);
  filter: blur(12px);
}

.sf-mosaic article,
.sf-cases article,
.sf-tags span,
.sf-split article,
.sf-steps span,
.sf-pillars span {
  border-color: rgba(165, 142, 103, 0.3);
  background:
    linear-gradient(150deg, rgba(241, 237, 228, 0.058), rgba(241, 237, 228, 0.014)),
    rgba(9, 8, 6, 0.72);
  backdrop-filter: blur(8px) saturate(108%);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(241, 237, 228, 0.024) inset;
}

.sf-pillars span,
.sf-steps span {
  background:
    radial-gradient(60% 46% at 50% 0%, rgba(184, 150, 95, 0.08), transparent 80%),
    rgba(9, 8, 6, 0.78);
}

.sf-transition__chaos,
.sf-transition__order {
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.34);
}

.sf-transition__chaos {
  background-color: rgba(9, 8, 6, 0.75);
}

.sf-transition__order {
  background-color: rgba(10, 9, 7, 0.76);
}

.sf-split article:last-child {
  box-shadow: 0 28px 66px rgba(0, 0, 0, 0.34), 0 0 42px rgba(184, 150, 95, 0.12);
}

.sf-page--webapp .sf-opening__copy::after {
  background: radial-gradient(82% 36% at 50% 0%, rgba(193, 162, 112, 0.18), transparent 76%);
}

.sf-page--webapp .sf-section:nth-of-type(odd)::before {
  background: radial-gradient(52% 42% at 72% 40%, rgba(193, 162, 112, 0.12), transparent 78%);
}

.sf-page--website .sf-opening__copy::after {
  background: radial-gradient(80% 34% at 50% 0%, rgba(221, 213, 194, 0.11), transparent 76%);
}

.sf-page--website .sf-section:nth-of-type(odd)::before {
  background: radial-gradient(52% 40% at 68% 38%, rgba(221, 213, 194, 0.07), transparent 78%);
}

@media (hover: hover) and (pointer: fine) {
  .sf-stage,
  .sf-cases article,
  .sf-mosaic article,
  .sf-tags span,
  .sf-split article,
  .sf-steps span,
  .sf-pillars span {
    transition:
      transform 320ms cubic-bezier(.2,.7,.2,1),
      border-color 320ms ease,
      box-shadow 320ms ease,
      background-position 320ms ease,
      filter 320ms ease;
  }

  .sf-stage:hover {
    transform: perspective(1200px) rotateY(-8deg) rotateX(4deg) translateY(-4px);
    border-color: rgba(184, 156, 111, 0.46);
    box-shadow:
      0 62px 150px rgba(0, 0, 0, 0.56),
      0 0 52px rgba(184, 150, 95, 0.13),
      0 0 0 1px rgba(241, 237, 228, 0.05) inset;
  }

  .sf-page--website .sf-stage:hover {
    transform: perspective(1200px) rotateY(8deg) rotateX(4deg) translateY(-4px);
  }

  .sf-cases article:hover,
  .sf-mosaic article:hover,
  .sf-tags span:hover,
  .sf-pillars span:hover {
    transform: translateY(-6px);
    border-color: rgba(188, 160, 114, 0.52);
    box-shadow: 0 30px 64px rgba(0, 0, 0, 0.4), 0 0 28px rgba(184, 150, 95, 0.1);
  }

  .sf-split article:hover,
  .sf-steps span:hover {
    transform: translateY(-4px);
    border-color: rgba(188, 160, 114, 0.5);
  }
}

@media (max-width: 960px) {
  .sf-page::before {
    opacity: 0.72;
  }

  .sf-opening {
    min-height: auto;
    padding-top: var(--s32);
  }

  .sf-opening__copy {
    padding: var(--s24);
  }

  .sf-stage,
  .sf-page--website .sf-stage {
    transform: none;
  }
}

@media (max-width: 760px) {
  .sf-page::before,
  .sf-page::after {
    position: absolute;
  }

  .sf-page {
    --s120: 64px;
  }

  .sf-opening {
    padding-top: var(--s24);
    padding-bottom: var(--s32);
  }

  .sf-opening__copy {
    background:
      linear-gradient(145deg, rgba(241, 237, 228, 0.038), rgba(241, 237, 228, 0.01)),
      rgba(9, 8, 6, 0.48);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.34);
  }

  .sf-stage {
    min-height: 280px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 18px rgba(184, 150, 95, 0.07);
  }

  .sf-section {
    margin-top: var(--s96);
  }

  .sf-mosaic article,
  .sf-cases article,
  .sf-tags span,
  .sf-split article,
  .sf-steps span,
  .sf-pillars span {
    backdrop-filter: none;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  }

  .sf-cases--webapp article:nth-child(3) {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sf-page::before,
  .sf-page::after {
    animation: none;
  }

  .sf-stage,
  .sf-cases article,
  .sf-mosaic article,
  .sf-tags span,
  .sf-split article,
  .sf-steps span,
  .sf-pillars span {
    transition: none;
  }
}

/* Homepage visual direction reset: central WebGL system + standalone H */
.home-cinema .orbit-field {
  display: none;
}

.home-cinema .brand {
  isolation: isolate;
  animation: logo-float 8.2s ease-in-out infinite;
  transform: translateY(6px);
}

.home-cinema .brand::before,
.home-cinema .brand::after {
  content: none;
}

.home-cinema .home-orbit-canvas,
.home-cinema .home-orbit-canvas--back,
.home-cinema .home-orbit-canvas--front {
  display: none !important;
}

.home-cinema .brand__mark--large {
  width: auto;
  height: auto;
  display: inline-block;
  border: none;
  background: none;
  box-shadow: none;
  font-family: var(--serif);
  font-size: clamp(6.8rem, 15.2vw, 13rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
  transform-style: preserve-3d;
  z-index: 5;
  transform: perspective(880px) rotateX(8deg) translateZ(0);
  animation: monogram-arrive 900ms ease both, logo-float 9.6s ease-in-out infinite;
}

.home-cinema .brand__mark--large::before {
  content: none;
}

.home-cinema .brand__mark--large::after {
  content: "H";
  position: relative;
  inset: auto;
  display: inline-block;
  color: transparent;
  background:
    linear-gradient(116deg, #4f381a 0%, #f7dfa2 26%, #b78f58 48%, #fff3c8 68%, #4f381a 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 36px rgba(196, 155, 97, 0.4));
  text-shadow: 0 0 30px rgba(196, 155, 97, 0.24);
  animation: metal-sheen 6.2s ease-in-out infinite alternate;
}

.home-cinema .hub__core--cinematic {
  position: relative;
  padding-top: 2px;
}

.home-cinema .hub__core--cinematic::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(76vw, 840px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 4;
  background:
    radial-gradient(circle at 50% 50%, rgba(193, 152, 92, 0.17), rgba(193, 152, 92, 0.08) 26%, transparent 66%),
    radial-gradient(circle at 50% 50%, rgba(241, 237, 228, 0.09), transparent 69%);
  mix-blend-mode: screen;
}

.home-cinema .hub__core--cinematic::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: min(24vw, 240px);
  height: min(58vh, 420px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 4;
  background:
    linear-gradient(180deg, rgba(241, 237, 228, 0.16), rgba(193, 152, 92, 0.12) 30%, rgba(193, 152, 92, 0.04) 62%, transparent 100%);
  filter: blur(28px);
  opacity: 0.55;
}

.home-cinema .brand-word,
.home-cinema .payoff,
.home-cinema .choices--premium {
  position: relative;
  z-index: 6;
}

.home-cinema .ambient--grain {
  opacity: 0.17;
}

.home-cinema .ambient--spotlight {
  background:
    radial-gradient(ellipse at 50% 17%, rgba(235, 197, 128, 0.34), transparent 19rem),
    conic-gradient(from 210deg at 50% 34%, transparent 0deg, rgba(214, 174, 107, 0.13) 52deg, transparent 112deg, transparent 360deg),
    linear-gradient(180deg, rgba(199, 148, 74, 0.16), transparent 44%);
}

@media (max-width: 760px) {
  .home-cinema .brand__mark--large {
    font-size: clamp(5.1rem, 22vw, 7.2rem);
  }

  .home-cinema .hub__core--cinematic::before {
    width: min(88vw, 500px);
    opacity: 0.74;
  }

  .home-cinema .hub__core--cinematic::after {
    width: min(42vw, 180px);
    height: min(42vh, 280px);
    opacity: 0.4;
  }

  .home-cinema .ambient--spotlight {
    background:
      radial-gradient(ellipse at 50% 16%, rgba(235, 197, 128, 0.22), transparent 14rem),
      linear-gradient(180deg, rgba(199, 148, 74, 0.08), transparent 40%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-cinema .brand,
  .home-cinema .brand__mark--large,
  .home-cinema .brand__mark--large::after {
    animation: none;
  }
}

/* Service pages ultimate visual refresh */
.sf-page {
  --sf-accent: rgba(196, 157, 98, 0.34);
  --sf-accent-soft: rgba(196, 157, 98, 0.14);
  --sf-shell: rgba(10, 9, 7, 0.76);
  --sf-shell-soft: rgba(12, 10, 8, 0.52);
  width: min(1240px, calc(100% - 40px));
  padding-top: clamp(32px, 4vw, 64px);
}

.sf-page::before {
  opacity: 0.95;
  background:
    radial-gradient(72% 40% at 50% 0%, rgba(196, 157, 98, 0.2), transparent 70%),
    radial-gradient(42% 22% at 84% 34%, rgba(241, 237, 228, 0.06), transparent 84%),
    radial-gradient(34% 20% at 14% 66%, rgba(196, 157, 98, 0.08), transparent 84%);
}

.sf-opening,
.sf-section,
.sf-cta {
  border: 1px solid rgba(196, 157, 98, 0.14);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 52px);
  background:
    radial-gradient(140% 80% at 50% -20%, rgba(196, 157, 98, 0.11), transparent 58%),
    linear-gradient(150deg, rgba(241, 237, 228, 0.07), rgba(241, 237, 228, 0.01)),
    var(--sf-shell);
  backdrop-filter: blur(14px) saturate(116%);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(241, 237, 228, 0.024) inset;
}

.sf-section {
  margin-top: clamp(76px, 8.5vw, 126px);
}

.sf-section:nth-of-type(odd) {
  transform: translateX(clamp(0px, 2vw, 18px));
}

.sf-section:nth-of-type(even) {
  transform: translateX(clamp(-18px, -2vw, 0px));
}

.sf-opening__copy {
  border-radius: 22px;
  padding: clamp(26px, 3.2vw, 40px);
  background:
    radial-gradient(86% 46% at 50% 0%, rgba(196, 157, 98, 0.2), transparent 72%),
    linear-gradient(145deg, rgba(241, 237, 228, 0.085), rgba(241, 237, 228, 0.015)),
    var(--sf-shell-soft);
  border: 1px solid rgba(196, 157, 98, 0.24);
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.38), 0 0 26px rgba(196, 157, 98, 0.1);
}

.sf-opening h1,
.sf-turn h2,
.sf-solution h2,
.sf-cta h2,
.sf-tension blockquote {
  letter-spacing: -0.04em;
  text-wrap: pretty;
}

.sf-stage {
  border-radius: 26px;
  overflow: hidden;
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  background:
    radial-gradient(110% 70% at 50% -6%, rgba(196, 157, 98, 0.22), transparent 62%),
    linear-gradient(145deg, rgba(241, 237, 228, 0.08), rgba(241, 237, 228, 0.01)),
    rgba(9, 8, 6, 0.8);
}

.sf-page--website .sf-stage {
  transform: perspective(1200px) rotateY(8deg) rotateX(4deg);
}

.sf-mosaic,
.sf-cases,
.sf-pillars,
.sf-steps,
.sf-tags,
.sf-split {
  border-radius: 20px;
  overflow: hidden;
  border-color: rgba(196, 157, 98, 0.2);
}

.sf-mosaic article,
.sf-cases article,
.sf-tags span,
.sf-pillars span,
.sf-steps span,
.sf-split article {
  position: relative;
  border-color: rgba(196, 157, 98, 0.24);
  background:
    radial-gradient(130% 90% at 50% -20%, rgba(196, 157, 98, 0.14), transparent 62%),
    linear-gradient(150deg, rgba(241, 237, 228, 0.078), rgba(241, 237, 228, 0.014)),
    rgba(10, 9, 7, 0.82);
}

.sf-mosaic article::after,
.sf-cases article::after,
.sf-tags span::after,
.sf-pillars span::after,
.sf-steps span::after,
.sf-split article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(128deg, rgba(241, 237, 228, 0.06), transparent 38%);
  opacity: 0.5;
}

.sf-tension,
.sf-cta {
  border-radius: 30px;
  background:
    radial-gradient(100% 64% at 50% 0%, rgba(196, 157, 98, 0.18), transparent 62%),
    linear-gradient(150deg, rgba(241, 237, 228, 0.09), rgba(241, 237, 228, 0.015)),
    rgba(9, 8, 6, 0.8);
}

.sf-page--webapp .sf-opening,
.sf-page--webapp .sf-section,
.sf-page--webapp .sf-cta {
  background:
    radial-gradient(130% 80% at 12% -24%, rgba(196, 157, 98, 0.13), transparent 62%),
    linear-gradient(150deg, rgba(241, 237, 228, 0.07), rgba(241, 237, 228, 0.01)),
    rgba(9, 8, 6, 0.78);
}

.sf-page--website .sf-opening,
.sf-page--website .sf-section,
.sf-page--website .sf-cta {
  background:
    radial-gradient(130% 80% at 88% -24%, rgba(214, 202, 178, 0.09), transparent 62%),
    linear-gradient(150deg, rgba(241, 237, 228, 0.08), rgba(241, 237, 228, 0.012)),
    rgba(9, 8, 6, 0.8);
}

.sf-page .service-link {
  border-radius: 999px;
  padding-inline: 28px;
  min-height: 54px;
  border-color: rgba(196, 157, 98, 0.42);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34), 0 0 24px rgba(196, 157, 98, 0.08);
}

@media (hover: hover) and (pointer: fine) {
  .sf-section,
  .sf-opening,
  .sf-cta {
    transition: transform 420ms cubic-bezier(.2,.7,.2,1), border-color 320ms ease, box-shadow 320ms ease;
  }

  .sf-section:hover,
  .sf-opening:hover,
  .sf-cta:hover {
    transform: translateY(-4px);
    border-color: rgba(196, 157, 98, 0.26);
    box-shadow: 0 42px 112px rgba(0, 0, 0, 0.46), 0 0 34px rgba(196, 157, 98, 0.09);
  }

  .sf-mosaic article:hover,
  .sf-cases article:hover,
  .sf-tags span:hover,
  .sf-pillars span:hover,
  .sf-steps span:hover,
  .sf-split article:hover {
    transform: translateY(-7px) scale(1.01);
    border-color: rgba(204, 167, 111, 0.56);
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.42), 0 0 28px rgba(196, 157, 98, 0.12);
  }
}

@media (max-width: 960px) {
  .sf-page {
    width: min(760px, calc(100% - 28px));
  }

  .sf-section:nth-of-type(odd),
  .sf-section:nth-of-type(even) {
    transform: none;
  }

  .sf-opening,
  .sf-section,
  .sf-cta {
    border-radius: 22px;
    padding: 24px;
  }

  .sf-stage,
  .sf-page--website .sf-stage {
    transform: none;
  }
}

@media (max-width: 760px) {
  .sf-page {
    width: min(680px, calc(100% - 22px));
  }

  .sf-opening,
  .sf-section,
  .sf-cta {
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
  }

  .sf-opening__copy {
    border-radius: 16px;
    padding: 18px;
  }

  .sf-mosaic,
  .sf-cases,
  .sf-pillars,
  .sf-steps,
  .sf-tags,
  .sf-split {
    border-radius: 14px;
  }

  .sf-mosaic article,
  .sf-cases article,
  .sf-tags span,
  .sf-pillars span,
  .sf-steps span,
  .sf-split article {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sf-section,
  .sf-opening,
  .sf-cta,
  .sf-mosaic article,
  .sf-cases article,
  .sf-tags span,
  .sf-pillars span,
  .sf-steps span,
  .sf-split article {
    transition: none !important;
  }
}

/* Homepage alignment + multi-side moving grid fix */
.home-cinema .hub__core--cinematic {
  justify-items: center;
}

.home-cinema .brand {
  justify-self: center;
  margin-inline: auto;
}

.home-cinema .brand__mark--large {
  display: block;
  margin-inline: auto;
}

.home-cinema .brand-word {
  text-indent: 0;
  width: max-content;
  margin-inline: auto;
  text-align: center;
}

.home-cinema .depth-grid {
  bottom: -20vh;
  width: 170vw;
  height: 64vh;
  opacity: 0.34;
  animation: grid-breathe 10s ease-in-out infinite alternate, grid-flow 16s linear infinite;
  overflow: visible;
}

.home-cinema .depth-grid::before,
.home-cinema .depth-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(216, 174, 104, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 174, 104, 0.1) 1px, transparent 1px);
  background-size: 82px 82px;
  filter: drop-shadow(0 0 16px rgba(216, 174, 104, 0.11));
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 86%);
}

.home-cinema .depth-grid::before {
  transform-origin: left bottom;
  transform: perspective(780px) rotateX(66deg) rotateY(26deg) translateX(-18%);
  opacity: 0.34;
  animation: side-grid-flow-left 14s linear infinite;
}

.home-cinema .depth-grid::after {
  transform-origin: right bottom;
  transform: perspective(780px) rotateX(66deg) rotateY(-26deg) translateX(18%);
  opacity: 0.34;
  animation: side-grid-flow-right 18s linear infinite;
}

@keyframes grid-flow {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 -82px, 82px 0; }
}

@keyframes side-grid-flow-left {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 -68px, 68px 0; }
}

@keyframes side-grid-flow-right {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 -74px, -74px 0; }
}

@media (max-width: 760px) {
  .home-cinema .brand-word {
    letter-spacing: 0.38rem;
  }

  .home-cinema .depth-grid {
    width: 190vw;
    height: 42vh;
    opacity: 0.2;
  }

  .home-cinema .depth-grid::before,
  .home-cinema .depth-grid::after {
    opacity: 0.2;
    background-size: 62px 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-cinema .depth-grid,
  .home-cinema .depth-grid::before,
  .home-cinema .depth-grid::after {
    animation: none;
  }
}

/* Homepage tunnel grid override */
.home-cinema .depth-grid {
  --tunnel-step: 68px;
  --tunnel-speed: 16s;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100svh;
  left: 0;
  bottom: auto;
  opacity: 0.34;
  transform: none;
  transform-origin: center center;
  background-image:
    linear-gradient(rgba(216, 174, 104, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 174, 104, 0.09) 1px, transparent 1px);
  background-size: var(--tunnel-step) var(--tunnel-step);
  background-position: 0 0, 0 0;
  filter: drop-shadow(0 0 12px rgba(216, 174, 104, 0.08));
  mask-image: radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.9), transparent 78%);
  animation: tunnel-grid-flow var(--tunnel-speed) linear infinite;
}

.home-cinema .depth-grid::before,
.home-cinema .depth-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(216, 174, 104, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 174, 104, 0.09) 1px, transparent 1px);
  background-size: var(--tunnel-step) var(--tunnel-step);
  background-position: 0 0, 0 0;
  mask-image: radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.9), transparent 80%);
}

.home-cinema .depth-grid {
  transform: perspective(980px) rotateY(70deg) translateX(-56vw) scale(1.26);
}

.home-cinema .depth-grid::before {
  transform: perspective(980px) rotateY(-70deg) translateX(56vw) scale(1.26);
  animation: tunnel-grid-flow var(--tunnel-speed) linear infinite;
}

.home-cinema .depth-grid::after {
  transform: perspective(980px) rotateX(74deg) translateY(36vh) scale(1.26);
  animation: tunnel-grid-flow var(--tunnel-speed) linear infinite;
}

@keyframes tunnel-grid-flow {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 calc(-1 * var(--tunnel-step)), var(--tunnel-step) 0; }
}

@media (max-width: 760px) {
  .home-cinema .depth-grid {
    --tunnel-step: 58px;
    --tunnel-speed: 14s;
    opacity: 0.18;
    transform: perspective(780px) rotateY(68deg) translateX(-62vw) scale(1.22);
  }

  .home-cinema .depth-grid::before {
    transform: perspective(780px) rotateY(-68deg) translateX(62vw) scale(1.22);
  }

  .home-cinema .depth-grid::after {
    transform: perspective(780px) rotateX(72deg) translateY(40vh) scale(1.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-cinema .depth-grid,
  .home-cinema .depth-grid::before,
  .home-cinema .depth-grid::after {
    animation: none;
  }
}

/* Homepage tunnel reboot: no grid squares */
.home-cinema::before {
  background: none;
}

.home-cinema .ambient--grain {
  background-image:
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.03) 0 1px, transparent 1.4px),
    radial-gradient(circle at 78% 36%, rgba(255, 255, 255, 0.025) 0 1px, transparent 1.4px),
    radial-gradient(circle at 64% 78%, rgba(0, 0, 0, 0.18) 0 1px, transparent 1.8px);
  background-size: 220px 220px, 260px 260px, 280px 280px;
  opacity: 0.14;
}

.home-cinema .depth-grid {
  --tunnel-gold: rgba(216, 174, 104, 0.18);
  position: fixed;
  inset: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  opacity: 0.36;
  transform: none;
  filter: none;
  mask-image: radial-gradient(ellipse at 50% 56%, rgba(0, 0, 0, 0.95), transparent 78%);
  background:
    radial-gradient(ellipse at 50% 56%, rgba(216, 174, 104, 0.18), transparent 44%),
    radial-gradient(ellipse at 50% 56%, rgba(241, 237, 228, 0.06), transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.36));
  animation: tunnel-core-breathe 8.8s ease-in-out infinite alternate;
}

.home-cinema .depth-grid::before,
.home-cinema .depth-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: none;
}

.home-cinema .depth-grid::before {
  background:
    radial-gradient(ellipse at 50% 56%, transparent 16%, rgba(216, 174, 104, 0.18) 18%, transparent 22%),
    radial-gradient(ellipse at 50% 56%, transparent 28%, rgba(216, 174, 104, 0.14) 30%, transparent 34%),
    radial-gradient(ellipse at 50% 56%, transparent 40%, rgba(216, 174, 104, 0.1) 42%, transparent 46%),
    radial-gradient(ellipse at 50% 56%, transparent 52%, rgba(216, 174, 104, 0.08) 54%, transparent 58%);
  opacity: 0.72;
  transform-origin: 50% 56%;
  animation: tunnel-rings-flow 10s linear infinite;
}

.home-cinema .depth-grid::after {
  background:
    conic-gradient(from 210deg at 50% 56%, transparent 0deg, rgba(216, 174, 104, 0.13) 26deg, transparent 72deg, transparent 360deg),
    conic-gradient(from 18deg at 50% 56%, transparent 0deg, rgba(216, 174, 104, 0.1) 22deg, transparent 64deg, transparent 360deg),
    radial-gradient(ellipse at 50% 56%, rgba(216, 174, 104, 0.09), transparent 70%);
  mix-blend-mode: screen;
  opacity: 0.46;
  animation: tunnel-sweep 16s linear infinite;
}

@keyframes tunnel-core-breathe {
  from { opacity: 0.24; }
  to { opacity: 0.42; }
}

@keyframes tunnel-rings-flow {
  from { transform: scale(0.88); opacity: 0.78; }
  to { transform: scale(1.18); opacity: 0.42; }
}

@keyframes tunnel-sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 760px) {
  .home-cinema .depth-grid {
    opacity: 0.24;
    mask-image: radial-gradient(ellipse at 50% 58%, rgba(0, 0, 0, 0.95), transparent 74%);
  }

  .home-cinema .depth-grid::before {
    opacity: 0.56;
    animation-duration: 12s;
  }

  .home-cinema .depth-grid::after {
    opacity: 0.34;
    animation-duration: 20s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-cinema .depth-grid,
  .home-cinema .depth-grid::before,
  .home-cinema .depth-grid::after {
    animation: none;
  }
}

/* Homepage precision fixes: center H + softer gold + no base-grid feel */
.home-cinema .brand {
  transform: translateY(6px);
}

.home-cinema .brand__mark--large {
  position: relative;
  width: 1.06ch;
  margin-inline: auto;
}

.home-cinema .brand__mark--large::after {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

.home-cinema .brand-word {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.home-cinema .ambient--spotlight {
  background:
    radial-gradient(ellipse at 50% 17%, rgba(235, 197, 128, 0.18), transparent 20rem),
    conic-gradient(from 210deg at 50% 34%, transparent 0deg, rgba(214, 174, 107, 0.07) 52deg, transparent 112deg, transparent 360deg),
    linear-gradient(180deg, rgba(199, 148, 74, 0.08), transparent 44%);
}

.home-cinema .depth-grid {
  opacity: 0.24;
  background:
    radial-gradient(ellipse at 50% 56%, rgba(216, 174, 104, 0.1), transparent 44%),
    radial-gradient(ellipse at 50% 56%, rgba(241, 237, 228, 0.035), transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.34));
}

.home-cinema .depth-grid::before {
  background:
    radial-gradient(ellipse at 50% 56%, transparent 16%, rgba(216, 174, 104, 0.1) 18%, transparent 22%),
    radial-gradient(ellipse at 50% 56%, transparent 28%, rgba(216, 174, 104, 0.08) 30%, transparent 34%),
    radial-gradient(ellipse at 50% 56%, transparent 40%, rgba(216, 174, 104, 0.06) 42%, transparent 46%),
    radial-gradient(ellipse at 50% 56%, transparent 52%, rgba(216, 174, 104, 0.05) 54%, transparent 58%);
  opacity: 0.56;
}

.home-cinema .depth-grid::after {
  background:
    conic-gradient(from 210deg at 50% 56%, transparent 0deg, rgba(216, 174, 104, 0.07) 26deg, transparent 72deg, transparent 360deg),
    conic-gradient(from 18deg at 50% 56%, transparent 0deg, rgba(216, 174, 104, 0.055) 22deg, transparent 64deg, transparent 360deg),
    radial-gradient(ellipse at 50% 56%, rgba(216, 174, 104, 0.05), transparent 70%);
  opacity: 0.3;
}

@media (max-width: 760px) {
  .home-cinema .brand__mark--large {
    width: 1.02ch;
  }

  .home-cinema .ambient--spotlight {
    background:
      radial-gradient(ellipse at 50% 16%, rgba(235, 197, 128, 0.12), transparent 14rem),
      linear-gradient(180deg, rgba(199, 148, 74, 0.05), transparent 40%);
  }

  .home-cinema .depth-grid {
    opacity: 0.16;
  }
}

/* Home final fix: no CSS tunnel overlay, centered non-clipped H */
.home-cinema .depth-grid,
.home-cinema .depth-grid::before,
.home-cinema .depth-grid::after {
  display: none !important;
}

.home-cinema .brand {
  transform: none;
  display: grid;
  justify-items: center;
}

.home-cinema .brand__mark--large {
  width: auto;
  min-height: 1.08em;
  line-height: 1;
  overflow: visible;
  display: inline-grid;
  place-items: center;
  margin-inline: auto;
}

.home-cinema .brand__mark--large::after {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
}

.home-cinema .brand-word {
  width: max-content;
  margin-inline: auto;
  text-indent: 0;
  text-align: center;
}

.home-cinema .ambient--spotlight {
  background:
    radial-gradient(ellipse at 50% 17%, rgba(235, 197, 128, 0.14), transparent 20rem),
    conic-gradient(from 210deg at 50% 34%, transparent 0deg, rgba(214, 174, 107, 0.05) 52deg, transparent 112deg, transparent 360deg),
    linear-gradient(180deg, rgba(199, 148, 74, 0.06), transparent 44%);
}

/* Service pages v3 */
.neo-page {
  --neo-line: rgba(196, 157, 98, 0.22);
  --neo-shell: rgba(10, 9, 7, 0.78);
  --neo-soft: rgba(241, 237, 228, 0.08);
  position: relative;
  z-index: 4;
  width: min(1260px, calc(100% - 34px));
  margin: 0 auto;
  padding: clamp(30px, 3.5vw, 60px) 0 clamp(44px, 5vw, 74px);
}

.neo-page .atelier-act {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.neo-page .atelier-act.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.neo-hero,
.neo-section {
  position: relative;
  border: 1px solid var(--neo-line);
  border-radius: 30px;
  background:
    radial-gradient(120% 76% at 50% -22%, rgba(196, 157, 98, 0.14), transparent 62%),
    linear-gradient(150deg, rgba(241, 237, 228, 0.08), rgba(241, 237, 228, 0.012)),
    var(--neo-shell);
  backdrop-filter: blur(14px) saturate(114%);
  box-shadow: 0 34px 102px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(241, 237, 228, 0.024) inset;
  padding: clamp(24px, 3vw, 44px);
}

.neo-hero {
  min-height: min(760px, calc(100svh - 74px));
  display: grid;
  align-content: center;
}

.neo-hero__grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

.neo-kicker,
.neo-index {
  margin: 0 0 18px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(174, 151, 113, 0.74);
}

.neo-hero h1,
.neo-shift h2,
.neo-solution h2,
.neo-cta h2,
.neo-tension blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.neo-hero p {
  margin: 22px 0 0;
  max-width: 56ch;
  color: rgba(218, 210, 192, 0.84);
  line-height: 1.7;
}

.neo-hero__visual {
  min-height: 380px;
  border-radius: 24px;
  border: 1px solid rgba(196, 157, 98, 0.28);
  background:
    radial-gradient(110% 72% at 50% -6%, rgba(196, 157, 98, 0.2), transparent 64%),
    linear-gradient(145deg, rgba(241, 237, 228, 0.08), rgba(241, 237, 228, 0.01)),
    rgba(8, 7, 6, 0.84);
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(241, 237, 228, 0.03) inset;
  position: relative;
  overflow: hidden;
}

.neo-hero__visual span {
  position: absolute;
  min-width: 112px;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(196, 157, 98, 0.34);
  border-radius: 999px;
  color: rgba(241, 237, 228, 0.82);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(9, 8, 6, 0.74);
}

.neo-hero__visual span:nth-child(1) { left: 10%; top: 18%; }
.neo-hero__visual span:nth-child(2) { right: 12%; top: 24%; }
.neo-hero__visual span:nth-child(3) { left: 22%; bottom: 20%; }
.neo-hero__visual span:nth-child(4) { right: 15%; bottom: 26%; }

.neo-hero__visual i {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 157, 98, 0.42), transparent);
}

.neo-hero__visual i:nth-of-type(1) { left: 16%; top: 42%; width: 66%; transform: rotate(12deg); }
.neo-hero__visual i:nth-of-type(2) { left: 12%; top: 62%; width: 58%; transform: rotate(-10deg); }
.neo-hero__visual i:nth-of-type(3) { left: 36%; top: 30%; width: 44%; transform: rotate(40deg); }

.neo-section {
  margin-top: clamp(38px, 5vw, 70px);
}

.neo-ribbon,
.neo-grid,
.neo-pillars,
.neo-compare,
.neo-steps {
  border: 1px solid rgba(196, 157, 98, 0.2);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  gap: 1px;
  background: rgba(196, 157, 98, 0.14);
}

.neo-ribbon article,
.neo-grid article,
.neo-pillars span,
.neo-compare article,
.neo-steps span {
  border: 1px solid rgba(196, 157, 98, 0.2);
  background:
    radial-gradient(120% 80% at 50% -24%, rgba(196, 157, 98, 0.14), transparent 62%),
    linear-gradient(150deg, rgba(241, 237, 228, 0.08), rgba(241, 237, 228, 0.014)),
    rgba(9, 8, 6, 0.82);
}

.neo-ribbon {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.neo-ribbon--website {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.neo-ribbon article {
  min-height: 140px;
  display: grid;
  align-items: end;
  padding: 24px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  line-height: 1;
}

.neo-tension {
  text-align: center;
  padding-block: clamp(34px, 6vw, 76px);
}

.neo-shift__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(300px, 1fr);
  gap: clamp(20px, 4vw, 58px);
  align-items: center;
}

.neo-shift__flow {
  min-height: 220px;
  border-radius: 18px;
  border: 1px solid rgba(196, 157, 98, 0.22);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(196, 157, 98, 0.16), transparent 54%),
    rgba(9, 8, 6, 0.8);
  position: relative;
  overflow: hidden;
}

.neo-shift__flow span {
  position: absolute;
  width: 180%;
  height: 1px;
  left: -40%;
  background: linear-gradient(90deg, transparent, rgba(196, 157, 98, 0.48), transparent);
}

.neo-shift__flow span:nth-child(1) { top: 28%; transform: rotate(11deg); }
.neo-shift__flow span:nth-child(2) { top: 52%; transform: rotate(-7deg); }
.neo-shift__flow span:nth-child(3) { top: 76%; transform: rotate(16deg); }

.neo-solution h2,
.neo-cta h2 {
  max-width: 15ch;
}

.neo-pillars {
  margin-top: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.neo-pillars span {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.8vw, 1.5rem);
}

.neo-grid--webapp {
  grid-template-columns: 1.14fr 0.86fr;
}

.neo-grid--website {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.neo-grid article {
  min-height: 170px;
  display: grid;
  align-items: end;
  padding: 24px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1;
}

.neo-grid--webapp article:nth-child(1) { grid-row: span 2; min-height: 260px; }
.neo-grid--webapp article:nth-child(3) { transform: translateY(22px); }
.neo-grid--website article:nth-child(1),
.neo-grid--website article:nth-child(2) { grid-column: span 3; min-height: 210px; }
.neo-grid--website article:nth-child(3),
.neo-grid--website article:nth-child(4),
.neo-grid--website article:nth-child(5) { grid-column: span 2; }

.neo-compare {
  grid-template-columns: 1fr 1fr;
}

.neo-compare article {
  min-height: 300px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 30px;
}

.neo-compare span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
  color: rgba(174, 151, 113, 0.82);
}

.neo-compare p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.5vw, 3.2rem);
  line-height: 0.92;
}

.neo-compare--website article { min-height: 260px; }

.neo-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.neo-steps span {
  min-height: 120px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  text-align: center;
  padding: 0 14px;
}

.neo-cta {
  min-height: 280px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 22px;
}

@media (hover: hover) and (pointer: fine) {
  .neo-hero,
  .neo-section,
  .neo-ribbon article,
  .neo-grid article,
  .neo-pillars span,
  .neo-compare article,
  .neo-steps span {
    transition: transform 340ms cubic-bezier(.2,.7,.2,1), border-color 280ms ease, box-shadow 280ms ease;
  }

  .neo-section:hover,
  .neo-hero:hover {
    transform: translateY(-4px);
    border-color: rgba(202, 164, 108, 0.32);
  }

  .neo-ribbon article:hover,
  .neo-grid article:hover,
  .neo-pillars span:hover,
  .neo-compare article:hover,
  .neo-steps span:hover {
    transform: translateY(-6px);
    border-color: rgba(202, 164, 108, 0.54);
    box-shadow: 0 28px 66px rgba(0, 0, 0, 0.4), 0 0 24px rgba(196, 157, 98, 0.1);
  }
}

@media (max-width: 980px) {
  .neo-page {
    width: min(760px, calc(100% - 26px));
  }

  .neo-hero,
  .neo-section {
    border-radius: 22px;
    padding: 22px;
  }

  .neo-hero__grid,
  .neo-shift__layout,
  .neo-pillars,
  .neo-compare,
  .neo-steps,
  .neo-ribbon,
  .neo-ribbon--website,
  .neo-grid--webapp,
  .neo-grid--website {
    grid-template-columns: 1fr;
  }

  .neo-grid--webapp article:nth-child(1),
  .neo-grid--website article {
    grid-column: auto;
    grid-row: auto;
    min-height: 150px;
  }

  .neo-grid--webapp article:nth-child(3) {
    transform: none;
  }

  .neo-shift__flow {
    min-height: 170px;
  }
}

@media (max-width: 760px) {
  .neo-page {
    width: min(680px, calc(100% - 20px));
    padding-top: 24px;
  }

  .neo-hero h1,
  .neo-shift h2,
  .neo-solution h2,
  .neo-cta h2,
  .neo-tension blockquote {
    font-size: clamp(2.15rem, 12vw, 3.9rem);
  }

  .neo-hero__visual {
    min-height: 280px;
  }

  .neo-ribbon article,
  .neo-grid article,
  .neo-pillars span,
  .neo-compare article,
  .neo-steps span {
    min-height: 110px;
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .neo-page .atelier-act,
  .neo-hero,
  .neo-section,
  .neo-ribbon article,
  .neo-grid article,
  .neo-pillars span,
  .neo-compare article,
  .neo-steps span {
    transition: none !important;
  }
}
