/* ============================================================
   SECOND STATE FESTIVAL — SHARED DESIGN SYSTEM  (v2)
   Reference language: flat full-bleed colour-block sections,
   huge confident rounded type, pill buttons/tabs, list-row
   lineup & tickets. No glow / no neon-cyberpunk / no textures.
   ============================================================ */

:root{
  --black:   #0a0a0a;
  --black-2: #131313;
  --black-3: #1c1c1c;
  --green:   #3dff3d;
  --green-2: #2fe62f;
  --green-dim: #1f7a1f;
  --cream:   #f4fff1;
  --grey:    #6b6f6b;

  --font: 'Plus Jakarta Sans', sans-serif;
  --container: 1320px;
  --r: 999px; /* pill radius */
}

*, *::before, *::after{ box-sizing:border-box; margin:0; padding:0; }

html{ scroll-behavior:smooth; background:var(--black); }

body{
  background:var(--black);
  color:var(--cream);
  font-family:var(--font);
  font-size:16px;
  line-height:1.5;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; }
input, select{ font-family:inherit; }

.container{ width:100%; max-width:var(--container); margin:0 auto; padding:0 32px; }

h1,h2,h3,h4{ font-family:var(--font); font-weight:800; line-height:1.04; letter-spacing:-.01em; }

/* ============================================================
   COLOUR-BLOCK SECTION HELPERS
   ============================================================ */
.blk-black   { background:var(--black);   color:var(--cream); }
.blk-black-2 { background:var(--black-2); color:var(--cream); }
.blk-green   { background:var(--green);   color:var(--black); }

section{ padding:110px 0; }
@media (max-width:700px){ section{ padding:70px 0; } }

.eyebrow{
  display:inline-block;
  font-weight:700;
  font-size:13px;
  letter-spacing:.04em;
  text-transform:uppercase;
  opacity:.65;
  margin-bottom:14px;
}

/* ============================================================
   BUTTONS / PILLS
   ============================================================ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:17px 30px;
  border-radius:var(--r);
  font-weight:700; font-size:15px;
  background:var(--black); color:var(--green);
  transition:transform .25s cubic-bezier(.2,.9,.25,1), background .2s, color .2s;
}
.btn:hover{ transform:translateY(-2px) scale(1.02); }
.btn.on-black{ background:var(--green); color:var(--black); }
.btn.on-green{ background:var(--black); color:var(--green); }
.btn.outline{ background:transparent; border:2px solid currentColor; }
.btn.small{ padding:11px 20px; font-size:13px; }
.btn[disabled]{ opacity:.4; pointer-events:none; }

.pill-tab{
  padding:10px 22px; border-radius:var(--r); border:2px solid currentColor;
  font-weight:700; font-size:13.5px; color:currentColor; opacity:.55; transition:all .2s;
  background:transparent;
}
.pill-tab.active{ opacity:1; background:var(--black); color:var(--green); border-color:var(--black); }

.circle-btn{
  width:44px; height:44px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background:var(--black); color:var(--green);
  font-size:18px; font-weight:700;
  transition:transform .3s cubic-bezier(.2,.9,.25,1);
}
.circle-btn.inverted{ background:var(--green); color:var(--black); }
.circle-btn.rot{ transform:rotate(45deg); }

/* ============================================================
   NAV
   ============================================================ */
