/* ==========================================================================
   Variables & reset
   ========================================================================== */
:root {
  --black: #111111;
  --white: #ffffff;
  --grey: #6b6b6b;
  --grey-light: #e4e2dd;
  --bg: #fafaf8;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --nav-height: 88px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--black);
  background: var(--bg);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--grey-light);
}

.nav-wrap {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo span {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--grey);
  margin-top: 2px;
}

.main-nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
}

.main-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, opacity 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  border-bottom-color: var(--black);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 28px;
}

.lang-switch button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--grey);
  padding: 2px 0;
  border-bottom: 1px solid transparent;
}

.lang-switch button:hover { color: var(--black); }

.lang-switch button.active {
  color: var(--black);
  border-bottom-color: var(--black);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 1px;
  background: var(--black);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  height: 100vh;
  min-height: 560px;
  position: relative;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(17,17,17,0.15) 0%, rgba(17,17,17,0.55) 100%),
    url("../images/hero.svg") center 15%/cover no-repeat;
  background-color: #1c1c1c;
}

.hero-content {
  color: var(--white);
  padding: 0 32px 90px;
  width: 100%;
}

.hero-content .eyebrow { color: rgba(255,255,255,0.75); }

.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  color: var(--white);
  margin: 14px 0 18px;
  line-height: 1.05;
}

.hero-content p {
  max-width: 460px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  right: 32px;
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0.75;
}

/* ==========================================================================
   Sections
   ========================================================================== */
section {
  padding: 110px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-top: 10px;
}

.rule {
  width: 48px;
  height: 1px;
  background: var(--black);
  margin: 22px auto 0;
}

/* Announcement / split block */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.split img { width: 100%; }

.split .eyebrow { margin-bottom: 14px; }

.split h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 18px; }

.split p { color: var(--grey); margin-bottom: 26px; max-width: 480px; }

.btn {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 30px;
  border: 1px solid var(--black);
  transition: background 0.25s ease, color 0.25s ease;
}

.btn:hover { background: var(--black); color: var(--white); }

.split.reverse { grid-template-columns: 1fr 1fr; }
.split.reverse .visual { order: 2; }
.split.reverse .text { order: 1; }

/* Highlights / cards */
.bg-alt { background: var(--white); border-top: 1px solid var(--grey-light); border-bottom: 1px solid var(--grey-light); }

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

.card .visual {
  aspect-ratio: 4 / 5;
  background: var(--grey-light) url("../images/placeholder.svg") center 12%/cover no-repeat;
  margin-bottom: 22px;
}

.card .date {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}

.card h3 { font-size: 1.3rem; margin-bottom: 8px; }

.card p { color: var(--grey); font-size: 0.95rem; }

/* Event list (calendar-style) */
.event-list { border-top: 1px solid var(--grey-light); }

.event-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--grey-light);
}

.event-row .date {
  font-family: var(--serif);
  font-size: 1.15rem;
}

.event-row .place { color: var(--grey); font-size: 0.9rem; margin-top: 4px; }

.event-row h3 { font-size: 1.25rem; }

/* Newsletter */
.newsletter {
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.newsletter h2 { color: var(--white); }

.newsletter p { color: rgba(255,255,255,0.7); margin: 16px 0 34px; }

.newsletter-form {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

.newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  padding: 12px 4px;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }

.newsletter-form button {
  background: none;
  border: none;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */
.page-hero {
  padding: calc(var(--nav-height) + 90px) 0 70px;
  text-align: center;
  border-bottom: 1px solid var(--grey-light);
}

.page-hero .eyebrow { justify-content: center; display: flex; }

.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-top: 14px; }

/* Biography */
.bio-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
}

.bio-layout .portrait { position: sticky; top: calc(var(--nav-height) + 40px); }

.bio-layout .portrait img {
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 15%;
  background: var(--grey-light) url("../images/placeholder.svg") center/cover no-repeat;
}

.bio-text h3 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
}

.bio-text h3:first-child { margin-top: 0; }

.sec-num {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--grey);
  margin-right: 12px;
  vertical-align: middle;
}

/* Stats strip */
.bio-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
}

.bio-stats div {
  padding: 30px 16px;
  text-align: center;
  border-left: 1px solid var(--grey-light);
}

.bio-stats div:first-child { border-left: none; }

.bio-stats .num {
  display: block;
  font-family: var(--serif);
  font-size: 2.1rem;
}

