*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green-dark:  #0d2419;
      --green-main:  #1a4a2e;
      --green-mid:   #2d6a4f;
      --green-light: #3d8b6f;
      --gold-dark:   #8a6a10;
      --gold-main:   #c9a227;
      --gold-light:  #e8c84a;
      --gold-pale:   #f5e9b8;
      --cream:       #f7f2e4;
      --white:       #ffffff;
      --overlay:     rgba(10, 28, 18, 0.72);
      --section-pad: clamp(3rem, 8vw, 6rem);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Crimson Text', Georgia, serif;
      background: var(--green-dark);
      color: var(--cream);
      overflow-x: hidden;
    }

    /* ── SCROLLBAR ─────────────────────────────── */
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: var(--green-dark); }
    ::-webkit-scrollbar-thumb { background: var(--gold-main); border-radius: 4px; }

    /* ── HEADINGS ──────────────────────────────── */
    h1, h2, h3, h4 { font-family: 'Cinzel', serif; letter-spacing: .05em; }

    /* ── SECTION TITLES ────────────────────────── */
    .section-title {
      text-align: center;
      margin-bottom: 3rem;
    }
    .section-title h2 {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      color: var(--gold-light);
      text-transform: uppercase;
      position: relative;
      display: inline-block;
    }
    .section-title h2::before,
    .section-title h2::after {
      content: '✦';
      color: var(--gold-main);
      margin: 0 1rem;
      font-size: .8em;
      vertical-align: middle;
    }
    .section-title p {
      margin-top: .8rem;
      font-size: 1.2rem;
      font-style: italic;
      color: var(--gold-pale);
      opacity: .85;
    }

    /* ── CELTIC DIVIDER ────────────────────────── */
    .celtic-divider {
      text-align: center;
      margin: 2rem 0;
      color: var(--gold-main);
      font-size: 1.4rem;
      letter-spacing: .5rem;
      opacity: .6;
    }

    /* ═══════════════════════════════════════════
       NAV
    ═══════════════════════════════════════════ */
    #nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(13, 36, 25, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201, 162, 39, 0.3);
      padding: .75rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      transition: background .3s;
    }
    #nav.scrolled {
      background: rgba(13, 36, 25, 0.98);
      box-shadow: 0 2px 20px rgba(0,0,0,.5);
    }
    .nav-brand {
      display: flex;
      align-items: center;
      gap: .75rem;
      text-decoration: none;
    }
    .nav-brand img {
      height: 40px;
      width: 40px;
      object-fit: contain;
      filter: drop-shadow(0 0 6px rgba(201,162,39,.5));
    }
    .nav-brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }
    .nav-brand-text .name {
      font-family: 'Cinzel', serif;
      font-weight: 700;
      font-size: .95rem;
      color: var(--gold-light);
      letter-spacing: .08em;
    }
    .nav-brand-text .sub {
      font-family: 'Cinzel', serif;
      font-size: .6rem;
      color: var(--gold-main);
      letter-spacing: .15em;
      text-transform: uppercase;
    }
    .nav-end {
      display: flex;
      align-items: center;
      gap: .75rem;
    }
    .nav-links {
      display: flex;
      list-style: none;
      gap: 1.8rem;
      align-items: center;
    }
    .nav-links a {
      font-family: 'Cinzel', serif;
      font-size: .78rem;
      font-weight: 600;
      color: var(--cream);
      text-decoration: none;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .25rem 0;
      position: relative;
      transition: color .2s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 0; right: 0;
      height: 1px;
      background: var(--gold-main);
      transform: scaleX(0);
      transition: transform .25s;
    }
    .nav-links a:hover { color: var(--gold-light); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-fb {
      background: #1877f2;
      color: #fff !important;
      padding: .4rem .9rem !important;
      border-radius: 4px;
      white-space: nowrap;
    }
    .nav-fb::after { display: none !important; }
    .nav-fb:hover { background: #1560cc !important; opacity: 1; }

    .nav-ig {
      background: #c13584;
      color: #fff !important;
      padding: .4rem .9rem !important;
      border-radius: 4px;
      white-space: nowrap;
    }
    .nav-ig::after { display: none !important; }
    .nav-ig:hover { background: #a02070 !important; opacity: 1; }

    /* ── LANG SWITCHER ─────────────────────────── */
    .lang-switcher {
      display: flex;
      gap: .3rem;
      align-items: center;
    }
    .lang-btn {
      font-family: 'Cinzel', serif;
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .06em;
      color: var(--cream);
      background: none;
      border: 1px solid rgba(201,162,39,.3);
      border-radius: 3px;
      padding: .22rem .55rem;
      cursor: pointer;
      transition: border-color .2s, color .2s, background .2s;
      text-transform: uppercase;
      line-height: 1.4;
    }
    .lang-btn:hover { border-color: var(--gold-main); color: var(--gold-light); }
    .lang-btn.active { background: rgba(201,162,39,.2); border-color: var(--gold-main); color: var(--gold-light); }

    /* Hamburger */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: .4rem;
      background: none;
      border: none;
    }
    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--gold-main);
      border-radius: 2px;
      transition: .3s;
    }

    /* ═══════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════ */
    #inicio {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
        background-size: cover;
      background-position: center 20%;
      transform: scale(1.05);
      animation: heroZoom 20s ease-in-out infinite alternate;
    }
    @keyframes heroZoom {
      from { transform: scale(1.05); }
      to   { transform: scale(1.12); }
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(10,28,18,.55) 0%,
        rgba(10,28,18,.65) 60%,
        rgba(10,28,18,.9) 100%
      );
    }
    .hero-content {
      position: relative;
      z-index: 1;
      padding: 6rem 2rem 4rem;
      max-width: 800px;
      animation: heroFadeIn 1.2s ease both;
    }
    @keyframes heroFadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-logo {
      width: clamp(120px, 22vw, 200px);
      height: clamp(120px, 22vw, 200px);
      object-fit: contain;
      margin-bottom: 1.5rem;
      filter: drop-shadow(0 0 20px rgba(201,162,39,.6));
      animation: logoPulse 4s ease-in-out infinite alternate;
    }
    @keyframes logoPulse {
      from { filter: drop-shadow(0 0 15px rgba(201,162,39,.4)); }
      to   { filter: drop-shadow(0 0 30px rgba(232,200,74,.8)); }
    }
    .hero-title {
      font-size: clamp(2.8rem, 8vw, 6rem);
      font-weight: 900;
      color: var(--gold-light);
      text-shadow: 0 2px 30px rgba(0,0,0,.8);
      line-height: 1;
      letter-spacing: .08em;
      margin-bottom: .5rem;
    }
    .hero-subtitle {
      font-family: 'Cinzel', serif;
      font-size: clamp(.85rem, 2.5vw, 1.3rem);
      color: var(--gold-pale);
      letter-spacing: .3em;
      text-transform: uppercase;
      margin-bottom: 2rem;
    }
    .hero-tagline {
      font-size: clamp(1.1rem, 2.5vw, 1.5rem);
      font-style: italic;
      color: var(--cream);
      opacity: .9;
      margin-bottom: 2.5rem;
      line-height: 1.5;
    }
    .hero-cta {
      display: inline-block;
      background: var(--gold-main);
      color: var(--green-dark);
      font-family: 'Cinzel', serif;
      font-size: .85rem;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
      padding: .9rem 2.2rem;
      border-radius: 2px;
      text-decoration: none;
      transition: background .25s, transform .2s, box-shadow .25s;
      box-shadow: 0 4px 20px rgba(201,162,39,.3);
    }
    .hero-cta:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(201,162,39,.5);
    }
    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .4rem;
      color: var(--gold-pale);
      opacity: .6;
      font-family: 'Cinzel', serif;
      font-size: .65rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      animation: bounce 2s ease-in-out infinite;
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(6px); }
    }
    .hero-scroll svg { width: 20px; height: 20px; fill: var(--gold-main); }

    /* ═══════════════════════════════════════════
       SOBRE NOSOTROS
    ═══════════════════════════════════════════ */
    #nosotros {
      padding: var(--section-pad) 2rem;
      background: linear-gradient(135deg, var(--green-dark) 0%, #102d1e 100%);
    }
    .about-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }
    .about-text p {
      font-size: 1.2rem;
      line-height: 1.85;
      color: var(--cream);
      margin-bottom: 1.2rem;
    }
    .about-text p strong {
      color: var(--gold-light);
      font-weight: 600;
    }
    .about-features {
      list-style: none;
      margin-top: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: .7rem;
    }
    .about-features li {
      display: flex;
      align-items: flex-start;
      gap: .8rem;
      font-size: 1.1rem;
      color: var(--cream);
    }
    .about-features li::before {
      content: '❧';
      color: var(--gold-main);
      flex-shrink: 0;
      font-size: 1.2rem;
      margin-top: .05rem;
    }
    .about-image {
      position: relative;
    }
    .about-image img {
      width: 100%;
      border-radius: 4px;
      display: block;
      object-fit: cover;
      aspect-ratio: 3/4;
      filter: brightness(.92) saturate(1.1);
    }
    .about-image::before {
      content: '';
      position: absolute;
      inset: -8px;
      border: 2px solid var(--gold-main);
      border-radius: 6px;
      opacity: .4;
      pointer-events: none;
    }
    .about-image::after {
      content: '';
      position: absolute;
      inset: -14px;
      border: 1px solid var(--gold-main);
      border-radius: 8px;
      opacity: .2;
      pointer-events: none;
    }
    .triskel-deco {
      display: block;
      width: 80px;
      margin: 2rem auto;
      opacity: .4;
    }

    /* ═══════════════════════════════════════════
       ACTUACIONES / VIDEOS
    ═══════════════════════════════════════════ */
    #actuaciones {
      padding: var(--section-pad) 2rem;
      background: #0a1e12;
      position: relative;
    }
    #actuaciones::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, transparent, var(--gold-main), transparent);
    }
    #actuaciones::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, transparent, var(--gold-main), transparent);
    }
    .videos-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
    }
    .video-card {
      background: var(--green-main);
      border-radius: 6px;
      overflow: hidden;
      border: 1px solid rgba(201,162,39,.2);
      transition: transform .3s, box-shadow .3s, border-color .3s;
    }
    .video-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(0,0,0,.5);
      border-color: rgba(201,162,39,.5);
    }
    .video-card video {
      width: 100%;
      display: block;
      aspect-ratio: 16/9;
      object-fit: cover;
      background: #000;
    }
    .video-caption {
      padding: 1rem 1.2rem;
    }
    .video-caption h3 {
      font-size: 1rem;
      color: var(--gold-light);
      margin-bottom: .3rem;
    }
    .video-caption p {
      font-size: .95rem;
      font-style: italic;
      color: var(--cream);
      opacity: .75;
    }

    /* ═══════════════════════════════════════════
       GALERÍA
    ═══════════════════════════════════════════ */
    #galeria {
      padding: var(--section-pad) 2rem;
      background: linear-gradient(180deg, var(--green-dark) 0%, #0a1e12 100%);
    }
    .gallery-grid {
      max-width: 1200px;
      margin: 0 auto;
      columns: 3 280px;
      column-gap: 1rem;
    }
    .gallery-item {
      break-inside: avoid;
      margin-bottom: 1rem;
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      cursor: pointer;
      border: 1px solid rgba(201,162,39,.15);
    }
    .gallery-item img {
      width: 100%;
      display: block;
      transition: transform .4s ease, filter .4s ease;
      filter: brightness(.85) saturate(1.1);
    }
    .gallery-item-small img {
      max-height: 200px;
      object-fit: cover;
      object-position: center top;
    }
    .gallery-item:hover img {
      transform: scale(1.04);
      filter: brightness(1) saturate(1.2);
    }
    .gallery-item-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,28,18,.8) 0%, transparent 60%);
      opacity: 0;
      transition: opacity .3s;
      display: flex;
      align-items: flex-end;
      padding: 1rem;
    }
    .gallery-item:hover .gallery-item-overlay { opacity: 1; }
    .gallery-item-overlay span {
      font-family: 'Cinzel', serif;
      font-size: .75rem;
      color: var(--gold-light);
      letter-spacing: .1em;
    }

    /* Lightbox */
    #lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(5,15,9,.92);
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }
    #lightbox.active { display: flex; }
    #lightbox img {
      max-width: 90vw;
      max-height: 90vh;
      object-fit: contain;
      border-radius: 4px;
      box-shadow: 0 0 80px rgba(0,0,0,.8);
      border: 1px solid rgba(201,162,39,.3);
    }
    #lightbox-close {
      position: absolute;
      top: 1rem; right: 1.5rem;
      font-size: 2rem;
      color: var(--gold-light);
      cursor: pointer;
      background: none;
      border: none;
      line-height: 1;
      transition: color .2s, transform .2s;
    }
    #lightbox-close:hover { color: var(--white); transform: scale(1.2); }
    #lightbox-prev, #lightbox-next {
      position: absolute;
      top: 50%; transform: translateY(-50%);
      background: rgba(13,36,25,.7);
      border: 1px solid rgba(201,162,39,.3);
      color: var(--gold-light);
      font-size: 1.8rem;
      padding: .6rem 1rem;
      cursor: pointer;
      border-radius: 4px;
      transition: background .2s;
    }
    #lightbox-prev { left: 1rem; }
    #lightbox-next { right: 1rem; }
    #lightbox-prev:hover, #lightbox-next:hover { background: rgba(26,74,46,.9); }

    /* ═══════════════════════════════════════════
       ESCUELA DE GAITA
    ═══════════════════════════════════════════ */
    #escuela {
      padding: var(--section-pad) 2rem;
      background: var(--green-main);
      position: relative;
      overflow: hidden;
    }
    #escuela::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, transparent, var(--gold-main), transparent);
    }
    .school-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 3rem;
      align-items: start;
    }
    .school-poster {
      position: relative;
    }
    .school-poster img {
      width: 100%;
      border-radius: 6px;
      display: block;
      box-shadow: 0 10px 40px rgba(0,0,0,.5);
      border: 2px solid rgba(201,162,39,.3);
    }
    .school-info h3 {
      font-size: clamp(1.3rem, 3vw, 2rem);
      color: var(--gold-light);
      margin-bottom: 1.2rem;
    }
    .school-info p {
      font-size: 1.15rem;
      line-height: 1.8;
      color: var(--cream);
      margin-bottom: 1rem;
    }
    .school-details {
      margin-top: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .school-detail {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      background: rgba(10,28,18,.4);
      padding: 1rem 1.2rem;
      border-radius: 4px;
      border-left: 3px solid var(--gold-main);
    }
    .school-detail .icon {
      font-size: 1.5rem;
      flex-shrink: 0;
    }
    .school-detail .label {
      font-family: 'Cinzel', serif;
      font-size: .75rem;
      color: var(--gold-main);
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: .2rem;
    }
    .school-detail .value {
      font-size: 1.05rem;
      color: var(--cream);
    }

    /* ═══════════════════════════════════════════
       CONTACTO
    ═══════════════════════════════════════════ */
    #contacto {
      padding: var(--section-pad) 2rem;
      background: linear-gradient(135deg, #0a1e12 0%, var(--green-dark) 100%);
      position: relative;
    }
    .contact-inner {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }
    .contact-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }
    .contact-card {
      background: rgba(45, 106, 79, .25);
      border: 1px solid rgba(201,162,39,.25);
      border-radius: 6px;
      padding: 1.5rem 1.2rem;
      transition: background .25s, border-color .25s;
    }
    .contact-card:hover {
      background: rgba(45,106,79,.4);
      border-color: rgba(201,162,39,.5);
    }
    .contact-card .icon { font-size: 2rem; margin-bottom: .7rem; }
    .contact-card .label {
      font-family: 'Cinzel', serif;
      font-size: .72rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gold-main);
      margin-bottom: .4rem;
    }
    .contact-card .value {
      font-size: 1.05rem;
      color: var(--cream);
    }
    .contact-card a { color: var(--cream); text-decoration: none; }
    .contact-card a:hover { color: var(--gold-light); }

    .social-btns {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }

    .fb-btn {
      display: inline-flex;
      align-items: center;
      gap: .7rem;
      background: #1877f2;
      color: #fff;
      font-family: 'Cinzel', serif;
      font-size: .9rem;
      font-weight: 600;
      letter-spacing: .08em;
      padding: 1rem 2rem;
      border-radius: 6px;
      text-decoration: none;
      transition: background .25s, transform .2s, box-shadow .25s;
      box-shadow: 0 4px 20px rgba(24,119,242,.35);
    }
    .fb-btn:hover {
      background: #1460d0;
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(24,119,242,.5);
    }
    .fb-btn svg { width: 22px; height: 22px; fill: #fff; }

    .ig-btn {
      display: inline-flex;
      align-items: center;
      gap: .7rem;
      background: #c13584;
      color: #fff;
      font-family: 'Cinzel', serif;
      font-size: .9rem;
      font-weight: 600;
      letter-spacing: .08em;
      padding: 1rem 2rem;
      border-radius: 6px;
      text-decoration: none;
      transition: background .25s, transform .2s, box-shadow .25s;
      box-shadow: 0 4px 20px rgba(193,53,132,.35);
    }
    .ig-btn:hover {
      background: #a02070;
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(193,53,132,.5);
    }
    .ig-btn svg { width: 22px; height: 22px; fill: #fff; }

    /* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
    footer {
      background: var(--green-dark);
      border-top: 1px solid rgba(201,162,39,.2);
      padding: 2rem;
      text-align: center;
    }
    footer .footer-logo {
      width: 60px;
      opacity: .6;
      margin-bottom: .8rem;
    }
    footer p {
      font-family: 'Cinzel', serif;
      font-size: .75rem;
      color: var(--gold-main);
      letter-spacing: .1em;
      opacity: .6;
    }

    /* ═══════════════════════════════════════════
       IMAGEN / MERCH
    ═══════════════════════════════════════════ */
    #imagen {
      padding: var(--section-pad) 2rem;
      background: linear-gradient(135deg, #0a1e12 0%, var(--green-dark) 100%);
      position: relative;
    }
    #imagen::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, transparent, var(--gold-main), transparent);
    }
    .merch-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 4rem;
      align-items: center;
    }
    .merch-image {
      position: relative;
      display: flex;
      justify-content: center;
    }
    .merch-image img {
      width: 100%;
      max-width: 380px;
      border-radius: 8px;
      display: block;
      filter: drop-shadow(0 20px 50px rgba(0,0,0,.6));
      transition: transform .4s ease, filter .4s ease;
    }
    .merch-image:hover img {
      transform: scale(1.03) rotate(-1deg);
      filter: drop-shadow(0 28px 60px rgba(201,162,39,.25));
    }
    .merch-text h3 {
      font-size: clamp(1.3rem, 3vw, 2rem);
      color: var(--gold-light);
      margin-bottom: 1.2rem;
    }
    .merch-text p {
      font-size: 1.15rem;
      line-height: 1.85;
      color: var(--cream);
      margin-bottom: 1rem;
    }
    .merch-items {
      list-style: none;
      margin: 1.5rem 0 2rem;
      display: flex;
      flex-direction: column;
      gap: .6rem;
    }
    .merch-items li {
      display: flex;
      align-items: center;
      gap: .8rem;
      font-size: 1.05rem;
      color: var(--cream);
    }
    .merch-items li::before {
      content: '✦';
      color: var(--gold-main);
      font-size: .8rem;
      flex-shrink: 0;
    }
    .merch-cta {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      background: transparent;
      color: var(--gold-light);
      font-family: 'Cinzel', serif;
      font-size: .85rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: .85rem 2rem;
      border-radius: 3px;
      text-decoration: none;
      border: 1px solid var(--gold-main);
      transition: background .25s, color .25s, transform .2s, box-shadow .25s;
    }
    .merch-cta:hover {
      background: var(--gold-main);
      color: var(--green-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(201,162,39,.35);
    }

    /* ── SCHOOL MEDIA & COURSE ────────────────── */
    .school-media {
      max-width: 680px;
      margin: 3rem auto 0;
    }
    .school-media .video-card video {
      aspect-ratio: 1 / 1;
      object-fit: contain;
    }
    .school-toggle {
      max-width: 1100px;
      margin: 3rem auto 0;
    }
    .school-toggle > summary {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .8rem;
      cursor: pointer;
      list-style: none;
      padding: .85rem 2rem;
      border: 1px solid rgba(201,162,39,.5);
      border-radius: 3px;
      color: var(--gold-light);
      font-family: 'Cinzel', serif;
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      max-width: 440px;
      margin: 0 auto;
      transition: background .25s;
      user-select: none;
    }
    .school-toggle > summary::-webkit-details-marker { display: none; }
    .school-toggle > summary::marker { display: none; }
    .school-toggle > summary:hover { background: rgba(201,162,39,.12); }
    .school-toggle[open] > summary { background: rgba(201,162,39,.15); border-color: rgba(201,162,39,.7); }
    .toggle-chevron {
      width: 18px; height: 18px;
      fill: var(--gold-main);
      transition: transform .3s;
      flex-shrink: 0;
    }
    .school-toggle[open] .toggle-chevron { transform: rotate(180deg); }
    .school-toggle .school-course {
      margin-top: 2rem;
    }
    .school-course {
      max-width: 1100px;
      margin: 3rem auto 0;
    }
    .school-course-title {
      font-size: clamp(1.2rem, 2.5vw, 1.6rem);
      color: var(--gold-light);
      text-align: center;
      margin-bottom: 1.5rem;
    }
    .school-pieces {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: .75rem;
    }
    .school-piece {
      background: rgba(10,28,18,.4);
      border: 1px solid rgba(201,162,39,.15);
      border-left: 3px solid var(--gold-main);
      border-radius: 4px;
      padding: .75rem 1rem;
      display: flex;
      flex-direction: column;
      gap: .35rem;
    }
    .piece-name {
      font-size: 1rem;
      color: var(--cream);
    }
    .piece-sub {
      font-size: .85rem;
      font-style: italic;
      color: var(--gold-pale);
      opacity: .7;
    }
    .school-piece audio {
      width: 100%;
      height: 28px;
      margin-top: .15rem;
      accent-color: var(--gold-main);
    }
    .school-pdf-wrapper {
      text-align: center;
      margin-top: 2rem;
    }
    .school-pdf-link {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      color: var(--gold-light);
      font-family: 'Cinzel', serif;
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid rgba(201,162,39,.5);
      padding: .75rem 1.8rem;
      border-radius: 3px;
      transition: background .25s, color .25s;
    }
    .school-pdf-link:hover {
      background: var(--gold-main);
      color: var(--green-dark);
    }

    /* ═══════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════ */
    @media (max-width: 860px) {
      .about-grid,
      .school-grid,
      .merch-grid { grid-template-columns: 1fr; }
      .about-image { order: -1; }
      .about-image img { aspect-ratio: 4/3; max-height: 360px; object-position: top; }
      .gallery-grid { columns: 2 200px; }
    }

    @media (max-width: 640px) {
      .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(13,36,25,.98); padding: 1rem 2rem 1.5rem; gap: 1rem; border-top: 1px solid rgba(201,162,39,.2); }
      .nav-links.open { display: flex; }
      .nav-toggle { display: flex; }
      .gallery-grid { columns: 1; }
      #lightbox-prev, #lightbox-next { display: none; }
    }

    /* ── FADE-IN ON SCROLL ─────────────────────── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
