/* ============================================================
   index.css — marketing + booking page
   ============================================================ */

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem clamp(1.1rem, 4vw, 3rem);
  background: rgba(8, 8, 10, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--text);
}
.nav-logo .slash { color: var(--gold); }
.nav-logo .tag {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-left: 0.6em;
  vertical-align: middle;
}
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a:not(.btn) {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color 0.25s var(--ease);
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--text); }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav .btn { padding: 0.6em 1.4em; font-size: 0.85rem; }
.nav-burger { display: none; background: none; border: 0; width: 40px; height: 40px; position: relative; }
.nav-burger span {
  position: absolute; left: 9px; right: 9px; height: 2px;
  background: var(--text); transition: all 0.3s var(--ease);
}
.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 24px; }
body.menu-open .nav-burger span:nth-child(1) { top: 19px; transform: rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { top: 19px; transform: rotate(-45deg); }

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    inset: 57px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(8, 8, 10, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.4rem 1.4rem;
    transform: translateY(-110%);
    transition: transform 0.4s var(--ease);
  }
  body.menu-open .nav-links { transform: none; }
  .nav-links a:not(.btn) { padding: 0.9rem 0; font-size: 1.1rem; width: 100%; border-bottom: 1px solid var(--line-soft); }
  .nav-links .btn { margin-top: 1rem; }
  .nav-burger { display: block; }
}

/* ---------- hero ---------- */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 7.5rem clamp(1.1rem, 4vw, 3rem) 4rem;
  position: relative;
}
.hero-copy .hud { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6.3vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 1.4rem;
  text-transform: uppercase;
}
/* staggered line reveal on load */
.hl-line { display: block; overflow: hidden; }
.hl-line > span { display: inline-block; transform: translateY(110%); }
html.js .hl-line > span { animation: linein 0.9s var(--ease) forwards; }
.hl-line:nth-child(2) > span { animation-delay: 90ms; }
.hl-line:nth-child(3) > span { animation-delay: 180ms; }
@keyframes linein { to { transform: none; } }
.hero h1 .gold { color: var(--gold); }
.hero-sub {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  max-width: 30em;
  margin: 0 0 2.2rem;
}
.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-meta {
  margin-top: 3rem;
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
}
.hero-meta div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}
.hero-meta div span { font-size: 0.8rem; color: var(--faint); }

.hero-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 74vh;
  justify-self: end;
  width: 100%;
  overflow: hidden;
  background: var(--bg-2);
}
.hero-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.02);
}
.hero-frame .tc-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.1rem;
  background: linear-gradient(transparent, rgba(8, 8, 10, 0.85));
  z-index: 2;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 6rem; }
  .hero-frame { aspect-ratio: 16 / 11; max-height: 48vh; justify-self: stretch; }
}

/* ---------- marquee ---------- */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  padding: 1.1rem 0;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 3.4rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}
.marquee-track span i { color: var(--gold); font-style: normal; margin-right: 3.4rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: clamp(5rem, 11vw, 9.5rem) clamp(1.1rem, 4vw, 3rem); }
.section-head { margin-bottom: clamp(2.2rem, 5vw, 4rem); max-width: 1200px; margin-left: auto; margin-right: auto; }
.section-head .hud { margin-bottom: 1rem; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 3.1rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.08;
  margin: 0;
}
.section-head h2 .gold { color: var(--gold); }
.section-head p { color: var(--muted); max-width: 44em; }
.section-inner { max-width: 1200px; margin: 0 auto; }

