/* ============================================================
   CAPTUREKRAFT — STORIES . FILM . AERIALS
   ============================================================ */

:root {
  --ink: #0c0b09;
  --ink-2: #14120f;
  --paper: #f2ece2;
  --orange: #ff5c1a;
  --orange-hot: #ff7a3c;
  --grey: #8a857c;
  --font-display: "Clash Display", "Arial Narrow", sans-serif;
  --font-body: "Satoshi", "Helvetica Neue", sans-serif;
  --font-mono: "Space Mono", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; overflow-x: clip; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
.mono { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; }

.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--paper);
}
.outline--dark {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

/* ============ GRAIN ============ */
.grain {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px; background-repeat: repeat;
  opacity: .05;
  animation: grainShift .6s steps(4) infinite;
}
@keyframes grainShift {
  0% { background-position: 0 0; } 25% { background-position: -40px 30px; }
  50% { background-position: 30px -45px; } 75% { background-position: -25px -20px; }
  100% { background-position: 0 0; }
}

/* ============ CURSOR ============ */
.cursor { position: fixed; inset: 0; z-index: 9500; pointer-events: none; }
.cursor__dot {
  position: absolute; top: 0; left: 0; width: 8px; height: 8px;
  background: var(--orange); border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor__ring {
  position: absolute; top: 0; left: 0; width: 42px; height: 42px;
  border: 1px solid rgba(242,236,226,.6); border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  transition: width .35s cubic-bezier(.22,1,.36,1), height .35s cubic-bezier(.22,1,.36,1),
              background-color .35s, border-color .35s;
}
.cursor__label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em;
  color: var(--ink); opacity: 0; transition: opacity .25s;
}
.cursor--hover .cursor__ring { width: 64px; height: 64px; border-color: var(--orange); }
.cursor--view .cursor__ring {
  width: 88px; height: 88px; background: var(--orange); border-color: var(--orange);
}
.cursor--view .cursor__label { opacity: 1; }
@media (hover: none) { .cursor { display: none; } }

/* ============ PRELOADER ============ */
.loader {
  position: fixed; inset: 0; z-index: 9990;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.loader__inner { text-align: center; }
.loader__logo { display: flex; flex-direction: column; line-height: .92; }
.loader__img { width: min(64vw, 520px); height: auto; object-fit: contain; }
.loader__meta {
  margin-top: 28px; display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .15em; color: var(--grey);
}
.loader__count { color: var(--orange); font-size: 14px; }
.loader__bar {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: #221f1a;
}
.loader__bar span { display: block; height: 100%; width: 0%; background: var(--orange); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 8000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  mix-blend-mode: normal;
  transition: transform .45s cubic-bezier(.22,1,.36,1), background .3s;
}
.nav--scrolled { background: rgba(12,11,9,.82); backdrop-filter: blur(14px); }
.nav--hidden, .nav--intro { transform: translateY(-110%); }
.nav__logo { display: flex; align-items: center; }
.nav__logo img { width: 140px; height: auto; object-fit: contain; }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  position: relative; padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
  background: var(--orange); transform: scaleX(0); transform-origin: right;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__right { display: flex; align-items: center; gap: 20px; }
.nav__clock { color: var(--grey); }

.btn-pill {
  display: inline-block; position: relative; overflow: hidden;
  white-space: nowrap;
  border: 1px solid var(--orange); border-radius: 999px;
  padding: 10px 24px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange);
  transition: color .35s;
}
.btn-pill::before {
  content: ""; position: absolute; inset: 0; background: var(--orange);
  transform: translateY(101%); transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.btn-pill span { position: relative; z-index: 1; }
.btn-pill:hover { color: var(--ink); }
.btn-pill:hover::before { transform: translateY(0); }
.btn-pill--dark { border-color: var(--ink); color: var(--ink); }
.btn-pill--dark::before { background: var(--ink); }
.btn-pill--dark:hover { color: var(--paper); }

/* ============ SECTION HEAD ============ */
.section-head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 40px;
}
.section-head__num {
  color: var(--orange); font-size: 13px;
  border: 1px solid var(--orange); border-radius: 50%;
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
}
.section-head__label { color: var(--grey); letter-spacing: .3em; }
.section-head::after { content: ""; flex: 1; height: 1px; background: #2a2620; }
.section-head--light .section-head__num { border-color: var(--ink); color: var(--ink); }
.section-head--light .section-head__label { color: rgba(12,11,9,.55); }
.section-head--light::after { background: rgba(12,11,9,.18); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__video {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.01); /* near-native for max sharpness; parallax adds zoom on scroll */
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,11,9,.62) 0%, rgba(12,11,9,.12) 34%, rgba(12,11,9,.28) 62%, rgba(12,11,9,.9) 100%),
    linear-gradient(90deg, rgba(12,11,9,.85) 0%, rgba(12,11,9,.35) 42%, rgba(12,11,9,0) 72%);
}
.hero__inner {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; flex-direction: column;
  padding: 120px 32px 26px;
}
.hero__topline {
  display: flex; justify-content: space-between; gap: 20px;
  color: #d8d2c7;
}
.hero__topline span:first-child { color: var(--paper); display: inline-flex; align-items: center; }
.rec-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
  display: inline-block; margin-right: 9px;
  animation: recPulse 1.4s ease-in-out infinite;
}
@keyframes recPulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,92,26,.5); } 50% { opacity: .35; box-shadow: 0 0 0 6px rgba(255,92,26,0); } }
.hero__headline {
  margin: auto 0;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(64px, 13.5vw, 240px);
  line-height: .84; letter-spacing: -.02em; text-transform: uppercase;
  text-shadow: 0 8px 60px rgba(0,0,0,.4);
}
.hero__line { display: block; overflow: hidden; }
.hero__word { display: inline-block; white-space: nowrap; }
.hero__word--stroke { color: transparent; -webkit-text-stroke: 2px var(--orange); }
.hero__word .char { display: inline-block; will-change: transform; }
.hero__foot {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px;
}
.hero__blurb { max-width: 540px; font-size: 18px; color: #e7e2d8; line-height: 1.5; }
.hero__actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.btn-reel {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--orange); color: var(--ink);
  border: 1px solid var(--orange); border-radius: 999px;
  padding: 11px 22px 11px 14px; cursor: pointer;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  transition: transform .3s cubic-bezier(.22,1,.36,1), background .3s;
}
.btn-reel__ico {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--ink); color: var(--orange);
  display: inline-flex; align-items: center; justify-content: center; font-size: 11px;
  padding-left: 2px;
}
.btn-reel:hover { transform: translateY(-2px); background: var(--orange-hot); }
.hero__scroll { color: #d8d2c7; text-align: right; line-height: 1.8; animation: bob 2.2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

.hero__badge {
  position: absolute; top: 30vh; right: 4vw; z-index: 3;
  width: 122px; height: 122px;
}
.hero__badge svg { width: 100%; height: 100%; animation: spin 14s linear infinite; }
.hero__badge text {
  font-family: var(--font-mono); font-size: 15.5px; letter-spacing: .22em;
  fill: var(--paper); text-transform: uppercase;
}
.hero__badge-core {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 20px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* hero contact-sheet strip */
.hero__strip {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(242,236,226,.16);
  background: rgba(12,11,9,.34); backdrop-filter: blur(8px);
  overflow: hidden; display: block;
}
.hero__strip-track {
  display: flex; gap: 12px; padding: 12px 16px; width: max-content;
  animation: stripScroll 48s linear infinite;
}
.hero__strip:hover .hero__strip-track { animation-play-state: paused; }
.hero__frame {
  position: relative; width: 152px; height: 86px; flex-shrink: 0; overflow: hidden;
  border: 1px solid rgba(242,236,226,.12);
}
.hero__frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.25) brightness(.78); transition: transform .5s, filter .5s;
}
.hero__frame:hover img { filter: none; transform: scale(1.07); }
.hero__frame i {
  position: absolute; left: 7px; bottom: 6px;
  font-family: var(--font-mono); font-size: 8px; letter-spacing: .1em; font-style: normal;
  color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.9);
}
@keyframes stripScroll { to { transform: translateX(calc(-50% - 6px)); } }

