/* ══════════════════════════════════════════════
   ELINA VELICA – style.css
   Paleta: #0a0a0a fundal, #d4af37 aur, #fff text
   ══════════════════════════════════════════════ */

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

:root {
  --gold:        #d4af37;
  --gold-light:  #e8cc6a;
  --gold-dim:    #8a7020;
  --black:       #0a0a0a;
  --dark:        #111111;
  --dark-card:   #161616;
  --mid:         #1e1e1e;
  --border:      rgba(212, 175, 55, 0.18);
  --text:        #e8e4dc;
  --text-muted:  #9a9490;
  --white:       #ffffff;

  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'Lato', 'Open Sans', sans-serif;

  --section-pad: clamp(5rem, 10vw, 9rem);
  --container:   1200px;
  --radius:      4px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ── Section base ── */
.section { padding: var(--section-pad) 0; }
.section-dark { background: var(--dark); }

/* ── Section header ── */
.section-header { text-align: center; margin-bottom: clamp(3rem, 6vw, 5rem); }

.section-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto;
}

/* ── Gold button ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: 0;
}
.btn-gold:hover::before { transform: scaleX(1); }
.btn-gold:hover { color: var(--black); }
.btn-gold span, .btn-gold svg { position: relative; z-index: 1; }
.btn-icon { font-size: 0.75rem; }
.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.5rem);
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 0.45rem 1.2rem;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('../img/elina-hero.jpg') center 20%/cover no-repeat;
  transform: scale(1.04);
  transition: transform 12s ease;
}
#hero:hover .hero-bg { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* stânga: negru dens – acoperă textul "ELINA" din imagine */
    linear-gradient(to right,
      rgba(10,10,10,0.96) 0%,
      rgba(10,10,10,0.80) 32%,
      rgba(10,10,10,0.22) 56%,
      rgba(10,10,10,0.08) 100%
    ),
    /* jos: fade spre negru */
    linear-gradient(to top,
      rgba(10,10,10,0.98) 0%,
      rgba(10,10,10,0.0) 32%
    ),
    /* sus: navbar fade */
    linear-gradient(to bottom,
      rgba(10,10,10,0.50) 0%,
      rgba(10,10,10,0.0) 18%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 2rem clamp(1.25rem, 5vw, 3rem);
  max-width: 560px;
  margin-left: clamp(2rem, 8vw, 10rem);
}

.hero-pretitle {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-name {
  font-family: var(--serif);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 700;
  line-height: 0.92;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.hero-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 0 2.5rem 0;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.about-text p { margin-bottom: 1.3rem; color: var(--text-muted); }
.about-text p:last-child { margin-bottom: 0; }
.about-lead {
  font-size: 1.15rem !important;
  color: var(--text) !important;
  line-height: 1.65;
}
.about-text strong { color: var(--gold); font-weight: 700; }

/* Photo placeholder */
.photo-frame {
  position: relative;
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
  overflow: hidden;
}
.photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-card) 0%, var(--mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
  text-align: center;
}
.photo-icon { font-size: 3rem; color: var(--gold-dim); margin-bottom: 0.5rem; }
.photo-placeholder p { color: var(--text-muted); font-size: 0.85rem; }
.photo-placeholder span { color: var(--gold-dim); font-size: 0.72rem; letter-spacing: 0.05em; }

/* Real photo inside frame */
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.orchestra-visual .about-img {
  object-position: center 30%;
}

/* Corner ornaments */
.photo-ornament {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--gold);
  border-style: solid;
}
.photo-ornament.top-left    { top: -1px; left: -1px;  border-width: 2px 0 0 2px; }
.photo-ornament.top-right   { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.photo-ornament.bottom-left { bottom: -1px; left: -1px;  border-width: 0 0 2px 2px; }
.photo-ornament.bottom-right{ bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

/* ═══════════════════════════════════════════════
   REPERTOIRE
   ═══════════════════════════════════════════════ */
.repertoire-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5px;
}

.rep-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.rep-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.rep-card:hover { border-color: rgba(212,175,55,0.4); transform: translateY(-3px); }
.rep-card:hover::before { transform: scaleX(1); }

.rep-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
  font-style: normal;
}

.rep-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.rep-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.25rem;
}

.rep-card ul { display: flex; flex-direction: column; gap: 0.85rem; }
.rep-card li {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 0.75rem;
  border-left: 1px solid var(--border);
}
.rep-card li em { color: var(--text); font-style: italic; }
.role {
  display: block;
  font-size: 0.75rem;
  color: var(--gold-dim);
  margin-top: 0.2rem;
}
.rep-note { font-size: 0.8rem !important; color: var(--text-muted) !important; }

