/* ── DESIGN TOKENS ── */
:root {
  --bg:             #060606;
  --surface:        #0a0a0a;
  --border:         #111111;
  --text-primary:   #e8d5b0;
  --text-secondary: #6a5a40;
  --text-dim:       #2e2e2e;
  --text-muted:     #555555;
  --gold:           #c9a96e;
  --gold-dim:       #5a4a2a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── TYPOGRAPHY UTILITIES ── */
.label {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  letter-spacing: 4px;
  color: var(--gold);
  font-weight: 400;
  text-transform: uppercase;
}

.gold-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

/* ── NAV ── */
#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease;
}

#site-nav.scrolled {
  background: var(--surface);
  border-bottom-color: var(--border);
}

.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 25px;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links a {
  transition: color 200ms;
}

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

.nav-contact {
  color: var(--gold);
  border: 1px solid #2a2218;
  padding: 5px 14px;
}

.nav-contact:hover {
  border-color: var(--gold);
}

.nav-links [aria-current="page"] {
  color: var(--gold);
}

.nav-overlay-link[aria-current="page"] {
  color: var(--gold);
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,6,6,0.05) 0%,
    rgba(6,6,6,0.15) 30%,
    rgba(6,6,6,0.75) 70%,
    rgba(6,6,6,0.97) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 64px 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow {
  margin-bottom: 16px;
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 8vw, 92px);
  font-weight: 300;
  color: #f2e8d8;
  line-height: 0.9;
  letter-spacing: 1px;
}

.hero-rule {
  margin: 22px auto;
}

.hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 1.8vw, 24px);
  font-style: italic;
  font-weight: 300;
  color: #c8b898;
  line-height: 1.6;
  max-width: 540px;
}

.hero-source {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-top: 10px;
}

.hero-scroll {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: #282828;
  text-transform: uppercase;
  margin-top: 28px;
  opacity: 0;
  transition: opacity 600ms ease;
}

.hero-scroll.visible {
  opacity: 1;
}

/* ── PHOTO STRIP ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 260px;
  gap: 2px;
  overflow: hidden;
}

.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Full-body stage shot — face sits mid-frame, so anchor lower than the portraits */
.photo-strip img.strip-img--lower {
  object-position: center 38%;
}

/* ── REVIEWS ── */
#reviews {
  padding: 100px 80px;
}

.reviews-label {
  text-align: center;
  margin-bottom: 52px;
}

.featured-review {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}

.featured-review blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(27px, 2.5vw, 35px);
  font-style: italic;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.55;
  margin-bottom: 18px;
}

.featured-review figcaption {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--gold-dim);
  text-transform: uppercase;
}

.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.press-cell {
  background: var(--bg);
  padding: 36px 32px;
}

.press-cell--wide {
  grid-column: span 2;
}

.press-pub {
  margin-bottom: 14px;
}

.press-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  font-style: italic;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.75;
}

.press-byline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 14px;
}

.press-link {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.press-link:hover {
  color: var(--text-primary);
  border-color: var(--gold);
}

.featured-review .press-link {
  margin-top: 24px;
}

/* ── PHOTO BREAK ── */
.photo-break {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.photo-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,6,6,0.6) 0%,
    rgba(6,6,6,0.05) 35%,
    rgba(6,6,6,0.05) 65%,
    rgba(6,6,6,0.6) 100%
  );
}

/* ── SCHEDULE ── */
#schedule {
  padding: 100px 80px;
  border-top: 1px solid #0f0f0f;
}

.schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.schedule-season {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

.schedule-group {
  margin-top: 56px;
}

.schedule-group-label {
  font-size: 17px;
  letter-spacing: 5px;
  margin-bottom: 28px;
}

/* ── ENGAGEMENT CARDS ── */
.sched-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}

.sched-card {
  display: flex;
  flex-direction: column;
  background: #0c0b0a;
  border: 1px solid var(--border);
  padding: 30px 28px 28px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.sched-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}

.sched-card-when {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}

.sched-card-months {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.sched-card-year {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.sched-card-role {
  font-family: 'Cormorant Garamond', serif;
  font-size: 31px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.1;
}

.sched-card-cover {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  vertical-align: middle;
  margin-left: 8px;
}

.sched-card-opera {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-style: italic;
  color: var(--text-secondary);
  margin-top: 4px;
}

.sched-card-rule {
  width: 38px;
  height: 1px;
  background: var(--gold-dim);
  margin: 18px 0;
}

.sched-card-co {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}

.sched-card-city {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 4px;
}

.sched-card-dates {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 16px;
}

.sched-card--debut {
  border-color: var(--gold);
  background: linear-gradient(160deg, #14110a, #0c0b0a 60%);
}

.sched-card-debut {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-top: 16px;
}

/* ── PAST ENGAGEMENTS (compact, dimmed) ── */
.schedule-group--past .schedule-group-label {
  color: var(--text-secondary);
}

.sched-cards--past .sched-card {
  padding: 22px 24px;
  background: #090807;
}

.sched-cards--past .sched-card-role {
  font-size: 25px;
  color: #9a8a6c;
}

.sched-cards--past .sched-card-opera {
  font-size: 18px;
  color: #524634;
}

.sched-cards--past .sched-card-co {
  font-size: 16px;
  color: #8a8074;
}

.sched-cards--past .sched-card-dates {
  font-size: 15px;
  color: #5e564a;
}

/* ── BIOGRAPHY ── */
#bio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  border-top: 1px solid #0f0f0f;
}

.bio-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
}

.bio-photos img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
}

