:root {
  color-scheme: dark;
  --ink: #f5f1e8;
  --muted: #b9b3a7;
  --panel: rgba(13, 16, 18, 0.72);
  --line: rgba(245, 241, 232, 0.16);
  --red: #d64747;
  --cyan: #58d5cc;
  --gold: #d6b267;
  --green: #78b77d;
  --bg: #090a0c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}

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

.noise,
#grain-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.noise {
  opacity: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mix-blend-mode: soft-light;
}

#grain-canvas {
  opacity: 0;
  mix-blend-mode: overlay;
}

.code-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1fr;
  gap: clamp(18px, 4vw, 72px);
  padding: clamp(86px, 12vh, 132px) clamp(18px, 5vw, 74px);
  pointer-events: none;
  overflow: hidden;
  opacity: 0.34;
  background:
    radial-gradient(circle at 16% 22%, rgba(88, 213, 204, 0.16), transparent 28%),
    radial-gradient(circle at 84% 72%, rgba(214, 178, 103, 0.12), transparent 30%);
  mask-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), #000 18%, #000 82%, rgba(0, 0, 0, 0.28)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), #000 16%, #000 84%, rgba(0, 0, 0, 0.12));
}

.code-backdrop::before,
.code-backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
}

.code-backdrop::before {
  background:
    linear-gradient(90deg, rgba(88, 213, 204, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(245, 241, 232, 0.045) 1px, transparent 1px);
  background-size: 84px 84px;
}

.code-backdrop::after {
  background:
    linear-gradient(180deg, rgba(9, 10, 12, 0), rgba(9, 10, 12, 0.42) 48%, rgba(9, 10, 12, 0)),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 9px);
  mix-blend-mode: soft-light;
}

.code-backdrop pre {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin: 0;
  color: rgba(143, 233, 226, 0.72);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: clamp(0.64rem, 0.82vw, 0.92rem);
  line-height: 1.75;
  white-space: pre-wrap;
  overflow: hidden;
  text-shadow: 0 0 18px rgba(88, 213, 204, 0.26);
}

.code-backdrop pre:nth-child(2) {
  color: rgba(245, 241, 232, 0.54);
  transform: translateY(12vh);
}

.code-backdrop pre:nth-child(3) {
  color: rgba(214, 178, 103, 0.58);
  transform: translateY(5vh);
}

main {
  position: relative;
  z-index: 2;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(18px, 4vw, 56px);
  color: var(--ink);
}

.brand {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: transparent;
}

.brand img,
.footer-brand img,
.opening-mark img,
.signature-lockup img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

nav a {
  color: rgba(245, 241, 232, 0.76);
}

.intro {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 112px 20px 64px;
  isolation: isolate;
}

.intro::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.13), transparent 18%),
    radial-gradient(circle at 18% 68%, rgba(88, 213, 204, 0.18), transparent 28%),
    radial-gradient(circle at 82% 74%, rgba(214, 178, 103, 0.16), transparent 25%),
    linear-gradient(180deg, #101317 0%, #08090b 74%);
}

.intro-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), transparent 34%, transparent 66%, rgba(0, 0, 0, 0.86)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), #090a0c 94%);
  transform-origin: top;
}

.intro-copy {
  position: relative;
  z-index: 3;
  width: min(980px, 100%);
  text-align: center;
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 14px;
  font-size: clamp(3.8rem, 12vw, 10.8rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro-role {
  max-width: 560px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.7;
}

.enter-link,
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(245, 241, 232, 0.22);
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.08);
  color: var(--ink);
  font-weight: 800;
}

.stage {
  position: absolute;
  inset: auto 0 0;
  height: 58vh;
  z-index: 1;
  pointer-events: none;
  transform: translateY(calc(var(--intro-scroll, 0) * -42px));
}

.spotlight {
  position: absolute;
  left: 50%;
  bottom: 8vh;
  width: min(620px, 72vw);
  height: min(620px, 72vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.07) 26%, transparent 62%);
  filter: blur(8px);
  transform: translateX(-50%) scale(calc(0.82 + var(--intro-scroll, 0) * 0.18));
}

