/* =============================================================
   PEDRO MIGUEL GARRIDO — main.css  (v1.0)
   Design tokens + shared layout for all pages
   ============================================================= */

/* ── 0. CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  /* Colours */
  --c-white:    #FFFFFF;
  --c-black:    #0C0B09;
  --c-red:      #B11F26;
  --c-red-dark: #8C1419;
  --c-grey-50:  #F7F5F1;
  --c-grey-100: #F4F3F0;
  --c-grey-200: #E5E3DF;
  --c-grey-400: #9E9B96;
  --c-grey-600: #6A6764;

  /* Type */
  --f-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --f-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing (8-pt grid) */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --rail-w:      0px;
  --topbar-h:    0px;
  --content-max: 1160px;

  /* Easing */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast:    180ms;
  --dur-base:    380ms;
  --dur-slow:    650ms;
}


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

html {
  font-size: 16px;
  scroll-behavior: auto; /* Lenis takes over */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--c-white);
  color: var(--c-black);
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
p { text-align: justify; text-align-last: left; hyphens: auto; -webkit-hyphens: auto; overflow-wrap: break-word; }

:focus-visible {
  outline: 2px solid var(--c-red);
  outline-offset: 3px;
  border-radius: 1px;
}


/* ── 2. TYPOGRAPHY HELPERS ────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--f-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-red);
}

.t-meta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-grey-400);
}

.link-underline {
  position: relative;
  display: inline-block;
}
.link-underline::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--c-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-base) var(--ease-out);
}
.link-underline:hover::after,
.link-underline:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}


/* ── 3. PAGE-TRANSITION OVERLAY ───────────────────────────── */
#page-transition {
  position: fixed;
  inset: 0;
  background: var(--c-black);
  z-index: 9999;
  pointer-events: none;
  will-change: opacity;
  opacity: 0;
}


/* ── 4. FLOATING MENU BUTTON ──────────────────────────────── */
#rail {
  position: fixed;
  top: var(--sp-5);
  left: var(--sp-5);
  z-index: 300;
}

.rail__logo { display: none; }

/* Hamburger */
.rail__menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(12, 11, 9, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--dur-fast) ease;
}
.rail__menu-btn:hover { background: rgba(12, 11, 9, 0.5); }

.rail__menu-btn__bar {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--c-white);
  transition:
    transform var(--dur-base) var(--ease-out),
    opacity   var(--dur-fast) ease;
  transform-origin: center;
}

.rail__menu-btn.is-open .rail__menu-btn__bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.rail__menu-btn.is-open .rail__menu-btn__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.rail__menu-btn.is-open .rail__menu-btn__bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}



/* ── 5. MENU OVERLAY ──────────────────────────────────────── */
#menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--c-black);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Padding responde a vw y svh: se comprime al hacer zoom */
  padding:
    clamp(var(--sp-16), 12svh, var(--sp-24))
    clamp(var(--sp-8), 6vw, var(--sp-20))
    clamp(var(--sp-6), 5svh, var(--sp-12))
    clamp(var(--sp-8), 6vw, var(--sp-20));
  overflow: hidden;

  /* Hidden state — GSAP controls visibility */
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

#menu-overlay.is-open {
  pointer-events: all;
  visibility: visible;
}

.menu__nav {
  /* Se comprime cuando la pantalla (o el zoom) encoge */
  margin-bottom: clamp(var(--sp-3), 3svh, var(--sp-10));
}

.menu__nav ul {
  display: flex;
  flex-direction: column;
  /* Hueco entre items se reduce con svh cuando hay poco espacio vertical */
  gap: clamp(0px, 1.2svh, var(--sp-2));
}

.menu__nav li { overflow: hidden; }

.menu__nav a {
  display: block;
  font-family: var(--f-display);
  /*
   * min(5.5vw, 7.5svh):
   *   — vw limita el ancho: texto proporcional al viewport width
   *   — svh limita la altura: 8 items × 7.5svh = 60svh, deja margen para padding
   * Al hacer zoom el viewport en px CSS encoge → ambos valores encogen → el texto escala
   */
  font-size: clamp(1.5rem, min(5.5vw, 7.5svh), 4.5rem);
  font-weight: 700;
  line-height: 1;
  /* Padding vertical también responde a svh */
  padding: clamp(0px, 0.6svh, var(--sp-2)) 0;
  color: rgba(255,255,255,0.25);
  transition: color var(--dur-fast) ease;
}
.menu__nav a:hover,
.menu__nav a:focus-visible { color: var(--c-white); }
.menu__nav a.is-active { color: var(--c-red); }

