:root {
  --ink: #061711;
  --deep: #0b251b;
  --palm: #134d32;
  --leaf: #1f7445;
  --gold: #ffe944;
  --sun: #ffb23e;
  --reef: #00b3a4;
  --paper: #fbf8e8;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--ink);
  color: var(--paper);
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(6, 23, 17, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}
.brand { width: 92px; }
.brand img, footer img { display: block; width: 100%; height: auto; }
.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(251, 248, 232, 0.82);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}
.nav-links a:hover, .header-cta:hover { color: var(--gold); }

.header-cta, .button, .contact-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 233, 68, 0.52);
  border-radius: 6px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.button:hover, .contact-card button:hover { transform: translateY(-2px); }
.header-cta { color: var(--gold); font-size: 0.82rem; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 36px;
  min-height: 92vh;
  padding: 156px clamp(22px, 5vw, 72px) 70px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 23, 17, 0.92), rgba(6, 23, 17, 0.7) 48%, rgba(6, 23, 17, 0.94)),
    radial-gradient(circle at 73% 26%, rgba(255, 233, 68, 0.24), transparent 26%),
    url("assets/event-photos/image1.jpg") center / cover no-repeat,
    linear-gradient(135deg, rgba(19, 77, 50, 0.96), rgba(6, 23, 17, 0.98) 62%),
    var(--ink);
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -34% -10%;
  height: 56%;
  background:
    linear-gradient(90deg, rgba(0, 179, 164, 0.16), rgba(255, 233, 68, 0.14)),
    repeating-linear-gradient(110deg, transparent 0 22px, rgba(255, 255, 255, 0.05) 23px 24px);
  transform: skewY(-6deg);
}
.hero-content, .hero-panel, .hero-mark { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  line-height: 0.92;
}
h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(4.7rem, 14vw, 11rem);
  text-transform: uppercase;
}
h2 { margin-bottom: 0; font-size: clamp(3rem, 7vw, 6.2rem); }
h3 { margin-bottom: 12px; font-size: 1.25rem; }
p { color: rgba(251, 248, 232, 0.76); line-height: 1.7; }
.hero-copy { max-width: 670px; font-size: clamp(1.05rem, 2vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.primary { background: var(--gold); color: var(--ink); }
.secondary { background: rgba(251, 248, 232, 0.08); color: var(--paper); }

.hero-panel {
  align-self: end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 23, 17, 0.7);
  box-shadow: var(--shadow);
}
.panel-photo {
  position: relative;
  height: 250px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255, 233, 68, 0.32);
}
.panel-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(6, 23, 17, 0.28));
}
.panel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-panel strong { display: block; margin-bottom: 8px; font-size: 1.1rem; }
.hero-panel p { margin-bottom: 0; }

.hero-mark {
  position: absolute;
  right: clamp(18px, 8vw, 150px);
  top: 118px;
  width: 290px;
  height: 290px;
  opacity: 0.9;
}
.sun-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold), var(--sun));
  mask-image: repeating-linear-gradient(to bottom, #000 0 22px, transparent 22px 34px);
}
.bars { position: absolute; right: -32px; bottom: 28px; display: flex; align-items: end; gap: 8px; }
.bars span { width: 12px; border-radius: 999px; background: var(--reef); }
.bars span:nth-child(1) { height: 48px; }
.bars span:nth-child(2) { height: 94px; }
.bars span:nth-child(3) { height: 132px; }
.bars span:nth-child(4) { height: 78px; }
.bars span:nth-child(5) { height: 116px; }

.ticker,
.countdown-section,
.metrics, .section, .spotlight-band, .image-break, .rsvp-section, .contact, footer {
  padding-left: clamp(22px, 5vw, 72px);
  padding-right: clamp(22px, 5vw, 72px);
}
.ticker {
  display: flex;
  gap: 10px;
  overflow: hidden;
  padding-top: 16px;
  padding-bottom: 16px;
  background: var(--gold);
  color: var(--ink);
  white-space: nowrap;
}
.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(6, 23, 17, 0.22);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}
.countdown-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 54px;
  background:
    radial-gradient(circle at 82% 22%, rgba(0, 179, 164, 0.18), transparent 25%),
    #071b14;
}
.countdown-section h2 {
  font-size: clamp(3rem, 6vw, 5.2rem);
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.countdown div {
  min-height: 122px;
  padding: 18px 12px;
  border: 1px solid rgba(255, 233, 68, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 233, 68, 0.1), rgba(6, 23, 17, 0.72));
  text-align: center;
}
.countdown strong {
  display: block;
  color: var(--gold);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 400;
  line-height: 0.9;
}
.countdown span {
  display: block;
  margin-top: 10px;
  color: rgba(251, 248, 232, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.metrics article {
  min-height: 220px;
  padding: 34px;
  background: #092118;
}
.metrics span, .feature-grid span { display: inline-flex; margin-bottom: 20px; color: var(--gold); font-weight: 900; }
.metrics h2 { margin-bottom: 10px; font-family: "Inter", Arial, sans-serif; font-size: 1.35rem; font-weight: 900; line-height: 1.2; }

.section { padding-top: 96px; padding-bottom: 96px; }
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 6vw, 90px);
}
.copy-block p:last-child { margin-bottom: 0; }
.section-heading { max-width: 920px; margin-bottom: 42px; }
.image-break {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
  background:
    linear-gradient(135deg, rgba(255, 233, 68, 0.1), transparent 35%),
    #071b14;
}
.image-break figure {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}
.image-break figure::before {
  content: "808";
  position: absolute;
  left: -12px;
  bottom: -38px;
  z-index: 1;
  color: rgba(255, 233, 68, 0.84);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 10rem;
  line-height: 1;
}
.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08);
}
.image-break-copy {
  max-width: 720px;
}
.image-break-copy h2 {
  margin-bottom: 18px;
}
.feature-grid,
.talent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-grid article {
  min-height: 270px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(31, 116, 69, 0.42), rgba(6, 23, 17, 0.8));
}
.talent-grid article {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 233, 68, 0.12), rgba(6, 23, 17, 0.84));
}
.talent-grid article,
.reveal-card {
  position: relative;
  min-height: 520px;
}
.talent-grid h3,
.talent-grid p {
  padding-left: 24px;
  padding-right: 24px;
}
.talent-grid h3 {
  margin-top: 24px;
}
.feature-grid p,
.talent-grid p { margin-bottom: 24px; }
.reveal-photo {
  position: relative;
  height: 330px;
  background:
    linear-gradient(135deg, rgba(255, 233, 68, 0.18), rgba(0, 179, 164, 0.1)),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
    #092118;
  overflow: hidden;
}
.reveal-photo::before {
  content: "?";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 233, 68, 0.72);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 11rem;
}
.reveal-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reveal-card::before {
  content: "Locked";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  min-height: 32px;
  padding: 7px 12px 0;
  border: 1px solid rgba(255, 233, 68, 0.42);
  border-radius: 999px;
  background: rgba(6, 23, 17, 0.78);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}
