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

:root {
  --gold:      #C9A84C;
  --gold-light:#E2C878;
  --gold-dim:  #8A6E2F;
  --black:     #0A0A0A;
  --dark:      #111111;
  --dark2:     #1A1A1A;
  --mid:       #2A2A2A;
  --light:     #F5F2EE;
  --text:      #D8D4CC;
  --muted:     #7A7670;
  --white:     #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --section-pad: clamp(80px, 10vw, 140px);
  --container:   1200px;
  --radius:      4px;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  background: var(--dark);
  color: var(--light);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
}

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

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3.5rem, 8vw, 8rem); }
h2 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.15rem; font-weight: 400; }

em { font-style: italic; color: var(--gold); }

p { font-size: 0.95rem; color: var(--text); line-height: 1.8; }

/* ─── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section { padding: var(--section-pad) 0; }
.dark-section { background: var(--black); }

.section-header { margin-bottom: clamp(48px, 6vw, 80px); }
.section-header h2 { max-width: 600px; }

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label.light { color: var(--gold-light); }

.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}

/* ─── Reveal Animation ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Navbar ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
#navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color var(--transition);
}
.nav-logo:hover { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  color: var(--gold) !important;
  border: 1px solid var(--gold-dim);
  padding: 7px 18px;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover { background: var(--gold); color: var(--black) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vh, 100px);
}

.hero-image {
  position: absolute;
  inset: 0;
}
.hero-image img {
  object-position: center 20%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.2) 0%,
    rgba(10,10,10,0.15) 40%,
    rgba(10,10,10,0.75) 75%,
    rgba(10,10,10,0.97) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  width: 100%;
}

.hero-pre {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 40px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 6px;
  transition: color var(--transition), border-color var(--transition);
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }

/* ─── About ──────────────────────────────────────────────────── */
.about { background: var(--dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.about-image {
  position: sticky;
  top: 100px;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about-image img {
  transition: transform 0.8s ease;
}
.about-image:hover img { transform: scale(1.03); }

.about-text h2 { margin-bottom: 28px; }
.about-text p { margin-bottom: 18px; }
.about-text p strong { color: var(--white); font-weight: 500; }

.about-facts {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--mid);
}
.fact { display: flex; flex-direction: column; }
.fact-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.fact-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ─── Bio intro ──────────────────────────────────────────────── */
.bio-intro {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ─── Orchestras ─────────────────────────────────────────────── */
.orchestras { background: var(--black); }

/* Principal positions */
.principal-positions { margin-bottom: 60px; }

.position-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 20px;
}

.position-card {
  background: var(--dark2);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-top: 2px solid var(--gold-dim);
  transition: border-color var(--transition);
}
.position-card:hover { border-color: var(--gold); }

.position-card-header h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  color: var(--white);
  margin: 10px 0 10px;
  line-height: 1.2;
}
.position-card-header p { font-size: 0.85rem; color: var(--text); }

.position-videos h4 { color: var(--gold); }

.position-embeds {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.position-embed {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--black);
}
.position-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--text);
  padding: 10px 14px;
  background: var(--mid);
  transition: background var(--transition), color var(--transition);
}
.video-link:hover { background: var(--gold-dim); color: var(--white); }
.video-link .yt-icon { color: #FF0000; flex-shrink: 0; }
.video-link:hover .yt-icon { color: var(--white); }

.collab-block, .orchestras-list, .conductors {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid var(--mid);
}

.collab-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.collab-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.collab-item {
  background: var(--dark2);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.collab-icon {
  font-size: 1.2rem;
  color: var(--gold-dim);
  margin-bottom: 8px;
}
.collab-item strong { color: var(--white); font-size: 1rem; font-weight: 500; }
.collab-item span { font-size: 0.8rem; color: var(--muted); }

.orch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 32px;
}
.orch-grid li {
  font-size: 0.88rem;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--mid);
  transition: color var(--transition);
}
.orch-grid li:hover { color: var(--gold-light); }

.conductors-list {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 2;
}

/* ─── Teaching ───────────────────────────────────────────────── */
.teaching { background: var(--dark); }

.teaching-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.teaching-main { display: flex; flex-direction: column; gap: 0; }
.teaching-main > img {
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 32px;
}
.teaching-main-text h3 {
  margin-bottom: 14px;
  color: var(--white);
}
.teaching-main-text p { margin-bottom: 14px; }
.teaching-main-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.teaching-side { display: flex; flex-direction: column; gap: 40px; }

.teaching-prev h4, .masterclass-block h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.teaching-prev ul { display: flex; flex-direction: column; gap: 16px; }
.teaching-prev li {
  border-left: 2px solid var(--gold-dim);
  padding-left: 16px;
}
.teaching-prev strong { display: block; color: var(--white); font-weight: 500; margin-bottom: 2px; }
.teaching-prev span { font-size: 0.82rem; color: var(--muted); }