.menu__footer {
  display: flex;
  flex-direction: column;
  gap: clamp(var(--sp-2), 2svh, var(--sp-4));
}

.menu__video {
  position: absolute;
  right: 0;
  top: 0;
  width: 58%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 22%);
  mask-image: linear-gradient(to right, transparent 0%, black 22%);
}

.menu__video-sound {
  position: absolute;
  bottom: var(--sp-5);
  right: var(--sp-5);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--dur-fast) ease;
  z-index: 10;
}
.menu__video-sound:hover { background: rgba(255,255,255,0.22); }
.menu__video-sound svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.75);
  fill: none;
  stroke-width: 1.5;
}
.menu__video-sound .icon-sound { display: none; }
.menu__video-sound.is-unmuted .icon-muted { display: none; }
.menu__video-sound.is-unmuted .icon-sound { display: block; }

@media (max-width: 768px) {
  .menu__video {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    top: auto;
    right: auto;
    object-fit: initial;
    opacity: 0.45;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
  }
  .menu__video-sound { display: flex; bottom: var(--sp-4); right: var(--sp-4); }
}

.menu__footer__meta {
  font-size: clamp(0.6rem, 1.5svh, 0.75rem);
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

.menu__social {
  display: flex;
  gap: var(--sp-6);
}
.menu__social a {
  font-size: clamp(0.5rem, 1.2svh, 0.6875rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color var(--dur-fast) ease;
}
.menu__social a:hover { color: var(--c-white); }


/* ── 6. MAIN LAYOUT ───────────────────────────────────────── */
main { padding-left: var(--rail-w); padding-top: var(--topbar-h); }

.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--sp-10);
}

.section { padding: var(--sp-24) 0; }
.section--dark { background: var(--c-black); }
.section--tint { background: var(--c-grey-50); }

hr.divider {
  border: none;
  border-top: 1px solid var(--c-grey-200);
  margin: 0;
}


/* ── 7. SECTION HEADERS ───────────────────────────────────── */
.section-header { margin-bottom: var(--sp-12); }
.section-header .eyebrow { margin-bottom: var(--sp-3); }

.section-header h2 {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-black);
}

.section-header--dark h2 { color: var(--c-white); }
.section-header--dark .eyebrow { color: var(--c-red); }

.section-header__accent {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--c-red);
  margin-top: var(--sp-5);
}


/* ── 8. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.65rem var(--sp-6);
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition:
    background-color var(--dur-fast) ease,
    color           var(--dur-fast) ease,
    border-color    var(--dur-fast) ease,
    transform       var(--dur-fast) ease,
    box-shadow      var(--dur-fast) ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn:not(.btn--ghost):not(.btn--ghost-white):hover,
.btn:not(.btn--ghost):not(.btn--ghost-white):focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(12,11,9,0.1);
}

.btn--primary {
  background: var(--c-black);
  color: var(--c-white);
  border-color: var(--c-black);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--c-red);
  border-color: var(--c-red);
}

.btn--outline {
  background: transparent;
  color: var(--c-black);
  border-color: var(--c-black);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--c-black);
  color: var(--c-white);
}

.btn--outline-white {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-white:hover,
.btn--outline-white:focus-visible {
  background: var(--c-white);
  color: var(--c-black);
  border-color: var(--c-white);
}

.btn--ghost {
  background: transparent;
  color: var(--c-grey-600);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost:hover,
.btn--ghost:focus-visible { color: var(--c-red); }

.btn--ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost-white:hover,
.btn--ghost-white:focus-visible { color: var(--c-white); }


/* ── 9. HERO ──────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  margin-top: calc(-1 * var(--topbar-h)); /* extends behind topbar */
}

