/* ============================================================
   Lucrezia Lucas — mezzo-soprano
   Design tokens
   ============================================================ */

:root {
  --ivory: #faf8f2;
  --ivory-deep: #f1ece2;
  --ink: #1c1917;
  --ink-soft: #625b53;
  --wine: #7a1120;
  --wine-deep: #4a0813;
  --gold: #7a1120;
  --gold-deep: #4a0813;
  --line: rgba(28, 25, 23, 0.14);
  --line-soft: rgba(28, 25, 23, 0.08);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Cormorant Garamond", "Times New Roman", serif;
  --font-label: "Jost", "Helvetica Neue", Arial, sans-serif;

  --container: 1140px;
  --edge: clamp(24px, 6vw, 88px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}

p {
  margin: 0 0 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

.label {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--edge);
  padding-right: var(--edge);
}

.label-wine {
  color: var(--wine);
}

.label-gold {
  color: var(--gold);
}

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: relative;
  z-index: 40;
  padding: 40px var(--edge) 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.site-header.on-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.wordmark {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
}

.site-header.on-image .wordmark {
  color: var(--ivory);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-family: var(--font-label);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, opacity 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  border-color: currentColor;
}

.site-header.on-image .site-nav a {
  color: var(--ivory);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: inherit;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  display: block;
}

.nav-close {
  display: none;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-link {
  display: inline-flex;
  color: inherit;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.icon-link:hover {
  opacity: 1;
}

.icon-link svg {
  width: 18px;
  height: 18px;
  display: block;
}

@media (max-width: 760px) {
  .site-header {
    padding: 26px 24px 0;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 46px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 50;
  }

  .site-nav .nav-icons {
    gap: 28px;
  }

  .site-nav .nav-icons svg {
    width: 22px;
    height: 22px;
  }

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

  .site-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .site-nav ul a,
  .site-header.on-image .site-nav ul a {
    color: var(--ivory);
    font-size: 15px;
  }

  .nav-close {
    position: fixed;
    top: 26px;
    right: 24px;
    z-index: 51;
    background: none;
    border: none;
    color: var(--ivory);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: none;
  }

  .site-nav.open ~ .nav-close,
  .nav-toggle.is-open + .nav-close {
    display: block;
  }
}

/* ============================================================
   Hero (home)
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 13, 0.55) 0%, rgba(20, 16, 13, 0) 30%, rgba(20, 16, 13, 0) 55%, rgba(20, 16, 13, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 0 var(--edge) 72px;
  color: var(--ivory);
}

.hero-eyebrow {
  color: rgba(250, 246, 238, 0.82);
  margin-bottom: 14px;
}

.hero-title {
  color: var(--ivory);
  font-size: clamp(40px, 7vw, 78px);
  letter-spacing: 0.01em;
  max-width: 14ch;
}

.hero-title em {
  font-style: italic;
  color: var(--ivory);
}

.hero-sub {
  margin-top: 22px;
  max-width: 46ch;
  font-size: clamp(17px, 1.6vw, 20px);
  color: rgba(250, 246, 238, 0.9);
}

.scroll-cue {
  position: absolute;
  right: var(--edge);
  bottom: 40px;
  z-index: 5;
  color: var(--ivory);
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0.8;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 46px;
  background: currentColor;
}

@media (max-width: 760px) {
  .scroll-cue {
    display: none;
  }
}

/* ============================================================
   Sections / general
   ============================================================ */

section {
  padding: clamp(64px, 10vw, 128px) 0;
}

.section-alt {
  background: var(--ivory-deep);
}

.section-head {
  margin-bottom: 48px;
}

.section-head .label {
  margin-bottom: 14px;
  display: block;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid currentColor;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  background: var(--ink);
  color: var(--ivory);
}

.btn-wine {
  color: var(--wine);
}

.btn-wine:hover {
  background: var(--wine);
  color: var(--ivory);
}

.btn-ghost-light {
  color: var(--ivory);
}

.btn-ghost-light:hover {
  background: var(--ivory);
  color: var(--ink);
}

/* ============================================================
   Home — teaser grid
   ============================================================ */

.teasers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.teaser {
  padding: 48px 44px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.teaser:last-child {
  border-right: none;
}

.teaser .label {
  color: var(--wine);
}

.teaser .label-gold {
  color: var(--gold);
}

.teaser h3 {
  font-size: 26px;
}

.teaser p {
  color: var(--ink-soft);
  font-size: 17px;
}

.teaser .go {
  margin-top: auto;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-top: 6px;
}

.teaser .go::after {
  content: " →";
}

@media (max-width: 900px) {
  .teasers {
    grid-template-columns: 1fr;
  }

  .teaser {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
}

/* Home — quote */

.quote-block {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.quote-block blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.5;
  margin: 0 0 22px;
  color: var(--wine-deep);
}

.quote-block cite {
  font-family: var(--font-label);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Home — next up strip */

.nextup {
  background: var(--wine);
  color: var(--ivory);
}

.nextup .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 40px;
  padding-bottom: 40px;
}

.nextup .label {
  color: rgba(250, 248, 242, 0.85);
}

.nextup h3 {
  color: var(--ivory);
  font-size: clamp(22px, 2.6vw, 30px);
  margin-top: 10px;
}

.nextup .meta {
  color: rgba(250, 246, 238, 0.75);
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-top: 8px;
}

/* ============================================================
   About
   ============================================================ */

.about-page {
  padding-top: 180px;
}

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

.about-grid figure {
  position: sticky;
  top: 40px;
  margin: 0;
}

.about-grid figure img {
  width: 100%;
}

.about-grid figcaption {
  font-family: var(--font-label);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-top: 12px;
}

.about-copy p {
  font-size: 19px;
  color: var(--ink);
}

.about-copy a:not(.btn) {
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.about-copy a:not(.btn):hover {
  color: var(--wine);
  text-decoration-color: var(--wine);
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-grid figure {
    position: static;
    max-width: 360px;
  }
}

/* ============================================================
   Calendar
   ============================================================ */

.page-hero {
  padding: 180px 0 40px;
}

.page-hero h1 {
  font-size: clamp(40px, 5.6vw, 64px);
}

.page-hero p {
  margin-top: 18px;
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 19px;
}

.concert-list {
  border-top: 1px solid var(--line);
}

.concert {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.concert-date {
  font-family: var(--font-label);
}

.concert-date .month {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
}

.concert-date .day {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.1;
  color: var(--ink);
}

.concert-date .year {
  font-size: 12px;
  color: var(--ink-soft);
}

.concert-title {
  font-size: 24px;
  margin-bottom: 8px;
}

.concert-program {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 62ch;
}

.concert-meta {
  text-align: right;
  font-family: var(--font-label);
  font-size: 13px;
  color: var(--ink-soft);
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.concert-meta a {
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.concert-meta a:hover {
  color: var(--wine);
  border-color: var(--wine);
}

@media (max-width: 700px) {
  .concert {
    grid-template-columns: 76px 1fr;
  }

  .concert-meta {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    margin-top: 6px;
  }

  .concert-date .day {
    font-size: 32px;
  }
}

.past-toggle-wrap {
  text-align: center;
  padding-top: 56px;
}

#past-list {
  margin-top: 8px;
}

#past-list[hidden] {
  display: none;
}

.empty-note {
  color: var(--ink-soft);
  font-style: italic;
  padding: 20px 0;
}

/* ============================================================
   Audio & Video
   ============================================================ */

.player-card {
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  align-items: center;
  gap: 28px;
}

.player-play {
  flex: none;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(250, 246, 238, 0.4);
  background: none;
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.player-play:hover {
  background: var(--ivory);
  color: var(--ink);
}

.player-play svg {
  width: 20px;
  height: 20px;
}

.player-info {
  flex: 1;
  min-width: 0;
}

.player-info h3 {
  color: var(--ivory);
  font-size: 24px;
}

.player-info p {
  color: rgba(250, 246, 238, 0.7);
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-top: 6px;
}

.player-bar {
  margin-top: 16px;
  height: 2px;
  background: rgba(250, 246, 238, 0.25);
  position: relative;
  cursor: pointer;
}

.player-bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--gold);
}

.player-time {
  font-family: var(--font-label);
  font-size: 11px;
  color: rgba(250, 246, 238, 0.6);
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 40px;
}

.video-card figure {
  margin: 0;
  position: relative;
}

.video-frame {
  position: relative;
  padding-top: 56.25%;
  background: var(--ink);
  overflow: hidden;
}

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

.video-card h3 {
  font-size: 21px;
  margin-top: 16px;
  transition: color 0.2s ease;
}

.video-card:hover h3 {
  color: var(--gold);
}

.video-card p {
  font-family: var(--font-label);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-top: 4px;
}

@media (max-width: 800px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .player-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0;
}

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

.site-footer .wordmark-small {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-meta {
  font-family: var(--font-label);
  font-size: 12px;
  color: var(--ink-soft);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-meta a:hover {
  color: var(--wine);
}

/* ============================================================
   Reveal-on-scroll
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}