/* ---------- video work ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 1.4rem;
}
.work-card { background: var(--bg-2); overflow: hidden; }
.work-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  overflow: hidden;
  background: #000;
}
.work-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.work-thumb:hover img { transform: scale(1.045); filter: saturate(1.05); }
.work-thumb .play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}
.work-thumb .play b {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(8, 8, 10, 0.7);
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.work-thumb .play b::after {
  content: "";
  border-left: 14px solid var(--gold);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 3px;
}
.work-thumb:hover .play b { transform: scale(1.1); background: rgba(8, 8, 10, 0.9); }
.work-thumb iframe { width: 100%; height: 100%; border: 0; position: absolute; inset: 0; }
.work-info { padding: 1rem 1.1rem 1.2rem; }
.work-info h3 { font-size: 1.02rem; font-weight: 700; margin: 0 0 0.25rem; }
.work-info p { font-size: 0.85rem; color: var(--muted); margin: 0; }
.work-info .hud { display: block; margin-bottom: 0.5rem; }

/* ---------- filmstrip stills ---------- */
.strip-wrap {
  padding: 1.6rem 0;
  border-top: 14px solid var(--bg-2);
  border-bottom: 14px solid var(--bg-2);
  position: relative;
  background:
    repeating-linear-gradient(90deg, transparent 0 18px, var(--bg) 18px 30px) top / 100% 14px no-repeat,
    repeating-linear-gradient(90deg, transparent 0 18px, var(--bg) 18px 30px) bottom / 100% 14px no-repeat,
    var(--bg);
}
.strip {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 clamp(1.1rem, 4vw, 3rem);
  scrollbar-width: none;
}
.strip::-webkit-scrollbar { display: none; }
.strip figure {
  margin: 0;
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: min(320px, 74vw);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
}
.strip figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: filter 0.4s var(--ease), transform 0.6s var(--ease);
}
.strip figure:hover img { filter: saturate(1.08); transform: scale(1.03); }
.strip figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  background: linear-gradient(transparent, rgba(8, 8, 10, 0.8));
}

/* ---------- services ---------- */
.svc-rows { display: flex; flex-direction: column; }
.svc {
  display: grid;
  grid-template-columns: 0.42fr 1fr 0.5fr;
  gap: 2rem;
  align-items: center;
  padding: 2.4rem 0;
  border-top: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.svc:last-child { border-bottom: 1px solid var(--line); }
.svc:hover { background: rgba(244, 241, 234, 0.015); }
.svc-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.svc h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0.3rem 0 0;
}
.svc-desc { color: var(--muted); font-size: 0.97rem; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; justify-content: flex-end; }
@media (max-width: 820px) {
  .svc { grid-template-columns: 1fr; gap: 0.9rem; }
  .svc-tags { justify-content: flex-start; }
}

/* ---------- process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
  counter-reset: step;
}
.step {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  padding: 1.7rem 1.5rem 1.9rem;
  position: relative;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.step:hover { border-color: rgba(233, 185, 73, 0.45); transform: translateY(-4px); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin: 0.8rem 0 0.5rem; }
.step p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* ---------- booking form ---------- */
.book { background: var(--bg-2); border-top: 1px solid var(--line); }
.book-shell {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 4vw, 3rem);
  position: relative;
}
.book-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.2rem;
  gap: 1rem;
}
.book-bar { flex: 1; height: 2px; background: var(--line); position: relative; overflow: hidden; }
.book-bar i {
  position: absolute; inset: 0;
  background: var(--gold);
  transform-origin: left;
  transform: scaleX(0.33);
  transition: transform 0.5s var(--ease);
}
fieldset.bstep { border: 0; padding: 0; margin: 0; min-width: 0; }
.bstep { display: none; }
.bstep.active { display: block; animation: stepin 0.45s var(--ease); }
@keyframes stepin { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: none; } }
.bstep h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}
.svc-pick {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.8rem;
}
.svc-pick button {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 1.3rem 1rem;
  text-align: left;
  border-radius: 10px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.18s var(--ease);
}
.svc-pick button:hover { border-color: rgba(233, 185, 73, 0.5); }
.svc-pick button:active { transform: scale(0.98); }
.svc-pick button.sel { border-color: var(--gold); background: var(--gold-soft); }
.svc-pick b { display: block; font-size: 0.98rem; margin-bottom: 0.25rem; }
.svc-pick span { font-size: 0.78rem; color: var(--muted); }
.bgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.bgrid .wide { grid-column: 1 / -1; }
@media (max-width: 620px) { .bgrid { grid-template-columns: 1fr; } }
.bnav { display: flex; justify-content: space-between; margin-top: 2rem; gap: 1rem; }
.berr { color: var(--red); font-size: 0.85rem; min-height: 1.4em; margin-top: 1rem; }