/* ═══════════════════════════════════════════════
   AWARDS / TIMELINE
   ═══════════════════════════════════════════════ */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  padding-bottom: 3.5rem;
  align-items: start;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--dark);
  box-shadow: 0 0 0 2px var(--gold);
}
.star-dot {
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
  width: 12px;
  height: 12px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.timeline-year {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  padding-top: 0.1rem;
  white-space: nowrap;
}

.timeline-content h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.timeline-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.timeline-content strong { color: var(--gold); font-weight: 700; }

/* ═══════════════════════════════════════════════
   MEDIA
   ═══════════════════════════════════════════════ */
.media-channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--dark-card);
  border: 1px solid var(--border);
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.channel-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.yt-icon { color: #ff0000; flex-shrink: 0; }
.channel-info h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.channel-info p { font-size: 0.85rem; color: var(--text-muted); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.video-embed {
  background: var(--dark-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.video-embed:hover { border-color: rgba(212,175,55,0.4); transform: translateY(-4px); }

.embed-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}
.embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info { padding: 0.9rem 1.25rem 1.1rem; }
.video-info h4 {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.video-info p { font-size: 0.75rem; color: var(--text-muted); }

.media-more {
  text-align: center;
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════════
   ORCHESTRA
   ═══════════════════════════════════════════════ */
.orchestra-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.orchestra-text p { margin-bottom: 1.3rem; color: var(--text-muted); }
.orchestra-text p:last-child { margin-bottom: 0; }
.orchestra-text strong { color: var(--gold); font-weight: 700; }

.genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.35rem 0.9rem;
  transition: border-color var(--transition), background var(--transition);
}
.tag:hover { border-color: var(--gold); background: rgba(212,175,55,0.07); }

.orchestra-visual .photo-frame {
  aspect-ratio: 4/3;
}

/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact-info p { margin-bottom: 1.3rem; color: var(--text-muted); }
.contact-info .about-lead { color: var(--text) !important; }

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--border);
  padding: 0.6rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.05);
}

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.45rem; }

.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  background: var(--dark-card);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gold-dim); opacity: 0.6; }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input.invalid,
.form-group textarea.invalid { border-color: #c0392b; }

.field-error {
  font-size: 0.72rem;
  color: #e74c3c;
  min-height: 1em;
  display: block;
}

.form-success {
  padding: 1rem 1.25rem;
  border: 1px solid var(--gold-dim);
  background: rgba(212,175,55,0.07);
  color: var(--gold);
  font-size: 0.85rem;
  text-align: center;
  display: none;
}
.form-success.visible { display: block; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
#footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-brand p {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
}
.footer-nav a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--gold-dim);
  letter-spacing: 0.08em;
  text-align: center;
}

/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════ */
.reveal, .fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible, .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* Hero initial state (animated via JS on load) */
.hero-content .fade-up { opacity: 0; transform: translateY(32px); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .about-grid,
  .orchestra-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 380px; margin: 0 auto; }
  .orchestra-visual { max-width: 440px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  #hero {
    align-items: flex-end;
    justify-content: center;
  }
  .hero-bg {
    background-position: 72% 10%;
  }
  .hero-overlay {
    background:
      linear-gradient(to bottom,
        rgba(10,10,10,0.30) 0%,
        rgba(10,10,10,0.10) 25%,
        rgba(10,10,10,0.70) 58%,
        rgba(10,10,10,0.99) 80%
      );
  }
  .hero-content {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
    padding-bottom: 5rem;
    width: 100%;
  }
  .hero-divider { margin: 0 auto 2.5rem; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 72px 0 0 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
  }
  .nav-links.open { transform: translateX(0); pointer-events: auto; }
  .nav-links a { font-size: 0.9rem; }
  .nav-cta { padding: 0.6rem 2rem !important; }

  .hero-name { line-height: 0.9; }

  .timeline { padding-left: 1.5rem; }
  .timeline-item { grid-template-columns: 70px 1fr; gap: 1rem; }
  .timeline-dot { left: -1.5rem; }

  .media-channel {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav { justify-content: center; }
  .footer-social { justify-content: center; }
}

@media (max-width: 480px) {
  .repertoire-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-year { font-size: 0.8rem; }
  .about-grid { gap: 2rem; }
  .about-photo { max-width: 100%; }
  .orchestra-visual { max-width: 100%; }
  .media-channel { padding: 1.25rem; }
  .channel-info { flex-direction: column; gap: 0.75rem; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .hero-bg { transform: none !important; }
  html { scroll-behavior: auto; }
}