.bio-stats .label {
  display: block;
  margin-top: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

/* Full-width bio sections */
.bio-section h3 {
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.bio-section > p {
  color: var(--grey);
  max-width: 720px;
  margin-bottom: 14px;
}

/* Prize grid */
.prize-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--grey-light);
  margin-top: 30px;
  border-top: 1px solid var(--grey-light);
}

.prize-card {
  background: var(--bg);
  padding: 22px 26px;
  display: flex;
  gap: 18px;
  align-items: baseline;
}

.prize-card .year {
  font-family: var(--serif);
  font-size: 1.3rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.prize-card p {
  color: var(--grey);
  font-size: 0.92rem;
  margin: 0;
}

/* Venue columns */
.venue-columns {
  list-style: none;
  columns: 2;
  column-gap: 40px;
  margin-top: 24px;
  max-width: 900px;
}

.venue-columns li {
  color: var(--grey);
  font-size: 0.92rem;
  padding: 12px 0;
  border-top: 1px solid var(--grey-light);
  break-inside: avoid;
}

@media (max-width: 700px) {
  .bio-stats { grid-template-columns: repeat(2, 1fr); }
  .bio-stats div:nth-child(3) { border-left: none; }
  .prize-grid { grid-template-columns: 1fr; }
  .venue-columns { columns: 1; }
}

.bio-text .bio-photo {
  width: 100%;
  max-width: 560px;
  margin: 12px 0 36px;
}

.bio-text ul {
  list-style: none;
  max-width: 640px;
  margin-bottom: 16px;
}

.bio-text ul li {
  color: var(--grey);
  padding: 10px 0 10px 20px;
  border-top: 1px solid var(--grey-light);
  position: relative;
  font-size: 0.97rem;
}

.bio-text ul li:last-child { border-bottom: 1px solid var(--grey-light); }

.bio-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 6px;
  height: 1px;
  background: var(--black);
}

.bio-text p { color: var(--grey); margin-bottom: 16px; max-width: 640px; }

/* Press */
.press-list { border-top: 1px solid var(--grey-light); }

.press-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--grey-light);
}

.press-item .source {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 12px;
}

.press-item blockquote {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 14px;
}

/* Recordings */
.rec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.rec-item .visual {
  aspect-ratio: 1/1;
  background: var(--grey-light) url("../images/placeholder.svg") center 12%/cover no-repeat;
  margin-bottom: 18px;
}

/* Video grid (YouTube embeds) */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.video-grid .frame {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}

.video-grid iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-grid .expand-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.6);
  border: none;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.video-grid .frame:hover .expand-btn,
.video-grid .expand-btn:focus-visible {
  opacity: 1;
}

.video-grid .expand-btn:hover { background: rgba(0,0,0,0.85); }

.video-grid .expand-btn svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.6;
}

@media (max-width: 900px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-grid .expand-btn { opacity: 1; }
}

/* Video lightbox modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.94);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 70px 24px 24px;
}

.video-modal.is-open { display: flex; }

.video-modal-inner {
  width: 100%;
  max-width: 1100px;
}

.video-modal-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}

.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-close {
  position: fixed;
  top: 22px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 300;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.gallery-grid a {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.4s ease;
}

.gallery-grid a:hover img { transform: scale(1.06); }

@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.rec-item .label { color: var(--grey); font-size: 0.85rem; margin-bottom: 6px; }

.rec-item h3 { font-size: 1.3rem; }

/* Contact / Management */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-block h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-block p { color: var(--grey); margin-bottom: 30px; }

.contact-block a.email { border-bottom: 1px solid var(--black); }

.contact-form label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}

.contact-form .field { margin-bottom: 24px; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--grey-light);
  background: none;
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 10px 2px;
}

.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-bottom-color: var(--black); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding: 50px 0;
  border-top: 1px solid var(--grey-light);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-wrap .copyright { font-size: 0.8rem; color: var(--grey); }

.socials { display: flex; gap: 20px; }

.socials a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

.socials a:hover { color: var(--black); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .visual { order: 1; }
  .split.reverse .text { order: 2; }
  .cards { grid-template-columns: 1fr; }
  .rec-grid { grid-template-columns: 1fr; }
  .bio-layout { grid-template-columns: 1fr; }
  .bio-layout .portrait { position: static; max-width: 320px; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: var(--bg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 20px 32px;
  }
  .main-nav li { border-bottom: 1px solid var(--grey-light); }
  .main-nav a { display: block; padding: 18px 0; }
  .nav-toggle { display: flex; }
  .event-row { grid-template-columns: 1fr; gap: 8px; }
  .lang-switch { margin-left: 14px; gap: 8px; }
}