/* ============ MARQUEE ============ */
.marquee { overflow: hidden; white-space: nowrap; position: relative; }
.marquee__track { display: inline-flex; will-change: transform; }
.marquee__track span {
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase;
  padding: .18em 0;
}
.marquee--solid { background: var(--orange); color: var(--ink); }
.marquee--solid .marquee__track span { font-size: clamp(28px, 4.5vw, 64px); }
.marquee--ghost { border-top: 1px solid #2a2620; border-bottom: 1px solid #2a2620; background: var(--ink-2); }
.marquee--ghost .marquee__track span {
  font-size: clamp(26px, 4vw, 56px);
  color: transparent; -webkit-text-stroke: 1px var(--orange);
}
.marquee--footer { border-top: 1px solid #2a2620; }
.marquee--footer .marquee__track span {
  font-size: clamp(20px, 3vw, 40px); color: var(--orange);
  display: inline-flex; align-items: center;
}
.marquee__logo { height: 1.5em; width: auto; display: inline-block; }

/* ============ CLIENTS ============ */
.clients { padding: 10vh 32px 2vh; max-width: 1500px; margin: 0 auto; }
.clients__label { color: var(--grey); letter-spacing: .3em; margin-bottom: 36px; }
.clients__marquee { overflow: hidden; border-top: 1px solid #2a2620; border-bottom: 1px solid #2a2620; }
.clients__track {
  display: inline-flex; align-items: center; gap: 8vw;
  padding: 40px 4vw; will-change: transform;
  animation: clientsScroll 26s linear infinite;
}
.clients__track img {
  height: 44px; width: auto; object-fit: contain; flex-shrink: 0;
  filter: brightness(0) invert(.85);
  opacity: .55; transition: opacity .3s, filter .3s;
}
.clients__track img:hover { opacity: 1; filter: brightness(0) invert(1); }
.clients__track img[src*="cred"] { filter: none; }
.clients__track img[src*="cred"]:hover { filter: brightness(1.15); }
.clients__track img[src*="cadabams"] { filter: invert(1) grayscale(1) brightness(1.4); }
.clients__track img[src*="cadabams"]:hover { filter: invert(1) grayscale(1) brightness(1.8); }
@keyframes clientsScroll { to { transform: translateX(-50%); } }

/* ============ SERVICES ============ */
.services { padding: 12vh 32px; max-width: 1500px; margin: 0 auto; position: relative; }
.services__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 6vw, 96px); line-height: .95; text-transform: uppercase;
  margin-bottom: 7vh;
}
.services__list { border-top: 1px solid #2a2620; }
.service-row {
  display: grid; grid-template-columns: 90px 1.2fr 1fr;
  align-items: baseline; gap: 24px;
  padding: 30px 12px;
  border-bottom: 1px solid #2a2620;
  transition: padding-left .35s cubic-bezier(.22,1,.36,1), background .35s;
  cursor: pointer;
}
.service-row:hover { padding-left: 30px; background: var(--ink-2); }
.service-row__num { color: var(--orange); }
.service-row h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(24px, 3vw, 46px); text-transform: uppercase; line-height: 1;
  transition: color .3s;
}
.service-row:hover h3 { color: var(--orange); }
.service-row p { color: var(--grey); font-size: 15px; }
.services__preview {
  position: fixed; top: 0; left: 0; z-index: 7000;
  width: 320px; height: 210px; object-fit: cover;
  pointer-events: none; opacity: 0; transform: translate(-50%, -50%) scale(.85) rotate(-3deg);
  transition: opacity .25s, transform .25s;
}
.services__preview.is-on { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(-3deg); }

/* ============ MANIFESTO ============ */
.manifesto { padding: 16vh 32px; max-width: 1400px; margin: 0 auto; }
.manifesto__text {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(28px, 4.6vw, 68px);
  line-height: 1.12; letter-spacing: -.01em;
  text-transform: uppercase;
  max-width: 1200px;
}
.manifesto__text .w { opacity: .12; transition: opacity .3s; }
.manifesto__stats {
  margin-top: 10vh;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: #2a2620; border: 1px solid #2a2620;
}
.stat {
  background: var(--ink); padding: 36px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background .35s;
}
.stat:hover { background: var(--ink-2); }
.stat__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(48px, 6vw, 96px); line-height: 1; color: var(--orange);
}
.stat__label { color: var(--grey); }

