/* ==========================================
   ENSAMBLE MUSICAL DE BUENOS AIRES
   Sitio Institucional - Estilos
   ========================================== */

/* ---------- Custom Properties ---------- */
:root {
  --red: #d44030;
  --green: #2d8c4e;
  --magenta: #cc00ff;
  --blue: #2862e9;
  --orange: #e88a20;
  --dark-orange: #c0441a;
  --cyan: #00b4d8;

  /* Circles palette */
  --circle-teal: #1a5c6b;
  --circle-gray: #6b6b6b;
  --circle-brown: #7a5521;
  --circle-maroon: #6b1a1a;
  --circle-purple: #5e1275;
  --circle-dark-green: #0d5e1a;
  --circle-magenta: #8b0060;

  /* Backgrounds */
  --bg-dark: #0a0a0a;
  --bg-light: #faf5f0;

  /* Text */
  --text-light: #e8e0d8;
  --text-dark: #2a1f14;
  --text-muted: #8a8078;

  /* Fonts */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;

  /* Spacing */
  --section-padding: clamp(80px, 12vh, 160px);
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

::selection {
  background: var(--magenta);
  color: #fff;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px clamp(20px, 4vw, 48px);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.4s ease, background 0.3s ease;
}

.navbar.hidden {
  transform: translateY(-100%);
}

.nav-logo {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(8px, 1.1vw, 14px);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.nav-logo .letter {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.nav-logo .letter-space {
  width: clamp(12px, 3vw, 40px);
}

.nav-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--green), var(--magenta), var(--blue), var(--orange));
  margin-top: 10px;
  opacity: 0.8;
}

.hamburger {
  display: none;
  position: absolute;
  top: 16px;
  right: 20px;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  position: absolute;
  top: 16px;
  right: clamp(20px, 4vw, 48px);
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease;
  position: relative;
}

/* Language switch */
.lang-switch {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-light);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 5px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-switch:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.lang-switch-li {
  display: flex;
  align-items: center;
}

/* CSS Flags */
.flag-svg {
  width: 20px;
  height: 14px;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
}


.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  overflow: hidden;
}

.geo-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Solid decorative circles */
.geo-circle {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.circle-1 {
  width: clamp(60px, 8vw, 120px);
  height: clamp(60px, 8vw, 120px);
  background: var(--circle-teal);
  top: 12%;
  left: 8%;
  animation: float-slow 20s ease-in-out infinite;
}

.circle-2 {
  width: clamp(50px, 7vw, 100px);
  height: clamp(50px, 7vw, 100px);
  background: var(--circle-brown);
  top: 16%;
  left: 11%;
  animation: float-slow 18s ease-in-out infinite reverse;
}

.circle-3 {
  width: clamp(120px, 18vw, 280px);
  height: clamp(120px, 18vw, 280px);
  background: var(--circle-maroon);
  top: 38%;
  left: 12%;
  animation: float-slow 25s ease-in-out infinite;
}

.circle-4 {
  width: clamp(80px, 10vw, 160px);
  height: clamp(80px, 10vw, 160px);
  background: var(--circle-magenta);
  top: 55%;
  left: 3%;
  animation: float-slow 22s ease-in-out infinite reverse;
}

.circle-5 {
  width: clamp(140px, 22vw, 340px);
  height: clamp(140px, 22vw, 340px);
  background: var(--circle-dark-green);
  top: 14%;
  right: 4%;
  animation: float-slow 28s ease-in-out infinite;
}

.circle-6 {
  width: clamp(100px, 14vw, 220px);
  height: clamp(100px, 14vw, 220px);
  background: var(--circle-purple);
  top: 10%;
  right: 0%;
  animation: float-slow 24s ease-in-out infinite reverse;
}

.circle-7 {
  width: clamp(80px, 12vw, 180px);
  height: clamp(80px, 12vw, 180px);
  background: var(--circle-purple);
  bottom: 10%;
  right: 8%;
  animation: float-slow 20s ease-in-out infinite;
}

.geo-logo-mark {
  position: absolute;
  width: clamp(200px, 28vw, 400px);
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  opacity: 0.85;
  animation: rotate-subtle 60s linear infinite;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(8px, -12px); }
  66% { transform: translate(-6px, 8px); }
}

