/* Cumberland Con replica — original brand palette + Bebas Neue.
   No images / logos / photos copied from the original; all placeholder
   visuals are CSS / SVG. Event copy + lineup is factual content. */

:root {
  --green: #3f8d2a;
  --green-2: #4C7D40;
  --purple: #48265d;
  --purple-2: #322044;
  --pink: #d73f6a;
  --gray: #b8b8b8;
  --gray-2: #98968C;
  --ink: #1a1a1a;
  --paper: #ffffff;
  --nav-h: 64px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 8px);
}
body {
  margin: 0;
  font-family: 'Bebas Neue', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.prose { font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; letter-spacing: normal; line-height: 1.6; }

h1, h2, h3, h4 { margin: 0 0 .6em; line-height: 1.05; letter-spacing: .04em; text-transform: uppercase; }
h1 { font-size: clamp(2.4rem, 7vw, 4.5rem); }
h2 { font-size: clamp(2.0rem, 5.5vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

.skip-link {
  position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  position: fixed; left: 1rem; top: 1rem; width: auto; height: auto; padding: .6rem 1rem;
  background: var(--purple); color: #fff; z-index: 200; border-radius: 4px;
}

/* ── Navigation (CSS-only hamburger) ───────────────────────────── */
.nav-toggle { position: absolute; left: -9999px; }
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.4rem; min-height: var(--nav-h);
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
  flex-wrap: wrap;
}
.nav .brand { font-size: 1.4rem; letter-spacing: .12em; font-weight: 700; }
.nav ul { list-style: none; display: flex; gap: 1.2rem; margin: 0; padding: 0; flex-wrap: wrap; }
.nav a { font-size: 1.05rem; letter-spacing: .14em; padding: 0.4rem 0.2rem; }
.nav a:hover { color: #d6f0c8; text-decoration: none; }
.nav a.cta-link {
  background: rgba(255,255,255,0.16);
  padding: 0.35rem 0.8rem;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.35);
}
.nav a.cta-link:hover { background: rgba(255,255,255,0.28); }

.nav-burger {
  display: none;
  width: 32px; height: 24px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}
.nav-burger span {
  display: block; height: 3px; width: 100%;
  background: #fff; border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 760px) {
  .nav { padding: 0.7rem 1rem; }
  .nav-burger { display: flex; }
  .nav ul {
    display: none; width: 100%; flex-direction: column; gap: 0;
    padding: 0.5rem 0 0;
    order: 3;
  }
  .nav-toggle:checked ~ .nav ul { display: flex; }
  .nav ul li { border-top: 1px solid rgba(255,255,255,0.15); }
  .nav ul a { display: block; padding: 0.7rem 0.4rem; }
  .nav-toggle:checked ~ .nav .nav-burger span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .nav-toggle:checked ~ .nav .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav .nav-burger span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

/* ── Section scaffolding ────────────────────────────────────────── */
section { padding: 4.5rem 1.5rem; }
section .wrap { max-width: 1080px; margin: 0 auto; }
.bg-green   { background: var(--green); color: #fff; }
.bg-purple  { background: var(--purple); color: #fff; }
.bg-gray    { background: var(--gray); color: #1a1a1a; }
.bg-paper   { background: var(--paper); color: #1a1a1a; }
.bg-dark    { background: var(--purple-2); color: #fff; }
.text-purple { color: var(--purple); }
.text-pink   { color: var(--pink); }
.text-green  { color: var(--green); }
.center      { text-align: center; }
.muted       { color: #666; font-size: .9rem; max-width: 60ch; margin: 0 auto; }

/* utility margin helpers (replace inline styles) */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  background: var(--paper);
  text-align: center;
  padding-block: 5rem 4rem;
}
.hero .logo {
  width: min(280px, 60vw); height: auto;
  margin: 0 auto 1.6rem;
  filter: drop-shadow(0 6px 22px rgba(72,38,93,.25));
}
.hero .date { color: var(--purple); font-size: clamp(1.5rem, 4vw, 2.2rem); letter-spacing: .08em; margin-bottom: 0.4rem; }
.hero .venue { font-size: clamp(2rem, 6vw, 3.6rem); margin-bottom: 0.4rem; }
.hero .city { font-size: clamp(1.3rem, 3.5vw, 1.8rem); color: #444; }

/* Tickets block */
.tickets {
  background: #fff;
  max-width: 720px; margin: 3rem auto 0;
  padding: 2.2rem 2rem 2.6rem;
  border: 2px solid var(--purple); border-radius: 4px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.10);
  text-align: center;
}
.tickets h2 { color: var(--purple); margin-bottom: .8rem; }
.tickets .prose { color: #555; max-width: 50ch; margin: 0 auto .8rem; }
.cta {
  display: inline-block;
  background: var(--green); color: #fff;
  padding: 1rem 2.4rem;
  border-radius: 3px;
  font-size: 1.4rem; letter-spacing: .14em; font-weight: 700;
  text-decoration: none; box-shadow: 0 6px 14px rgba(63,141,42,.35);
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
  margin: .6rem 0 1rem;
}
.cta:hover {
  background: var(--purple);
  text-decoration: none; transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(72,38,93,.35);
}
.tickets-fineprint {
  font-size: .85rem; color: #888;
  max-width: 56ch; margin: 1rem auto 0; line-height: 1.5;
}

/* ── Lineup grids (Vendors / Special Guests) ───────────────────── */
.col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 3rem; align-items: start; }
@media (max-width: 700px) { .col-grid { grid-template-columns: 1fr; } }
.list-clean { list-style: none; margin: 0; padding: 0; }
.list-clean li { padding: 0.35em 0; border-bottom: 1px dashed rgba(255,255,255,0.18); font-size: 1.05rem; }
.list-clean li:last-child { border-bottom: 0; }
.bg-gray .list-clean li { border-bottom-color: rgba(0,0,0,0.18); }
.list-2col { columns: 2; column-gap: 2rem; }
@media (max-width: 600px) { .list-2col { columns: 1; } }
.who-extras { margin-top: 3rem; }

/* ── Schedule ─────────────────────────────────────────────────── */
.schedule { max-width: 760px; margin: 1.5rem auto 0; }
.schedule .row { display: grid; grid-template-columns: 130px 1fr; gap: 1rem; padding: 0.55rem 0; border-bottom: 1px dashed rgba(0,0,0,0.18); }
.bg-purple .schedule .row { border-bottom-color: rgba(255,255,255,0.22); }
.schedule .when { font-weight: 700; letter-spacing: .08em; color: var(--pink); }
.schedule .what { letter-spacing: 0; line-height: 1.4; }
@media (max-width: 600px) { .schedule .row { grid-template-columns: 90px 1fr; gap: 0.6rem; font-size: .95rem; } }

/* ── Sponsor placeholder lockups ──────────────────────────────── */
.sponsor-text-list { margin-bottom: 2rem; }
.sponsor-row {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  margin-top: 2rem; padding: 0; list-style: none;
}
.sponsor {
  background: #fff;
  width: 200px; height: 110px;
  border: 1px solid #ddd; border-radius: 4px;
  display: grid; place-items: center;
  text-align: center; padding: 0.6rem;
  font-family: 'Bebas Neue', sans-serif; letter-spacing: .12em;
  color: var(--purple);
  font-size: 1.05rem; line-height: 1.1;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.sponsor small { display: block; margin-top: .4em; font-size: .68rem; color: #666; letter-spacing: .08em; font-weight: normal; }
/* Per-sponsor accent stripes — purely decorative differentiation */
.sponsor--aba       { border-top: 4px solid #c4202a; }
.sponsor--s106      { border-top: 4px solid #1f6cb1; color: #1f6cb1; }
.sponsor--lake      { border-top: 4px solid #1aa6b7; color: #1aa6b7; }
.sponsor--burnside  { border-top: 4px solid #f08b3a; color: #c46720; }
.sponsor--jonas     { border-top: 4px solid #1a1a1a; }

/* ── Venue placeholder ────────────────────────────────────────── */
.venue-card { background: #fff; max-width: 800px; margin: 1.5rem auto 0; border: 1px solid #ddd; border-radius: 4px; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.venue-art {
  height: 240px;
  background:
    linear-gradient(180deg, #2a4a5a 0%, #4d6e74 60%, #758c89 100%);
  position: relative;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem; letter-spacing: 0.18em;
}
.venue-art::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 60%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.10) 0 12px, transparent 12px 28px),
    linear-gradient(180deg, transparent, rgba(0,0,0,0.4));
}
.venue-art::after {
  content: "[ venue placeholder ]";
  position: relative; z-index: 1;
}
.venue-info { padding: 1.4rem; text-align: center; }
.venue-info h3 { color: var(--purple); margin-bottom: 0.3rem; }

/* ── Contact / Footer ─────────────────────────────────────────── */
.contact { padding: 4rem 1.5rem 2rem; text-align: center; background: var(--paper); }
.socials { display: flex; gap: 2rem; justify-content: center; margin: 1.6rem 0; }
.socials a {
  display: grid; place-items: center;
  width: 50px; height: 50px;
  color: var(--purple);
  text-decoration: none;
  transition: transform 120ms ease, color 120ms ease;
}
.socials a:hover { color: var(--green); transform: translateY(-2px); }
.socials svg { width: 50px; height: 50px; fill: currentColor; }
footer { background: var(--purple-2); color: #d8d8d8; text-align: center; padding: 1.2rem; font-size: .9rem; letter-spacing: .08em; }

/* ── Tiny utility ─────────────────────────────────────────────── */
.lead { font-size: clamp(1rem, 1.6vw, 1.15rem); line-height: 1.6; max-width: 64ch; margin: 0 auto 1em; }
hr.div { border: 0; border-top: 2px solid currentColor; opacity: .25; max-width: 240px; margin: 1.4rem auto; }
.notice { background: #fff7d6; border: 1px solid #c9b85a; padding: 0.8rem 1rem; max-width: 720px; margin: 0 auto 2rem; border-radius: 4px; color: #5a4910; font-size: .9rem; letter-spacing: 0; line-height: 1.4; }

/* Reduce motion preferences */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
