:root {
  --bg: #070707;
  --bg-soft: #101010;
  --panel: #151515;
  --text: #f6f1e7;
  --muted: #a8a096;
  --gold: #c7a669;
  --gold-light: #e2ca95;
  --line: rgba(255, 255, 255, 0.1);
  --max-width: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, iframe { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: linear-gradient(to bottom, rgba(0,0,0,.78), transparent);
  transition: .3s ease;
}
.site-header.scrolled {
  background: rgba(7,7,7,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: .22em;
  font-size: .85rem;
  font-weight: 600;
}
.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  gap: 34px;
  font-size: .84rem;
  color: rgba(255,255,255,.78);
}
.main-nav a { position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -7px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.main-nav a:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 26px; height: 1px;
  margin: 7px 0;
  background: white;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 7vw 100px;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-image {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 34%, rgba(201,160,85,.34), transparent 22%),
    radial-gradient(circle at 60% 70%, rgba(63,74,96,.22), transparent 28%),
    linear-gradient(110deg, #050505 16%, #17120e 53%, #080808 100%);
  transform: scale(1.04);
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.017) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.017) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent, black, transparent);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--bg) 0%, transparent 30%),
    linear-gradient(to right, rgba(0,0,0,.38), transparent 65%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: .28em;
  font-weight: 600;
}
h1, h2, h3 { margin-top: 0; }
h1, h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}
h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7.3vw, 7rem);
  line-height: .94;
  letter-spacing: -.04em;
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -.03em;
}
.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.72);
  font-size: 1.1rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--gold);
  color: #0b0b0b;
  font-weight: 600;
}
.button-primary:hover { background: var(--gold-light); }
.button-secondary {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.03);
}
.hero-stats {
  position: absolute;
  z-index: 2;
  right: 7vw;
  bottom: 44px;
  display: flex;
  gap: 44px;
}
.hero-stats div {
  display: flex;
  flex-direction: column;
}
.hero-stats strong {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
}
.hero-stats span {
  color: var(--muted);
  font-size: .73rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.section { padding: 120px 7vw; }
.section-heading {
  max-width: var(--max-width);
  margin: 0 auto 56px;
}
.section-heading > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}
.latest-release { background: #0b0b0b; }
.release-card {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 440px) 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.release-art {
  aspect-ratio: 1;
  background: #111;
  box-shadow: 0 30px 80px rgba(0,0,0,.48);
}
.release-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.track-type {
  color: var(--gold);
  text-transform: uppercase;
  font-size: .76rem;
  letter-spacing: .22em;
}
.release-info h3 {
  margin-bottom: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 500;
}
.track-description {
  max-width: 580px;
  color: var(--muted);
}
.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 32px;
}
.platform-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  font-size: .9rem;
}
.dark-section { background: var(--bg-soft); }
.split-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 60px;
  align-items: end;
}
.video-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 28px;
}
.video-card {
  background: #0b0b0b;
  border: 1px solid var(--line);
  transition: transform .3s ease, border-color .3s ease;
}
.video-card:hover {
  transform: translateY(-5px);
  border-color: rgba(199,166,105,.45);
}
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.035); }
.play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,0,0,.62);
  border: 1px solid rgba(255,255,255,.38);
  backdrop-filter: blur(8px);
  font-size: 1.2rem;
}
.video-meta { padding: 24px; }
.video-meta p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.video-meta h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 500;
}
.center-action {
  max-width: var(--max-width);
  margin: 42px auto 0;
  text-align: center;
}
.text-link { color: var(--gold-light); }

