/* ============================================
   NATANIEL EDELMAN — PIANIST AND COMPOSER
   Paleta: Charcoal (#1F1F1F) + Sepia (#493A35) + Blanco
   Tipografía: Zalando Sans Variable + Inter
   ============================================ */

:root {
  --white: #ffffff;
  --cream: #ebe6dc;
  --black: #1f1f1f;
  --orange: #5e4a40;
  --blue: #1f1f1f;
  --gray-100: #f5f5f5;
  --gray-300: #d4d4d4;
  --gray-500: #737373;
  --gray-700: #404040;

  --font-serif: 'Zalando Sans Variable', 'Zalando Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1200px;
  --header-h: 80px;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }

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

.visually-hidden {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 2px solid #1f1f1f59;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.03em;
  color: var(--blue);
}
.logo-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 3px;
}

.nav-desktop {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-desktop a {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  color: var(--blue);
}
.nav-desktop a:hover { color: var(--orange); }
.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--orange);
  transition: width 0.25s ease;
}
.nav-desktop a:hover::after,
.nav-desktop a.active::after { width: 100%; }
.nav-desktop a.active { color: var(--orange); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--blue);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--orange); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--orange); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(100vh - var(--header-h));
  height: calc(100dvh - var(--header-h));
  background: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  z-index: 101;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 24px 32px;
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blue);
  text-align: center;
  border-bottom: 1px solid rgba(30, 58, 138, 0.08);
}
.nav-mobile a:first-of-type { border-top: 1px solid rgba(30, 58, 138, 0.08); }
.nav-mobile a:hover,
.nav-mobile a.active { color: var(--orange); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  font-family: var(--font-sans);
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--blue);
  border-color: var(--blue);
}
.btn-outline {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--blue);
  border-color: var(--blue);
}

/* ============ SECTION HELPERS ============ */
.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-eyebrow.center { text-align: center; }

.eyebrow-line {
  width: 72px;
  height: 3px;
  background: #b98e68;
  margin-bottom: 24px;
}
.eyebrow-line.center { margin-left: auto; margin-right: auto; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--black);
}
.section-title.center { text-align: center; }

.center-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============ INNER PAGE — first section clears fixed header ============ */
main > section:first-child {
  padding-top: calc(var(--header-h) + 60px);
}

/* ============ HERO (home only) ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
  padding-bottom: 48px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero%20home.jpg');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  color: var(--white);
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.45em;
  color: var(--orange);
  margin-bottom: 32px;
  font-weight: 500;
}
.hero-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.35;
  font-weight: 300;
  margin-bottom: 16px;
  color: var(--white);
}
.hero-author {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-divider {
  width: 80px;
  height: 1px;
  background: var(--orange);
  margin: 0 auto 40px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--orange);
  font-size: 24px;
  z-index: 2;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============ BIO ============ */
.bio { padding: 100px 0 120px; background: var(--white); }
.bio-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  color: var(--blue);
  margin: 0 0 28px;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.bio-title::after {
  content: '';
  display: block;
  width: 72px;
  height: 3px;
  background: #b98e68;
  margin-top: 18px;
}
.bio-inner {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 80px;
  align-items: start;
}
.bio-image {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bio-photo {
  width: 100%;
  height: auto;
  display: block;
}
.bio-figure { margin: 0; }
.bio-caption {
  font-family: var(--font-sans);
  font-size: 11px;
  font-style: italic;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  margin-top: 8px;
  line-height: 1.4;
}
.bio-text p { margin-bottom: 18px; font-size: 17px; color: var(--gray-700); }
.bio-text .btn { margin-top: 16px; }

/* ============ LAST ALBUMS (home) ============ */
.last-albums {
  padding: 72px 0 120px;
  background: var(--white);
}
.last-albums .section-title { margin-bottom: 56px; }
.last-albums .discog-heading { margin-bottom: 64px; }
.albums-grid.latest {
  grid-template-columns: repeat(3, 1fr);
}

/* ============ MUSIC / ALBUMS ============ */
.music-page {
  padding: 100px 0 120px;
  background: var(--white);
  color: var(--black);
}
.music-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
  color: var(--gray-700);
  font-size: 17px;
}
.platforms {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 64px;
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  margin-top: 16px;
}
.album { text-align: left; }

