:root {
  color-scheme: dark;
  --black: #000;
  --ink: #f7f7f5;
  --muted: #a5a5a1;
  --line: rgba(255, 255, 255, 0.16);
  --panel: #0a0a0a;
  --max: 1180px;
}

* { box-sizing: border-box; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(0,0,0,.92), rgba(0,0,0,.35), transparent);
  transition: background .25s ease, border-color .25s ease;
}
.site-header.scrolled { background: rgba(0,0,0,.92); border-color: var(--line); backdrop-filter: blur(14px); }
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand img { width: 190px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 24px; color: #d8d8d5; font-size: .9rem; }
.nav-links a:hover, .nav-links a:focus-visible { color: #fff; }
.nav-cta { border: 1px solid #fff; padding: 10px 16px; border-radius: 0; color: #fff !important; }
.menu-toggle { display: none; background: none; border: 0; color: #fff; padding: 8px; }

.hero {
  min-height: 92svh;
  display: grid;
  place-items: end start;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero) center/cover no-repeat;
  filter: saturate(.78) contrast(1.06);
  transform: scale(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.22) 42%, #000 100%);
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.76) contrast(1.06);
}
.hero-content { padding: 150px 0 74px; width: min(760px, 100%); }
.hero-mark { width: min(560px, 88vw); margin-bottom: 34px; }
.eyebrow { margin: 0 0 12px; color: #b8b8b4; text-transform: uppercase; letter-spacing: .16em; font-size: .76rem; font-weight: 700; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 820px; font-size: clamp(2.55rem, 7vw, 6.6rem); line-height: .92; letter-spacing: -.055em; margin-bottom: 26px; }
h2 { font-size: clamp(2rem, 4.5vw, 4.2rem); line-height: 1; letter-spacing: -.045em; margin-bottom: 18px; }
h3 { font-size: clamp(1.35rem, 2vw, 2rem); line-height: 1.08; letter-spacing: -.025em; }
.hero-copy { color: #d0d0cd; font-size: clamp(1rem, 1.5vw, 1.18rem); max-width: 580px; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border-radius: 0;
  border: 1px solid #fff;
  background: #fff;
  color: #000;
  font-weight: 750;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.48); }
.button.small { min-height: 42px; padding: 9px 15px; font-size: .9rem; }

.section { padding: 104px 0; border-top: 1px solid var(--line); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 44px; }
.section-head p { color: var(--muted); max-width: 510px; margin-bottom: 4px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.event-list { display: grid; gap: 10px; }
.event-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 340px)); gap: 14px; }
.event-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #070707;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.event-card:hover { background: #101010; border-color: rgba(255,255,255,.42); transform: translateY(-3px); }
.event-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.event-card-content { min-height: 176px; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; align-items: stretch; gap: 20px; }
.event-card-content h3 { margin: 0 0 6px; }
.event-card-content p { margin: 0; color: var(--muted); font-size: .9rem; }
.event-card-links { display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
.event-detail-link { color: var(--muted); font-size: .82rem; }
.event-detail-link:hover { color: #fff; }
.event-row {
  min-height: 112px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: #070707;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.event-row:hover { background: #101010; border-color: rgba(255,255,255,.42); transform: translateY(-2px); }
.event-date { border-right: 1px solid var(--line); padding-right: 22px; text-align: center; }
.event-date strong { display: block; font-size: 2rem; line-height: 1; letter-spacing: -.05em; }
.event-date span { display: block; margin-top: 5px; color: var(--muted); font-size: .73rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.event-copy h3 { margin: 0 0 6px; }
.event-copy p { margin: 0; color: var(--muted); font-size: .9rem; }
.event-arrow { font-size: 1.55rem; }
.event-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.season-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.season-card {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--image) center/cover no-repeat;
  isolation: isolate;
  transition: border-color .18s ease, transform .18s ease;
}
.season-card:hover { border-color: rgba(255,255,255,.48); transform: translateY(-3px); }
.season-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.08) 18%, rgba(0,0,0,.88) 100%);
}
.season-video { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.season-content { position: absolute; inset: auto 0 0; padding: 32px; }
.season-logo { max-width: 260px; max-height: 86px; object-fit: contain; object-position: left bottom; margin-bottom: 22px; }
.season-logo.bisso { max-width: 210px; max-height: 105px; }
.season-meta { margin-bottom: 10px; color: #fff; font-size: .76rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.season-content > p:last-of-type { max-width: 480px; margin-bottom: 0; color: #d0d0cd; }
.album-link { display: inline-block; margin-top: 18px; color: #fff; font-size: .84rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.visual-card {
  min-height: 570px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
  isolation: isolate;
}
.visual-card::before { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--image) center/cover no-repeat; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.visual-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.85)); }
.visual-card:hover::before { transform: scale(1.035); }
.card-content { position: absolute; inset: auto 0 0; padding: 30px; }
.card-logo { max-width: 230px; max-height: 78px; object-fit: contain; object-position: left bottom; margin-bottom: 18px; }
.card-logo.tall { max-height: 125px; max-width: 180px; }
.card-content p { color: #cacac7; max-width: 430px; margin-bottom: 0; }
.season-tag { display: inline-flex; margin-bottom: 14px; color: #fff; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 800; }

.link-card { min-height: 245px; padding: 26px; border: 1px solid var(--line); background: var(--panel); display: flex; flex-direction: column; justify-content: space-between; }
.link-card-icon { width: 44px; height: 44px; margin-bottom: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.link-card p { color: var(--muted); }
.link-card .arrow { font-size: 1.6rem; }
.access-section { background: #050505; }
.access-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.access-copy { min-height: 300px; padding: 30px; border: 1px solid var(--line); background: var(--panel); }
.access-copy p { color: var(--muted); line-height: 1.65; }
.access-download { margin-top: 12px; }
.map-card { border: 1px solid var(--line); background: #080808; overflow: hidden; }
.map-card img { width: 100%; aspect-ratio: 3/2; object-fit: contain; background: #050505; }
.map-card .map-meta { padding: 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.map-card h3 { margin-bottom: 0; }

.contact-band { padding: 84px 0; border-top: 1px solid var(--line); }
.contact-row { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: end; }
.contact-list { display: grid; gap: 13px; justify-items: start; }
.contact-list a { color: #c8c8c5; border-bottom: 1px solid transparent; }
.contact-list a:hover { color: #fff; border-color: #fff; }
.partners { overflow: hidden; padding: 52px 0 58px; border-top: 1px solid var(--line); }
.partners-head { margin-bottom: 25px; }
.partners-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.partners-track { display: flex; width: max-content; animation: partners-scroll 42s linear infinite; }
.partners-marquee:hover .partners-track { animation-play-state: paused; }
.partners-set { display: flex; align-items: center; gap: 66px; padding-right: 66px; }
.partners-set img { width: auto; height: 58px; max-width: 170px; object-fit: contain; flex: none; }
.partners-set img[src*="logo-onation"] { height: 70px; max-width: 120px; }
.partners-set img[src*="logo-adiva"] { height: 54px; }
.partners-set img[src*="jack-daniels"],
.partners-set img[src*="red-bull-organics"] { filter: invert(1); }
.partners-set img[src*="red-bull-organics"] { height: 76px; max-width: 250px; }
@keyframes partners-scroll { to { transform: translateX(-50%); } }
.footer { border-top: 1px solid var(--line); padding: 24px 0 34px; color: #7f7f7b; font-size: .82rem; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.subhero { min-height: 76svh; align-items: end; }
.subhero .hero-content { padding-bottom: 64px; }
.subhero-logo { max-width: 360px; max-height: 180px; object-fit: contain; object-position: left center; margin-bottom: 28px; }
.subhero-logo.tall { max-width: 230px; max-height: 260px; }
.gallery { display: grid; grid-template-columns: 1.25fr .75fr; gap: 14px; }
.gallery img { width: 100%; height: 520px; object-fit: cover; border: 1px solid var(--line); }
.gallery img + img { height: 520px; }
.document-shell { padding: 130px 0 72px; min-height: 100svh; }
.document-head { margin-bottom: 32px; }
.document-frame { width: 100%; height: 76svh; border: 1px solid var(--line); background: #111; }
.album-shell { padding: 145px 0 80px; min-height: 100svh; }
.album-head { margin-bottom: 50px; }
.album-head > p:last-child { color: var(--muted); margin: 20px 0 0; }
.album-logo { width: min(430px, 78vw); max-height: 145px; object-fit: contain; object-position: left center; }
.album-logo.bisso { width: min(330px, 68vw); max-height: 170px; }
.photo-grid { columns: 3 280px; column-gap: 14px; }
.photo-item { display: block; break-inside: avoid; margin-bottom: 14px; overflow: hidden; border: 1px solid var(--line); background: #080808; }
.photo-item img { width: 100%; height: auto; transition: opacity .2s ease, transform .35s ease; }
.photo-item:hover img { opacity: .86; transform: scale(1.012); }
.lightbox-active { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 14px;
  padding: 34px;
  background: rgba(0,0,0,.96);
}
.lightbox[hidden] { display: none; }
.lightbox-stage { min-width: 0; display: grid; place-items: center; gap: 14px; }
.lightbox-image { max-width: 100%; max-height: calc(100svh - 110px); object-fit: contain; }
.lightbox-counter { color: #aaa; font-size: .8rem; letter-spacing: .08em; }
.lightbox-close,
.lightbox-arrow {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 0;
  background: rgba(0,0,0,.5);
  color: #fff;
  font: inherit;
  font-size: 1.4rem;
  cursor: pointer;
}
.lightbox-close { position: absolute; top: 20px; right: 20px; z-index: 2; font-size: 2rem; font-weight: 300; }
.lightbox-arrow { justify-self: center; }
.lightbox-close:hover,
.lightbox-arrow:hover { background: #fff; color: #000; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }

@media (max-width: 820px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .menu-toggle { display: block; }
  .nav-links { display: none; position: absolute; inset: 74px 14px auto; padding: 20px; flex-direction: column; align-items: stretch; gap: 4px; border: 1px solid var(--line); background: rgba(0,0,0,.97); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 8px; }
  .brand img { width: 165px; }
  .hero { min-height: 86svh; }
  .hero-content { padding-bottom: 52px; }
  .section { padding: 76px 0; }
  .section-head { display: block; margin-bottom: 30px; }
  .grid-2, .grid-3, .season-grid, .contact-row, .gallery, .access-grid { grid-template-columns: 1fr; }
  .access-copy { min-height: auto; padding: 24px; }
  .partners { padding: 42px 0 46px; }
  .partners-set { gap: 44px; padding-right: 44px; }
  .partners-set img { height: 48px; max-width: 145px; }
  .partners-track { animation-duration: 25s; }
  .partners-set img[src*="red-bull-organics"] { height: 62px; max-width: 210px; }
  .event-row { grid-template-columns: 70px minmax(0, 1fr) auto; gap: 14px; padding: 16px 14px; }
  .event-date { padding-right: 14px; }
  .event-date strong { font-size: 1.65rem; }
  .event-copy h3 { font-size: 1.12rem; }
  .event-grid { grid-template-columns: 1fr; }
  .visual-card { min-height: 500px; }
  .season-card { min-height: 540px; }
  .season-content { padding: 24px; }
  .card-content { padding: 24px; }
  .gallery img, .gallery img + img { height: 420px; }
  .document-frame { height: 68svh; }
  .album-shell { padding-top: 118px; }
  .album-head { margin-bottom: 34px; }
  .photo-grid { columns: 2 150px; column-gap: 10px; }
  .photo-item { margin-bottom: 10px; }
  .lightbox { grid-template-columns: 50px minmax(0, 1fr) 50px; gap: 5px; padding: 72px 8px 18px; }
  .lightbox-close { top: 12px; right: 12px; }
  .lightbox-arrow { width: 44px; height: 44px; }
  .lightbox-image { max-height: calc(100svh - 130px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .hero-video, .season-video { display: none; }
  .partners-marquee { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
  .partners-track { animation: none; }
}