.catalog-section { background: #0a0a0a; }
.track-list {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.track-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.track-number {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
}
.track-row h3 {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 500;
}
.track-row p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}
.track-link {
  color: var(--gold-light);
  font-size: .86rem;
}
.about-section {
  background:
    radial-gradient(circle at 16% 40%, rgba(190,148,75,.12), transparent 32%),
    #0e0e0e;
}
.about-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,.03), transparent);
}
.about-visual img {
  width: 54%;
}
.about-copy p:not(.eyebrow) { color: var(--muted); }
.contact-section { background: #090909; }
.contact-panel {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(40px,8vw,100px);
  text-align: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(255,255,255,.015), rgba(255,255,255,.015)),
    radial-gradient(circle at 50% 0%, rgba(191,150,74,.13), transparent 46%);
}
.contact-panel p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 32px;
  color: var(--muted);
}
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 50px 7vw;
  border-top: 1px solid var(--line);
  background: #060606;
}
.footer-logo {
  color: var(--gold-light);
  letter-spacing: .28em;
  font-weight: 600;
}
.site-footer p {
  color: var(--muted);
  font-size: .82rem;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: start;
  font-size: .86rem;
}
.copyright {
  grid-column: 1/-1;
  margin: 20px 0 0;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1002;
  }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    background: rgba(7,7,7,.98);
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
  }
  .menu-open .main-nav {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }
  .release-card,
  .split-heading,
  .video-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    display: none;
  }
  .site-footer {
    grid-template-columns: 1fr;
  }
  .copyright {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 68px;
    padding: 0 22px;
  }
  .brand-name { font-size: .72rem; }
  .hero, .section {
    padding-left: 22px;
    padding-right: 22px;
  }
  .hero { min-height: 92vh; }
  h1 { font-size: 3.45rem; }
  .track-row {
    grid-template-columns: 44px 1fr;
  }
  .track-link {
    grid-column: 2;
  }
  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }
}


.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

button {
  font: inherit;
}

.video-card-button {
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.track-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.track-play,
.track-video {
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-light);
  background: transparent;
  cursor: pointer;
}

.media-modal {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.media-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.media-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(12px);
}

.media-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1000px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(199,166,105,.35);
  background: #0c0c0c;
  box-shadow: 0 40px 120px rgba(0,0,0,.7);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  border: 0;
  color: white;
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
}

.modal-video {
  position: relative;
  width: 100%;
}

.modal-video:not(:empty) {
  aspect-ratio: 16 / 9;
  margin-top: 28px;
}