/* ============ SETS (HORIZONTAL) ============ */
.sets { position: relative; }
.sets__intro { padding: 8vh 32px 6vh; }
.sets__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 8vw, 120px); line-height: .95; text-transform: uppercase;
}
.sets__hint { color: var(--grey); margin-top: 18px; }
.sets__pin { overflow: hidden; }
.sets__track {
  display: flex; align-items: stretch; gap: 4vw;
  padding: 60px 32px 8vh;
  width: max-content;
}
.set-card {
  position: relative;
  width: min(72vw, 780px);
  flex-shrink: 0;
  display: flex; flex-direction: column;
}
.set-card__num {
  position: absolute; top: -.25em; left: -.05em; z-index: 3;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(80px, 11vw, 170px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--orange);
  pointer-events: none;
}
.set-card__img {
  height: 54vh; overflow: hidden; margin-top: 40px;
}
.set-card__img img {
  transform: scale(1.12);
  transition: transform 1s cubic-bezier(.22,1,.36,1), filter .6s;
  filter: saturate(.92);
}
.set-card:hover .set-card__img img { transform: scale(1.02); filter: saturate(1.1); }
.set-card__body { padding: 26px 4px 0; display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px; }
.set-card__body h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(30px, 3.4vw, 52px); line-height: .95; text-transform: uppercase;
}
.set-card__body p { color: #b8b2a6; font-size: 15.5px; }
.set-card__body ul { list-style: none; margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.set-card__body ul li {
  border: 1px solid #3a352c; border-radius: 999px; padding: 5px 12px; color: var(--grey);
}
.set-card--cta { justify-content: center; width: 46vw; }
.set-card--cta a {
  display: flex; flex-direction: column; gap: 24px; align-items: flex-start;
}
.set-card__cta-big {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(70px, 10vw, 160px); line-height: .9; text-transform: uppercase;
  transition: color .4s;
}
.set-card--cta a:hover .set-card__cta-big { color: var(--orange); -webkit-text-stroke-color: var(--orange); }
.set-card--cta .mono { color: var(--orange); letter-spacing: .2em; }

/* ============ WORK / PORTFOLIO ============ */
.work { padding: 12vh 32px; max-width: 1500px; margin: 0 auto; }
.work__head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 30px;
  margin-bottom: 6vh; flex-wrap: wrap;
}
.work__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(48px, 9vw, 150px); line-height: .9; text-transform: uppercase;
}
.work__sub { color: #b8b2a6; max-width: 420px; font-size: 16px; }
.work__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.work-card {
  display: block; width: 100%; text-align: left; cursor: pointer;
  background: none; border: none; padding: 0; color: inherit;
}
.work-card__thumb {
  position: relative; overflow: hidden; aspect-ratio: 16 / 9;
  border: 1px solid #2a2620;
}
.work-card__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.22,1,.36,1), filter .5s;
  filter: brightness(.82) saturate(.95);
}
.work-card:hover .work-card__thumb img { transform: scale(1.05); filter: brightness(1) saturate(1.05); }
.work-card__play {
  position: absolute; inset: 0; margin: auto;
  width: 84px; height: 84px; border-radius: 50%;
  background: rgba(255,92,26,.92); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; padding-left: 5px;
  transition: transform .35s cubic-bezier(.22,1,.36,1), background .3s;
}
.work-card:hover .work-card__play { transform: scale(1.12); background: var(--orange); }
.work-card__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(12,11,9,.72); backdrop-filter: blur(6px);
  color: var(--paper); padding: 6px 11px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em;
}
.work-card__runtime {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(12,11,9,.72); backdrop-filter: blur(6px);
  color: var(--paper); padding: 5px 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em;
}
.work-card__meta { display: flex; align-items: baseline; gap: 14px; margin-top: 20px; }
.work-card__meta .mono { color: var(--orange); flex-shrink: 0; }
.work-card__meta h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(19px, 1.9vw, 27px); line-height: 1.05; text-transform: uppercase;
  transition: color .3s;
}
.work-card:hover .work-card__meta h3 { color: var(--orange); }
.work__more { margin-top: 46px; color: var(--grey); letter-spacing: .1em; }
.work__more a { color: var(--orange); }
.work__more a:hover { text-decoration: underline; }