.hero__bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero__bg img {
  width: 100%;
  height: 115%; /* extra for parallax room */
  object-fit: cover;
  object-position: center 20%;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(12, 11, 9, 0.45) 0%,
      transparent 55%
    ),
    linear-gradient(
      to top,
      rgba(12, 11, 9, 0.97) 0%,
      rgba(12, 11, 9, 0.68) 30%,
      rgba(12, 11, 9, 0.18) 58%,
      transparent 80%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--sp-20) var(--sp-16) var(--sp-16) calc(var(--rail-w) + var(--sp-12));
  max-width: 1160px;
}

/* Red decorative accent above eyebrow */
.hero__accent {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--c-red);
  margin-bottom: var(--sp-5);
}

.hero__eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  margin-bottom: var(--sp-4);
  opacity: 0; /* GSAP animates */
}

.hero__title {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(3rem, 9.5vw, 8rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--c-white);
  text-shadow: 0 2px 48px rgba(12,11,9,0.28);
}

.hero__title-line {
  display: block;
}

.hero__title-line-inner {
  display: block;
  opacity: 0; /* GSAP animates in */
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
  opacity: 0; /* GSAP animates */
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  right: var(--sp-8);
  bottom: var(--sp-8);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  opacity: 0; /* GSAP animates */
}

.hero__scroll span {
  font-size: 0.5625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}

.hero__scroll__line {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.hero__scroll__line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-red);
  animation: scroll-pulse 1.6s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%   { top: -100%; }
  100% { top: 200%; }
}


/* ── 10. PIANO DIVIDER ────────────────────────────────────── */
.staff-divider {
  display: block;
  width: calc(100% + var(--rail-w));
  margin-left: calc(-1 * var(--rail-w));
  line-height: 0;
}

.staff-divider svg {
  display: block;
  width: 100%;
  height: 150px;
  filter: drop-shadow(0 8px 24px rgba(177,31,38,0.30));
}

.pk-w { fill: #f0ede8; }
.pk-b { fill: #1c1c1c; }


/* ── 11. ABOUT TEASER (index) ─────────────────────────────── */
.about-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
}

.about-teaser__text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--c-grey-600);
  font-weight: 300;
  max-width: 46ch;
}

.about-teaser__ctas {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
  flex-wrap: wrap;
}

.about-teaser__photo {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--c-grey-100);
}

.about-teaser__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--dur-slow) var(--ease-out);
}

.about-teaser__photo:hover img { transform: scale(1.035); }

.about-teaser__photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3px;
  height: 55%;
  background: var(--c-red);
}


/* ── 12. CONCERTS TEASER (index) ──────────────────────────── */
.concerts-list { display: flex; flex-direction: column; }

.concert-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: var(--sp-6);
  align-items: center;
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--c-grey-200);
  transition:
    background var(--dur-base) ease,
    box-shadow var(--dur-base) var(--ease-out);
}

.concert-item:first-child { border-top: 1px solid var(--c-grey-200); }

.concert-item:hover {
  background: var(--c-grey-50);
  box-shadow: inset 3px 0 0 var(--c-red);
}

.concert-item__date {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--c-grey-400);
  white-space: nowrap;
}

.concert-item__date.is-featured { color: var(--c-red); }

.concert-item__info { min-width: 0; }

.concert-item__title {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--c-black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.concert-item__place {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-grey-400);
  margin-top: 3px;
}

.concert-badge {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 9px;
  border: 1px solid var(--c-red);
  color: var(--c-red);
  white-space: nowrap;
}


/* ── 13. RECORDINGS TEASER (index) ────────────────────────── */
.albums-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.album-card {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--c-grey-100);
}

.album-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.album-card:hover img,
.album-card:focus-visible img { transform: scale(1.06); }

.album-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,11,9,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-4);
  opacity: 0;
  transition: opacity var(--dur-base) ease;
}

.album-card:hover .album-card__overlay,
.album-card:focus-visible .album-card__overlay { opacity: 1; }

.album-card__title {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.2;
}

.album-card__sub {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
}

.album-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-red);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition:
    opacity    var(--dur-base) ease,
    transform  var(--dur-base) var(--ease-out);
}