.bio-text {
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #0f0f0f;
}

.bio-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 27px;
  font-weight: 300;
  color: #c8b898;
  line-height: 1.65;
  margin-bottom: 28px;
}

.bio-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bio-label {
  margin-bottom: 20px;
}

.bio-rule {
  margin-bottom: 32px;
}

.bio-body p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 2;
}

.bio-body em {
  color: #7a6850;
  font-style: italic;
}

.bio-body strong {
  color: #8a7050;
  font-weight: 400;
}

/* ── PORTRAIT FEATURE ROW ── */
.portrait-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 460px;
  gap: 2px;
  overflow: hidden;
}

.portrait-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── CONTACT ── */
#contact {
  padding: 100px 80px;
  text-align: center;
  border-top: 1px solid #0f0f0f;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

#contact .label {
  margin-bottom: 16px;
}

.contact-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.contact-phone {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: var(--text-secondary);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.contact-emails {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-emails a {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  color: var(--gold);
  letter-spacing: 0.5px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 200ms, border-color 200ms;
}

.contact-emails a:hover {
  color: var(--text-primary);
  border-bottom-color: var(--gold);
}

.social-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-top: 52px;
}

.social-links a {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--text-secondary);
  text-transform: uppercase;
  transition: color 200ms;
}

.social-links a:hover {
  color: var(--gold);
}

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  color: #4a4030;
  text-transform: uppercase;
  margin-top: 52px;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

@media (max-width: 1024px) {
  .sched-cards {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  /* Nav */
  #site-nav {
    padding: 16px 24px;
  }
  .nav-links {
    display: none;
  }

  /* Hero */
  .hero-content {
    padding: 0 32px 40px;
  }

  /* Photo strip */
  .photo-strip {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 200px;
  }
  .photo-strip img:nth-child(4),
  .photo-strip img:nth-child(5) {
    display: none;
  }

  /* Reviews */
  #reviews {
    padding: 60px 32px;
  }
  .press-grid {
    grid-template-columns: 1fr;
  }
  .press-cell--wide {
    grid-column: span 1;
  }

  /* Photo break */
  .photo-break {
    height: 240px;
  }

  /* Schedule — single column of cards */
  #schedule {
    padding: 60px 32px;
  }
  .sched-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Bio */
  #bio {
    grid-template-columns: 1fr;
  }
  .bio-photos {
    height: 360px;
  }
  .bio-text {
    padding: 48px 32px;
    border-left: none;
    border-top: 1px solid #0f0f0f;
  }

  /* Portrait row */
  .portrait-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px;
  }
  .portrait-row img:nth-child(3) {
    display: none;
  }

  /* Contact */
  #contact {
    padding: 60px 32px;
  }
  .contact-emails {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: 48px;
  }
  .portrait-row {
    grid-template-columns: 1fr;
    grid-template-rows: 400px;
  }
  .portrait-row img:nth-child(2),
  .portrait-row img:nth-child(3) {
    display: none;
  }
}

/* ── HAMBURGER / MOBILE MENU ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text-primary);
  transition: opacity 200ms;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,6,6,0.97);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: #555;
  font-size: 22px;
  cursor: pointer;
}

.nav-overlay-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: 2px;
  transition: color 200ms;
}

.nav-overlay-link:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }
}

/* ── MEDIA PAGE ── */
.media-hero {
  padding: 140px 80px 80px;
  text-align: center;
}

.media-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: 1px;
  margin-top: 16px;
}

.media-main {
  padding: 0 80px 80px;
}

.media-section {
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.media-section + .media-section {
  margin-top: 100px;
}

.media-section-title {
  font-size: 34px;
  letter-spacing: 3px;
  margin-bottom: 44px;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
}

.video-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--surface);
  border: 1px solid var(--border);
}

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

/* ── PHOTO GALLERY (masonry) ── */
.photo-gallery {
  column-count: 3;
  column-gap: 18px;
}

.photo-tile {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  overflow: hidden;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.photo-tile img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease, opacity 0.6s ease, filter 0.5s ease;
  filter: brightness(0.92);
}

.photo-tile:hover img,
.photo-tile:focus-visible img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.photo-tile:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(6, 6, 6, 0.95);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.97);
  transition: transform 0.3s ease;
}

.lightbox.open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.lightbox-close:hover {
  color: var(--text-primary);
  transform: scale(1.1);
}

.media-footer {
  padding: 60px 80px;
  text-align: center;
  border-top: 1px solid #0f0f0f;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 768px) {
  .media-hero {
    padding: 120px 32px 60px;
  }
  .media-main {
    padding: 0 32px 60px;
  }
  .media-section-title {
    font-size: 26px;
    margin-bottom: 32px;
  }
  .media-section + .media-section {
    margin-top: 64px;
  }
  .video-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .photo-gallery {
    column-count: 2;
    column-gap: 12px;
  }
  .photo-tile {
    margin-bottom: 12px;
  }
  .lightbox {
    padding: 20px;
  }
  .lightbox-close {
    top: 14px;
    right: 16px;
  }
  .media-footer {
    padding: 48px 32px;
  }
}

/* ── ACCESSIBILITY ── */
:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

/* ── IMAGE FADE-IN ── */
body.js-ready img {
  opacity: 0;
  transition: opacity 400ms ease;
}

body.js-ready img.loaded {
  opacity: 1;
}