.modal-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-message {
  margin: 24px 0 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

body.modal-open {
  overflow: hidden;
}

.audio-player {
  position: fixed;
  z-index: 2200;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: grid;
  grid-template-columns: 64px minmax(150px, 1fr) auto minmax(240px, 1.2fr) 140px auto;
  gap: 18px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(199,166,105,.35);
  background: rgba(10,10,10,.94);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 70px rgba(0,0,0,.62);
  transform: translateY(150%);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}

.audio-player.visible {
  transform: translateY(0);
  opacity: 1;
}

.player-cover {
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.player-track {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.player-track strong,
.player-track span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-track strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.player-track span {
  color: var(--muted);
  font-size: .72rem;
}

.player-main-controls,
.player-progress,
.player-volume {
  display: flex;
  align-items: center;
  gap: 10px;
}

.player-icon,
.player-play,
.player-close {
  border: 0;
  color: white;
  background: transparent;
  cursor: pointer;
}

.player-play {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #080808;
  background: var(--gold);
  font-size: 1rem;
}

.player-progress span {
  min-width: 38px;
  color: var(--muted);
  font-size: .7rem;
}

.player-progress input,
.player-volume input {
  width: 100%;
  accent-color: var(--gold);
}

.player-close {
  font-size: 1.55rem;
}

body:has(.audio-player.visible) {
  padding-bottom: 115px;
}

@media (max-width: 980px) {
  .audio-player {
    grid-template-columns: 56px 1fr auto auto;
  }

  .player-cover {
    width: 56px;
    height: 56px;
  }

  .player-progress {
    grid-column: 1 / -1;
    order: 5;
  }

  .player-volume {
    display: none;
  }
}

@media (max-width: 560px) {
  .audio-player {
    left: 8px;
    right: 8px;
    bottom: 8px;
    grid-template-columns: 48px 1fr auto;
    gap: 10px;
    padding: 10px;
  }

  .player-cover {
    width: 48px;
    height: 48px;
  }

  .player-main-controls .player-icon {
    display: none;
  }

  .player-close {
    position: absolute;
    top: 2px;
    right: 7px;
  }

  .track-actions {
    grid-column: 2;
  }
}


.now-playing-section {
  padding: 110px 7vw;
  background:
    radial-gradient(circle at 50% 50%, rgba(199,166,105,.09), transparent 44%),
    #080808;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.now-playing-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
  align-items: center;
}

.now-playing-inner > div:first-child p:not(.eyebrow) {
  color: var(--muted);
}

.visualizer-shell {
  position: relative;
  min-height: 290px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(199,166,105,.24);
  background:
    linear-gradient(rgba(255,255,255,.012), rgba(255,255,255,.012)),
    radial-gradient(circle at center, rgba(199,166,105,.08), transparent 58%);
}

#main-visualizer {
  width: 100%;
  height: 290px;
}

.visualizer-idle {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity .3s ease;
}

.visualizer-idle.hidden {
  opacity: 0;
}

.visualizer-idle span {
  width: 5px;
  height: 28px;
  background: var(--gold);
  animation: idlePulse 1.7s ease-in-out infinite;
  opacity: .65;
}

.visualizer-idle span:nth-child(3n) { animation-delay: .2s; height: 56px; }
.visualizer-idle span:nth-child(2n) { animation-delay: .4s; height: 40px; }
.visualizer-idle span:nth-child(5n) { animation-delay: .6s; height: 74px; }

@keyframes idlePulse {
  0%, 100% { transform: scaleY(.4); opacity: .25; }
  50% { transform: scaleY(1); opacity: .9; }
}

.track-detail-modal {
  position: fixed;
  z-index: 3100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.track-detail-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.track-detail-panel {
  position: relative;
  z-index: 1;
  width: min(1050px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(199,166,105,.35);
  background: #0b0b0b;
  box-shadow: 0 40px 120px rgba(0,0,0,.72);
}

.track-detail-grid {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.track-detail-grid > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.track-detail-style {
  color: var(--gold-light);
  font-size: .88rem;
  letter-spacing: .08em;
}

.track-detail-copy > p:not(.eyebrow):not(.track-detail-style) {
  color: var(--muted);
}

.track-detail-actions {
  margin-top: 28px;
}

.track-detail-actions .platform-links {
  margin-top: 24px;
}

.mini-visualizer {
  width: 150px;
  height: 42px;
}

.audio-player {
  grid-template-columns: 64px minmax(150px, 1fr) auto 150px minmax(220px, 1.2fr) 120px auto;
}

@media (max-width: 1100px) {
  .audio-player {
    grid-template-columns: 56px 1fr auto 120px auto;
  }
  .player-progress {
    grid-column: 1 / -1;
  }
  .player-volume {
    display: none;
  }
}

@media (max-width: 820px) {
  .now-playing-inner,
  .track-detail-grid {
    grid-template-columns: 1fr;
  }

  .now-playing-inner {
    gap: 34px;
  }

  .visualizer-shell {
    min-height: 220px;
  }

  #main-visualizer {
    height: 220px;
  }
}

@media (max-width: 560px) {
  .mini-visualizer {
    display: none;
  }

  .now-playing-section {
    padding-left: 22px;
    padding-right: 22px;
  }
}


/* Cinematic Pupasee Hero */
.cinematic-page,
.cinematic-page a,
.cinematic-page button,
.cinematic-page input,
.cinematic-page select,
.cinematic-page textarea {
  cursor: none !important;
}

.custom-cursor,
.custom-cursor-dot {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  pointer-events: none;
}

.custom-cursor {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(226, 202, 149, .65);
  border-radius: 50%;
  transition: width .22s ease, height .22s ease, background .22s ease, border-color .22s ease;
}

.custom-cursor-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-light);
}

.cursor-hover .custom-cursor {
  width: 54px;
  height: 54px;
  background: rgba(199, 166, 105, .12);
  border-color: var(--gold-light);
}

.cinematic-hero {
  --scroll-progress: 0;
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  transform: scale(calc(1 - var(--scroll-progress) * .035));
  opacity: calc(1 - var(--scroll-progress) * .3);
}

.hero-video,
.hero-fallback,
.hero-vignette,
.mouse-light,
.floating-particles {
  position: absolute;
  inset: 0;
}

.hero-video {
  z-index: -5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.08) brightness(.62);
  transform: scale(calc(1.05 + var(--scroll-progress) * .05));
}

.hero-fallback {
  z-index: -6;
  background:
    radial-gradient(circle at 68% 30%, rgba(213, 168, 83, .32), transparent 23%),
    radial-gradient(circle at 38% 72%, rgba(65, 78, 103, .2), transparent 32%),
    linear-gradient(115deg, #050505, #17110d 58%, #050505);
}

.hero-vignette {
  z-index: -3;
  background:
    radial-gradient(circle at center, transparent 22%, rgba(0,0,0,.38) 68%, rgba(0,0,0,.84) 100%),
    linear-gradient(to top, #070707 0%, transparent 30%);
}

.mouse-light {
  z-index: -2;
  width: 620px;
  height: 620px;
  margin-left: -310px;
  margin-top: -310px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 183, 113, .12), rgba(218, 183, 113, .035) 34%, transparent 68%);
  filter: blur(10px);
  transition: left .08s linear, top .08s linear;
}

.floating-particles {
  z-index: -1;
  overflow: hidden;
}

.floating-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(226, 202, 149, .8);
  box-shadow: 0 0 14px rgba(226, 202, 149, .6);
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(30px) scale(.7); opacity: 0; }
  20% { opacity: .45; }
  80% { opacity: .25; }
  100% { transform: translateY(-120px) scale(1.5); opacity: 0; }
}

