:root {
    --purple-dark: #1a0a2e;
    --purple-mid: #2d1b69;
    --purple-accent: #6b3fa0;
    --purple-light: #f3eef8;
    --gold: #c8a415;
    --gold-light: #e8c840;
    --gold-glow: #ffd700;
    --gold-muted: #d4af37;
    --cream: #FAFAF7;
    --cream-alt: #f5f0eb;
    --text-dark: #2a1a3e;
    --text-mid: #5a4a6e;
    --text-body: #444;
    --radius: 12px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text-body);
    background: var(--cream);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  .footer {
    margin-top: auto;
  }

  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ── NAV ── */
  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--purple-dark);
    border-bottom: 1px solid rgba(255,215,0,0.15);
  }

  .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
  }

  .nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-glow);
    text-decoration: none;
    white-space: nowrap;
  }

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

  .nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
  }

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

  .nav-links .nav-cta {
    background: linear-gradient(135deg, var(--gold-glow), var(--gold));
    color: var(--purple-dark);
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
  }

  .nav-links .nav-cta:hover {
    color: var(--purple-dark);
  }

  .nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold-glow);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.2rem;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 98;
  }

  .nav-overlay.open { display: block; }

  @media (max-width: 700px) {
    .nav-toggle { display: block; }

    .nav-links {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(26, 10, 46, 0.85);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 1.5rem;
      z-index: 99;
      padding: 2rem;
    }

    .nav-links.open { display: flex; }

    .nav-links a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--gold-glow);
      letter-spacing: 0.04em;
    }

    .nav-links a:hover {
      color: #fff;
    }

    .nav-links .nav-cta {
      font-family: 'Inter', sans-serif;
      font-size: 1.1rem;
      padding: 0.8rem 2rem;
      margin-top: 0.5rem;
    }

    .nav-close-li { display: block !important; }

    .nav-close {
      position: absolute;
      top: 1rem;
      right: 1.5rem;
      background: none;
      border: none;
      color: var(--gold-glow);
      font-size: 2rem;
      cursor: pointer;
    }
  }

  /* ── HERO ── */
  .hero {
    background: var(--purple-dark);
    overflow: hidden;
  }

  .hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    min-height: 420px;
  }

  .hero-content {
    flex: 1;
    padding: 3rem 2rem;
    text-align: center;
  }

  .hero-image {
    flex: 0 0 40%;
    min-height: 420px;
    background: url('hero-lights.jpg') center 20%/cover no-repeat;
    position: relative;
  }

  .hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--purple-dark) 0%, transparent 30%);
  }

  .hero-logo {
    max-width: 400px;
    width: 85%;
    margin-bottom: 0.8rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0,0,0,0.6);
    max-width: 420px;
    margin: 0 auto 0.8rem;
    line-height: 1.6;
  }

  .btn-primary {
    display: inline-block;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 0.95rem 2.4rem;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    letter-spacing: 0.02em;
  }

  .btn-gold {
    background: linear-gradient(135deg, var(--gold-glow) 0%, var(--gold) 100%);
    color: var(--purple-dark);
    box-shadow: 0 4px 15px rgba(200,164,21,0.35);
  }

  .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(200,164,21,0.45);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-glow) 100%);
  }

  .btn-purple {
    background: var(--purple-mid);
    color: #fff;
    box-shadow: 0 4px 15px rgba(45,27,105,0.3);
  }

  .btn-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(45,27,105,0.4);
    background: var(--purple-accent);
  }

  /* ── SECTION SHARED ── */
  section { padding: 5rem 0; }

  .section-rule {
    width: 60px;
    height: 3px;
    background: var(--gold-muted);
    margin: 0 auto 1rem;
    border: none;
    border-radius: 2px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.4rem;
  }

  .section-subtitle {
    text-align: center;
    color: var(--text-mid);
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .section-cta {
    text-align: center;
    margin-top: 2.5rem;
  }

  /* ── MEET YOUR INSTRUCTORS ── */
  .instructors-section { background: var(--cream); }

  .instructors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 450px;
    margin: 0 auto;
  }

  .instructor-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }

  .instructor-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid var(--gold-muted);
    margin: 0 auto 1rem;
    object-fit: cover;
    object-position: center 20%;
  }

  .instructor-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--gold-muted);
    margin: 0 auto 1rem;
    background: var(--purple-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--purple-accent);
  }

  .instructor-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
  }

  .instructor-card .headline {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--purple-accent);
    margin-bottom: 0.8rem;
  }

  .instructor-card .bio {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 0.8rem;
  }

  .instructor-credits {
    font-size: 0.8rem;
    color: var(--text-mid);
    line-height: 1.5;
  }

  .instructor-credits strong { color: var(--text-dark); }

  /* ── DATES ── */
  .dates-section {
    background: var(--purple-dark);
    color: #fff;
  }

  .dates-section .section-title { color: #fff; }
  .dates-section .section-subtitle { color: #c8b0e8; }

  .dates-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.8rem;
    max-width: 950px;
    margin: 0 auto 2rem;
  }

  .date-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: var(--radius);
    padding: 1.1rem 0.8rem;
    text-align: center;
  }

  .date-card .session {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    margin-bottom: 0.3rem;
  }

  .date-card .dates {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
  }

  .date-card.single {
    padding: 3rem 2.5rem;
    border: 2px solid var(--gold-muted);
    box-shadow: 0 0 30px rgba(212,175,55,0.15);
  }

  .date-card.single .session {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    background: var(--gold);
    color: var(--purple-dark);
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    letter-spacing: 0.15em;
  }

  .date-card.single .dates {
    font-size: 2.8rem;
    margin-bottom: 0.6rem;
  }

  .date-card.single .day-range {
    font-size: 1rem;
  }

  .date-card .day-range {
    font-size: 0.82rem;
    color: #c8b0e8;
  }

  .spots {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
  }

  .spots.available {
    background: rgba(72,199,142,0.15);
    color: #48c78e;
    border: 1px solid rgba(72,199,142,0.3);
  }

  .spots.low {
    background: rgba(255,183,77,0.15);
    color: #ffb74d;
    border: 1px solid rgba(255,183,77,0.3);
  }

  .spots.full {
    background: rgba(255,99,99,0.15);
    color: #ff6363;
    border: 1px solid rgba(255,99,99,0.3);
  }

  .dates-info {
    text-align: center;
    color: #c8b0e8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .dates-info strong { color: var(--gold-light); }

  .dates-section .section-cta { margin-top: 0; }

  /* ── WHAT THEY LEARN ── */
  .learn-section { background: var(--cream); }

  .learn-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .learn-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.8rem 1.2rem;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border-top: 3px solid var(--gold-muted);
  }

  .learn-icon {
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: center;
  }

  .learn-icon svg {
    width: 48px;
    height: 48px;
  }

  .learn-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
  }

  .learn-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.5;
  }

  /* ── THE SHOW ── */
  .show-section { background: var(--cream-alt); }

  .show-box {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid #eee;
  }

  .show-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
  }

  .show-box .show-name {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-muted);
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
  }

  .show-box p {
    color: var(--text-body);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .show-songs {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
  }

  .show-songs-last-row {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }

  .song-tag {
    background: var(--purple-light);
    color: var(--purple-accent);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    border: 1px solid rgba(107,63,160,0.15);
    white-space: nowrap;
  }

  /* ── PRICING ── */
  .pricing-section {
    background: var(--cream);
    text-align: center;
  }

  .price-box {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    max-width: 480px;
    margin: 0 auto 2rem;
    border: 1px solid #eee;
    border-top: 3px solid var(--gold-muted);
  }

  .price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold-muted);
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  .price-per {
    font-size: 0.95rem;
    color: var(--text-mid);
    margin-bottom: 1.2rem;
  }

  .price-detail {
    font-size: 0.9rem;
    color: var(--text-body);
    background: var(--cream);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid #eee;
    line-height: 1.6;
  }

  .price-includes {
    text-align: center;
    list-style: none;
    margin-bottom: 1.5rem;
  }

  .price-includes li {
    font-size: 0.92rem;
    color: var(--text-body);
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
  }

  .price-includes li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--gold-muted);
    font-weight: 700;
  }

  /* ── SCHOLARSHIPS ── */
  .scholarship-section { background: var(--cream); }

  .scholarship-box {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    max-width: 650px;
    margin: 0 auto;
    border: 1px solid #eee;
    border-top: 3px solid var(--gold-muted);
  }

  .scholarship-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
  }

  .scholarship-box p {
    color: var(--text-body);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .scholarship-box .venmo-handle {
    font-weight: 700;
    color: var(--purple-accent);
    font-size: 1.05rem;
  }

  .scholarship-divider {
    width: 40px;
    height: 2px;
    background: var(--gold-muted);
    margin: 2rem auto;
    border: none;
  }

  .scholarship-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
  }

  .scholarship-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .scholarship-form .form-note {
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-mid);
    margin-bottom: 1.2rem;
    line-height: 1.5;
  }

  .scholarship-form label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
  }

  .scholarship-form input,
  .scholarship-form select,
  .scholarship-form textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: var(--text-body);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    margin-bottom: 0.8rem;
    transition: border-color 0.2s;
  }

  .scholarship-form input:focus,
  .scholarship-form select:focus,
  .scholarship-form textarea:focus {
    outline: none;
    border-color: var(--purple-accent);
  }

  .scholarship-form textarea {
    min-height: 80px;
    resize: vertical;
  }

  .scholarship-form button {
    display: inline-block;
    background: var(--purple-mid);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(45,27,105,0.3);
    width: 100%;
    margin-top: 0.3rem;
  }

  .scholarship-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(45,27,105,0.4);
    background: var(--purple-accent);
  }

  .scholarship-form-fields {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
  }

  .scholarship-form-fields label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    text-align: center;
  }

  .scholarship-form-fields input,
  .scholarship-form-fields select,
  .scholarship-form-fields textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: var(--text-body);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    margin-bottom: 0.8rem;
    text-align: center;
  }

  .scholarship-form-fields input:focus,
  .scholarship-form-fields select:focus,
  .scholarship-form-fields textarea:focus {
    outline: none;
    border-color: var(--purple-accent);
  }

  .scholarship-form-fields textarea {
    min-height: 80px;
    resize: vertical;
    text-align: left;
  }

  /* ── FAQ ── */
  .faq-section { background: var(--cream-alt); }

  .faq-list {
    max-width: 700px;
    margin: 0 auto;
  }

  .faq-item {
    border-bottom: 1px solid #e5e0d8;
    padding: 1.2rem 0;
  }

  .faq-item:last-child { border-bottom: none; }

  .faq-q {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
  }

  .faq-q::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--gold-muted);
    font-weight: 700;
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 1rem;
  }

  .faq-item.open .faq-q::after { transform: rotate(45deg); }

  .faq-a {
    color: var(--text-body);
    line-height: 1.6;
    font-size: 0.92rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .faq-item.open .faq-a {
    max-height: 300px;
    padding-top: 0.5rem;
  }

  /* ── FOOTER ── */
  .footer {
    background: var(--purple-dark);
    color: #fff;
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .footer h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--gold-glow);
    margin-bottom: 1rem;
  }

  .footer p { color: #c8b0e8; font-size: 0.95rem; margin-bottom: 0.3rem; }
  .footer a { color: var(--gold-light); text-decoration: none; }
  .footer a:hover { text-decoration: underline; }

  .contact-form {
    max-width: 480px;
    margin: 0 auto 1.5rem;
    text-align: center;
  }

  .contact-form label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 0.3rem;
    letter-spacing: 0.03em;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    margin-bottom: 0.8rem;
    transition: border-color 0.2s;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: var(--gold-muted);
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: rgba(255,255,255,0.35);
  }

  .contact-form textarea {
    min-height: 100px;
    resize: vertical;
  }

  .contact-form button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-glow) 0%, var(--gold) 100%);
    color: var(--purple-dark);
    font-size: 1rem;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(200,164,21,0.3);
    width: 100%;
  }

  .contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(200,164,21,0.4);
  }

  .footer-cta { margin-top: 1.5rem; }

  .footer-cta a {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-glow) 0%, var(--gold) 100%);
    color: var(--purple-dark);
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s;
  }

  .footer-cta a:hover { transform: translateY(-2px); }

  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    color: #7060a0;
  }

  /* ── OVERVIEW CARDS (Home page) ── */
  .overview-section { background: var(--cream-alt); }

  .overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
  }

  .overview-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.8rem 1.2rem;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border-top: 3px solid var(--gold-muted);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .overview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }

  .overview-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
  }

  .overview-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.5;
  }

  .overview-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  /* ── MOBILE ── */
  @media (max-width: 800px) {
    .learn-grid { grid-template-columns: 1fr 1fr; }
    .show-songs { grid-template-columns: repeat(2, auto); }
    .overview-grid { grid-template-columns: 1fr; max-width: 350px; }
  }

  @media (max-width: 700px) {
    .hero-inner { flex-direction: column-reverse; min-height: auto; }
    .hero-image { flex: none; width: 100%; height: 300px; background-position: center 25%; }
    .hero-image::before { background: linear-gradient(to top, var(--purple-dark) 0%, transparent 40%); }
    .hero-content { padding: 2rem 1rem 2.5rem; }
    section { padding: 3.5rem 0; }
    .show-box { padding: 1.5rem; }
    .price-box { padding: 1.5rem; }
  }

  @media (max-width: 520px) {
    .dates-grid { grid-template-columns: 1fr 1fr; max-width: 340px; margin-left: auto; margin-right: auto; }
    .learn-grid { grid-template-columns: 1fr; max-width: 350px; margin-left: auto; margin-right: auto; }
    .show-songs { grid-template-columns: 1fr; }
    .show-songs-last-row { flex-direction: column; align-items: center; }
  }