/* Cinematic hero treatment */
.hero {
  height: 100svh;
  min-height: 700px;
  background: #090909;
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.hero::before {
  inset: 0;
  background: radial-gradient(ellipse at 67% 38%, transparent 5%, rgba(0, 0, 0, .12) 36%, rgba(0, 0, 0, .75) 100%);
}
.hero::after {
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
}
.hero-image {
  filter: saturate(.84) contrast(1.18) brightness(.72);
  transform: scale(1.09);
  animation: cinema-push 16s cubic-bezier(.2, .55, .25, 1) both;
}
.hero-shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .55) 37%, rgba(0, 0, 0, .06) 74%), linear-gradient(0deg, rgba(0, 0, 0, .72), transparent 48%), linear-gradient(140deg, rgba(255, 145, 0, .13), transparent 42%);
}
.hero-copy { z-index: 2; top: 29vh; left: 11vw; max-width: 720px; }
.hero-copy .eyebrow { color: #d7d7d2; margin-bottom: 34px; }
.hero h1 { font-size: clamp(54px, 6.8vw, 105px); line-height: 1.18; letter-spacing: .09em; text-shadow: 0 7px 30px rgba(0, 0, 0, .38); }
.hero h1 em { color: #f1b43e; }
.hero-line { display: block; overflow: hidden; }
.hero-line::first-letter { letter-spacing: .09em; }
.hero-line { animation: title-flow 2.4s cubic-bezier(.18, .85, .2, 1) both; }
.hero-line:nth-child(2) { animation-delay: .42s; }
.hero-lead { margin-top: 36px; font-size: 13px; line-height: 2.2; color: #f4f2ed; }
.hero-marquee {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 116px;
  overflow: hidden;
  pointer-events: none;
  padding: 25px 0 23px;
  color: rgba(255, 255, 255, .86);
}
.hero-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding-left: 100%;
  gap: 30px;
  white-space: nowrap;
  animation: hero-ticker 32s linear infinite;
}
.hero-marquee span { color: rgba(255, 255, 255, .2); font: 400 clamp(45px, 5.2vw, 78px) 'Italianno', cursive; letter-spacing: 1px; line-height: .7; }
.hero-marquee b { color: rgba(225, 169, 50, .28); font-size: 30px; }
.hero-instagram {
  position: absolute;
  z-index: 3;
  bottom: 35px;
  left: 11vw;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  text-decoration: none;
  font: 600 11px Montserrat, sans-serif;
  letter-spacing: 1.5px;
}
.hero-instagram span { color: rgba(255, 255, 255, .58); font: 9px 'DM Mono', monospace; letter-spacing: 1px; }
.hero-instagram b { color: #e1a932; font-size: 16px; }
.hero-cta { z-index: 3; right: 5.2vw; bottom: 17px; background: #e1a932; width: 293px; }
.hero-cta {
  display: block;
  min-width: 0;
  padding: 21px 62px 21px 23px;
  text-align: left;
}
.hero-cta span,
.hero-cta b {
  display: block;
  white-space: nowrap;
}
.hero-cta span { margin-bottom: 8px; }
.hero-cta b { font-size: 14px; }
.hero-cta i {
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translateY(-50%);
}
.scroll, .hero-number { z-index: 3; }
.hero-number { right: 34vw; bottom: 53px; color: #f1b43e; }
.header { z-index: 4; }
@keyframes cinema-push { from { transform: scale(1.1); } to { transform: scale(1); } }
@keyframes title-flow {
  from { opacity: 0; transform: translateX(-22%); filter: blur(8px); }
  to { opacity: 1; transform: translateX(0); filter: blur(0); }
}
@keyframes hero-ticker { to { transform: translateX(-50%); } }
.mobile-only { display: none; }
@media (max-width: 700px) {
  .hero { min-height: 690px; }
  .hero::after { inset: 10px; }
  .hero-image { background-position: 61% center; }
  .hero-copy { top: 22vh; left: 9vw; right: 6vw; }
  .hero h1 { font-size: clamp(34px, 9.5vw, 40px); letter-spacing: .02em; }
  .hero-line { white-space: nowrap; }
  .hero-lead { font-size: 12px; margin-top: 27px; }
  .hero-cta { bottom: 10px; right: 10px; width: min(270px, calc(100vw - 20px)); padding: 18px 53px 18px 19px; }
  .hero-cta i { right: 19px; }
  .hero-marquee { bottom: 115px; padding: 17px 0; }
  .hero-marquee-track { gap: 22px; animation-duration: 24s; }
  .hero-marquee span { font-size: 42px; letter-spacing: .5px; }
  .hero-instagram { left: 7vw; bottom: 33px; font-size: 10px; }
  .hero-instagram span { display: none; }
  .scroll { display: none; }
  .mobile-only { display: block; }
  .hero-number { display: none; }
}