/* ============ FEED / INSTAGRAM ============ */
.feed { padding: 8vh 32px 12vh; max-width: 1500px; margin: 0 auto; }
.feed__head {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  margin-bottom: 5vh; flex-wrap: wrap;
}
.feed__handle {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(28px, 4.5vw, 66px); text-transform: lowercase; line-height: 1;
}
.feed__handle .outline { -webkit-text-stroke: 1.2px var(--paper); color: transparent; }
.feed__ig { width: clamp(30px, 4vw, 52px); height: auto; color: var(--orange); flex-shrink: 0; }
.feed__handle:hover .feed__ig { color: var(--paper); }
.feed__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.feed__cell {
  position: relative; overflow: hidden; aspect-ratio: 1; display: block;
  border: 1px solid #2a2620;
}
.feed__cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.22,1,.36,1), filter .4s;
  filter: grayscale(.15) brightness(.85);
}
.feed__cell:hover img { transform: scale(1.08); filter: none; }
.feed__cell-ico {
  position: absolute; top: 10px; right: 12px;
  color: var(--paper); font-size: 15px; opacity: 0; transform: translateY(-6px);
  transition: opacity .3s, transform .3s;
}
.feed__cell:hover .feed__cell-ico { opacity: 1; transform: translateY(0); }

/* ============ VIDEO LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 9600;
  background: rgba(6,5,4,.9); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; padding: 5vw;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__stage {
  width: min(1100px, 92vw); aspect-ratio: 16 / 9;
  transform: scale(.94); transition: transform .45s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
}
.lightbox.is-open .lightbox__stage { transform: scale(1); }
.lightbox__embed, .lightbox__embed iframe {
  width: 100%; height: 100%; border: 0; display: block; background: #000;
}
.lightbox__close {
  position: absolute; top: 26px; right: 30px;
  width: 52px; height: 52px; border-radius: 50%;
  background: none; border: 1px solid rgba(242,236,226,.4); color: var(--paper);
  font-size: 18px; cursor: pointer; transition: background .3s, color .3s, border-color .3s;
}
.lightbox__close:hover { background: var(--orange); color: var(--ink); border-color: var(--orange); }

/* ============ SPOTLIGHT ============ */
.spotlight {
  background: var(--orange); color: var(--ink);
  padding: 10vh 32px 7vh;
}
.spotlight__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 5vw;
  align-items: start;
  max-width: 1500px; margin: 0 auto;
}
.spotlight__title {
  grid-column: 1 / -1;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(56px, 11vw, 180px); line-height: .88; text-transform: uppercase;
  display: flex; flex-wrap: wrap; column-gap: .35em;
  margin-bottom: 6vh;
}
.spotlight__media {
  overflow: hidden;
  box-shadow: 20px 20px 0 rgba(12,11,9,.25);
}
.spotlight__media img { transition: transform 1s cubic-bezier(.22,1,.36,1); }
.spotlight__media:hover img { transform: scale(1.05); }
.spotlight__copy p { font-size: clamp(17px, 1.4vw, 21px); max-width: 520px; }
.spotlight__copy b { font-weight: 700; }
.ticklist { list-style: none; margin: 34px 0 40px; }
.ticklist li {
  padding: 12px 0; border-bottom: 1px solid rgba(12,11,9,.25);
  letter-spacing: .12em;
  display: flex; align-items: center; gap: 12px;
}
.ticklist li::before { content: "✺"; }