.person {
  position: absolute;
  bottom: 9vh;
  width: clamp(62px, 8vw, 104px);
  height: clamp(150px, 18vw, 240px);
  border-radius: 999px 999px 28px 28px;
  background:
    linear-gradient(90deg, transparent 42%, rgba(255, 255, 255, 0.1), transparent 56%),
    linear-gradient(180deg, #1a1d21, #060607);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.68);
}

.person::before {
  position: absolute;
  top: -26px;
  left: 50%;
  width: 52%;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: #15171a;
  transform: translateX(-50%);
}

.person-one {
  left: 23%;
  transform: translateX(calc(var(--intro-scroll, 0) * -48px)) scale(0.82);
}

.person-two {
  left: 48%;
  background:
    linear-gradient(90deg, transparent 40%, rgba(255, 255, 255, 0.16), transparent 58%),
    linear-gradient(180deg, #20242a, #08090a);
  transform: translateX(-50%) scale(1.1);
}

.person-three {
  right: 22%;
  background:
    linear-gradient(90deg, transparent 38%, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(180deg, #62293a, #090607);
  transform: translateX(calc(var(--intro-scroll, 0) * 48px)) scale(0.88);
}

.floor-line {
  position: absolute;
  left: 50%;
  bottom: 8vh;
  width: min(860px, 86vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 241, 232, 0.5), transparent);
  transform: translateX(-50%);
}

.scroll-showcase {
  position: relative;
  height: 320vh;
  background:
    linear-gradient(180deg, #090a0c, #111414 44%, #0c0e10 100%);
}

.sticky-frame {
  position: sticky;
  top: 0;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 96px 20px 46px;
}

.video-mode .studio-lines,
.video-mode .scene-light,
.video-mode::before,
.video-mode .hero-actor::after {
  display: none;
}

.progress-wrap {
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  right: clamp(18px, 4vw, 56px);
  bottom: 28px;
  height: 2px;
  background: rgba(245, 241, 232, 0.13);
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--cyan), var(--gold));
}

.screen-scene {
  position: relative;
  width: min(1120px, 94vw);
  min-height: 680px;
}

.device {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(780px, 88vw);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 232, 0.18);
  border-radius: 22px;
  background: #111418;
  box-shadow: 0 50px 160px rgba(0, 0, 0, 0.7);
  transform:
    translate(-50%, -50%)
    rotateX(calc(10deg - var(--showcase-progress, 0) * 9deg))
    rotateY(calc(-12deg + var(--showcase-progress, 0) * 24deg))
    scale(calc(0.78 + var(--showcase-progress, 0) * 0.24));
  transform-style: preserve-3d;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-bar span:nth-child(1) {
  background: var(--red);
}

.browser-bar span:nth-child(2) {
  background: var(--gold);
}

.browser-bar span:nth-child(3) {
  background: var(--green);
}

.project-visual {
  position: relative;
  height: calc(100% - 38px);
  padding: clamp(20px, 4vw, 42px);
  background:
    radial-gradient(circle at 72% 22%, rgba(88, 213, 204, 0.26), transparent 27%),
    radial-gradient(circle at 24% 78%, rgba(214, 178, 103, 0.18), transparent 28%),
    linear-gradient(135deg, #181c21, #0a0c0e);
}

.visual-grid {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr 0.8fr 1.2fr;
  grid-template-rows: 1fr 0.7fr;
  gap: 14px;
}

.visual-grid span {
  border: 1px solid rgba(245, 241, 232, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(245, 241, 232, 0.16), rgba(245, 241, 232, 0.02)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.05) 18px 19px);
}

.visual-grid span:nth-child(1) {
  grid-row: span 2;
}

.visual-grid span:nth-child(4) {
  grid-column: span 2;
}

.visual-title {
  position: absolute;
  left: clamp(28px, 5vw, 58px);
  bottom: clamp(24px, 4vw, 46px);
  max-width: 420px;
  font-size: clamp(2.8rem, 6vw, 5.9rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.story-card {
  position: absolute;
  width: min(320px, 78vw);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  opacity: var(--card-opacity, 1);
  transform: translate3d(var(--card-x, 0), var(--card-y, 0), 0);
}

.story-card p {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.story-card h2 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.story-card span {
  color: var(--muted);
  line-height: 1.55;
}

.story-one {
  top: 5%;
  left: 0;
}

.story-two {
  right: 2%;
  top: 26%;
}

.story-three {
  left: 11%;
  bottom: 3%;
}

.cinematic-intro {
  place-items: stretch;
  min-height: 100svh;
}

.cinematic-intro::before {
  background:
    radial-gradient(circle at 62% 42%, rgba(214, 178, 103, 0.2), transparent 24%),
    radial-gradient(circle at 30% 62%, rgba(88, 213, 204, 0.14), transparent 28%),
    linear-gradient(180deg, #050505 0%, #11100d 62%, #090a0c 100%);
}

.portrait-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.portrait-stage img {
  position: absolute;
  right: clamp(-120px, -6vw, -36px);
  bottom: -13vh;
  width: min(760px, 58vw);
  max-width: none;
  opacity: 0.88;
  filter: contrast(1.08) saturate(0.94);
  transform:
    translateY(calc(var(--intro-scroll, 0) * -28px))
    scale(calc(1.02 + var(--intro-scroll, 0) * 0.06));
  transform-origin: 50% 80%;
}

.portrait-stage::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.56) 40%, rgba(5, 5, 5, 0.2) 68%, rgba(5, 5, 5, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), #090a0c 96%);
}

.portrait-light {
  position: absolute;
  right: 8vw;
  top: 18vh;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 231, 179, 0.22), transparent 58%);
  filter: blur(16px);
}

.chair-glow {
  position: absolute;
  right: 8vw;
  bottom: 8vh;
  width: min(420px, 34vw);
  height: 120px;
  border-radius: 50%;
  background: rgba(214, 178, 103, 0.14);
  filter: blur(28px);
}

.cinematic-intro .intro-copy {
  align-self: center;
  width: min(820px, 94vw);
  margin-left: clamp(18px, 7vw, 92px);
  text-align: left;
}

.cinematic-intro h1 {
  max-width: 780px;
  font-size: clamp(4.6rem, 11vw, 10.2rem);
}

.cinematic-intro .intro-role {
  margin-inline: 0;
}

.scroll-showcase {
  height: 520vh;
  background:
    radial-gradient(circle at 50% 20%, rgba(88, 213, 204, 0.09), transparent 28%),
    linear-gradient(180deg, #090a0c, #12110f 42%, #090a0c 100%);
}

.journey-scene {
  position: relative;
  width: min(1180px, 94vw);
  min-height: 700px;
  isolation: isolate;
}

.journey-scene::before {
  position: absolute;
  inset: -20vh -8vw;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at calc(24% + var(--showcase-progress, 0) * 42%) 38%, rgba(88, 213, 204, 0.13), transparent 24%),
    radial-gradient(circle at 76% 30%, rgba(214, 178, 103, 0.14), transparent 26%),
    linear-gradient(120deg, rgba(0, 0, 0, 0.45), transparent 55%);
}

.studio-lines {
  position: absolute;
  inset: 6% 0 0;
  border-bottom: 1px solid rgba(245, 241, 232, 0.12);
  background:
    linear-gradient(90deg, transparent, rgba(245, 241, 232, 0.08), transparent),
    repeating-linear-gradient(90deg, transparent 0 90px, rgba(255, 255, 255, 0.035) 90px 91px);
  opacity: 0.45;
  transform: perspective(900px) rotateX(68deg);
  transform-origin: bottom;
}

.scene-light {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(34px);
  opacity: calc(0.28 + var(--showcase-progress, 0) * 0.22);
}

.key-light {
  left: 3%;
  top: 9%;
  width: 34vw;
  height: 34vw;
  background: rgba(88, 213, 204, 0.18);
}

.rim-light {
  right: 10%;
  top: 12%;
  width: 28vw;
  height: 28vw;
  background: rgba(214, 178, 103, 0.2);
}

.hero-actor {
  position: absolute;
  right: 50%;
  bottom: 50%;
  z-index: 2;
  width: min(1180px, 94vw);
  height: min(680px, 76vh);
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 38px 140px rgba(0, 0, 0, 0.62);
  transform:
    translate3d(calc(50% + var(--actor-x, 0px)), calc(50% + var(--actor-y, 0px)), 0)
    rotateY(var(--actor-rotate, 0deg))
    scale(var(--actor-scale, 1));
  transform-origin: 52% 74%;
  transition: filter 180ms linear;
}

.hero-actor::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), transparent 36%, rgba(0, 0, 0, 0.28)),
    linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.55));
}

.hero-actor video,
.hero-actor img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 54%;
}

.hero-actor video {
  z-index: 1;
  object-fit: cover;
  background: #000;
  transform: scale(1.08);
  transform-origin: center;
  opacity: 1;
}

#story-video {
  z-index: 1;
}

.actor-fallback {
  z-index: 0;
}

.video-mode .desk-surface,
.video-mode .prop {
  display: none;
}

.desk-surface {
  position: absolute;
  left: 4%;
  right: 37%;
  bottom: -3%;
  z-index: 3;
  height: 142px;
  border: 1px solid rgba(245, 241, 232, 0.1);
  border-radius: 24px 24px 0 0;
  background:
    linear-gradient(180deg, rgba(245, 241, 232, 0.08), rgba(0, 0, 0, 0.28)),
    linear-gradient(90deg, rgba(88, 213, 204, 0.08), rgba(214, 178, 103, 0.08)),
    #151311;
  box-shadow: 0 -26px 80px rgba(0, 0, 0, 0.52);
  opacity: var(--desk-opacity, 0);
  transform:
    translate3d(var(--desk-x, 0px), var(--desk-y, 0px), 0)
    perspective(900px)
    rotateX(58deg);
  transform-origin: bottom;
}

.keyboard {
  position: absolute;
  left: 8%;
  bottom: 30px;
  display: grid;
  width: min(420px, 42vw);
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  transform: rotateX(12deg);
}