@keyframes rotate-subtle {
  0% { transform: translate(-50%, -55%) rotate(0deg); }
  100% { transform: translate(-50%, -55%) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  margin-top: 60px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(22px, 4.5vw, 64px);
  letter-spacing: 0.2em;
  line-height: 1.5;
  margin-bottom: 24px;
}

.hero-title-line {
  display: block;
}

.hero-title-spacer {
  display: inline-block;
  width: clamp(16px, 4vw, 60px);
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(18px, 2.5vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(232, 138, 32, 0.4);
  padding: 14px 36px;
  border-radius: 0;
  transition: all 0.4s ease;
}

.hero-cta:hover {
  background: var(--orange);
  color: var(--bg-dark);
  border-color: var(--orange);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: clamp(40px, 6vh, 80px);
}

.section-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Floating circles for sections */
.circle-float-1 {
  width: 180px; height: 180px;
  background: var(--circle-purple);
  opacity: 0.3;
  top: 10%; right: -40px;
  animation: float-slow 22s ease-in-out infinite;
}

.circle-float-2 {
  width: 120px; height: 120px;
  background: var(--circle-dark-green);
  opacity: 0.25;
  top: 60%; left: -30px;
  animation: float-slow 26s ease-in-out infinite reverse;
}

.circle-float-3 {
  width: 80px; height: 80px;
  background: var(--circle-teal);
  opacity: 0.2;
  bottom: 15%; right: 10%;
  animation: float-slow 18s ease-in-out infinite;
}

.circle-float-4 {
  width: 200px; height: 200px;
  background: var(--circle-maroon);
  opacity: 0.2;
  top: 5%; left: -60px;
  animation: float-slow 30s ease-in-out infinite;
}

.circle-float-5 {
  width: 140px; height: 140px;
  background: var(--circle-purple);
  opacity: 0.15;
  bottom: 10%; right: -40px;
  animation: float-slow 24s ease-in-out infinite reverse;
}

.circle-float-6 {
  width: 260px; height: 260px;
  background: var(--circle-dark-green);
  opacity: 0.15;
  top: 8%; right: -80px;
  animation: float-slow 28s ease-in-out infinite;
}

.circle-float-7 {
  width: 160px; height: 160px;
  background: var(--circle-purple);
  opacity: 0.2;
  top: 4%; right: -20px;
  animation: float-slow 22s ease-in-out infinite reverse;
}

.circle-float-8 {
  width: 100px; height: 100px;
  background: var(--circle-teal);
  opacity: 0.15;
  bottom: 5%; left: 5%;
  animation: float-slow 20s ease-in-out infinite;
}

.circle-float-9 {
  width: 140px; height: 140px;
  background: var(--circle-teal);
  opacity: 0.3;
  top: 15%; left: 8%;
  animation: float-slow 20s ease-in-out infinite;
}

.circle-float-10 {
  width: 200px; height: 200px;
  background: var(--circle-maroon);
  opacity: 0.25;
  top: 30%; left: 25%;
  animation: float-slow 24s ease-in-out infinite reverse;
}

.circle-float-11 {
  width: 240px; height: 240px;
  background: var(--circle-purple);
  opacity: 0.2;
  top: 10%; right: 10%;
  animation: float-slow 28s ease-in-out infinite;
}

.circle-float-12 {
  width: 280px; height: 280px;
  background: var(--circle-dark-green);
  opacity: 0.2;
  top: 5%; right: 5%;
  animation: float-slow 26s ease-in-out infinite reverse;
}

/* ---------- Historia ---------- */
.historia-content {
  max-width: 900px;
}

.historia-content p {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.85;
  margin-bottom: 24px;
  color: var(--text-light);
  opacity: 0.9;
}

/* ---------- Albums Grid ---------- */
.section-albums {
  background: var(--bg-dark);
  padding: 0 0 var(--section-padding);
}

.section-albums .container {
  max-width: 100%;
  padding: 0;
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
}

.album-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: #1a1a1a;
}

.album-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(0%);
}

.album-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.albums-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 20px;
}

/* ---------- Presente (light section) ---------- */
.presente-content {
  max-width: 900px;
}

.presente-content p {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.85;
  margin-bottom: 24px;
  color: var(--text-dark);
  opacity: 0.85;
}

.presente-highlight {
  margin-top: 40px;
  padding: 32px;
  border-left: 3px solid var(--orange);
  background: rgba(232, 138, 32, 0.06);
}

.presente-highlight strong {
  color: var(--dark-orange);
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  max-width: 1000px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--magenta), transparent);
  opacity: 0.3;
}

.timeline-item {
  display: flex;
  gap: clamp(24px, 4vw, 60px);
  margin-bottom: clamp(40px, 5vh, 64px);
  align-items: flex-start;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--magenta);
  min-width: 100px;
  text-align: right;
  line-height: 1;
  padding-top: 4px;
  flex-shrink: 0;
}

.timeline-content {
  padding-top: 8px;
}