.masterclass-block p { margin-bottom: 16px; font-size: 0.88rem; }

.country-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.country-tags span {
  font-size: 0.8rem;
  background: var(--mid);
  padding: 6px 14px;
  border-radius: 2px;
  color: var(--text);
  transition: background var(--transition);
}
.country-tags span:hover { background: var(--gold-dim); color: var(--white); }

/* ─── Awards ─────────────────────────────────────────────────── */
.awards { background: var(--black); }

.awards-timeline {
  position: relative;
  padding-left: 40px;
}
.awards-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dim), transparent);
}

.award-item {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
  margin-bottom: 52px;
  align-items: start;
}
.award-item::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201,168,76,0.5);
}

.award-year {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  padding-top: 2px;
}

.award-content h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}
.award-content p { font-size: 0.88rem; }

/* Teaching video inline (inside sidebar) */
.teaching-video-inline h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.teaching-embed {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 860px;
  background: var(--black);
  overflow: hidden;
}
.teaching-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── Media ──────────────────────────────────────────────────── */
.media { background: var(--dark); }

.media-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.media-item {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.media-item:nth-child(even) {
  grid-template-columns: 1fr 1.2fr;
  direction: rtl;
}
.media-item:nth-child(even) > * { direction: ltr; }

.media-embed {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--black);
  overflow: hidden;
}
.media-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.media-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.media-info h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}
.media-info p { font-size: 0.9rem; }

/* Spotify item — same layout as YouTube items */
.media-embed--spotify {
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spotify-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.spotify-logo-lg {
  width: clamp(64px, 10vw, 100px);
  height: clamp(64px, 10vw, 100px);
  color: #1DB954;
}

.spotify-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1DB954;
  transition: opacity var(--transition);
}
.spotify-cta:hover { opacity: 0.75; }

@media (max-width: 768px) {
  .media-item,
  .media-item:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* ─── Gallery ────────────────────────────────────────────────── */
.gallery { background: var(--dark); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 4px;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: zoom-in;
}
.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 480px;
}
.gallery-item.tall img {
  object-position: center top;
}
.gallery-item.wide {
  grid-column: span 2;
}
.gallery-item img {
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ─── Press ──────────────────────────────────────────────────── */
.press { background: var(--black); }

.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.press-card {
  display: block;
  background: var(--dark2);
  transition: background var(--transition);
}
.press-card:hover { background: var(--mid); }

.press-card-inner {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  position: relative;
}

.press-tag {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.press-card-inner h4 {
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-serif);
  font-weight: 400;
}
.press-card-inner p {
  font-size: 0.8rem;
  color: var(--muted);
  flex: 1;
}
.press-arrow {
  font-size: 1.2rem;
  color: var(--gold-dim);
  transition: color var(--transition), transform var(--transition);
  display: inline-block;
  margin-top: 12px;
}
.press-card:hover .press-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

/* ─── Contact ────────────────────────────────────────────────── */
.contact { background: var(--dark); }

.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.contact-text h2 { margin-bottom: 20px; }
.contact-text > p { margin-bottom: 36px; }

.contact-links { display: flex; flex-direction: column; gap: 16px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text);
  transition: color var(--transition);
  padding: 14px 0;
  border-bottom: 1px solid var(--mid);
}
.contact-link svg { color: var(--gold); flex-shrink: 0; }
.contact-link:hover { color: var(--gold-light); }

.contact-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--mid);
  padding: 48px 0;
}
.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
}
.footer-sub {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 12px 0;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: color var(--transition);
}
.social-link:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 0.72rem;
  color: var(--mid);
  margin-top: 8px;
}
.footer-dev {
  font-size: 0.68rem;
  color: var(--mid);
}
.footer-dev a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.footer-dev a:hover { color: var(--gold); }

/* ─── Lightbox ───────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .position-cards { grid-template-columns: 1fr; }
  .collab-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; }

  .about-grid,
  .teaching-grid,
  .contact-inner { grid-template-columns: 1fr; }
  .about-image { position: relative; top: auto; aspect-ratio: 4/3; }
  .contact-image { display: none; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3; }
  .gallery-item.wide { grid-column: span 1; }

  .award-item { grid-template-columns: 60px 1fr; gap: 16px; }

  .orch-grid { grid-template-columns: repeat(2, 1fr); }
  .about-facts { gap: 24px; }

  .press-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3; min-height: unset; }
  .orch-grid { grid-template-columns: 1fr; }
  .awards-timeline { padding-left: 24px; }
  img { max-width: 100%; }
}