.keyboard span {
  height: 14px;
  border-radius: 5px;
  background: rgba(245, 241, 232, 0.18);
}

.keyboard span:nth-child(4n) {
  background: rgba(88, 213, 204, 0.32);
}

.coffee {
  position: absolute;
  right: 12%;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border: 8px solid rgba(245, 241, 232, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, #21120d, #050505);
}

.prop {
  position: absolute;
  border: 1px solid rgba(245, 241, 232, 0.14);
  background: rgba(12, 15, 17, 0.72);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  opacity: var(--prop-opacity, 0);
  transform:
    translate3d(var(--prop-x, 0px), var(--prop-y, 0px), 0)
    scale(var(--prop-scale, 0.9));
  transition: opacity 120ms linear;
}

.macbook {
  left: 6%;
  bottom: 15%;
  z-index: 5;
  width: min(560px, 46vw);
  padding: 14px 14px 24px;
  border-radius: 18px;
}

.macbook .screen {
  min-height: 300px;
  padding: 26px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 80% 20%, rgba(88, 213, 204, 0.24), transparent 28%),
    #07090a;
}

.editor-top {
  margin: -8px 0 22px;
  color: rgba(245, 241, 232, 0.5);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
}

.code-row {
  margin-bottom: 14px;
  color: rgba(245, 241, 232, 0.78);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(0.82rem, 1.2vw, 1.05rem);
}

.code-row b {
  color: var(--cyan);
}

.code-row i {
  color: var(--gold);
  font-style: normal;
}

.code-row.indent {
  padding-left: 24px;
  color: rgba(245, 241, 232, 0.62);
}

.code-pulse {
  width: 12px;
  height: 24px;
  margin-top: 12px;
  background: var(--cyan);
  animation: cursorPulse 1s steps(2, jump-none) infinite;
}

.macbook .base {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.35);
}

.macbook span {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: rgba(245, 241, 232, 0.68);
  font-size: 0.72rem;
  font-weight: 900;
}

.edit-suite {
  left: 5%;
  top: 10%;
  z-index: 5;
  width: min(660px, 50vw);
  padding: 18px;
  border-radius: 18px;
}

.viewer {
  position: relative;
  display: grid;
  height: 330px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(214, 178, 103, 0.08) 0 25%, transparent 25% 50%, rgba(88, 213, 204, 0.1) 50% 75%, transparent 75%),
    radial-gradient(circle at 60% 42%, rgba(214, 178, 103, 0.24), transparent 24%),
    linear-gradient(135deg, #171518, #070809);
}

.viewer::before {
  position: absolute;
  inset: 22px;
  content: "";
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: 10px;
}

.viewer strong,
.viewer em {
  position: relative;
  z-index: 1;
  display: block;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-style: normal;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.viewer em {
  color: rgba(88, 213, 204, 0.74);
}

.play-head {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(18% + var(--showcase-progress, 0) * 64%);
  width: 2px;
  background: var(--red);
  box-shadow: 0 0 24px rgba(214, 71, 71, 0.7);
}

.timeline {
  display: grid;
  margin-top: 14px;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.7fr;
  gap: 8px;
}

.timeline span {
  height: 34px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(88, 213, 204, 0.65), rgba(214, 178, 103, 0.48));
}

.camera-rig {
  left: 3%;
  bottom: 6%;
  z-index: 5;
  width: min(560px, 44vw);
  height: 430px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.camera-rig::before {
  position: absolute;
  left: -12%;
  right: -8%;
  bottom: 6%;
  height: 62%;
  content: "";
  border: 1px solid rgba(245, 241, 232, 0.1);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent),
    repeating-linear-gradient(90deg, rgba(245, 241, 232, 0.08) 0 2px, transparent 2px 28px);
  transform: perspective(700px) rotateY(-18deg);
}

.director-mark {
  position: absolute;
  right: 4%;
  bottom: 20%;
  width: 116px;
  height: 230px;
  border-radius: 999px 999px 24px 24px;
  background:
    linear-gradient(90deg, transparent 40%, rgba(255, 255, 255, 0.12), transparent 58%),
    linear-gradient(180deg, #24262b, #08090a);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.52);
}

.director-mark::before {
  position: absolute;
  top: -46px;
  left: 50%;
  width: 72px;
  height: 72px;
  content: "";
  border-radius: 50%;
  background: #1a1b1f;
  transform: translateX(-50%);
}

.camera-body {
  position: absolute;
  left: 18%;
  top: 22%;
  width: 230px;
  height: 138px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, #22272c, #070809);
}

.lens {
  position: absolute;
  left: 48%;
  top: 28%;
  width: 168px;
  height: 104px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(88, 213, 204, 0.22), transparent 38%),
    linear-gradient(90deg, #090a0c, #30343a);
  box-shadow: inset 0 0 0 10px rgba(245, 241, 232, 0.08);
}

.rec-light {
  position: absolute;
  left: 20%;
  top: 12%;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-shadow: 0 0 18px rgba(214, 71, 71, 0.8);
}

.tripod {
  position: absolute;
  left: 46%;
  top: 58%;
  width: 4px;
  height: 150px;
  background: rgba(245, 241, 232, 0.24);
}

.tripod::before,
.tripod::after {
  position: absolute;
  top: 42px;
  width: 4px;
  height: 124px;
  content: "";
  background: rgba(245, 241, 232, 0.18);
  transform-origin: top;
}

.tripod::before {
  transform: rotate(24deg);
}

.tripod::after {
  transform: rotate(-24deg);
}

.visitor-screen {
  left: 4%;
  top: 13%;
  z-index: 5;
  width: min(650px, 50vw);
  overflow: hidden;
  border-radius: 18px;
}

.mini-site {
  display: grid;
  min-height: 390px;
  place-items: center;
  padding: 34px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(214, 178, 103, 0.2), transparent 28%),
    #08090b;
}

