/* =============================================
   GREENEVILLE MUSIC ACADEMY — styles.css
   Palette: Pitch black, Lime #B8F000, Off-white #F2F0EB, Slate #1A1A1A
   Type: Bebas Neue (display) · Inter (body) · Playfair Display Italic (quote)
   ============================================= */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #0D0D0D;
  --slate:    #1A1A1A;
  --lime:     #B8F000;
  --lime-dim: #8ABB00;
  --cream:    #F2F0EB;
  --mid:      #6B6B6B;
  --white:    #FFFFFF;

  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-italic:  'Playfair Display', Georgia, serif;

  --max-w: 1140px;
  --section-pad: 100px 24px;
}

html { scroll-behavior: smooth; }

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 240, 0, 0.15);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--lime);
  letter-spacing: 0.05em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--lime); }

.nav-cta {
  background: var(--lime) !important;
  color: var(--black) !important;
  padding: 8px 18px;
  border-radius: 2px;
  font-weight: 600 !important;
}

.nav-cta:hover { background: var(--lime-dim) !important; color: var(--black) !important; }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 48px 80px;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  gap: 40px;
}

.hero-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(160px, 22vw, 340px);
  color: rgba(184, 240, 0, 0.04);
  bottom: -20px;
  left: -20px;
  pointer-events: none;
  letter-spacing: -0.02em;
  line-height: 1;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(60px, 7.5vw, 110px);
  line-height: 0.95;
  color: var(--cream);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}

.hero-accent { color: var(--lime); }

.hero-sub {
  color: rgba(242, 240, 235, 0.65);
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Badge */
.hero-badge {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.badge-ring {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 3px solid var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(184, 240, 0, 0.2);
}

.badge-inner {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--slate);
  border: 2px solid rgba(184, 240, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
}

.badge-year {
  font-size: 11px;
  color: var(--lime);
  letter-spacing: 0.18em;
  font-weight: 600;
}

.badge-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.badge-sub {
  font-size: 10px;
  color: var(--lime);
  letter-spacing: 0.16em;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-star {
  color: var(--lime);
  font-size: 18px;
  margin-top: 4px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: var(--lime);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--lime-dim);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(242, 240, 235, 0.35);
}

.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.btn-full { width: 100%; text-align: center; }

/* ---------- SECTION SHARED ---------- */
.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime-dim);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.0;
  letter-spacing: 0.01em;
  color: var(--black);
}

/* ---------- VISION ---------- */
.vision {
  padding: var(--section-pad);
  background: var(--cream);
  border-top: 3px solid var(--lime);
}

.vision-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  margin-bottom: 64px;
}

.vision-label {
  font-family: var(--font-display);
  font-size: 52px;
  color: rgba(13, 13, 13, 0.1);
  line-height: 1;
  letter-spacing: 0.02em;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  align-self: start;
}

.vision-text p {
  font-size: 18px;
  color: var(--slate);
  margin-bottom: 16px;
  max-width: 640px;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--black);
  padding: 40px;
  border-radius: 4px;
}

.stat {
  flex: 1;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.5s ease;
}

.stat.revealed { opacity: 1; transform: translateY(0); }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--lime);
  letter-spacing: 0.02em;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: rgba(242, 240, 235, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
}

/* ---------- PROGRAMS ---------- */
.programs {
  padding: var(--section-pad);
  background: var(--slate);
}

.programs .section-title { color: var(--cream); }
.programs .section-eyebrow { color: var(--lime); }

.section-header { margin-bottom: 52px; }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 32px;
}

.program-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 36px 28px;
  transition: all 0.25s;
  opacity: 0;
  transform: translateY(20px);
}

.program-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.program-card:hover {
  background: rgba(184, 240, 0, 0.07);
  border-color: rgba(184, 240, 0, 0.3);
}