.discog-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  color: var(--blue);
  text-align: center;
  margin: 0 0 32px;
  letter-spacing: 0.04em;
}
.discog-heading::after {
  content: '';
  display: block;
  width: 72px;
  height: 3px;
  background: #b98e68;
  margin: 16px auto 0;
}
.albums-grid + .discog-heading { margin-top: 96px; }
.discog-sub {
  display: block;
  font-size: 0.5em;
  font-weight: 400;
  color: var(--gray-500);
  letter-spacing: 0.06em;
  margin-top: 6px;
}
.compositions + .discog-heading,
.discog-heading + .compositions { margin-top: 16px; }
.compositions {
  max-width: 800px;
  margin: 16px auto 0;
}
.composition {
  padding: 32px 0;
  border-bottom: 2px solid #b98e68;
}
.composition:last-child { border-bottom: 0; }
.composition-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 8px;
  line-height: 1.15;
}
.composition-meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.composition-desc {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 18px;
}
.composition .btn { margin-top: 8px; }
.albums-grid + .discog-heading,
.albums-grid + section + .discog-heading { margin-top: 96px; }
.album-cover {
  aspect-ratio: 1;
  background-color: var(--blue);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.album-cover::before { display: none; }
.album-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 0, 0, 0.18);
  transition: border-color 0.25s ease;
}
.album:hover .album-cover { transform: translateY(-4px); }
.album:hover .album-cover::after { border-color: var(--orange); }

.album:nth-child(4n+1) .album-cover {
  background-image: linear-gradient(135deg, var(--blue) 0%, var(--black) 100%);
}
.album:nth-child(4n+2) .album-cover {
  background-image: linear-gradient(135deg, var(--orange) 0%, var(--blue) 100%);
}
.album:nth-child(4n+3) .album-cover {
  background-image: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);
}
.album:nth-child(4n) .album-cover {
  background-image: linear-gradient(135deg, var(--orange) 0%, var(--black) 100%);
}

.album-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--blue);
  line-height: 1.15;
}
.album-project {
  font-size: 14px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.album-personnel {
  font-size: 13px;
  color: var(--gray-500);
  font-style: italic;
  line-height: 1.45;
  margin-bottom: 8px;
}
.album-meta {
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.album-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.album-link {
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--orange);
  color: var(--orange);
  transition: all 0.2s ease;
}
.album-link:hover {
  background: #b98e68;
  color: var(--white);
  border-color: #b98e68;
}
.album-link.tidal {
  border-color: var(--blue);
  color: var(--blue);
}
.album-link.tidal:hover {
  background: #b98e68;
  color: var(--white);
  border-color: #b98e68;
}

/* ============ VIDEOS ============ */
.videos {
  padding: 100px 0 120px;
  background: var(--white);
  color: var(--black);
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 16px;
}
.video-thumb {
  aspect-ratio: 16 / 9;
  background-color: var(--blue);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  cursor: pointer;
  transition: all 0.25s ease;
  overflow: hidden;
}
.video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video:hover .video-thumb::before { opacity: 1; }
.video-thumb span {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #E62117;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  padding-left: 4px;
  transition: all 0.25s ease;
  z-index: 2;
}
.video:hover .video-thumb span {
  transform: scale(1.1);
}
.video h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--blue);
  line-height: 1.15;
}
.video h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #b98e68;
  margin-top: 10px;
}
.video p {
  font-size: 15px;
  color: var(--gray-700);
  letter-spacing: 0.02em;
  line-height: 1.45;
}