.mini-site strong {
  display: block;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.mini-site em {
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scene-copy {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 8;
  display: flex;
  width: min(680px, 86vw);
  justify-content: center;
  gap: 8px;
  transform: translateX(-50%);
}

.journey-step {
  position: relative;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 10, 12, 0.72);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  color: rgba(245, 241, 232, 0.42);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  opacity: 0.55;
  transform: translateY(0);
  transition:
    opacity 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
  backdrop-filter: blur(18px);
}

.journey-step.is-active {
  opacity: 1;
  color: var(--cyan);
  border-color: rgba(88, 213, 204, 0.5);
  transform: translateY(-4px);
}

@keyframes cursorPulse {
  50% {
    opacity: 0;
  }
}

.work-rail,
.craft,
.contact {
  padding: clamp(72px, 12vw, 148px) clamp(18px, 5vw, 72px);
}

.rail-heading,
.craft,
.contact {
  max-width: 1160px;
  margin-inline: auto;
}

.rail-heading h2,
.craft h2,
.contact h2 {
  max-width: 860px;
  margin-bottom: 38px;
  font-size: clamp(2.1rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.project-grid {
  display: grid;
  max-width: 1160px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  min-height: 410px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(245, 241, 232, 0.055);
}

.project-card p {
  margin: 18px 0 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.25;
}

.mockup {
  min-height: 245px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 46%),
    radial-gradient(circle at 74% 30%, rgba(255, 255, 255, 0.28), transparent 24%),
    #171b1f;
}

.mockup-a {
  background-color: #2c1116;
}

.mockup-b {
  background-color: #102423;
}

.mockup-c {
  background-color: #2a2413;
}

.craft-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.craft-list span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
}

.contact {
  min-height: 82vh;
}

.contact-link {
  background: var(--ink);
  color: #101010;
}

@media (max-width: 780px) {
  .site-header {
    padding: 16px;
  }

  nav {
    gap: 12px;
    font-size: 0.74rem;
  }

  .intro {
    min-height: 94svh;
  }

  .portrait-stage img {
    right: -34vw;
    bottom: -10vh;
    width: 106vw;
    opacity: 0.55;
  }

  .portrait-stage::after {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.42)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.14), #090a0c 95%);
  }

  .intro-copy {
    text-align: left;
  }

  h1 {
    font-size: clamp(3rem, 12.5vw, 5rem);
  }

  .intro-role {
    margin-inline: 0;
  }

  .cinematic-intro .intro-copy {
    margin-left: 0;
    align-self: end;
    padding-bottom: 9vh;
  }

  .cinematic-intro h1 {
    font-size: clamp(3.4rem, 15vw, 5.2rem);
  }

  .person-one {
    left: 12%;
  }

  .person-three {
    right: 12%;
  }

  .screen-scene {
    min-height: 650px;
  }

  .journey-scene {
    min-height: 690px;
  }

  .hero-actor {
    right: 50%;
    bottom: 50%;
    width: 94vw;
    height: 70vh;
    opacity: 0.72;
  }

  .desk-surface {
    left: 0;
    right: 0;
    bottom: -1%;
    height: 116px;
  }

  .keyboard {
    width: 64vw;
  }

  .scene-copy {
    left: 50%;
    top: auto;
    bottom: 18px;
    width: 94vw;
    flex-wrap: wrap;
    gap: 6px;
    transform: translateX(-50%);
  }

  .journey-step {
    min-height: 28px;
    padding: 0 9px;
    font-size: 0.62rem;
  }

  .macbook,
  .edit-suite,
  .visitor-screen {
    left: 4vw;
    top: auto;
    bottom: 17%;
    width: 88vw;
  }

  .camera-rig {
    left: 2vw;
    bottom: 12%;
    width: 88vw;
  }

  .macbook .screen,
  .viewer,
  .mini-site {
    min-height: 240px;
    height: 240px;
  }

  .code-row {
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .viewer strong,
  .viewer em,
  .mini-site strong {
    font-size: 2.35rem;
  }

  .camera-body {
    left: 8%;
  }

  .lens {
    left: 38%;
  }

  .director-mark {
    right: 12%;
    transform: scale(0.75);
  }

  .device {
    top: 45%;
    width: 94vw;
    border-radius: 16px;
  }

  .story-card {
    width: min(300px, 86vw);
  }

  .story-one {
    top: 2%;
    left: 2%;
  }

  .story-two {
    right: 2%;
    top: auto;
    bottom: 12%;
  }

  .story-three {
    left: 2%;
    bottom: -4%;
  }

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

/* Cinematic rescue pass */
.site-header {
  background: transparent;
  backdrop-filter: none;
}

nav {
  padding: 10px 14px;
  border: 1px solid rgba(245, 241, 232, 0.08);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.cinematic-intro {
  min-height: 100svh;
  padding-inline: clamp(18px, 5vw, 70px);
}

.cinematic-intro h1 {
  max-width: 980px;
  font-size: clamp(4.4rem, 12.6vw, 14rem);
}

.intro-role {
  max-width: 610px;
}

.hero-meta {
  display: none;
}

.scroll-showcase {
  height: 560vh;
  background: #050505;
}

.sticky-frame {
  padding: 0;
}

.journey-scene {
  width: 100vw;
  height: 100svh;
  min-height: 100svh;
}

.showcase-title {
  top: clamp(82px, 11vh, 120px);
  left: clamp(18px, 5vw, 72px);
  width: min(520px, 42vw);
  mix-blend-mode: normal;
}

.showcase-title .kicker {
  color: rgba(214, 178, 103, 0.9);
}

.showcase-title h2 {
  font-size: clamp(2.8rem, 6.2vw, 7rem);
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actor {
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100svh;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none !important;
}

.hero-actor::before {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.42) 32%, transparent 62%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.7) 0%, transparent 28%, transparent 65%, rgba(5, 5, 5, 0.82) 100%);
}

.hero-actor video {
  object-fit: cover;
  transform: scale(1.02);
}

.scene-copy {
  left: clamp(18px, 5vw, 72px);
  bottom: clamp(28px, 6vh, 58px);
  z-index: 8;
  width: min(680px, 90vw);
  justify-content: flex-start;
  transform: none;
}

.journey-step {
  min-height: 34px;
  padding: 0 13px;
  border-color: rgba(245, 241, 232, 0.12);
  background: rgba(0, 0, 0, 0.42);
  color: rgba(245, 241, 232, 0.54);
}

.journey-step.is-active {
  color: #050505;
  border-color: rgba(245, 241, 232, 0.9);
  background: rgba(245, 241, 232, 0.9);
  box-shadow: none;
}

.showcase-caption {
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(34px, 6vh, 60px);
  z-index: 8;
  color: rgba(245, 241, 232, 0.62);
}

.progress-wrap {
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: 18px;
  z-index: 9;
  background: rgba(245, 241, 232, 0.12);
}

.progress-bar {
  background: var(--ink);
}

.services-section,
.work-rail,
.craft,
.contact {
  max-width: 1180px;
}

.section-heading h2,
.rail-heading h2,
.craft h2,
.contact h2 {
  font-size: clamp(2.2rem, 4.4vw, 5rem);
}

