:root {
  --bg: #070708;
  --bg-2: #101113;
  --paper: #f4efe4;
  --muted: #9c978c;
  --accent: #d8ff3c;
  --line: rgba(244, 239, 228, 0.12);
  --safe: max(20px, env(safe-area-inset-left));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html.intro-lock,
html.intro-lock body {
  overflow: hidden;
  height: 100%;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--paper);
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  background: #050506;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.intro-stage {
  position: relative;
  width: min(100vw, calc(100dvh * 2 / 3));
  height: min(100dvh, calc(100vw * 3 / 2));
}

.intro video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.intro-cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  padding: 48px 20px 7%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.intro.is-ready .intro-cta {
  opacity: 1;
  pointer-events: auto;
}

#start-experience {
  padding: 16px 28px;
  border: 1px solid var(--accent);
  background: #111;
  color: var(--accent);
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

#start-experience:hover {
  transform: translateY(-2px);
  background: var(--accent);
  color: #111;
  box-shadow: 0 12px 32px rgba(216, 255, 60, 0.28);
}

.intro.is-done {
  opacity: 0;
  visibility: hidden;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 8;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.nav {
  position: sticky;
  top: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 48px);
  background: rgba(7, 7, 8, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 13px;
}

.brand-mark {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--accent);
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-meta {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sound-toggle {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.sound-toggle svg {
  width: 16px;
  height: 16px;
}

.sound-toggle .sound-on,
.sound-toggle.is-on .sound-off {
  display: none;
}

.sound-toggle.is-on .sound-on,
.sound-toggle .sound-off {
  display: block;
}

.sound-toggle:hover,
.sound-toggle.is-on {
  color: var(--accent);
  border-color: rgba(216, 255, 60, 0.45);
}

.sound-toggle.is-on {
  background: rgba(216, 255, 60, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: calc(100vh - 61px);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 62vh;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.05);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 40%, rgba(7, 7, 8, 0.55) 100%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 80px);
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 255, 60, 0.08), transparent 38%),
    var(--bg);
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 18px 0 22px;
  font-family: "Syne", sans-serif;
  font-size: clamp(56px, 9vw, 118px);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.05em;
  color: #fff;
}

h1 em {
  font-style: normal;
  color: var(--accent);
}

.lead {
  max-width: 38ch;
  color: #d7d1c4;
  font-size: clamp(16px, 2vw, 19px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero-stats strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.hero-stats span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notice {
  padding: 28px clamp(20px, 4vw, 48px);
  border-block: 1px solid var(--line);
  background: #0c0c0e;
}

.notice p {
  max-width: 78ch;
  color: #c8c2b5;
  font-size: 15px;
}

.gallery-wrap {
  padding: 72px clamp(20px, 4vw, 48px) 96px;
}

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

h2 {
  margin-top: 8px;
  font-family: "Syne", sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.gallery-hint {
  color: var(--muted);
  font-size: 13px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d8d2c5;
  font-size: 13px;
  transition: 0.2s ease;
}

.filter:hover,
.filter.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}

.grid {
  columns: 3;
  column-gap: 12px;
}

.card {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  cursor: zoom-in;
}

.card img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.card:hover img {
  transform: scale(1.04);
}

.card span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 5px 9px;
  background: rgba(7, 7, 8, 0.72);
  backdrop-filter: blur(8px);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card.is-hidden {
  display: none;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(20px, 4vw, 48px);
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-kicker {
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-copy p:nth-of-type(2) {
  max-width: 36ch;
  color: #c9c3b6;
}

.music-credit {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.music-credit a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.whatsapp {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0 0 0 rgba(216, 255, 60, 0.35);
}

.whatsapp svg {
  width: 36px;
  height: 36px;
}

.whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 32px rgba(216, 255, 60, 0.28);
}

.lightbox {
  inset: 0;
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 72px 88px 56px;
  border: 0;
  background: #050506;
}

.lightbox::backdrop {
  background: #050506;
}

.lightbox img {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 140px);
  margin: 0 auto;
  object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
}

.lightbox-close {
  top: 18px;
  right: 22px;
  color: var(--paper);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

.lightbox-nav {
  top: 50%;
  translate: 0 -50%;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}

.lightbox-nav.prev {
  left: 18px;
}

.lightbox-nav.next {
  right: 18px;
}

.lightbox-meta {
  margin-top: 12px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-veil {
    background: linear-gradient(180deg, transparent 50%, rgba(7, 7, 8, 0.78) 100%);
  }

  .hero-copy {
    padding-top: 36px;
  }

  .grid {
    columns: 2;
  }
}

@media (max-width: 640px) {
  .nav-meta {
    display: none;
  }

  h1 {
    font-size: 58px;
  }

  .gallery-head {
    align-items: start;
    flex-direction: column;
  }

  .grid {
    columns: 1;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .lightbox-nav {
    top: auto;
    bottom: 22px;
    translate: 0;
  }
}