.book-done { text-align: center; padding: 2rem 0; }
.book-done .big {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 1rem 0 0.6rem;
}
.book-done p { color: var(--muted); max-width: 34em; margin: 0 auto 1.6rem; }
.portal-link {
  display: block;
  background: var(--bg-2);
  border: 1px dashed rgba(233, 185, 73, 0.5);
  padding: 1rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  word-break: break-all;
  color: var(--gold);
  margin-bottom: 1.4rem;
  border-radius: 8px;
}

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem clamp(1.1rem, 4vw, 3rem) 2.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer .hud { margin-top: 0.8rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { color: var(--muted); font-size: 0.92rem; transition: color 0.25s var(--ease); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ============================================================
   v2 — interactive futurism layer
   ============================================================ */

/* hero ghost word + scroll cue */
.hero { position: relative; overflow: hidden; }
.hero-ghost {
  position: absolute;
  left: 50%;
  bottom: -0.18em;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(8rem, 24vw, 22rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 241, 234, 0.05);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
.hero-copy, .hero-frame { position: relative; z-index: 1; }
.scroll-cue {
  position: absolute;
  left: clamp(1.1rem, 4vw, 3rem);
  bottom: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  color: var(--faint);
  z-index: 2;
}
.scroll-cue i {
  display: block;
  width: 42px;
  height: 1.5px;
  background: var(--gold);
  transform-origin: left;
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue { 0% { transform: scaleX(0); } 55% { transform: scaleX(1); } 100% { transform: scaleX(0); transform-origin: right; } }
@media (max-width: 900px) { .scroll-cue { display: none; } .hero-ghost { font-size: 7rem; } }

/* custom cursor */
.cursor-dot, .cursor-ring { display: none; }
@media (hover: hover) and (pointer: fine) {
  html.js .cursor-dot {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    pointer-events: none;
    z-index: 3000;
    transform: translate(-50%, -50%);
  }
  html.js .cursor-ring {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(233, 185, 73, 0.55);
    pointer-events: none;
    z-index: 2999;
    transform: translate(-50%, -50%);
    transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s var(--ease), opacity 0.25s var(--ease);
  }
  html.js .cursor-ring.hot { width: 56px; height: 56px; border-color: var(--gold); }
  html.js .cursor-ring.hidden, html.js .cursor-dot.hidden { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* service hover preview (desktop) */
.svc-rows { position: relative; }
.svc-preview {
  display: none;
  position: fixed;
  width: 230px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  pointer-events: none;
  z-index: 60;
  opacity: 0;
  transform: scale(0.94) rotate(2.5deg);
  transition: opacity 0.25s var(--ease), transform 0.35s var(--ease);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  border: 1px solid var(--line);
}
@media (hover: hover) and (pointer: fine) {
  .svc-preview { display: block; }
  .svc-preview.on { opacity: 1; transform: scale(1) rotate(2.5deg); }
}
.svc { cursor: default; }
.svc h3 { font-size: clamp(1.5rem, 3.2vw, 2.5rem); }

/* digitals band — gold drench */
.digitals {
  background: linear-gradient(115deg, #f0c45c 0%, var(--gold) 55%, #d6a233 100%);
  color: #151003;
  padding: clamp(4.5rem, 10vw, 8.5rem) clamp(1.1rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
.digitals::after {
  content: "DIGITALS";
  position: absolute;
  right: -0.1em;
  bottom: -0.22em;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(6rem, 17vw, 15rem);
  line-height: 1;
  color: rgba(21, 16, 3, 0.06);
  pointer-events: none;
  white-space: nowrap;
}
.digitals-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 880px) { .digitals-inner { grid-template-columns: 1fr; } }
.digitals h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  text-transform: uppercase;
  margin: 1rem 0 1.2rem;
}
.digitals h2 .price { color: #fdf6e3; text-shadow: 0 2px 0 rgba(21,16,3,0.18); }
.digitals p { font-size: 1.08rem; max-width: 30em; font-weight: 500; margin: 0 0 1.4rem; }
.digitals-points { list-style: none; padding: 0; margin: 0; }
.digitals-points li {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0 0.5rem 1.7rem;
  position: relative;
}
.digitals-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.95em;
  width: 9px; height: 9px;
  background: #151003;
}
.hud.ink { color: rgba(21, 16, 3, 0.65); }
.hud.ink .tick { color: #151003; }
.hud.ink.small { display: block; margin-top: 0.9rem; font-size: 0.55rem; text-align: center; }
.berr.ink { color: #8c1d1d; }

.digitals-form {
  background: rgba(8, 8, 10, 0.92);
  border: 1.5px solid #151003;
  box-shadow: 10px 10px 0 rgba(21, 16, 3, 0.35);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.digitals-form .field { margin-bottom: 1rem; }
.digitals-form .dgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .digitals-form .dgrid { grid-template-columns: 1fr; } }
.btn-ink {
  background: var(--gold);
  color: #151003;
  width: 100%;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 1em 1.6em;
}
.btn-ink:hover { background: #f5cd6b; }

/* booking hint */
.hint { font-size: 0.85rem; color: var(--muted); margin: 1.2rem 0 0; }
.hint a { text-decoration: underline; text-underline-offset: 3px; }

/* FAQ */
.faq-list { max-width: 820px; }
.faq-list details {
  border-top: 1px solid var(--line);
}
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0.2rem;
  font-weight: 600;
  font-size: 1.08rem;
  transition: color 0.25s var(--ease);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--gold); }
.faq-list summary i {
  flex: 0 0 auto;
  width: 14px; height: 14px;
  position: relative;
}
.faq-list summary i::before, .faq-list summary i::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transition: transform 0.3s var(--ease);
}
.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0deg); }
.faq-body { overflow: hidden; }
.faq-body p { color: var(--muted); margin: 0 0 1.4rem; max-width: 60ch; }

/* closing peak */
.outro {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(6rem, 14vw, 12rem) 1.2rem;
  border-top: 1px solid var(--line-soft);
}
.outro-ghost {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4.5rem, 16vw, 15rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(233, 185, 73, 0.1);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.outro-inner { position: relative; z-index: 1; }
.outro h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 8vw, 6.5rem);
  text-transform: uppercase;
  margin: 1rem 0 2rem;
  line-height: 1;
}
.outro h2 .gold { color: var(--gold); }
.btn-big { font-size: 1.1rem; padding: 1.1em 2.6em; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(8, 8, 10, 0.94);
  display: grid;
  place-items: center;
  padding: 4vh 4vw;
}
.lightbox[hidden] { display: none; }
.lightbox figure {
  margin: 0;
  max-width: min(900px, 92vw);
  max-height: 88vh;
  position: relative;
}
.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  display: block;
}
.lightbox figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.9rem 1.1rem;
  background: linear-gradient(transparent, rgba(8, 8, 10, 0.85));
  color: var(--text);
}
.lightbox-close {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  background: none;
  border: 1px solid var(--line);
  color: var(--text);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1rem;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.18s var(--ease);
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-close:active { transform: scale(0.94); }

/* GSAP pinned strip: desktop scrub mode */
@media (min-width: 901px) {
  html.js.scrub .strip { overflow-x: visible; }
}