.service-grid,
.project-grid {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

.service-grid article,
.project-card {
  background: #070808;
}

@media (min-width: 901px) {
  .showcase-title {
    width: min(520px, 42vw);
  }

  .hero-actor {
    right: 0;
    width: 100vw;
    height: 100svh;
    transform: none !important;
  }

  .scene-copy {
    left: clamp(18px, 5vw, 72px);
    width: min(680px, 90vw);
  }
}

@media (max-width: 780px) {
  .showcase-title {
    position: absolute;
    top: 82px;
    left: 18px;
    width: calc(100vw - 36px);
  }

  .showcase-title h2 {
    font-size: clamp(2.6rem, 14vw, 4.4rem);
  }

  .hero-actor {
    width: 100vw;
    height: 100svh;
    opacity: 1;
  }

  .hero-actor video {
    transform: scale(1.08);
  }

  .showcase-caption {
    display: none;
  }

  .scene-copy {
    left: 18px;
    bottom: 34px;
    width: calc(100vw - 36px);
    transform: none;
  }
}

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

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

/* Premium portfolio pass */
body {
  background:
    radial-gradient(circle at 18% 12%, rgba(88, 213, 204, 0.1), transparent 26%),
    radial-gradient(circle at 78% 8%, rgba(214, 178, 103, 0.09), transparent 22%),
    #070808;
}

.site-header {
  padding: 18px clamp(18px, 4vw, 58px);
  background: linear-gradient(180deg, rgba(7, 8, 8, 0.84), transparent);
  backdrop-filter: blur(16px);
}

.brand {
  border-color: rgba(245, 241, 232, 0.2);
  background: rgba(245, 241, 232, 0.08);
}

nav {
  gap: clamp(16px, 3vw, 42px);
  font-size: 0.76rem;
}

nav a {
  color: rgba(245, 241, 232, 0.68);
}

nav a:hover {
  color: var(--ink);
}

.cinematic-intro {
  min-height: 96svh;
  padding: 120px clamp(18px, 5vw, 72px) 54px;
}

.cinematic-intro::before {
  background:
    linear-gradient(90deg, rgba(7, 8, 8, 0.96) 0%, rgba(7, 8, 8, 0.86) 35%, rgba(7, 8, 8, 0.34) 68%, rgba(7, 8, 8, 0.8) 100%),
    radial-gradient(circle at 72% 42%, rgba(214, 178, 103, 0.18), transparent 28%),
    #070808;
}

.portrait-stage img {
  right: clamp(-90px, -4vw, -20px);
  bottom: -16vh;
  width: min(830px, 60vw);
  opacity: 0.72;
}

.portrait-stage::after {
  background:
    linear-gradient(90deg, rgba(7, 8, 8, 0.95), rgba(7, 8, 8, 0.42) 62%, rgba(7, 8, 8, 0.82)),
    linear-gradient(180deg, transparent 58%, #070808 100%);
}

.cinematic-intro .intro-copy {
  width: min(940px, 100%);
  margin-left: 0;
  align-self: center;
}

.cinematic-intro h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(4.6rem, 11.4vw, 12.8rem);
  line-height: 0.78;
}

.intro-role {
  max-width: 670px;
  color: rgba(245, 241, 232, 0.72);
  font-size: clamp(1.05rem, 1.8vw, 1.38rem);
}

.enter-link,
.contact-link {
  min-height: 52px;
  padding-inline: 24px;
  border-color: rgba(88, 213, 204, 0.34);
  background: rgba(88, 213, 204, 0.1);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-meta span {
  padding: 9px 12px;
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: 999px;
  color: rgba(245, 241, 232, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-showcase {
  height: 520vh;
  background:
    linear-gradient(180deg, #070808 0%, #0d1010 42%, #070808 100%);
}

.sticky-frame {
  padding: 80px clamp(18px, 4vw, 56px) 42px;
}

.showcase-title {
  position: absolute;
  top: 82px;
  left: clamp(18px, 4vw, 56px);
  z-index: 6;
  width: min(390px, 42vw);
}

.showcase-title h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.2vw, 3.5rem);
  line-height: 0.98;
}

.journey-scene {
  width: min(1320px, 96vw);
  min-height: min(760px, 78vh);
}

.hero-actor {
  width: min(1180px, 82vw);
  height: min(690px, 72vh);
  border: 1px solid rgba(245, 241, 232, 0.1);
  border-radius: 12px;
  background: #000;
  box-shadow:
    0 60px 180px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(245, 241, 232, 0.04);
}

.hero-actor video {
  object-fit: cover;
  transform: scale(1.08);
}

.scene-copy {
  bottom: 4px;
  width: min(720px, 92vw);
}

.journey-step {
  min-height: 36px;
  padding: 0 14px;
  background: rgba(7, 8, 8, 0.74);
  color: rgba(245, 241, 232, 0.5);
  font-size: 0.7rem;
}

.journey-step.is-active {
  color: #8fe9e2;
  border-color: rgba(143, 233, 226, 0.58);
  box-shadow: 0 12px 46px rgba(88, 213, 204, 0.14);
}

.showcase-caption {
  position: absolute;
  right: clamp(18px, 3vw, 40px);
  bottom: 0;
  z-index: 7;
  display: flex;
  gap: 14px;
  color: rgba(245, 241, 232, 0.5);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.progress-wrap {
  bottom: 22px;
}

.progress-bar {
  background: linear-gradient(90deg, #8fe9e2, #d6b267);
}

.services-section,
.work-rail,
.craft,
.contact {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(82px, 11vw, 150px) clamp(18px, 4vw, 42px);
}

.section-heading,
.rail-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-heading h2,
.rail-heading h2,
.craft h2,
.contact h2 {
  max-width: 940px;
  font-size: clamp(2.4rem, 5vw, 5.7rem);
  line-height: 0.96;
}

.service-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: 12px;
  background: rgba(245, 241, 232, 0.12);
}

.service-grid article,
.project-card {
  min-height: 330px;
  padding: 24px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(245, 241, 232, 0.06), rgba(245, 241, 232, 0.025)),
    #090b0b;
}

.service-grid article span,
.project-card p {
  display: block;
  margin-bottom: 22px;
  color: #8fe9e2;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-grid article h3,
.project-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.service-grid article p {
  margin: 0;
  color: rgba(245, 241, 232, 0.58);
  line-height: 1.65;
}

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

.project-card {
  min-height: 460px;
}

.mockup {
  min-height: 250px;
  margin: -10px -10px 22px;
  border-radius: 8px;
  border: 1px solid rgba(245, 241, 232, 0.08);
}

.craft,
.contact {
  border-top: 1px solid rgba(245, 241, 232, 0.1);
}

.craft-list span {
  border-color: rgba(245, 241, 232, 0.12);
  background: rgba(245, 241, 232, 0.04);
}

.contact {
  display: grid;
  min-height: 70vh;
  align-content: center;
}

.contact-link {
  width: max-content;
  background: var(--ink);
}

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: clamp(22px, 5vw, 72px);
  padding: 34px clamp(18px, 5vw, 72px) 38px;
  border-top: 1px solid rgba(245, 241, 232, 0.12);
  background: rgba(7, 9, 10, 0.42);
  backdrop-filter: blur(12px);
}

.site-footer > div {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.footer-brand {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  text-decoration: none;
}

.footer-copy {
  margin: 0;
  color: rgba(245, 241, 232, 0.62);
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-socials a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(245, 241, 232, 0.14);
  border-radius: 999px;
  padding: 0 15px;
  background: rgba(245, 241, 232, 0.045);
  color: rgba(245, 241, 232, 0.84);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.footer-socials a:hover {
  border-color: rgba(143, 233, 226, 0.52);
  background: rgba(143, 233, 226, 0.12);
  color: #8fe9e2;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .showcase-title {
    position: relative;
    top: auto;
    left: auto;
    width: min(92vw, 520px);
    margin-right: auto;
    margin-bottom: 22px;
  }

  .sticky-frame {
    align-content: center;
    place-items: center;
  }

  .hero-actor {
    width: 94vw;
    height: 62vh;
  }

  .showcase-caption {
    display: none;
  }

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

  .site-footer {
    flex-direction: column;
  }

  .site-footer > div {
    align-items: flex-start;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  nav {
    gap: 10px;
  }

  nav a {
    font-size: 0.66rem;
  }

  .cinematic-intro {
    min-height: 92svh;
  }

  .cinematic-intro h1 {
    font-size: clamp(3.6rem, 16vw, 5.7rem);
  }

  .portrait-stage img {
    opacity: 0.42;
  }

  .hero-meta {
    max-width: 320px;
  }

  .scroll-showcase {
    height: 440vh;
  }

  .hero-actor {
    height: 58vh;
    border-radius: 10px;
  }

  .scene-copy {
    bottom: 4px;
    gap: 5px;
  }

  .journey-step {
    min-height: 28px;
    padding: 0 8px;
    font-size: 0.58rem;
  }
}

@media (min-width: 901px) {
  .showcase-title {
    width: min(360px, 28vw);
  }

  .hero-actor {
    right: clamp(18px, 4vw, 56px);
    bottom: 50%;
    width: min(800px, 60vw);
    height: min(620px, 70vh);
    transform:
      translate3d(var(--actor-x, 0px), calc(50% + var(--actor-y, 0px)), 0)
      rotateY(var(--actor-rotate, 0deg))
      scale(var(--actor-scale, 1));
  }

  .scene-copy {
    left: calc(50% + 12vw);
    width: min(580px, 52vw);
  }

  .showcase-caption {
    right: clamp(20px, 5vw, 70px);
  }
}

/* Final lock: immersive story section wins over earlier layout experiments. */
.scroll-showcase .sticky-frame {
  padding: 0;
}

.scroll-showcase .journey-scene {
  width: 100vw;
  height: 100svh;
  min-height: 100svh;
}

.scroll-showcase .hero-actor {
  inset: 0;
  width: 100vw;
  height: 100svh;
  border: 0;
  border-radius: 0;
  transform: none !important;
}

.scroll-showcase .hero-actor video {
  object-fit: cover;
  transform: scale(1.03);
}

.scroll-showcase .showcase-title {
  position: absolute;
  top: clamp(82px, 11vh, 122px);
  left: clamp(18px, 5vw, 72px);
  z-index: 8;
  width: min(520px, 42vw);
}

.scroll-showcase .scene-copy {
  left: clamp(18px, 5vw, 72px);
  bottom: clamp(28px, 6vh, 58px);
  z-index: 8;
  width: min(720px, 92vw);
  justify-content: flex-start;
  transform: none;
}

.scroll-showcase .showcase-caption {
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(34px, 6vh, 60px);
  z-index: 8;
}

.scroll-showcase .journey-step {
  border-color: rgba(245, 241, 232, 0.18);
  background: rgba(0, 0, 0, 0.66);
  color: rgba(245, 241, 232, 0.68);
  text-shadow: none;
}

.scroll-showcase .journey-step.is-active {
  border-color: rgba(143, 233, 226, 0.72);
  background: rgba(3, 8, 9, 0.9);
  color: #8fe9e2;
  box-shadow: 0 0 0 1px rgba(143, 233, 226, 0.18), 0 14px 46px rgba(0, 0, 0, 0.38);
}

/* Code identity section and global typed-code backdrop. */
.skills-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(245, 241, 232, 0.12);
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
  background:
    linear-gradient(180deg, rgba(9, 10, 12, 0.38), rgba(9, 10, 12, 0.5)),
    radial-gradient(circle at 20% 18%, rgba(88, 213, 204, 0.1), transparent 32%),
    radial-gradient(circle at 84% 74%, rgba(214, 178, 103, 0.08), transparent 34%);
}

.skills-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(88, 213, 204, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(245, 241, 232, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 42%, #000, transparent 72%);
}

.skills-head,
.skills-grid {
  position: relative;
  z-index: 1;
}

.skills-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.skills-head .kicker {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.skills-head h2 {
  grid-column: 1;
  max-width: 860px;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4.9vw, 5.45rem);
  line-height: 0.96;
}

.skills-head p:last-child {
  grid-column: 2;
  margin: 0 0 8px;
  color: rgba(245, 241, 232, 0.66);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.72;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border-top: 1px solid rgba(245, 241, 232, 0.16);
  border-bottom: 1px solid rgba(245, 241, 232, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.skill-panel {
  display: grid;
  grid-template-columns: minmax(120px, 0.18fr) 1fr;
  gap: clamp(18px, 3vw, 42px);
  min-height: 0;
  align-items: center;
  padding: clamp(16px, 2.1vw, 26px) 0;
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
  background: transparent;
}

.skill-panel span {
  display: block;
  margin-bottom: 0;
  color: #8fe9e2;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.skill-list b {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: 6px;
  background: rgba(245, 241, 232, 0.025);
  backdrop-filter: blur(6px);
  color: rgba(245, 241, 232, 0.86);
  font-size: 0.74rem;
  line-height: 1;
}

/* Final intro/skills tuning. */
.portrait-stage img {
  right: clamp(18px, 7vw, 116px);
  bottom: -7vh;
  width: min(560px, 43vw);
  max-height: 90svh;
  opacity: 0.72;
}

.skills-section {
  padding-inline: clamp(18px, 5vw, 72px);
  padding-top: clamp(74px, 10vw, 124px);
  padding-bottom: clamp(74px, 10vw, 124px);
}

.skills-grid {
  align-items: stretch;
}

.skill-panel:last-child {
  border-bottom: 0;
}

.clients-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(74px, 10vw, 124px);
  padding-bottom: clamp(74px, 10vw, 124px);
  padding-inline: clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(245, 241, 232, 0.1);
  background:
    linear-gradient(180deg, rgba(9, 10, 12, 0.42), rgba(9, 10, 12, 0.24)),
    radial-gradient(circle at 80% 14%, rgba(88, 213, 204, 0.12), transparent 30%);
}

.clients-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(260px, 0.38fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.clients-head .kicker {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.clients-head h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 5.6rem);
  line-height: 0.96;
}

.clients-head p:last-child {
  margin: 0 0 8px;
  color: rgba(245, 241, 232, 0.64);
  line-height: 1.72;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: 8px;
  background: rgba(245, 241, 232, 0.1);
}

.client-logo-card {
  display: grid;
  min-height: 190px;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding: 22px;
  text-align: center;
  background: rgba(7, 9, 10, 0.36);
  backdrop-filter: blur(8px);
}

.client-mark {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  margin: 0 auto 12px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: #ffffff;
  color: #8fe9e2;
  font-size: 1.45rem;
  font-weight: 900;
  overflow: hidden;
}

.client-mark img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.client-logo-card span {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.client-logo-card em {
  color: rgba(245, 241, 232, 0.56);
  font-size: 0.82rem;
  font-style: normal;
}

@media (max-width: 780px) {
  .scroll-showcase .showcase-title {
    width: calc(100vw - 36px);
  }

  .scroll-showcase .showcase-title h2 {
    font-size: clamp(2.4rem, 13vw, 4.2rem);
  }

  .scroll-showcase .hero-actor video {
    transform: scale(1.12);
  }

  .code-backdrop {
    grid-template-columns: 1fr;
    opacity: 0.22;
  }

  .code-backdrop pre:nth-child(n + 2) {
    display: none;
  }

  .skills-head {
    grid-template-columns: 1fr;
  }

  .skills-head .kicker,
  .skills-head h2,
  .skills-head p:last-child {
    grid-column: 1;
  }

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

  .skill-panel {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
  }

  .clients-head {
    grid-template-columns: 1fr;
  }

  .clients-head .kicker,
  .clients-head h2,
  .clients-head p:last-child {
    grid-column: 1;
  }

  .client-logo-grid {
    grid-template-columns: 1fr;
  }

  .portrait-stage img {
    right: 50%;
    bottom: -3vh;
    width: min(92vw, 470px);
    max-height: 68svh;
    opacity: 0.3;
    transform:
      translateX(50%)
      translateY(calc(var(--intro-scroll, 0) * -18px))
      scale(calc(1 + var(--intro-scroll, 0) * 0.04));
  }
}

@media (min-width: 781px) and (max-width: 1180px) {
  .skills-head {
    grid-template-columns: 1fr;
  }

  .skills-head .kicker,
  .skills-head h2,
  .skills-head p:last-child {
    grid-column: 1;
  }

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

  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .code-backdrop {
    opacity: 0.24;
  }
}

/* Black and gold final art direction. */
:root {
  --ink: #f7ead0;
  --muted: #b8a98b;
  --panel: rgba(10, 9, 7, 0.78);
  --line: rgba(214, 178, 103, 0.18);
  --red: #8f6a2e;
  --cyan: #d6b267;
  --gold: #d6b267;
  --green: #cda65c;
  --bg: #030303;
}

body {
  background:
    radial-gradient(circle at 74% 12%, rgba(214, 178, 103, 0.09), transparent 30%),
    linear-gradient(180deg, #030303 0%, #090806 46%, #030303 100%);
}

.code-backdrop {
  opacity: 0.28;
  background:
    radial-gradient(circle at 18% 22%, rgba(214, 178, 103, 0.12), transparent 30%),
    radial-gradient(circle at 82% 74%, rgba(149, 108, 43, 0.14), transparent 30%);
}

.code-backdrop::before {
  background:
    linear-gradient(90deg, rgba(214, 178, 103, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(214, 178, 103, 0.04) 1px, transparent 1px);
}

.code-backdrop pre,
.code-backdrop pre:nth-child(2),
.code-backdrop pre:nth-child(3) {
  color: rgba(214, 178, 103, 0.62);
  text-shadow: 0 0 18px rgba(214, 178, 103, 0.18);
}

.brand,
.footer-brand {
  border-color: transparent;
  background: transparent;
  color: #f7d990;
}

.kicker,
.journey-step.is-active,
.service-grid article span,
.skill-panel span,
.client-logo-card span,
.footer-socials a:hover,
.mini-site em {
  color: #d6b267;
}

.enter-link,
.contact-link {
  border-color: rgba(214, 178, 103, 0.42);
  background: linear-gradient(135deg, #f1d28d, #b98532);
  color: #090704;
}

.hero-meta span,
.craft-list span,
.footer-socials a,
.journey-step,
.skill-list b {
  border-color: rgba(214, 178, 103, 0.18);
  background: rgba(214, 178, 103, 0.045);
}

.scroll-showcase,
.services-section,
.skills-section,
.clients-section,
.craft,
.contact,
.site-footer {
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.88), rgba(12, 10, 7, 0.82)),
    radial-gradient(circle at 84% 14%, rgba(214, 178, 103, 0.08), transparent 32%);
}

.progress-bar {
  background: linear-gradient(90deg, #8b642a, #f1d28d, #b98532);
}

.journey-step.is-active {
  border-color: rgba(214, 178, 103, 0.58);
  box-shadow: 0 12px 46px rgba(214, 178, 103, 0.14);
}

.service-grid,
.skills-grid,
.client-logo-grid {
  border-color: rgba(214, 178, 103, 0.16);
  background: rgba(214, 178, 103, 0.12);
}

.service-grid article,
.skill-panel,
.client-logo-card {
  background:
    linear-gradient(180deg, rgba(214, 178, 103, 0.06), rgba(214, 178, 103, 0.018)),
    rgba(5, 5, 4, 0.8);
}

.client-mark {
  border-color: rgba(214, 178, 103, 0.65);
  color: #b98532;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.footer-socials a:hover {
  border-color: rgba(214, 178, 103, 0.56);
  background: rgba(214, 178, 103, 0.12);
}

/* Cinematic upgrade: opening scene, director UI, impact, and finale. */
.opening-scene {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(214, 178, 103, 0.18), transparent 18%),
    #020202;
  transition:
    opacity 900ms ease,
    visibility 900ms ease;
}

.opening-scene.is-done {
  visibility: hidden;
  opacity: 0;
}

.opening-aperture {
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 16%, rgba(0, 0, 0, 0.86) 30% 100%),
    conic-gradient(from 12deg, rgba(214, 178, 103, 0.18), transparent 10%, rgba(214, 178, 103, 0.12), transparent 28%);
  animation: apertureOpen 1650ms cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}

.opening-mark {
  position: relative;
  display: grid;
  width: clamp(96px, 14vw, 170px);
  aspect-ratio: 1;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #f1d28d;
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  box-shadow:
    0 0 0 1px rgba(214, 178, 103, 0.08),
    0 0 80px rgba(214, 178, 103, 0.18);
  animation: markReveal 1200ms ease both;
}

.opening-slate {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  bottom: clamp(28px, 7vh, 80px);
  display: grid;
  gap: 8px;
  color: rgba(247, 234, 208, 0.72);
  text-transform: uppercase;
}

.opening-slate span {
  color: #d6b267;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.opening-slate strong {
  color: #f7ead0;
  font-size: clamp(1.6rem, 4vw, 4.8rem);
  line-height: 0.9;
}

@keyframes apertureOpen {
  from {
    opacity: 1;
    transform: rotate(0deg) scale(1.25);
  }
  to {
    opacity: 0.36;
    transform: rotate(18deg) scale(1);
  }
}

@keyframes markReveal {
  from {
    opacity: 0;
    transform: scale(0.84);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.site-header {
  backdrop-filter: blur(18px);
}

.sound-toggle {
  min-height: 38px;
  border: 1px solid rgba(214, 178, 103, 0.28);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(0, 0, 0, 0.36);
  color: rgba(247, 234, 208, 0.78);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sound-toggle[aria-pressed="true"] {
  background: rgba(214, 178, 103, 0.16);
  color: #f1d28d;
}

.cinematic-intro::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 42%),
    radial-gradient(circle at calc(58% + var(--pointer-x, 0px)) calc(42% + var(--pointer-y, 0px)), rgba(214, 178, 103, 0.12), transparent 28%);
  mix-blend-mode: screen;
}

.director-hud {
  position: absolute;
  top: clamp(86px, 11vh, 126px);
  right: clamp(18px, 5vw, 72px);
  z-index: 9;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: min(440px, 48vw);
}

.director-hud span,
.showcase-caption span {
  border: 1px solid rgba(214, 178, 103, 0.22);
  border-radius: 999px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.52);
  color: rgba(247, 234, 208, 0.74);
  backdrop-filter: blur(14px);
}

.director-hud b {
  color: #f1d28d;
}

.director-timeline {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(96px, 15vh, 142px);
  z-index: 9;
  display: grid;
  width: min(280px, 28vw);
  gap: 7px;
}

.director-timeline span {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: rgba(247, 234, 208, 0.18);
  overflow: hidden;
}

.director-timeline span::before {
  display: block;
  width: calc(var(--showcase-progress, 0) * 100%);
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #8b642a, #f1d28d);
}

.scroll-showcase .hero-actor::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 42%, rgba(0, 0, 0, 0.26)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 46%, rgba(0, 0, 0, 0.68));
}

.scroll-showcase .showcase-title {
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.88);
}

.impact-section {
  position: relative;
  z-index: 2;
  padding: clamp(82px, 11vw, 150px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  border-top: 1px solid rgba(214, 178, 103, 0.12);
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.9), rgba(11, 9, 6, 0.92)),
    radial-gradient(circle at 26% 10%, rgba(214, 178, 103, 0.1), transparent 34%);
}

.impact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(214, 178, 103, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(214, 178, 103, 0.035) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: radial-gradient(circle at 50% 34%, #000, transparent 72%);
}

.impact-heading,
.impact-strip {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin-inline: auto;
}

.impact-heading {
  margin-bottom: clamp(28px, 5vw, 58px);
}

.impact-heading h2 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(2.4rem, 5.4vw, 6.2rem);
  line-height: 0.94;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(214, 178, 103, 0.16);
  background: rgba(214, 178, 103, 0.1);
  gap: 1px;
}

.impact-strip article {
  min-height: 360px;
  padding: clamp(22px, 3vw, 38px);
  background:
    linear-gradient(180deg, rgba(214, 178, 103, 0.06), rgba(214, 178, 103, 0.018)),
    rgba(5, 5, 4, 0.88);
}

.impact-strip span {
  display: block;
  margin-bottom: 42px;
  color: #d6b267;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.impact-strip h3 {
  max-width: 340px;
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.5vw, 2.7rem);
  line-height: 1;
}

.impact-strip p {
  max-width: 360px;
  margin: 0;
  color: rgba(247, 234, 208, 0.58);
  line-height: 1.7;
}

.clients-section::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(214, 178, 103, 0.06));
}