/* ============ ENGINE ============ */
.engine { padding: 7vh 32px 12vh; max-width: 1500px; margin: 0 auto; }
.engine__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: start; }
.engine__copy h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(38px, 5vw, 80px); line-height: .95; text-transform: uppercase;
  margin-bottom: 30px;
}
.engine__copy > p { color: #b8b2a6; max-width: 540px; margin-bottom: 44px; }
.engine__list { list-style: none; }
.engine__list li {
  display: flex; align-items: center; gap: 22px;
  padding: 18px 0; border-bottom: 1px solid #2a2620;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(18px, 1.8vw, 26px); text-transform: uppercase;
  transition: padding-left .35s cubic-bezier(.22,1,.36,1), color .35s;
}
.engine__list li:hover { padding-left: 16px; color: var(--orange); }
.engine__list li .mono { color: var(--orange); border: 1px solid #3a352c; border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.engine__media { display: flex; flex-direction: column; gap: 5vh; }
.engine__media figure { overflow: hidden; position: relative; }
.engine__media figure:nth-child(2) { margin-left: 18%; }
.engine__media img { height: 44vh; }
.engine__media figcaption {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(12,11,9,.6); padding: 5px 10px; backdrop-filter: blur(6px); color: var(--paper);
}

/* ============ AMENITIES ============ */
.amenities { padding: 8vh 32px 14vh; max-width: 1500px; margin: 0 auto; }
.amenities__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 6vw, 96px); line-height: .95; text-transform: uppercase;
  margin-bottom: 7vh;
}
.amenities__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: #2a2620; border: 1px solid #2a2620;
}
.amenity {
  background: var(--ink); padding: 30px 24px 60px;
  position: relative; overflow: hidden;
  transition: color .3s;
}
.amenity .mono { color: var(--grey); transition: color .3s; }
.amenity h4 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(17px, 1.6vw, 24px); text-transform: uppercase;
  margin-top: 26px; position: relative; z-index: 1;
}
.amenity::before {
  content: ""; position: absolute; inset: 0; background: var(--orange);
  transform: translateY(101%); transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.amenity:hover::before { transform: translateY(0); }
.amenity:hover { color: var(--ink); }
.amenity:hover .mono { color: var(--ink); }
.amenity h4, .amenity .mono { position: relative; z-index: 1; }
.amenities__strip {
  margin-top: 6vh; display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 20px;
}
.amenities__strip img { height: 34vh; }

/* ============ VOICES / TESTIMONIAL ============ */
.voices { padding: 10vh 32px 12vh; max-width: 1500px; margin: 0 auto; }
.voices__grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 5vw; align-items: center;
}
.voices__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 5.5vw, 88px); line-height: .92; text-transform: uppercase;
  margin-bottom: 26px;
}
.voices__copy > p { color: #b8b2a6; max-width: 400px; margin-bottom: 34px; font-size: 17px; }
.voices__player {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  background: #000; border: 1px solid #2a2620; cursor: pointer;
  box-shadow: 24px 24px 0 rgba(255,92,26,.14);
}
.voices__player video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.voices__play {
  position: absolute; inset: 0; margin: 0; width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  background: linear-gradient(180deg, rgba(12,11,9,.15), rgba(12,11,9,.45));
  border: none; cursor: pointer; color: var(--paper);
  transition: opacity .35s, background .35s;
}
.voices__play-ico {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--orange); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; padding-left: 5px;
  transition: transform .35s cubic-bezier(.22,1,.36,1), background .3s;
}
.voices__player:hover .voices__play-ico { transform: scale(1.12); background: var(--orange-hot); }
.voices__play-label { letter-spacing: .22em; }
.voices__play.is-hidden { opacity: 0; pointer-events: none; }
.voices__tag {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  background: rgba(12,11,9,.72); backdrop-filter: blur(6px);
  color: var(--paper); padding: 6px 11px; letter-spacing: .1em;
  transition: opacity .35s;
}
.voices__player.is-playing .voices__tag { opacity: 0; }
.voices__corner {
  position: absolute; width: 26px; height: 26px; z-index: 2; pointer-events: none;
  border-color: var(--orange); border-style: solid; border-width: 0;
}
.voices__corner--tl { top: 12px; left: 12px; border-top-width: 2px; border-left-width: 2px; }
.voices__corner--br { bottom: 12px; right: 12px; border-bottom-width: 2px; border-right-width: 2px; }