.timeline-content p {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.8;
  color: var(--text-light);
  opacity: 0.85;
  margin-bottom: 12px;
}

.link-btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-dark);
  background: var(--orange);
  padding: 6px 16px;
  border-radius: 2px;
  transition: all 0.3s ease;
  margin-top: 4px;
}

.link-btn:hover {
  background: #f09a30;
  transform: translateY(-1px);
}

/* ---------- Conductores ---------- */
.conductor {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  margin-bottom: 80px;
}

.conductor-photo {
  position: sticky;
  top: 100px;
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #1a1a1a;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.photo-placeholder span {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--text-muted);
  opacity: 0.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* When real photos are added, use this class */
.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.conductor-name {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  color: var(--orange);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.conductor-origin {
  font-family: var(--font-accent);
  font-size: clamp(16px, 1.2vw, 20px);
  color: var(--orange);
  opacity: 0.7;
  font-style: italic;
  margin-bottom: 28px;
}

.conductor-bio p {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.8;
  color: var(--text-light);
  opacity: 0.85;
  margin-bottom: 16px;
}

.conductor-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 500;
  color: var(--green);
  margin-top: 36px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.conductor-gestion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.conductor-gestion ul {
  list-style: none;
}

.conductor-gestion li {
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.7;
  color: var(--text-light);
  opacity: 0.8;
  margin-bottom: 12px;
  padding-left: 16px;
  position: relative;
}

.conductor-gestion li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-weight: bold;
}

.inline-link {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-dark);
  background: var(--orange);
  padding: 2px 10px;
  border-radius: 2px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.inline-link:hover {
  background: #f09a30;
}

.conductor-collabs {
  margin-top: 28px;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
}

.conductor-collabs summary {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 16px 20px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.conductor-collabs summary:hover {
  color: var(--text-light);
}

.conductor-collabs p {
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.8;
  color: var(--text-light);
  opacity: 0.75;
  padding: 0 20px 20px;
}

.conductor-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #333, transparent);
  margin: 60px 0 80px;
}

/* ---------- Contacto ---------- */
.section-contact {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-contact .container {
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 8px;
}

.contact-phone {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.1vw, 17px);
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.contact-phone:hover {
  color: var(--text-light);
}

.contact-email {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #2a2a2a;
  max-width: 700px;
  margin: 0 auto;
}

.contact-email a {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 36px);
  font-weight: 300;
  color: var(--orange);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.contact-email a:hover {
  color: #f09a30;
}

/* ---------- Footer ---------- */
.footer {
  padding: 60px 0 40px;
  text-align: center;
  border-top: 1px solid #1a1a1a;
}

.footer-logo-svg {
  width: 60px;
  height: auto;
  margin: 0 auto 20px;
  opacity: 0.5;
}

.footer-text {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.footer-text span {
  margin: 0 4px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  /* Navbar: siempre dos filas en tablets y mobile */
  .navbar {
    padding: 10px 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-logo {
    font-size: 7px;
    max-width: 100%;
    letter-spacing: 0.15em;
  }

  .nav-logo .letter-space {
    width: 8px;
  }

  .hamburger {
    display: none;
  }

  .nav-line {
    order: 3;
    margin-top: 8px;
  }

  .nav-links {
    position: static;
    order: 4;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding-top: 10px;
    top: auto;
    right: auto;
  }

  .nav-links li {
    text-align: center;
    flex: 1;
  }

  .lang-switch-li {
    flex: 0 !important;
  }

  .nav-links a {
    font-size: 13px;
    letter-spacing: 0.12em;
    color: var(--text-muted);
  }

  .nav-links a::after {
    display: none;
  }

  .lang-switch-li {
    width: auto;
    margin-top: 0;
  }

  .lang-switch {
    font-size: 11px;
    padding: 5px 12px;
    border-color: rgba(255,255,255,0.3);
  }
}

@media (max-width: 900px) {
  .nav-logo {
    font-size: 6px;
  }

  .nav-logo .letter-space {
    width: 6px;
  }

  .nav-links a {
    font-size: 12px;
  }

  /* Hero mobile */
  .hero {
    min-height: 100svh;
    padding-top: 60px;
  }

  .hero-content {
    margin-top: 0;
    padding: 0 16px;
  }

  .hero-title {
    letter-spacing: 0.08em;
    font-size: clamp(18px, 6vw, 32px);
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .hero-title-spacer {
    width: 10px;
  }

  .hero-subtitle {
    font-size: 20px;
    margin-bottom: 28px;
  }

  .hero-cta {
    font-size: 12px;
    padding: 12px 28px;
  }

  .hero-scroll-indicator {
    bottom: 24px;
  }

  .scroll-line {
    height: 40px;
  }

  /* Circles más chicos en mobile */
  .geo-logo-mark {
    width: 180px;
    opacity: 0.4;
  }

  .circle-1, .circle-2 { display: none; }
  .circle-3 { width: 100px; height: 100px; top: 60%; left: -20px; }
  .circle-4 { width: 60px; height: 60px; top: 75%; left: 10%; }
  .circle-5 { width: 120px; height: 120px; top: 8%; right: -20px; }
  .circle-6 { width: 80px; height: 80px; top: 5%; right: 5%; }
  .circle-7 { width: 60px; height: 60px; bottom: 15%; right: 5%; }

  /* Secciones mobile */
  .section {
    padding: clamp(48px, 8vh, 80px) 0;
  }

  .section-title {
    font-size: clamp(32px, 9vw, 52px);
    margin-bottom: 28px;
    line-height: 1.1;
  }

  .container {
    padding: 0 20px;
  }

  /* Historia mobile */
  .historia-content p {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 20px;
  }

  /* Albums mobile */
  .albums-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Presente mobile */
  .presente-content p {
    font-size: 15px;
    line-height: 1.75;
  }

  .presente-highlight {
    padding: 20px;
    margin-top: 24px;
  }

  /* Timeline mobile */
  .timeline::before {
    display: none;
  }

  .timeline-item {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 36px;
  }

  .timeline-year {
    min-width: auto;
    text-align: left;
    font-size: 40px;
    padding-top: 0;
  }

  .timeline-content {
    padding-top: 0;
    padding-left: 0;
  }

  .timeline-content p {
    font-size: 14px;
    line-height: 1.75;
  }

  .link-btn {
    font-size: 12px;
    padding: 8px 20px;
  }

  /* Conductores mobile */
  .conductor {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

  .conductor-photo {
    position: static;
    max-width: 200px;
    margin: 0 auto;
  }

  .conductor-name {
    font-size: clamp(32px, 9vw, 48px);
    text-align: center;
  }

  .conductor-origin {
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
  }

  .conductor-bio p {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 14px;
  }

  .conductor-subtitle {
    font-size: 17px;
    margin-top: 28px;
    margin-bottom: 16px;
  }

  .conductor-gestion {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .conductor-gestion li {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .inline-link {
    font-size: 11px;
    padding: 4px 12px;
  }

  .conductor-collabs summary {
    font-size: 14px;
    padding: 14px 16px;
  }

  .conductor-collabs p {
    font-size: 14px;
    padding: 0 16px 16px;
  }

  .conductor-divider {
    margin: 40px 0 48px;
  }

  /* Contacto mobile */
  .section-contact {
    min-height: 60vh;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-card h3 {
    font-size: 20px;
  }

  .contact-phone {
    font-size: 16px;
  }

  .contact-email {
    padding-top: 28px;
  }

  .contact-email a {
    font-size: clamp(18px, 5vw, 28px);
  }

  /* Footer mobile */
  .footer {
    padding: 40px 0 32px;
  }

  .footer-logo-svg {
    width: 48px;
  }

  .footer-text {
    font-size: 12px;
  }

  /* Floating circles más sutiles en mobile */
  .section-geo .geo-circle {
    opacity: 0.1;
    transform: scale(0.6);
  }
}

@media (max-width: 480px) {
  .nav-logo {
    font-size: 6px;
    letter-spacing: 0.12em;
  }

  .nav-logo .letter-space {
    width: 5px;
  }

  .nav-links a {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .lang-switch {
    font-size: 10px;
    padding: 4px 10px;
  }

  .flag-svg {
    width: 18px;
    height: 12px;
  }

  .hero-title {
    font-size: clamp(15px, 5.5vw, 26px);
    letter-spacing: 0.06em;
  }

  .hero-title-spacer {
    width: 8px;
  }

  .section-title {
    font-size: clamp(28px, 10vw, 44px);
  }

  .conductor-name {
    font-size: clamp(26px, 8vw, 40px);
  }

  .conductor-photo {
    max-width: 160px;
  }

  .timeline-year {
    font-size: 32px;
  }

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

/* Touch-friendly: botones más grandes en mobile */
@media (hover: none) and (pointer: coarse) {
  .hero-cta {
    padding: 16px 32px;
    font-size: 13px;
  }

  .link-btn {
    padding: 10px 22px;
    font-size: 12px;
  }

  .inline-link {
    padding: 5px 14px;
    font-size: 11px;
  }

  .nav-links a {
    padding: 18px 0;
  }
}