.client-logo-card {
  transition:
    transform 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.client-logo-card:hover {
  transform: translateY(-6px);
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.08), transparent 28%),
    rgba(12, 10, 7, 0.92);
  box-shadow: inset 0 0 0 1px rgba(214, 178, 103, 0.22);
}

.signature-lockup {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 42px;
}

.signature-lockup span {
  display: grid;
  width: 78px;
  aspect-ratio: 1;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #f1d28d;
  font-size: 1.6rem;
  font-weight: 950;
}

.signature-lockup p {
  max-width: 360px;
  margin: 0;
  color: rgba(247, 234, 208, 0.58);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .sound-toggle {
    display: none;
  }

  .director-hud,
  .showcase-caption,
  .director-timeline {
    display: none;
  }

  .impact-strip {
    grid-template-columns: 1fr;
  }
}

/* Next layer: reveal choreography, client spotlight, and contact call sheet. */
.reveal-block {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.85, 0.2, 1);
}

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

.intro-dashboard {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  width: min(520px, 92vw);
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(214, 178, 103, 0.16);
  border-radius: 8px;
  background: rgba(214, 178, 103, 0.12);
}

.intro-dashboard span {
  display: inline-flex;
  min-height: 48px;
  flex: 1 1 150px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  background: rgba(0, 0, 0, 0.44);
  color: rgba(247, 234, 208, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intro-dashboard b {
  color: #d6b267;
}

.client-logo-card {
  position: relative;
  overflow: hidden;
}

.client-logo-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(
    circle at var(--client-x, 50%) var(--client-y, 50%),
    rgba(214, 178, 103, 0.18),
    transparent 34%
  );
  opacity: 0;
  transition: opacity 220ms ease;
}

.client-logo-card:hover::before {
  opacity: 1;
}

.client-logo-card > * {
  position: relative;
  z-index: 1;
}

.contact {
  position: relative;
  overflow: hidden;
}

.contact::after {
  position: absolute;
  right: clamp(18px, 6vw, 92px);
  bottom: clamp(28px, 8vh, 96px);
  width: min(460px, 42vw);
  aspect-ratio: 1;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(214, 178, 103, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 178, 103, 0.12), transparent 62%);
  opacity: 0.75;
}