/* ============ RATES ============ */
.rates { padding: 6vh 32px 14vh; max-width: 1500px; margin: 0 auto; }
.rates__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(44px, 8vw, 130px); line-height: .95; text-transform: uppercase;
}
.rates__sub { color: var(--orange); margin: 20px 0 7vh; letter-spacing: .2em; }
.rates__list { border-top: 1px solid #2a2620; }
.rate-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr .9fr .8fr;
  align-items: center; gap: 24px;
  padding: 34px 18px;
  border-bottom: 1px solid #2a2620;
  position: relative; overflow: hidden;
  transition: color .35s;
}
.rate-row::before {
  content: ""; position: absolute; inset: 0; background: var(--orange);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.rate-row:hover::before { transform: scaleY(1); }
.rate-row:hover { color: var(--ink); }
.rate-row > * { position: relative; z-index: 1; }
.rate-row__setup {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(22px, 2.6vw, 40px); text-transform: uppercase;
}
.rate-row__setup b { font-weight: 700; color: var(--orange); transition: color .35s; }
.rate-row:hover .rate-row__setup b { color: var(--ink); }
.rate-row__desc { color: var(--grey); transition: color .35s; }
.rate-row:hover .rate-row__desc { color: rgba(12,11,9,.65); }
.rate-row__price {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(22px, 2.4vw, 38px); text-align: right;
}
.rate-row__price small {
  display: block; font-family: var(--font-mono); font-size: 10px;
  font-weight: 400; letter-spacing: .12em; color: var(--grey); transition: color .35s;
}
.rate-row:hover .rate-row__price small { color: rgba(12,11,9,.65); }
.rate-row__add { text-align: right; color: var(--grey); transition: color .35s; }
.rate-row:hover .rate-row__add { color: rgba(12,11,9,.75); }
.rates__fineprint { margin-top: 40px; color: var(--grey); max-width: 900px; line-height: 2; }

/* ============ CONTACT ============ */
.contact { padding: 10vh 32px 12vh; max-width: 1500px; margin: 0 auto; }
.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 5vw; align-items: start; }
.contact__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(44px, 6vw, 100px); line-height: .9; text-transform: uppercase;
  margin-bottom: 24px;
}
.contact__lead { color: #b8b2a6; max-width: 420px; font-size: 17px; margin-bottom: 40px; }

/* distinct call-to-action */
.call-cta {
  border: 1px solid #3a352c; border-radius: 6px;
  padding: 26px 28px; background: var(--ink-2);
  position: relative; overflow: hidden;
}
.call-cta::before {
  content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--orange);
}
.call-cta__label { color: var(--grey); letter-spacing: .22em; display: block; margin-bottom: 14px; }
.call-cta__number {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px); color: var(--orange); line-height: 1;
  transition: gap .3s;
}
.call-cta__number:hover { gap: 20px; }
.call-cta__ico { width: clamp(26px, 3vw, 34px); height: auto; flex-shrink: 0; }
.call-cta__row { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }

