:root {
  --bg: #0a0a0a;
  --ink: #f3f3ef;
  --muted: #9b9b96;
  --line: #2c2c2a;
  --accent: #d7ff3f; /* Replace with [ACCENT_COLOR_HEX] */
  --pinkie: linear-gradient(90deg,rgba(255, 78, 69, 1) 0%, rgba(255, 50, 204, 1) 50%);
  --rosado: #ff32cc;
  --sans: Arial, Helvetica, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --pad: clamp(1.25rem, 4vw, 4.75rem);
  --ease: cubic-bezier(.22, .8, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-color: var(--rosado) var(--bg); }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 1rem; line-height: 1.5; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img, video { display: block; width: 100%; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--rosado); color: var(--bg); }

.skip-link { position: fixed; z-index: 200; top: .75rem; left: .75rem; padding: .7rem 1rem; background: var(--pinkie); color: var(--bg); transform: translateY(-160%); transition: transform .2s; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: absolute; z-index: 20; inset: 0 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.25rem var(--pad); border-bottom: 1px solid rgba(255,255,255,.18); }
.wordmark { display: grid; place-items: center; width: 4rem; aspect-ratio: 1; font: 700 .75rem/1 var(--mono); letter-spacing: -.04em; }
.wordmark img { width: 100%; height: 100%; object-fit: contain; }
.desktop-nav { display: flex; gap: clamp(1.25rem, 3vw, 3.5rem); margin-left: auto; }
.desktop-nav a, .status { font: 700 .72rem/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.45rem; height: 1px; background: var(--rosado); transition: right .25s var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.status { display: flex; align-items: center; gap: .65rem; color: #c5c5c0; }
.status span { width: .5rem; aspect-ratio: 1; border-radius: 50%; background: var(--rosado); box-shadow: 0 0 0 4px rgba(215,255,63,.13); }

.hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: clip; background: #101010; }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media {
  background-image: url("assets/bg-cap-red.png");
  background-size: cover;
  background-position: center;
}
.hero-media::after { content: ""; position: absolute; inset: 0; opacity: .16; background-image: repeating-linear-gradient(90deg, transparent 0 9.9%, rgba(255,255,255,.12) 10%); background-size: 10% 100%; }
.hero-shade { z-index: 1; background: linear-gradient(180deg, rgba(10,10,10,.3) 0%, rgba(10,10,10,.06) 38%, rgba(10,10,10,.9) 100%), linear-gradient(90deg, rgba(10,10,10,.35), transparent 65%); }
.hero-content { position: relative; z-index: 2; padding: 8rem var(--pad) clamp(6rem, 9vw, 8.5rem); will-change: transform, opacity; }
.hero-topline, .hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.hero-topline { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: .65rem; }
.hero-topline p { margin: 0; font: 700 .7rem/1.2 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.hero-title { max-width: 100%; margin: 0 0 clamp(1.5rem, 3vw, 3rem); font-size: clamp(4.1rem, 12.8vw, 12rem); font-weight: 800; letter-spacing: -.085em; line-height: .72; text-transform: uppercase; }
.hero-title span { display: block; opacity: 0; transform: translateY(1em); animation: title-up .65s var(--ease) .12s forwards; }
.hero-title span + span { animation-delay: .22s; }
.hero-title .outline { color: transparent; -webkit-text-stroke: clamp(1px, .12vw, 2px) var(--ink); /*padding-left: clamp(3rem, 10vw, 10rem);*/ }
@keyframes title-up { to { opacity: 1; transform: translateY(0); } }
.hero-artist { margin: 0; color: #d2d2cd; font-size: clamp(1rem, 1.5vw, 1.25rem); }
.hero-artist strong { color: var(--ink); }
.countdown { display: grid; grid-template-columns: repeat(4, minmax(4rem, 1fr)); gap: 1px; min-width: min(28rem, 100%); background: rgba(255,50,204,.35); }
.countdown div { display: grid; gap: .35rem; padding: .75rem 1rem; background: rgba(10,10,10,.72); text-align: center; }
.countdown strong { font: 800 clamp(1.25rem, 2.5vw, 2.1rem)/.9 var(--sans); }
.countdown span { color: #bdbdb8; font: 700 .58rem/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.button { min-height: 3.5rem; display: inline-flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 0 1.25rem; font: 800 .76rem/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; transition: color .25s, background .25s, transform .25s; }
.button-primary { min-width: min(16rem, 100%); background: var(--pinkie); color: var(--bg); }
.button-primary:hover, .button-primary:focus-visible { background: var(--ink); transform: translateY(-3px); }
.scroll-cue { position: absolute; z-index: 3; bottom: 1.2rem; left: var(--pad); display: flex; align-items: center; gap: 1rem; font: 700 .66rem/1 var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.scroll-cue i { width: 3rem; height: 1px; background: var(--ink); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: var(--rosado); transform: translateX(-100%); animation: scroll-line 1.8s ease-in-out infinite; }
@keyframes scroll-line { 50%, 100% { transform: translateX(100%); } }

.section { padding: clamp(7rem, 13vw, 13rem) var(--pad); border-bottom: 1px solid var(--line); }
.section-intro { display: grid; grid-template-columns: minmax(9rem, 1fr) 3fr 1.25fr; gap: clamp(1.5rem, 4vw, 5rem); align-items: start; margin-bottom: clamp(5rem, 10vw, 10rem); }
.eyebrow, .mini-label { margin: .5rem 0 0; color: var(--rosado); font: 700 .72rem/1.3 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
h2 { margin: 0; font-size: clamp(3.7rem, 8vw, 8rem); font-weight: 800; letter-spacing: -.075em; line-height: .82; text-transform: uppercase; }
.lede { max-width: 28rem; margin: .5rem 0 0; color: #b6b6b1; font-size: clamp(1rem, 1.35vw, 1.25rem); line-height: 1.55; }

.event-facts { display: grid; grid-template-columns: repeat(3, 1fr) 1.1fr; margin-bottom: clamp(6rem, 10vw, 10rem); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.event-facts > * { min-width: 0; min-height: 8rem; display: flex; flex-direction: column; justify-content: space-between; gap: 1rem; padding: 1.25rem; border-right: 1px solid var(--line); }
.event-facts span { color: var(--muted); font: 700 .69rem/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.event-facts strong { font-size: clamp(1rem, 1.5vw, 1.45rem); line-height: 1.1; }
.event-facts > a { background: var(--pinkie); color: var(--bg); font: 800 .78rem/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; flex-direction: row; align-items: flex-end; transition: background .25s, color .25s; }
.event-facts > a:hover, .event-facts > a:focus-visible { background: var(--ink); }
.event-facts > a span { color: inherit; font-size: 1.25rem; }
.festival-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(3rem, 8vw, 9rem); }
.mini-label { padding-bottom: 1.2rem; border-bottom: 1px solid var(--ink); }
.schedule ol { margin: 0; padding: 0; list-style: none; }
.schedule li { display: grid; grid-template-columns: 6rem 1fr; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); font-size: clamp(1rem, 1.6vw, 1.4rem); }
.schedule time { color: var(--muted); font-family: var(--mono); font-size: .8rem; padding-top: .35rem; }
.schedule .featured { color: var(--rosado); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; display: flex; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; cursor: pointer; font-weight: 700; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: var(--rosado); font: 400 1.25rem/1 var(--mono); transition: transform .25s; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 38rem; margin: -.25rem 2.5rem 1.5rem 0; color: var(--muted); }

.community { background: var(--ink); color: var(--bg); }
.community .eyebrow { color: #4b4b46; }
.community .lede { color: #555550; }
.country-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--bg); border-left: 1px solid var(--bg); }
.country-card { position: relative; min-height: 18rem; padding: 1.5rem; border-right: 1px solid var(--bg); border-bottom: 1px solid var(--bg); transition: color .28s, background .28s; overflow: hidden; }
.country-card::before { content: ""; position: absolute; inset: 0; background: var(--pinkie); transform: translateY(101%); transition: transform .32s var(--ease); }
.country-card > * { position: relative; z-index: 1; }
.country-card:hover::before, .country-card:focus-visible::before { transform: translateY(0); }
.country-number { font: 700 .7rem/1 var(--mono); }
.country-card h3 { margin: clamp(3rem, 7vw, 6rem) 0 .25rem; font-size: clamp(2.2rem, 4vw, 4rem); letter-spacing: -.06em; line-height: 1; text-transform: uppercase; }
.country-card p { margin: 0; color: #000000; }
.country-card b { position: absolute; right: 1.5rem; bottom: 1.5rem; font-size: 1.5rem; }

.split-heading { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: end; margin-bottom: clamp(5rem, 10vw, 9rem); }
.split-heading .eyebrow { margin-bottom: 2.5rem; }
.split-heading > p { max-width: 26rem; margin: 0; color: var(--muted); font-size: clamp(1rem, 1.45vw, 1.25rem); }
.event-list { border-top: 1px solid var(--ink); }
.event-list article { display: grid; grid-template-columns: minmax(6rem,.55fr) 1.5fr 1.25fr auto; gap: 1.5rem; align-items: center; min-height: 7.5rem; border-bottom: 1px solid var(--line); transition: padding .25s, color .25s; }
.event-list article:hover { padding: 0 1rem; color: var(--rosado); }
.event-list time { color: var(--muted); font: 700 .68rem/1 var(--mono); text-transform: uppercase; }
.event-list time b { display: block; margin-bottom: .15rem; color: var(--ink); font: 800 2rem/.9 var(--sans); }
.event-list h3 { margin: 0; font-size: clamp(1.25rem, 2.2vw, 2rem); letter-spacing: -.03em; }
.event-list p { margin: 0; color: var(--muted); }
.event-list > article > span { padding: .5rem .7rem; border: 1px solid var(--line); font: 700 .64rem/1 var(--mono); text-transform: uppercase; white-space: nowrap; }

.about { display: grid; grid-template-columns: .9fr 2.1fr; gap: clamp(3rem, 10vw, 12rem); }
.about-number { color: var(--rosado); font-size: clamp(5rem, 14vw, 14rem); font-weight: 800; letter-spacing: -.09em; line-height: .66; }
.about-copy .eyebrow { margin-bottom: clamp(3rem, 7vw, 7rem); }
.prose { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 4vw, 4rem); margin-top: clamp(3rem, 6vw, 6rem); }
.prose p { margin: 0; color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.2rem); }
.prose p:first-child { grid-column: 1 / -1; color: var(--ink); font-size: clamp(1.3rem, 2.1vw, 2rem); line-height: 1.35; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 2rem); }
.product-image { position: relative; display: grid; place-items: center; aspect-ratio: .84; overflow: hidden; background: linear-gradient(145deg, #252525, #111); }
.product-image::before, .product-image::after { content: ""; position: absolute; width: 58%; aspect-ratio: 1; border: 1px solid #555; transform: rotate(45deg); transition: transform .35s var(--ease), border-color .35s; }
.product-image::after { width: 35%; background: var(--pinkie); border: 0; mix-blend-mode: screen; }
.product-image.alt::before { border-radius: 50%; transform: none; }
.product-image.alt::after { transform: rotate(18deg); }
.product-image.third::before { width: 72%; transform: rotate(8deg); }
.product-image.third::after { width: 20%; border-radius: 50%; }
.product-image img { position: absolute; z-index: 2; inset: 0; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.product-image img.image-error { display: none; }
.product-image > span { position: absolute; z-index: 3; top: 1rem; left: 1rem; color: #b8b8b2; font: 700 .65rem/1 var(--mono); letter-spacing: .08em; }
.product-image:hover img { transform: scale(1.035); }
.product-image:hover::before { transform: rotate(55deg) scale(1.08); border-color: var(--rosado); }
.product-meta { display: flex; justify-content: space-between; gap: 1rem; padding: 1.25rem 0 .65rem; border-bottom: 1px solid var(--line); }
.product-meta h3, .product-meta p { margin: 0; font-size: 1rem; }
.product-meta p { color: var(--muted); font-family: var(--mono); }
.text-link { display: flex; justify-content: space-between; padding-top: .8rem; color: var(--rosado); font: 700 .7rem/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; }

.follow { padding: clamp(7rem, 13vw, 13rem) var(--pad); background: var(--pinkie); color: var(--bg); }
.follow .eyebrow { color: #3f4b0f; }
.follow h2 { font-size: clamp(4.5rem, 12vw, 12rem); }
.socials { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(4rem, 8vw, 8rem); border-top: 1px solid var(--bg); border-left: 1px solid var(--bg); }
.socials a { min-height: 7rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; padding: 1.25rem; border-right: 1px solid var(--bg); border-bottom: 1px solid var(--bg); font-weight: 800; transition: background .25s, color .25s; }
.socials a:hover, .socials a:focus-visible { background: var(--bg); color: var(--rosado); }
.socials svg { width: 1.5rem; height: 1.5rem; fill: none; stroke: currentColor; stroke-width: 1.7; }
.socials .fill { fill: currentColor; stroke: none; }

.floating-cta { position: fixed; z-index: 50; right: 1.2rem; bottom: 1.2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-width: 10.5rem; padding: 1rem 1.1rem; background: var(--pinkie); color: var(--bg); box-shadow: 0 8px 30px rgba(0,0,0,.28); font: 800 .7rem/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; transition: background .25s, transform .25s; }
.floating-cta:hover, .floating-cta:focus-visible { background: var(--ink); transform: translateY(-3px); }
.floating-cta b { font-size: 1rem; }

.footer { display: grid; grid-template-columns: 1.5fr 1fr 1fr auto; gap: 2rem; align-items: end; padding: 4rem var(--pad) 6rem; color: var(--muted); font-size: .82rem; }
.footer .wordmark { margin-bottom: 1.5rem; color: var(--ink); }
.footer p { margin: 0 0 .35rem; color: #62625e; font: 700 .66rem/1 var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.footer > div:first-child p { font-family: var(--sans); font-size: .82rem; letter-spacing: 0; text-transform: none; }
.footer a:not(.wordmark) { color: var(--ink); }
.back-top { font: 700 .67rem/1 var(--mono); text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(2.5rem); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.community :focus-visible, .follow :focus-visible { outline-color: var(--bg); }

@media (max-width: 900px) {
  .section-intro { grid-template-columns: 1fr 3fr; }
  .section-intro .lede { grid-column: 2; }
  .event-facts { grid-template-columns: repeat(2, 1fr); }
  .festival-grid, .about { grid-template-columns: 1fr; }
  .about-number { font-size: clamp(6rem, 28vw, 12rem); }
  .footer { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  :root { --pad: 1.15rem; }
  .desktop-nav { display: none; }
  .status { font-size: .61rem; }
  .hero-media { background-image: url("assets/bg-cap-mobile.png"); background-position: center; }
  .hero-content { min-height: 100svh; display: flex; flex-direction: column; padding-top: 7rem; padding-bottom: 7rem; }
  .hero-title { font-size: clamp(3.2rem, 18vw, 6rem); line-height: .78; }
  .hero-title .outline { padding-left: 0; }
  .hero-bottom { align-items: stretch; flex-direction: column; margin-top: auto; }
  .countdown { width: 100%; min-width: 0; }
  .countdown div { padding: .7rem .35rem; }
  .scroll-cue { bottom: 4.5rem; }
  .section-intro, .split-heading { grid-template-columns: 1fr; }
  .section-intro .lede { grid-column: 1; }
  .section-intro, .split-heading { margin-bottom: 4.5rem; }
  .event-facts { grid-template-columns: 1fr; }
  .event-facts > * { min-height: 6.5rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .country-grid, .product-grid, .socials, .prose { grid-template-columns: 1fr; }
  .country-card { min-height: 14rem; }
  .event-list article { grid-template-columns: 4rem 1fr auto; padding: 1.25rem 0; }
  .event-list article:hover { padding: 1.25rem .4rem; }
  .event-list p { grid-column: 2 / -1; }
  .about { gap: 5rem; }
  .prose p:first-child { grid-column: auto; }
  .product-grid { gap: 4rem; }
  .floating-cta { right: .75rem; bottom: .75rem; min-width: 9.2rem; }
  .footer { grid-template-columns: 1fr; padding-bottom: 7rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-title span, .reveal { opacity: 1; transform: none; }
}