.call-sheet {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin-top: 36px;
  border-top: 1px solid rgba(214, 178, 103, 0.18);
  border-bottom: 1px solid rgba(214, 178, 103, 0.12);
  padding: 18px 0;
}

.call-sheet > span {
  display: block;
  margin-bottom: 16px;
  color: #d6b267;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.call-sheet dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: rgba(214, 178, 103, 0.12);
}

.call-sheet div {
  min-height: 104px;
  padding: 16px;
  background: rgba(5, 5, 4, 0.84);
}

.call-sheet dt {
  margin-bottom: 18px;
  color: rgba(247, 234, 208, 0.48);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.call-sheet dd {
  margin: 0;
  color: rgba(247, 234, 208, 0.82);
  font-weight: 800;
  line-height: 1.35;
}

@media (max-width: 780px) {
  .call-sheet dl {
    grid-template-columns: 1fr;
  }

  .contact::after {
    width: 70vw;
  }
}

/* Director console layer. */
.director-note {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  top: clamp(136px, 18vh, 210px);
  z-index: 9;
  width: min(420px, 38vw);
  border-left: 1px solid rgba(214, 178, 103, 0.42);
  padding-left: 18px;
  color: rgba(247, 234, 208, 0.76);
  text-shadow: 0 16px 52px rgba(0, 0, 0, 0.8);
}

.director-note span {
  display: block;
  margin-bottom: 10px;
  color: #d6b267;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.director-note strong {
  display: block;
  max-width: 360px;
  color: #f7ead0;
  font-size: clamp(1.45rem, 2.6vw, 3rem);
  line-height: 0.98;
}

.director-note p {
  max-width: 340px;
  margin: 12px 0 0;
  color: rgba(247, 234, 208, 0.58);
  line-height: 1.58;
}

.journey-step {
  cursor: pointer;
}

.contact-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.copy-email {
  min-height: 52px;
  border: 1px solid rgba(214, 178, 103, 0.22);
  border-radius: 999px;
  padding: 0 22px;
  background: rgba(214, 178, 103, 0.06);
  color: rgba(247, 234, 208, 0.82);
  font-weight: 900;
  cursor: pointer;
}

.copy-email.is-copied {
  border-color: rgba(214, 178, 103, 0.56);
  background: rgba(214, 178, 103, 0.16);
  color: #f1d28d;
}

@media (max-width: 900px) {
  .director-note {
    display: none;
  }
}