/* form */
.contact__form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--half { flex-direction: row; gap: 16px; }
.field--half > div { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.contact__form label { color: var(--grey); letter-spacing: .12em; }
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%; background: var(--ink); color: var(--paper);
  border: 1px solid #3a352c; border-radius: 4px;
  padding: 14px 16px; font-family: var(--font-body); font-size: 16px;
  transition: border-color .3s, background .3s;
}
.contact__form input::placeholder,
.contact__form textarea::placeholder { color: #6b665d; }
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none; border-color: var(--orange); background: var(--ink-2);
}
.contact__form textarea { resize: vertical; min-height: 110px; }
.contact__form select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ff5c1a' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 22px; padding-right: 42px;
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact__submit {
  align-self: flex-start; margin-top: 4px;
  display: inline-flex; align-items: center; cursor: pointer;
  background: var(--orange); color: var(--ink); border: 1px solid var(--orange); border-radius: 999px;
  padding: 15px 34px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  transition: transform .3s cubic-bezier(.22,1,.36,1), background .3s;
}
.contact__submit:hover { transform: translateY(-2px); background: var(--orange-hot); }
.contact__submit:disabled { opacity: .6; cursor: wait; transform: none; }
.contact__status { min-height: 1em; letter-spacing: .06em; color: var(--grey); }
.contact__status[data-state="ok"] { color: var(--orange); }
.contact__status[data-state="err"] { color: #ff6b5c; }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid #2a2620; padding-top: 12vh; }
.footer__cta { text-align: center; padding: 0 32px 10vh; }
.footer__pre { color: var(--grey); letter-spacing: .25em; }
.footer__big {
  display: inline-flex; flex-direction: column; margin-top: 30px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(90px, 20vw, 330px); line-height: .82; text-transform: uppercase;
}
.footer__big-line { display: block; overflow: hidden; }
.footer__big em { font-style: normal; color: var(--orange); -webkit-text-stroke: 0; }
.footer__big:hover .outline { -webkit-text-stroke-color: var(--orange); }
.footer__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  padding: 0 32px 10vh; max-width: 1500px; margin: 0 auto;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col-label { color: var(--orange); letter-spacing: .25em; margin-bottom: 8px; }
.footer__col a, .footer__col address, .footer__col p {
  font-style: normal; font-size: 16px; color: #cfc9be;
}
.footer__col a:hover { color: var(--orange); }
.footer__base {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 26px 32px; color: var(--grey);
  border-top: 1px solid #2a2620;
}
.footer__base a:hover { color: var(--orange); }

/* ============ REVEAL HELPERS ============ */
.reveal-line { display: block; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
  .nav__links { display: none; }
  .manifesto__stats { grid-template-columns: repeat(2, 1fr); }
  .amenities__grid { grid-template-columns: repeat(2, 1fr); }
  .spotlight__grid, .engine__grid, .voices__grid, .contact__grid { grid-template-columns: 1fr; }
  .voices__player { box-shadow: 14px 14px 0 rgba(255,92,26,.14); }
  .contact__grid { gap: 8vh; }
  .engine__media figure:nth-child(2) { margin-left: 0; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .rate-row { grid-template-columns: 1fr auto; }
  .rate-row__desc, .rate-row__add { display: none; }
  .hero__badge { width: 96px; height: 96px; top: 24vh; }
  .work__grid { grid-template-columns: 1fr; gap: 26px; }
  .feed__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1000px) {
  .service-row { grid-template-columns: 60px 1fr; }
  .service-row p { grid-column: 2; }
  .services__preview { display: none; }
}
@media (max-width: 700px) {
  .services, .clients { padding-left: 20px; padding-right: 20px; }
  .clients__track img { height: 30px; }
  .nav__logo img { width: 110px; }
  .nav { padding: 14px 20px; }
  .nav__clock { display: none; }
  .hero__inner { padding: 100px 20px 22px; }
  .hero__headline { font-size: clamp(42px, 12.5vw, 92px); }
  .feed__handle { font-size: clamp(20px, 6vw, 40px); }
  .feed__ig { width: 26px; }
  .hero__topline { flex-direction: column; gap: 4px; }
  .hero__topline span:nth-child(3) { display: none; }
  .hero__badge { display: none; }
  .hero__foot { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero__scroll { display: none; }
  .hero__frame { width: 118px; height: 68px; }
  .work, .feed, .voices, .contact { padding-left: 20px; padding-right: 20px; }
  .voices__play-ico { width: 66px; height: 66px; font-size: 22px; }
  .field--half { flex-direction: column; }
  .feed__grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto, .engine, .amenities, .rates { padding-left: 20px; padding-right: 20px; }
  .sets__intro { padding: 8vh 20px 4vh; }
  .sets__hint { display: none; }
  .sets__pin { overflow: visible; }
  .sets__track { flex-direction: column; width: auto; padding: 0 20px 8vh; gap: 7vh; }
  .set-card { width: 100%; }
  .set-card--cta { width: 100%; }
  .set-card__img { height: 46vh; }
  .set-card__body { grid-template-columns: 1fr; }
  .spotlight { padding: 8vh 20px 10vh; }
  .footer__cta, .footer__grid, .footer__base { padding-left: 20px; padding-right: 20px; }
  .amenities__strip { grid-template-columns: 1fr; }
  .amenities__strip img { height: 30vh; }
  .footer__base { flex-direction: column; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .grain { animation: none; }
}
