:root {
  --navy: #132a3a;
  --navy-2: #1b3a4b;
  --steel: #2c5470;
  --teal: #3d8b8b;
  --mint: #b7ece8;
  --sky: #7fd3d0;
  --gold: #d4a017;
  --sun: #f0c14b;
  --purple: #6b3fa0;
  --cream: #f6f1e6;
  --paper: #fbfaf6;
  --ink: #1a1a1a;
  --muted: #5b6770;
  --line: #d7ddd8;
  --need: #fff3bf;
  --need-ink: #6b4f00;
  --need-edge: #e0b000;
  --white: #fff;
  --shadow: 0 18px 40px rgba(19, 42, 58, 0.12);
  --radius: 18px;
  --max: 1120px;
  --font: "Source Sans 3", "Segoe UI", sans-serif;
  --display: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--steel); }
.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.need-info {
  background: var(--need);
  color: var(--need-ink);
  border: 1px dashed var(--need-edge);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.95rem;
  margin: 12px 0 20px;
}

.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--white); }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(160deg, var(--sun), var(--gold));
  display: grid; place-items: center;
  color: var(--navy); font-weight: 800;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 0.95rem; }
.brand-text span { font-size: 0.72rem; color: #c9d6cf; letter-spacing: 0.06em; text-transform: uppercase; }

nav.primary { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
nav.primary a, .drop > summary {
  color: #e8eee9;
  text-decoration: none;
  font-size: 0.92rem;
  padding: 8px 10px;
  border-radius: 999px;
  list-style: none;
  cursor: pointer;
}
nav.primary a:hover, .drop > summary:hover { background: rgba(255,255,255,0.08); }
nav.primary a.active { background: rgba(240,193,75,0.18); color: var(--sun); }
.drop { position: relative; }
.drop > summary { display: inline-block; }
.drop[open] > summary { background: rgba(255,255,255,0.08); }
.drop-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: #fff8ee;
  color: #10202b;
  min-width: 220px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
  z-index: 20;
}
nav.primary .drop-menu a,
.drop-menu a {
  display: block;
  color: #10202b;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
}
nav.primary .drop-menu a:hover,
.drop-menu a:hover {
  background: #ead9b0;
  color: #0b161d;
}
.cta-btn {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700;
  border-radius: 999px !important;
}
.menu-toggle { display: none; background: none; border: 0; color: white; font-size: 1.4rem; }
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  nav.primary {
    display: none;
    position: absolute;
    inset: 76px 12px auto 12px;
    background: var(--navy-2);
    padding: 12px;
    border-radius: 16px;
    flex-direction: column;
    align-items: stretch;
  }
  nav.primary.open { display: flex; }
  .drop-menu { position: static; box-shadow: none; background: #fff8ee; margin-top: 6px; }
  nav.primary .drop-menu a,
  .drop-menu a { color: #10202b; }
}

.utility { background: #0e2230; color: #d7e4dc; font-size: 0.92rem; }
.utility .wrap { display: flex; justify-content: space-between; gap: 12px; align-items: center; padding: 8px 0; }
.utility a { color: var(--sun); }

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  color: white;
  background:
    linear-gradient(180deg, rgba(14,34,48,0.28) 0%, rgba(14,34,48,0.82) 100%),
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=2000&q=80") center 40% / cover no-repeat;
}
.hero.festival {
  min-height: 78vh;
  background:
    linear-gradient(180deg, rgba(19,42,58,0.12), rgba(19,42,58,0.78)),
    url("https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?auto=format&fit=crop&w=2000&q=80") center 35% / cover no-repeat;
}
.page-hero.photo {
  background:
    linear-gradient(180deg, rgba(14,34,48,0.35), rgba(14,34,48,0.82)),
    url("https://images.unsplash.com/photo-1482192505345-5655af888cc4?auto=format&fit=crop&w=1800&q=80") center 45% / cover no-repeat;
  padding: 88px 0 56px;
}
.photo-strip { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 10px; margin: 8px 0 28px; }
.photo-strip .shot {
  width: 100%; height: 220px; border-radius: 16px;
  background: var(--mint) center/cover no-repeat;
}
@media (max-width: 800px) {
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip .shot { height: 180px; }
}
.hero-inner { padding: 64px 0 48px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--sun);
  margin: 0 0 8px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 1.02;
  margin: 0 0 12px;
}
.hero p { max-width: 640px; font-size: 1.15rem; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--navy); text-decoration: none;
  font-weight: 700; padding: 12px 18px; border-radius: 999px; border: 0;
}
.btn.ghost { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.45); }
.btn.navy { background: var(--navy); color: white; }

.page-hero {
  background: linear-gradient(180deg, var(--navy), var(--steel));
  color: white;
  padding: 56px 0 40px;
}
.page-hero h1 { font-family: var(--display); font-size: clamp(2rem, 4vw, 3.2rem); margin: 0 0 8px; }
.page-hero p { margin: 0; max-width: 720px; color: #d7e4dc; }

section { padding: 56px 0; }
.section-kicker { color: var(--purple); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.78rem; margin: 0 0 6px; }
h2 { font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 0 0 14px; color: var(--navy); }
.lede { font-size: 1.12rem; color: var(--muted); max-width: 760px; }
.quote {
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--navy);
  border-left: 4px solid var(--gold);
  padding: 8px 0 8px 18px;
  margin: 20px 0;
  max-width: 760px;
}
.prose p { max-width: 760px; }

.grid-3, .grid-2, .grid-4 { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 800px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
}

.card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.card .media { aspect-ratio: 16/10; background: var(--mint) center/cover no-repeat; }
.card .body { padding: 18px; }
.card h3 { margin: 0 0 8px; color: var(--navy); }
.card p { margin: 0; color: var(--muted); }
.card a.more { display: inline-block; margin-top: 12px; font-weight: 700; text-decoration: none; }

.stats { background: var(--navy); color: white; text-align: center; }
.stat b { display: block; font-family: var(--display); font-size: 2rem; color: var(--sun); }
.stat span { color: #c9d6cf; font-size: 0.92rem; }

.founder {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
}
.founder-photo {
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--steel);
  display: grid; place-items: center; color: white; text-align: center; padding: 16px;
}
@media (max-width: 700px) { .founder { grid-template-columns: 1fr; } }

.lineup-day { background: white; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.artist { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.faq details { background: white; border-radius: 12px; padding: 12px 16px; margin-bottom: 10px; box-shadow: var(--shadow); }
.faq summary { cursor: pointer; font-weight: 700; color: var(--navy); }
.board-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .board-grid { grid-template-columns: repeat(2, 1fr); } }
.board-card { background: white; border-radius: 16px; padding: 16px; box-shadow: var(--shadow); }
.board-card h3 { margin: 0 0 4px; font-size: 1.05rem; }
.board-card p, .board-card a { font-size: 0.9rem; color: var(--muted); }
form.simple { display: grid; gap: 10px; max-width: 520px; }
form.simple input, form.simple textarea { font: inherit; padding: 12px; border-radius: 10px; border: 1px solid var(--line); }
footer.site { background: var(--navy); color: #d7e4dc; padding: 42px 0 24px; }
footer.site h3 { color: var(--sun); margin-top: 0; }
footer.site a { color: #f6f1e6; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
.legal { margin-top: 28px; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 14px; font-size: 0.85rem; color: #9fb0a8; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