.album-card:hover .album-card__play,
.album-card:focus-visible .album-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.album-card__play svg {
  width: 18px;
  height: 18px;
  fill: var(--c-white);
  margin-left: 2px;
}


/* ── 14. STUDENTS CTA ─────────────────────────────────────── */
.students-cta__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  max-width: 44ch;
  line-height: 1.75;
  margin-bottom: var(--sp-8);
}


/* ── 15. PAGE HEADERS (inner pages) ───────────────────────── */
.page-header {
  padding: var(--sp-20) 0 var(--sp-12);
  border-bottom: 1px solid var(--c-grey-200);
  margin-bottom: var(--sp-16);
}

.page-header .eyebrow { margin-bottom: var(--sp-3); }

.page-header h1 {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--c-black);
  max-width: 14ch;
}

.page-header__sub {
  margin-top: var(--sp-5);
  font-size: 1.1rem;
  color: var(--c-grey-600);
  max-width: 52ch;
  font-weight: 300;
  line-height: 1.7;
}


/* ── 16. FOOTER ───────────────────────────────────────────── */
.site-footer {
  padding: var(--sp-16) 0 var(--sp-10);
  border-top: 1px solid var(--c-grey-200);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-10);
}

.footer__brand {
  font-family: var(--f-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--c-black);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--sp-4);
}

.footer__brand__sub {
  font-family: var(--f-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-grey-400);
  font-weight: 400;
}

.footer__col-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-grey-400);
  margin-bottom: var(--sp-4);
}

.footer__grid > div:nth-child(n+2) a,
.footer__grid > div:nth-child(n+2) p {
  font-size: 0.875rem;
  color: var(--c-grey-600);
  line-height: 1.9;
  display: block;
}

.footer__grid > div:nth-child(n+2) a:hover { color: var(--c-red); }

.footer__bottom {
  padding-top: var(--sp-6);
  border-top: 1px solid var(--c-grey-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--c-grey-400);
}


/* ── 17. GSAP REVEAL CLASSES ──────────────────────────────── */
.gsap-fade-up    { opacity: 0; transform: translateY(28px);  will-change: transform, opacity; }
.gsap-fade-left  { opacity: 0; transform: translateX(-28px); will-change: transform, opacity; }
.gsap-fade-right { opacity: 0; transform: translateX(28px);  will-change: transform, opacity; }
.gsap-fade-in    { opacity: 0; will-change: opacity; }


/* ── 18. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  .about-teaser__grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .about-teaser__photo { aspect-ratio: 3/2; order: -1; }
  .albums-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .staff-divider { display: none; }

  main { padding-left: 0; }

  #menu-overlay {
    justify-content: flex-start;
    padding:
      clamp(var(--sp-16), 12svh, var(--sp-20))
      var(--sp-8)
      clamp(var(--sp-8), 6svh, var(--sp-12))
      var(--sp-8);
  }

  .menu__nav a {
    font-size: clamp(1.8rem, 7.5vw, 2.6rem);
    padding: clamp(var(--sp-1), 1svh, var(--sp-2)) 0;
  }

  .menu__nav ul {
    gap: 0;
  }

  .hero__content {
    padding: var(--sp-12) var(--sp-6) var(--sp-8) var(--sp-6);
  }

  .concert-item {
    grid-template-columns: 70px 1fr;
  }
  .concert-badge { display: none; }

  .footer__grid { grid-template-columns: 1fr; }
  .container { padding: 0 var(--sp-6); }
  .section { padding: var(--sp-16) 0; }
  .section-header { margin-bottom: var(--sp-8); }
  .page-header { padding: var(--sp-10) 0 var(--sp-8); }

  body { font-size: 0.875rem; }
}

@media (max-width: 600px) {
  .albums-grid { grid-template-columns: 1fr; max-width: 280px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.8rem, 14vw, 3.5rem); }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
}


/* ── 19. REDUCED MOTION ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__eyebrow,
  .hero__title-line-inner,
  .hero__ctas,
  .hero__scroll,
  .gsap-fade-up,
  .gsap-fade-left,
  .gsap-fade-right,
  .gsap-fade-in {
    opacity: 1 !important;
    transform: none !important;
  }

  .staff-divider { opacity: 1 !important; transform: none !important; }
}