.site-nav{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  display:flex; align-items:center; justify-content:space-between;
  padding:22px 32px;
  transition:background .3s, padding .3s;
}
.site-nav.scrolled{ background:rgba(10,10,10,.92); backdrop-filter:blur(10px); padding:16px 32px; }
.nav-logo{ font-weight:800; font-size:20px; color:var(--cream); }
.nav-logo em{ font-style:normal; color:var(--green); }
.nav-links{ display:flex; align-items:center; gap:8px; background:var(--black-2); border-radius:var(--r); padding:6px; }
.nav-links a{
  font-weight:600; font-size:14px; color:var(--cream); opacity:.7;
  padding:10px 18px; border-radius:var(--r); transition:all .2s;
}
.nav-links a:hover{ opacity:1; }
.nav-links a.active{ background:var(--green); color:var(--black); opacity:1; }
.nav-right{ display:flex; align-items:center; gap:14px; }
.cart-btn{
  position:relative; width:46px; height:46px; border-radius:50%;
  background:var(--black-2); color:var(--cream);
  display:flex; align-items:center; justify-content:center; font-size:18px;
}
.cart-count{
  position:absolute; top:-4px; right:-4px; background:var(--green); color:var(--black);
  font-size:10px; font-weight:800; width:19px; height:19px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.nav-burger{ display:none; flex-direction:column; gap:5px; width:24px; }
.nav-burger span{ height:2px; background:var(--cream); border-radius:2px; }

/* ============================================================
   TICKER
   ============================================================ */
.ticker{ background:var(--green); color:var(--black); overflow:hidden; white-space:nowrap; }
.ticker-track{ display:inline-flex; animation:scroll-left 24s linear infinite; padding:12px 0; }
.ticker-track span{ font-weight:800; font-size:14px; padding:0 20px; display:inline-flex; align-items:center; gap:20px; }
.ticker-track span::after{ content:"●"; font-size:8px; opacity:.5; }
@keyframes scroll-left{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  min-height:96svh;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:150px 0 60px;
  position:relative;
}
.hero-grid{ display:grid; grid-template-columns:1.3fr 1fr; gap:26px; align-items:end; }
.hero h1{
  font-size:clamp(48px, 8vw, 118px);
  color:var(--green);
}
.hero-side{
  background:var(--black-2);
  border-radius:26px;
  padding:30px;
  display:flex; flex-direction:column; gap:18px;
}
.hero-side p{ font-size:15px; color:var(--cream); opacity:.75; line-height:1.6; }
.hero-meta{ display:flex; flex-wrap:wrap; gap:10px; margin-top:8px; }
.hero-meta span{
  font-size:12.5px; font-weight:700; padding:8px 14px; border-radius:var(--r);
  background:var(--black); color:var(--green);
}
.hero-top-row{
  display:flex; justify-content:space-between; align-items:flex-start; gap:20px; margin-bottom:40px;
}
.hero-top-row .eyebrow{ margin-bottom:0; font-size:14px; opacity:.8; }

.countdown{ display:flex; gap:10px; }
.countdown .unit{ background:var(--black); border-radius:14px; padding:12px 0 8px; width:100%; text-align:center; }
.countdown .num{ font-size:26px; font-weight:800; color:var(--green); font-variant-numeric:tabular-nums; display:block; }
.countdown .lbl{ font-size:9px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; opacity:.6; }

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head{ margin-bottom:50px; }
.section-head h2{ font-size:clamp(32px, 5vw, 58px); }
.section-head p{ opacity:.7; max-width:460px; margin-top:12px; font-size:15.5px; }
.section-head-row{ display:flex; justify-content:space-between; align-items:flex-end; gap:30px; flex-wrap:wrap; }

/* ============================================================
   LIST ROWS (lineup / tickets share this pattern)
   ============================================================ */
.row-list{ border-top:2px solid currentColor; }
.list-row{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:26px 4px;
  border-bottom:2px solid currentColor;
  opacity:.92;
}
.list-row-main{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.list-row h3{ font-size:clamp(22px,3.4vw,34px); font-weight:800; }
.list-row .badge{
  font-size:11.5px; font-weight:800; padding:7px 13px; border-radius:var(--r);
  background:var(--black); color:var(--green);
}
.list-row .badge.muted{ color:var(--grey); }
.list-row .meta{ font-size:13px; font-weight:600; opacity:.7; }
.list-row-detail{
  max-height:0; overflow:hidden; transition:max-height .35s ease;
  flex-basis:100%;
}
.list-row.open .list-row-detail{ max-height:120px; padding-top:16px; }
.list-row-detail p{ font-size:14px; font-weight:600; opacity:.85; }

.tabs-row{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:44px; }

/* ============================================================
   BANNER (full-bleed colour strip between sections)
   ============================================================ */
.banner-strip{
  padding:70px 0; text-align:center;
}
.banner-strip h2{ font-size:clamp(30px,5vw,54px); max-width:900px; margin:0 auto; }

/* ============================================================
   CARDS (merch)
   ============================================================ */
.product-grid{ display:grid; grid-template-columns:repeat(auto-fill, minmax(260px,1fr)); gap:22px; }
.product-card{
  background:var(--black-2); border-radius:24px; overflow:hidden;
  display:flex; flex-direction:column;
}
.product-media{
  aspect-ratio:1/1; display:flex; align-items:center; justify-content:center;
  position:relative;
}
.product-media svg{ width:46%; }
.product-tag{
  position:absolute; top:16px; left:16px; font-size:11px; font-weight:800;
  padding:6px 12px; border-radius:var(--r); background:var(--black); color:var(--green);
}
.product-info{ padding:22px 22px 26px; }
.product-info h3{ font-size:19px; margin-bottom:6px; }
.product-info .desc{ font-size:12.5px; opacity:.6; margin-bottom:16px; }
.size-row{ display:flex; gap:6px; margin-bottom:16px; flex-wrap:wrap; }
.size-opt{
  padding:7px 12px; border-radius:var(--r); font-size:11.5px; font-weight:700;
  border:2px solid rgba(255,255,255,.18); color:var(--cream); opacity:.6;
}
.size-opt.active{ border-color:var(--green); color:var(--green); opacity:1; }
.price-row{ display:flex; align-items:center; justify-content:space-between; }
.price{ font-weight:800; font-size:17px; color:var(--green); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item{ border-bottom:2px solid currentColor; padding:24px 4px; cursor:pointer; }
.faq-q{ display:flex; justify-content:space-between; align-items:center; gap:20px; font-weight:800; font-size:18px; }
.faq-q .circle-btn{ transition:transform .3s cubic-bezier(.2,.9,.25,1); }
.faq-item.open .faq-q .circle-btn{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .35s ease; font-size:14.5px; opacity:.8; font-weight:500; }
.faq-item.open .faq-a{ max-height:200px; margin-top:14px; }

/* ============================================================
   FOOTER — oversized wordmark
   ============================================================ */
.footer-wordmark{
  padding:70px 32px 40px;
  text-align:left;
}
.footer-wordmark h2{
  font-size:clamp(60px, 13vw, 200px);
  line-height:.9; color:var(--black);
}
.footer-cols{
  display:flex; gap:70px; flex-wrap:wrap;
  padding:0 32px 50px; max-width:var(--container); margin:0 auto;
}
.footer-col h4{ font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.06em; opacity:.55; margin-bottom:16px; }
.footer-col a, .footer-col p{ display:block; font-weight:700; font-size:15px; margin-bottom:10px; }
.footer-bottom{
  border-top:2px solid rgba(0,0,0,.2);
  padding:22px 32px; max-width:var(--container); margin:0 auto;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:12.5px; font-weight:700; opacity:.6;
}

/* ============================================================
   MODAL / DRAWER
   ============================================================ */
.overlay{ position:fixed; inset:0; background:rgba(0,0,0,.6); z-index:2000; opacity:0; pointer-events:none; transition:opacity .3s; }
.overlay.open{ opacity:1; pointer-events:auto; }
.drawer{
  position:fixed; top:0; right:0; bottom:0; width:min(420px, 92vw);
  background:var(--black-2); z-index:2001;
  transform:translateX(100%); transition:transform .4s cubic-bezier(.2,.9,.25,1);
  display:flex; flex-direction:column;
}
.drawer.open{ transform:translateX(0); }
.drawer-head{ display:flex; align-items:center; justify-content:space-between; padding:26px; border-bottom:2px solid rgba(255,255,255,.08); }
.drawer-head span{ font-weight:800; font-size:16px; color:var(--green); }
.drawer-body{ flex:1; overflow-y:auto; padding:10px 26px; }
.drawer-foot{ padding:20px 26px 30px; border-top:2px solid rgba(255,255,255,.08); }

.cart-item{ display:flex; gap:14px; padding:18px 0; border-bottom:1px solid rgba(255,255,255,.08); }
.cart-item .thumb{ width:60px; height:60px; border-radius:14px; background:var(--black); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cart-item .thumb svg{ width:58%; }
.cart-item .info{ flex:1; }
.cart-item .info .name{ font-weight:700; font-size:14.5px; }
.cart-item .info .meta{ font-size:12px; opacity:.6; margin-top:2px; }
.cart-item .remove{ font-size:11px; font-weight:800; color:var(--grey); text-decoration:underline; margin-top:8px; }
.cart-empty{ text-align:center; padding:60px 10px; opacity:.6; font-weight:600; font-size:14px; }
.cart-summary-row{ display:flex; justify-content:space-between; font-size:14px; opacity:.7; margin-bottom:8px; font-weight:600; }
.cart-summary-row.total{ opacity:1; font-weight:800; font-size:18px; color:var(--green); margin-top:12px; }

.stepper{ display:inline-flex; align-items:center; gap:14px; background:var(--black); border-radius:var(--r); padding:8px 16px; }
.stepper button{ font-size:18px; font-weight:800; color:var(--green); width:16px; }
.stepper .val{ font-weight:700; font-size:14px; width:16px; text-align:center; }

/* toast */
.toast{
  position:fixed; bottom:26px; left:50%; translate:-50% 20px;
  background:var(--green); color:var(--black); font-weight:800; font-size:13.5px;
  padding:15px 24px; border-radius:var(--r); z-index:3000;
  opacity:0; transition:opacity .3s, translate .3s;
}
.toast.show{ opacity:1; translate:-50% 0; }

.reveal{ opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header{ padding:150px 0 70px; }
.page-header h1{ font-size:clamp(44px, 8vw, 100px); }
.page-header p{ opacity:.7; max-width:520px; margin-top:16px; font-size:15.5px; }
.crumb{ font-weight:700; font-size:12.5px; opacity:.5; margin-bottom:18px; }

/* ============================================================
   UTIL
   ============================================================ */
.mt-8{margin-top:8px;} .mt-16{margin-top:16px;} .mt-24{margin-top:24px;} .mt-40{margin-top:40px;}
.text-center{ text-align:center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:960px){
  .hero-grid{ grid-template-columns:1fr; }
}
@media (max-width:880px){
  .nav-links{
    position:fixed; top:0; right:0; bottom:0; width:78vw; max-width:320px;
    background:var(--black-2); flex-direction:column; align-items:stretch;
    padding:110px 20px 30px; gap:8px; border-radius:0;
    transform:translateX(100%); transition:transform .4s cubic-bezier(.2,.9,.25,1);
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-links a{ text-align:center; padding:14px; }
  .nav-burger{ display:flex; }
  .footer-cols{ flex-direction:column; gap:34px; }
}
@media (max-width:600px){
  .countdown{ flex-wrap:wrap; }
  .countdown .unit{ width:calc(50% - 5px); }
  .list-row{ flex-direction:column; align-items:flex-start; }
}