/* ============ GALLERY ============ */
.gallery { padding: 100px 0 120px; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 8px;
  gap: 16px;
  margin-top: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-100);
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.gallery-item:hover::before { opacity: 1; }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 92vw;
  max-height: 92vh;
  display: block;
  user-select: none;
}
.lightbox-btn {
  position: absolute;
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  line-height: 1;
  transition: opacity 0.2s ease;
  padding: 0;
}
.lightbox-btn:hover { opacity: 0.6; }
.lightbox-close {
  top: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  font-size: 36px;
}
.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  font-size: 48px;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 0.2em;
}

/* ============ PRESS ============ */
.press { padding: 100px 0 120px; background: var(--white); }
.press-inner { max-width: 900px; margin: 0 auto; }
.press-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.4;
  color: var(--blue);
  margin: 32px 0 16px;
  position: relative;
  padding-left: 28px;
  border-left: 3px solid var(--orange);
  font-weight: 400;
}
.press-quote:nth-of-type(2n) { border-left-color: var(--blue); }
.press-quote cite {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--orange);
  margin-top: 16px;
}
.press-quote:nth-of-type(2n) cite { color: var(--blue); }
.press-quote .btn {
  margin-top: 20px;
}
.press-divider {
  height: 2px;
  background: #b98e68;
  margin: 32px 0;
}
.press-logos {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
}
.press-logos span {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--blue);
  transition: color 0.25s ease;
  cursor: default;
}
.press-logos span:hover { color: var(--orange); }

/* ============ CONTACT ============ */
.contact { padding: 100px 0 120px; background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 80px;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--blue);
  background: transparent;
  outline: none;
  color: var(--black);
  transition: border-color 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--orange);
}
.contact-form textarea { resize: vertical; }
.contact-form button { align-self: flex-start; margin-top: 16px; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 32px;
  border-left: 2px solid var(--orange);
  padding-left: 40px;
}
.info-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.contact-info a {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--blue);
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}
.contact-info a:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.socials a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.socials a:hover {
  background: var(--orange);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--blue);
  color: var(--white);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px 40px;
}
.footer-socials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-self: start;
}
.footer-socials a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  transition: all 0.25s ease;
}
.footer-socials a:hover {
  background: #b98e68;
  color: var(--white);
}
.footer-socials svg {
  width: 22px;
  height: 22px;
  display: block;
}
.footer-contact {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  justify-self: end;
  align-self: center;
}
.footer-label,
.footer-mail {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.footer-mail {
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
  padding-bottom: 2px;
}
.footer-mail:hover {
  color: #b98e68;
  border-bottom-color: #b98e68;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  grid-column: 1 / -1;
  border-top: 2px solid rgba(255, 255, 255, 0.22);
  padding-top: 24px;
  margin-top: 8px;
  text-align: left;
}

@media (max-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-socials,
  .footer-contact {
    justify-self: center;
  }
  .footer-contact {
    justify-content: center;
    text-align: center;
  }
  .footer-copy {
    text-align: center;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  :root { --header-h: 60px; }
  .logo-name { font-size: 18px; }
  .logo-tag { font-size: 10px; margin-top: 2px; letter-spacing: 0.2em; }

  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }

  .bio-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .bio-text { order: 1; }
  .bio-image { order: 2; }
  .contact-info {
    border-left: 0;
    border-top: 2px solid var(--orange);
    padding-left: 0;
    padding-top: 32px;
  }

  .albums-grid { grid-template-columns: repeat(2, 1fr); }
  .videos-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .bio, .music-page, .videos, .gallery, .press, .contact {
    padding: 80px 0;
  }

  .hero { min-height: 0; height: 72vh; height: 72svh; padding-bottom: 32px; }
  .hero-eyebrow { margin-bottom: 20px; }
  .hero-author { margin-bottom: 24px; }
  .hero-divider { margin: 0 auto 28px; }
}

@media (max-width: 960px) {
  .albums-grid.latest { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .albums-grid { grid-template-columns: 1fr; gap: 64px; }
  .albums-grid.latest { grid-template-columns: 1fr; gap: 64px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .last-albums { padding: 32px 0 80px; }
  .last-albums .discog-heading { margin-bottom: 32px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 280px; }
  .press-logos { justify-content: center; }
}