.program-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.program-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--cream);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.program-card p {
  color: rgba(242, 240, 235, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

.programs-note {
  color: rgba(242, 240, 235, 0.4);
  font-size: 13px;
  text-align: center;
}

/* ---------- MODEL ---------- */
.model {
  padding: var(--section-pad);
  background: var(--cream);
}

.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.model-left p {
  color: var(--slate);
  margin-bottom: 20px;
  font-size: 16px;
}

.fee-callout {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--black);
  padding: 20px 28px;
  border-left: 4px solid var(--lime);
  margin-top: 16px;
}

.fee-amount {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--lime);
  line-height: 1;
}

.fee-desc {
  font-size: 13px;
  color: rgba(242, 240, 235, 0.6);
  line-height: 1.5;
}

.impact-box, .goal-box {
  padding: 32px;
  margin-bottom: 16px;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.5s ease;
}

.impact-box.revealed, .goal-box.revealed {
  opacity: 1;
  transform: translateY(0);
}

.impact-box {
  background: var(--black);
  color: var(--cream);
}

.goal-box {
  background: var(--lime);
  color: var(--black);
}

.impact-box h3, .goal-box h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

.impact-box h3 { color: var(--lime); }

.impact-box p {
  color: rgba(242, 240, 235, 0.7);
  font-size: 15px;
  margin-bottom: 10px;
}

.goal-box p { font-size: 15px; font-weight: 500; }

/* ---------- LEADERSHIP ---------- */
.leadership {
  padding: var(--section-pad);
  background: var(--black);
}

.leader-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.leader-grid.revealed {
  opacity: 1;
  transform: translateY(0);
}

.leader-quote blockquote {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--cream);
  line-height: 1.4;
  position: relative;
  padding-left: 28px;
  border-left: 3px solid var(--lime);
}

.leader-bio .section-eyebrow { color: var(--lime); }

.leader-name {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.leader-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}

.leader-bio p {
  color: rgba(242, 240, 235, 0.65);
  font-size: 15px;
}

/* ---------- CONTACT ---------- */
.contact {
  padding: var(--section-pad);
  background: var(--slate);
}

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  color: var(--cream);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.contact-sub {
  color: rgba(242, 240, 235, 0.6);
  font-size: 16px;
  margin-bottom: 40px;
}

.contact-form { display: flex; flex-direction: column; gap: 14px; text-align: left; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-form input,
.contact-form select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--cream);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: 2px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.contact-form input::placeholder { color: rgba(242,240,235,0.35); }

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--lime);
}

.contact-form select option { background: var(--slate); color: var(--cream); }

.form-success {
  display: none;
  margin-top: 24px;
  padding: 20px;
  background: rgba(184, 240, 0, 0.12);
  border: 1px solid var(--lime);
  color: var(--lime);
  font-weight: 600;
  border-radius: 2px;
  text-align: center;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--black);
  padding: 40px 24px;
  border-top: 1px solid rgba(184, 240, 0, 0.15);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand { display: flex; align-items: baseline; gap: 12px; }

.footer-logo {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--lime);
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(242, 240, 235, 0.4);
  letter-spacing: 0.05em;
}

.footer-copy {
  font-size: 12px;
  color: rgba(242, 240, 235, 0.3);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 120px 24px 60px;
    text-align: center;
    align-items: center;
  }

  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-bg-text { font-size: 120px; }

  .vision-grid { grid-template-columns: 1fr; }
  .vision-label { writing-mode: horizontal-tb; transform: none; font-size: 32px; color: rgba(13,13,13,0.15); }

  .stat-row { flex-direction: column; gap: 28px; }
  .stat-divider { width: 60px; height: 1px; }

  .programs-grid { grid-template-columns: 1fr 1fr; }

  .model-grid { grid-template-columns: 1fr; gap: 40px; }

  .leader-grid { grid-template-columns: 1fr; gap: 40px; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .programs-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 16px; }
  .nav-links li:not(:last-child) { display: none; }
  .badge-ring { width: 170px; height: 170px; }
  .badge-inner { width: 146px; height: 146px; }
  .badge-name { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
