@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500&family=Work+Sans:wght@300;400;500&display=swap');

:root {
  --ivory: #E2D6C8;        /* matches hero photo background */
  --cream: #F1EBE1;
  --ink: #191713;
  --ink-soft: #3A362E;
  --bronze: #9C7A4A;
  --line: rgba(25,23,19,0.14);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Work Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3 { font-family: 'Fraunces', serif; font-weight: 300; margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.label {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--bronze);
}

/* ---------- Nav ---------- */
header.site {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s, box-shadow 0.35s;
}
header.site.scrolled {
  background: rgba(241,235,225,0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 36px;
}
.brand {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
nav.links { display: flex; gap: 34px; }
nav.links a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, color 0.25s;
}
nav.links a:hover { border-color: var(--bronze); }
nav.links a.active { border-color: var(--ink); }
.nav-toggle { display: none; }
@media (max-width: 860px) {
  .nav-wrap { padding: 20px 24px; }
  nav.links {
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column; gap: 0;
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 1px 0 var(--line);
  }
  nav.links.open { max-height: 400px; }
  nav.links a { padding: 16px 24px; border: none; border-top: 1px solid var(--line); }
  .nav-toggle { display: block; background: none; border: none; font-size: 1.5rem; color: var(--ink); cursor: pointer; }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ivory);
  overflow: hidden;
}
.hero img.photo {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: 62%;
  object-fit: cover;
  object-position: center 32%;
}
.hero .fade {
  position: absolute;
  top: 0; right: 38%; bottom: 0;
  width: 34%;
  background: linear-gradient(90deg, var(--ivory) 0%, rgba(226,214,200,0) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 36px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 860px) {
  .hero-inner { justify-content: space-between !important; }
}
.hero-inner { gap: 44px; }
.hero-inner .label { margin-bottom: 26px; display: block; }
.hero-inner h1 {
  font-size: clamp(3rem, 7.2vw, 6.4rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  max-width: 8em;
}
.hero-inner .press {
  margin-top: 44px;
  max-width: 400px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.hero-inner .press span {
  display: block;
  margin-top: 10px;
  font-family: 'Work Sans', sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
}
.hero .scroll-hint {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
}
@media (max-width: 860px) {
  .hero img.photo {
    width: 100%;
    object-position: center 30%;
    opacity: 1;
  }
  .hero .fade {
    right: 0; width: 100%;
    background: linear-gradient(180deg, var(--ivory) 5%, rgba(226,214,200,0.4) 24%, rgba(226,214,200,0) 46%, rgba(226,214,200,0) 84%, rgba(226,214,200,0.4) 100%);
  }
  .hero img.photo { object-position: center 20%; }
  .hero-inner {
    justify-content: space-between;
    padding-top: 110px;
    padding-bottom: 90px;
  }
  
  .hero-inner h1 { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .hero-inner .press {
    margin-top: 0;
    max-width: 78%;
    font-size: 0.98rem;
    background: rgba(226,214,200,0.72);
    padding: 12px 14px;
    backdrop-filter: blur(3px);
  }
}

/* ---------- Dark quote band ---------- */
.band {
  background: var(--ink);
  color: var(--cream);
  padding: 110px 36px;
  text-align: center;
}
.band .quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.45;
  max-width: 820px;
  margin: 0 auto;
}
.band .src {
  margin-top: 28px;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* ---------- Sections ---------- */
section.block {
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px 36px;
}
.section-head { margin-bottom: 54px; }
.section-head h2 { font-size: clamp(2rem, 3.4vw, 3rem); margin-top: 14px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-grid img { width: 100%; }
.about-grid .lead {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  line-height: 1.6;
}
.textlink {
  display: inline-block;
  margin-top: 34px;
  font-size: 0.76rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 400;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  transition: color 0.25s, border-color 0.25s;
}
.textlink:hover { color: var(--bronze); border-color: var(--bronze); }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

/* Bio page */
.bio-copy { max-width: 760px; }
.bio-copy p { margin: 0 0 26px; font-size: 1.02rem; color: var(--ink-soft); }
.bio-copy strong { font-weight: 500; color: var(--ink); }
.bio-portrait { margin: 0 0 60px; max-width: 460px; }

/* Repertoire */
.rep-groups { columns: 2; column-gap: 72px; max-width: 1000px; }
.rep-composer { break-inside: avoid; margin-bottom: 40px; }
.rep-composer h3 {
  font-size: 0.78rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 14px;
}
.rep-composer .role {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.rep-composer .role em { font-style: italic; color: var(--ink-soft); }
.rep-composer .role b { font-weight: 500; }
.rep-composer .venue { font-size: 0.8rem; color: var(--bronze); padding: 6px 0 0; margin: 0 0 4px; }
@media (max-width: 760px) { .rep-groups { columns: 1; } }

/* Video grid */
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; }
.video-card .frame { aspect-ratio: 16/9; margin-bottom: 16px; background: var(--ivory); }
.video-card iframe { width: 100%; height: 100%; border: none; }
.video-card p { font-family: 'Fraunces', serif; font-style: italic; margin: 0; }
@media (max-width: 860px) { .video-grid { grid-template-columns: 1fr; } }


.video-featured .frame { aspect-ratio: 16/9; margin-bottom: 16px; background: var(--ivory); }
.video-featured iframe { width: 100%; height: 100%; border: none; }
.video-featured p { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.15rem; margin: 0; }

/* Photo grid */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.photo-grid img { width: 100%; height: 380px; object-fit: cover; }
@media (max-width: 860px) { .photo-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .photo-grid { grid-template-columns: 1fr; } }

/* Contact */
.contact-band {
  background: var(--ivory);
  padding: 110px 36px;
}
.contact-inner { max-width: var(--max); margin: 0 auto; }
.contact-inner h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-top: 14px; }
.contact-links { margin-top: 44px; max-width: 560px; }
.contact-links a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 2px;
  border-bottom: 1px solid rgba(25,23,19,0.22);
  font-size: 1.02rem;
  transition: padding-left 0.25s, color 0.25s;
}
.contact-links a:hover { color: var(--bronze); padding-left: 12px; }
.contact-links .dir { font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--bronze); }


.photo-grid figure, .stage-grid figure { margin: 0; }
.photo-grid.portraits { grid-template-columns: repeat(4, 1fr); }
.photo-grid.portraits img { height: auto; aspect-ratio: 2/3; object-fit: cover; }
@media (max-width: 1000px) { .photo-grid.portraits { grid-template-columns: repeat(2, 1fr); } }
.stage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 28px; }
.stage-grid img { width: 100%; height: auto; }
.stage-grid figure:first-child { grid-column: 1 / -1; }
.stage-grid figcaption {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.stage-grid figcaption span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 3px;
}
@media (max-width: 760px) { .stage-grid { grid-template-columns: 1fr; } }

/* Footer */
footer.site { background: var(--ink); color: rgba(241,235,225,0.75); }
.footer-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.footer-socials { display: flex; gap: 26px; }
.footer-socials a { letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.72rem; transition: color 0.25s; }
.footer-socials a:hover { color: var(--bronze); }

/* Inner-page hero (non-home pages) */
.page-top { padding: 190px 36px 0; max-width: var(--max); margin: 0 auto; }
.page-top h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); margin-top: 16px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ---------- Language switcher ---------- */
.nav-right { display: flex; align-items: center; gap: 34px; }
.lang { display: flex; align-items: center; gap: 8px; font-size: 0.74rem; letter-spacing: 0.14em; }
.lang a { color: var(--ink-soft); padding-bottom: 3px; border-bottom: 1px solid transparent; transition: color 0.25s; }
.lang a:hover { color: var(--bronze); }
.lang a.on { color: var(--ink); border-color: var(--ink); }
.lang .sep { color: var(--line); }
@media (max-width: 860px) { .nav-right { gap: 18px; } }

/* ---------- Download buttons ---------- */
.dl-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 20px; }
.btn-dl {
  display: inline-block;
  border: 1px solid var(--ink);
  padding: 13px 26px;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-dl:hover { background: var(--ink); color: var(--cream); }

/* ---------- Repertoire: featured roles ---------- */
.featured-roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
  max-width: 1000px;
}
.frole { padding: 26px 0; border-bottom: 1px solid var(--line); }
.frole h3 { font-size: 1.35rem; line-height: 1.3; }
.frole .work { font-family: 'Fraunces', serif; font-style: italic; color: var(--ink-soft); margin: 6px 0 0; }
.frole .where { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bronze); margin: 10px 0 0; }
@media (max-width: 760px) { .featured-roles { grid-template-columns: 1fr; } }

/* ---------- Repertoire: compact role lists ---------- */
.rep-note { font-size: 0.9rem; color: var(--ink-soft); margin: -30px 0 44px; }
.concert-list { max-width: 760px; }
.concert-list p { margin: 0; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.98rem; display: flex; gap: 20px; justify-content: space-between; flex-wrap: wrap; }
.concert-list b { font-weight: 500; }
.concert-list em { font-style: italic; color: var(--ink-soft); }

/* ---------- Press quotes (biography) ---------- */
.press-list { max-width: 760px; }
.press-item { padding: 30px 0; border-bottom: 1px solid var(--line); }
.press-item blockquote { margin: 0; font-family: 'Fraunces', serif; font-style: italic; font-size: 1.15rem; line-height: 1.6; color: var(--ink-soft); }
.press-item .psrc { margin: 14px 0 0; font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--bronze); }
.press-note { margin-top: 24px; font-size: 0.85rem; color: var(--ink-soft); }
