/* ============ Live Venues Foundation ============
   Stage-dark + warm amber. Fraunces display / Inter body. */

:root {
  --bg: #0D0B08;
  --bg-raised: #14110D;
  --bg-card: #1A1611;
  --line: rgba(245, 166, 35, 0.14);
  --line-soft: rgba(242, 234, 217, 0.08);
  --amber: #F5A623;
  --amber-bright: #FFC46B;
  --amber-deep: #C77F0E;
  --text: #F2EAD9;
  --text-dim: #B8AD97;
  --text-faint: #7D745F;
  --display: 'Fraunces', Georgia, serif;
  --body: 'Inter', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }
.amber { color: var(--amber); }
img { max-width: 100%; }

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 1.4rem; }

.kicker {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 1rem;
}
.section { padding: 104px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--body);
  transition: all 0.22s ease;
}
.btn-amber {
  background: var(--amber);
  color: #17120A;
}
.btn-amber:hover { background: var(--amber-bright); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(245, 166, 35, 0.25); }
.btn-ghost {
  border-color: rgba(242, 234, 217, 0.25);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn-ghost-light {
  border-color: rgba(242, 234, 217, 0.3);
  color: var(--text);
  background: transparent;
  width: 100%;
  text-align: center;
}
.btn-ghost-light:hover { border-color: var(--amber); color: var(--amber); }
.btn-lg { padding: 15px 38px; font-size: 1rem; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 11, 8, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--text);
}
.logo-mark { flex-shrink: 0; border-radius: 10px; box-shadow: 0 0 0 1px var(--line); }
.logo-text {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.logo-text em {
  font-style: normal;
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--amber);
  margin-top: 2px;
}
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--amber); }
.nav-cta { padding: 9px 22px; font-size: 0.88rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; transition: 0.25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 190px 0 90px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -280px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 750px;
  background: radial-gradient(ellipse at center top, rgba(245, 166, 35, 0.16) 0%, rgba(245, 166, 35, 0.05) 42%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; text-align: center; max-width: 860px; }
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 1.6rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 7.5vw, 5.2rem);
  margin-bottom: 1.6rem;
}
.hero-sub {
  color: var(--text-dim);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 2.4rem;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Stat strip ---------- */
.stat-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 84px;
}
.stat {
  background: var(--bg-raised);
  padding: 30px 26px;
}
.stat-num {
  display: block;
  font-family: var(--display);
  font-size: 2.3rem;
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label { font-size: 0.84rem; color: var(--text-dim); line-height: 1.5; }

/* ---------- Crisis ---------- */
.crisis { border-top: 1px solid var(--line-soft); }
.crisis-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  margin-top: 2.5rem;
  align-items: start;
}
.crisis-text p { margin-bottom: 1.3rem; color: var(--text-dim); }
.crisis-text strong { color: var(--text); }
.crisis-close { border-left: 3px solid var(--amber); padding-left: 20px; }
.crisis-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.fact-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 26px 22px;
  transition: border-color 0.25s;
}
.fact-card:hover { border-color: var(--line); }
.fact-card .fact-num {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 8px;
}
.fact-card p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.55; }

/* ---------- Mission band ---------- */
.mission-band {
  background: linear-gradient(180deg, var(--bg-raised) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 96px 0;
  text-align: center;
}
.mission-band blockquote p {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  font-weight: 500;
  line-height: 1.35;
  max-width: 880px;
  margin: 0 auto;
}

/* ---------- Programs ---------- */
.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 2.6rem;
}
.program-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 38px 34px;
  transition: border-color 0.25s, transform 0.25s;
}
.program-card:hover { border-color: var(--line); transform: translateY(-3px); }
.program-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: rgba(245, 166, 35, 0.1);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.program-card h3 { font-size: 1.45rem; margin-bottom: 4px; }
.program-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 14px;
}
.program-card > p:last-child { color: var(--text-dim); font-size: 0.95rem; }

/* ---------- Why ---------- */
.why { border-top: 1px solid var(--line-soft); }
.why-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}
.why-text > p { color: var(--text-dim); margin-bottom: 1.3rem; }
.why-list { list-style: none; margin-top: 1.8rem; }
.why-list li {
  padding: 14px 0 14px 34px;
  position: relative;
  color: var(--text-dim);
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.95rem;
}
.why-list li:first-child { border-top: 1px solid var(--line-soft); }
.why-list li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 22px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px rgba(245, 166, 35, 0.6);
}
.why-list strong { color: var(--text); }

/* Marquee visual */
.marquee-card {
  background: #12100C;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 0 80px rgba(245, 166, 35, 0.07), inset 0 0 60px rgba(0,0,0,0.5);
}
.marquee-bulbs {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 6px 0;
}
.marquee-bulbs span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--amber-bright);
  box-shadow: 0 0 10px rgba(255, 196, 107, 0.8);
  animation: bulb 1.6s ease-in-out infinite;
}
.marquee-bulbs span:nth-child(2n) { animation-delay: 0.8s; }
@keyframes bulb {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.marquee-line {
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  color: var(--text-faint);
  margin: 18px 0;
}
.marquee-main {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  line-height: 1.3;
  color: var(--amber-bright);
  text-shadow: 0 0 30px rgba(245, 166, 35, 0.35);
  margin: 8px 0;
}

/* ---------- Forms ---------- */
.apply { border-top: 1px solid var(--line-soft); }
.form-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.form-sub { color: var(--text-dim); }
.form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 44px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 13px 15px;
  color: var(--text);
  font-family: var(--body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.12);
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8AD97' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }
.form-field textarea { resize: vertical; }
.form .btn-lg { width: 100%; }

/* ---------- Support ---------- */
.support { background: var(--bg-raised); border-top: 1px solid var(--line-soft); }
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.support-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 38px 34px;
}
.support-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.support-card > p { color: var(--text-dim); font-size: 0.92rem; margin-bottom: 24px; }
.form-compact { background: none; border: none; padding: 0; max-width: none; }
.form-compact .btn { width: 100%; text-align: center; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line-soft); padding: 72px 0 36px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.7fr;
  gap: 56px;
  padding-bottom: 48px;
}
.footer-tag { color: var(--text-faint); font-size: 0.9rem; margin-top: 16px; font-style: italic; }
.footer h4 {
  font-family: var(--body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.footer-news p { color: var(--text-faint); font-size: 0.88rem; margin-bottom: 16px; }
.news-row { display: flex; gap: 10px; }
.news-row input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: 11px 14px;
  color: var(--text);
  font-family: var(--body);
  font-size: 0.9rem;
}
.news-row input:focus { outline: none; border-color: var(--amber); }
.news-row .btn { padding: 11px 20px; font-size: 0.88rem; }
.footer-links { display: flex; flex-direction: column; }
.footer-links a {
  color: var(--text-faint);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-faint); }
.footer-fineprint { max-width: 520px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
.desk-only { display: inline; }
@media (max-width: 960px) {
  .crisis-grid, .why-inner, .support-grid { grid-template-columns: 1fr; gap: 44px; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .desk-only { display: none; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--bg-raised);
    border-bottom: 1px solid var(--line-soft);
    padding: 20px 24px;
    gap: 18px;
  }
  .hero { padding-top: 150px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form { padding: 30px 22px; }
  .stat-strip { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
}