.reveal-content {
  position: relative;
  z-index: 1;
  min-height: 190px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(6, 23, 17, 0), rgba(6, 23, 17, 0.96) 18%),
    rgba(6, 23, 17, 0.9);
}
.reveal-content span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.reveal-content h3,
.reveal-content p {
  padding-left: 0;
  padding-right: 0;
}
.reveal-content h3 {
  margin-top: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 0.95;
}
.reveal-card.is-released .reveal-photo::before {
  display: none;
}
.reveal-card.is-released::before {
  content: "Released";
  background: var(--gold);
  color: var(--ink);
}
.reveal-card.is-released .reveal-content h3 {
  color: var(--gold);
}
.talent-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 179, 164, 0.18), transparent 28%),
    #071b14;
}

.spotlight-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(90deg, var(--gold), #ffcc45);
  color: var(--ink);
}
.spotlight-band .eyebrow, .spotlight-band p { color: rgba(6, 23, 17, 0.78); }
.spotlight-button { background: var(--ink); color: var(--gold); border-color: var(--ink); }

.event-info-section { background: #0a2018; }
.info-list,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.info-list span,
.faq-grid article {
  min-height: 58px;
  padding: 18px;
  border: 1px solid rgba(255, 233, 68, 0.24);
  border-radius: 6px;
  background: rgba(251, 248, 232, 0.06);
  color: rgba(251, 248, 232, 0.76);
  font-weight: 600;
  line-height: 1.55;
}
.info-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--paper);
  font-weight: 900;
}
.rsvp-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  background: linear-gradient(90deg, var(--gold), #ffcc45);
  color: var(--ink);
}
.rsvp-section .eyebrow,
.rsvp-section p {
  color: rgba(6, 23, 17, 0.78);
}
.rsvp-section h2 {
  color: var(--ink);
}
.faq-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 233, 68, 0.12), transparent 24%),
    #071b14;
}
.faq-grid article {
  min-height: 170px;
}
.faq-grid h3 {
  color: var(--paper);
}
.faq-grid p {
  margin-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 36px;
  padding-top: 96px;
  padding-bottom: 96px;
  background: linear-gradient(135deg, rgba(0, 179, 164, 0.16), transparent 40%), var(--deep);
}
.contact-card {
  display: grid;
  gap: 14px;
  align-self: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(6, 23, 17, 0.7);
  box-shadow: var(--shadow);
}
.contact-card span { color: var(--gold); font-size: 0.82rem; font-weight: 900; text-transform: uppercase; }
.contact-card a { overflow-wrap: anywhere; font-size: 1.15rem; font-weight: 900; }
.contact-card button { width: 100%; margin-top: 8px; background: transparent; color: var(--gold); cursor: pointer; }

footer {
  padding-top: 26px;
  padding-bottom: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--ink);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
}
.footer-brand img { width: 72px; }
.footer-brand small { margin-left: auto; color: rgba(251, 248, 232, 0.6); }
.footer-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 5vw, 60px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logos img {
  display: block;
  width: 220px;
  height: 120px;
  object-fit: contain;
}

@media (max-width: 860px) {
  .site-header { position: absolute; }
  .brand { width: 76px; }
  .nav-links { display: none; }
  .hero, .countdown-section, .metrics, .split, .feature-grid, .talent-grid, .spotlight-band, .image-break, .rsvp-section, .contact { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 132px; }
  .hero-mark { right: -84px; top: 112px; width: 220px; height: 220px; opacity: 0.42; }
  .metrics article { min-height: auto; padding: 26px 22px; }
  .section, .contact { padding-top: 72px; padding-bottom: 72px; }
  .spotlight-band .button, .rsvp-section .button, .hero-actions .button { width: 100%; }
  .info-list, .faq-grid { grid-template-columns: 1fr; }
  .footer-brand { flex-wrap: wrap; }
  .footer-brand small { width: 100%; margin-left: 88px; }
  .footer-logos { gap: 28px; }
  .footer-logos img {
    width: min(72vw, 210px);
    height: 118px;
  }
}

@media (max-width: 520px) {
  .header-cta { min-height: 40px; padding: 0 12px; font-size: 0.72rem; }
  h1 { font-size: 4.55rem; }
  h2 { font-size: 3rem; }
  .countdown { grid-template-columns: repeat(2, 1fr); }
}