.cinematic-content {
  width: min(1000px, 90%);
  padding: 110px 0 80px;
  text-align: center;
  transform: translateY(calc(var(--scroll-progress) * -70px));
}

.cinematic-logo-wrap {
  position: relative;
  width: 122px;
  height: 122px;
  margin: 0 auto 34px;
  overflow: hidden;
  border-radius: 50%;
  animation: logoArrival 1.6s cubic-bezier(.2,.8,.2,1) both;
}

.cinematic-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(199,166,105,.18));
}

.logo-shine {
  position: absolute;
  top: -25%;
  left: -45%;
  width: 26%;
  height: 150%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.78), transparent);
  transform: rotate(18deg);
  animation: logoShine 4.8s 1.4s ease-in-out infinite;
}

@keyframes logoArrival {
  from { opacity: 0; transform: scale(.78) translateY(20px); filter: blur(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}

@keyframes logoShine {
  0%, 58% { left: -45%; opacity: 0; }
  68% { opacity: .75; }
  82% { left: 120%; opacity: 0; }
  100% { left: 120%; opacity: 0; }
}

.cinematic-kicker {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .38em;
  animation: textArrival 1.2s .35s both;
}

.cinematic-content h1 {
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 7.7vw, 7.6rem);
  line-height: .88;
  letter-spacing: -.045em;
  animation: textArrival 1.4s .5s both;
}

.cinematic-content h1 span {
  color: rgba(255,255,255,.84);
}

.cinematic-subtitle {
  max-width: 670px;
  margin: 0 auto 38px;
  color: rgba(255,255,255,.66);
  font-size: 1.05rem;
  animation: textArrival 1.3s .75s both;
}

@keyframes textArrival {
  from { opacity: 0; transform: translateY(25px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.cinematic-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  animation: textArrival 1.3s .95s both;
}

.journey-button,
.ambient-toggle {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.journey-button {
  gap: 20px;
  padding: 0 25px 0 30px;
  border: 1px solid rgba(226,202,149,.62);
  color: var(--text);
  background: rgba(7,7,7,.28);
  backdrop-filter: blur(12px);
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.journey-button:hover {
  color: #090909;
  background: var(--gold-light);
  transform: translateY(-3px);
}

.ambient-toggle {
  gap: 10px;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.66);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
}

.ambient-toggle.active {
  color: var(--gold-light);
  border-color: rgba(199,166,105,.5);
}

.ambient-icon {
  font-size: 1.4rem;
}

.hero-scroll-line {
  position: absolute;
  left: 50%;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.42);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll-line span {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(.45); transform-origin: top; opacity: .4; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 760px) {
  .cinematic-page,
  .cinematic-page a,
  .cinematic-page button,
  .cinematic-page input,
  .cinematic-page select,
  .cinematic-page textarea {
    cursor: auto !important;
  }

  .custom-cursor,
  .custom-cursor-dot,
  .mouse-light {
    display: none;
  }

  .cinematic-logo-wrap {
    width: 92px;
    height: 92px;
  }

  .cinematic-content h1 {
    font-size: 3.8rem;
  }

  .cinematic-subtitle {
    font-size: .96rem;
  }
}

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

  .cinematic-hero {
    transform: none;
    opacity: 1;
  }
}
