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

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  color: #1A1A1A;
  background: #F8F6F3;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* === VARIABLES === */
:root {
  --navy:      #2B3A4A;
  --navy-mid:  #3D5166;
  --off-white: #F8F6F3;
  --white:     #FFFFFF;
  --gold:      #C9A96E;
  --gold-dark: #A8853E;
  --text:      #1A1A1A;
  --text-mid:  #5C5C5C;
  --text-light:#8A8A8A;
  --max-w:     1200px;
  --section-pad: 110px;
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
}

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

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


/* ============================================================
   REVEAL ANIMATIONS — scroll-triggered
   ============================================================ */

.reveal {
  opacity: 0;
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  will-change: opacity, transform;
}

.reveal[data-dir="left"]  { transform: translateX(-40px); }
.reveal[data-dir="right"] { transform: translateX(40px); }
.reveal[data-dir="up"]    { transform: translateY(32px); }

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

/* Stagger list items */
.stagger-list li {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.stagger-list li.item-visible {
  opacity: 1;
  transform: none;
}


/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 0;
  transition: background 0.5s ease, padding 0.4s ease, backdrop-filter 0.5s ease;
}

.site-header.scrolled {
  background: rgba(43, 58, 74, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.12em;
  color: var(--white);
  opacity: 0.92;
  transition: opacity 0.25s;
}
.site-logo:hover { opacity: 1; }

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

.site-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.25s;
}
.site-nav a:hover { color: var(--white); }

.site-nav .nav-cta {
  color: var(--gold);
  padding: 8px 20px;
  border: 1px solid rgba(201,169,110,0.45);
  border-radius: 2px;
  transition: all 0.25s;
}
.site-nav .nav-cta:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}


/* ============================================================
   HERO — split layout: text left / photo right
   ============================================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Photo — right 52% so face lands at ~75% of viewport (outside gradient) */
.hero-photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 52%;
  height: 100%;
  z-index: 0;
}

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

/* Gradient fade: solid navy left → transparent before face zone */
.hero-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    var(--navy)            25%,
    rgba(43,58,74, 0.92)  36%,
    rgba(43,58,74, 0.65)  47%,
    rgba(43,58,74, 0.18)  60%,
    rgba(43,58,74, 0.03)  70%,
    transparent            75%
  );
}

/* Bottom vignette to ground the hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(43,58,74,0.35), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 520px;
  padding-top: 60px;
}

/* Hero entrance animations */
.anim-hero {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease-out) both;
  animation-delay: var(--d, 0s);
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: none; }
}

.hero-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-name-wrap { overflow: hidden; }

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0;
  display: block;
}

.hero-name-line {
  display: block;
}

.hero-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
  transform-origin: left;
  /* override anim-hero for line */
  animation: heroLineGrow 0.7s var(--ease-out) both;
  animation-delay: var(--d, 0s);
  opacity: 0;
}

@keyframes heroLineGrow {
  from { opacity: 0; transform: scaleX(0); }
  to   { opacity: 1; transform: scaleX(1); }
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255,255,255,0.78);
  margin-bottom: 44px;
  letter-spacing: 0.03em;
}

.btn-ghost {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
  padding: 14px 36px;
  border-radius: 2px;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,169,110,0.12);
  transform: translateX(-100%);
  transition: transform 0.35s var(--ease-out);
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost:hover::before { transform: translateX(0); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 24px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  animation: heroFadeUp 0.8s 1.6s var(--ease-out) both;
}

.hero-scroll span {
  display: block;
  width: 2px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 1px;
  animation: scrollBounce 2s 2.2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%       { transform: translateY(6px); opacity: 1; }
}


/* ============================================================
   SECTION SHARED
   ============================================================ */

.section-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-label { margin-bottom: 12px; }

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: 0.04em;
  color: var(--text);
  margin-top: 4px;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--text);
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--text);
}


/* ============================================================
   ABOUT
   ============================================================ */

.section-about {
  background: var(--white);
  /* Overlap hero slightly */
  position: relative;
  z-index: 2;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 80px;
  align-items: start;
}

/* Image with decorative accent frame */
.about-image {
  position: sticky;
  top: 100px;
}

.about-image-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.about-image-frame img {
  width: 100%;
  display: block;
  filter: brightness(0.96) saturate(0.92) sepia(0.06);
  transition: filter 0.6s ease, transform 0.8s var(--ease-out);
}

.about-image-frame:hover img {
  filter: brightness(1.0) saturate(1.0) sepia(0);
  transform: scale(1.02);
}

/* Gold accent line behind/beside the photo */
.about-image-accent {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--gold);
  border-radius: 2px;
  opacity: 0.35;
  z-index: -1;
  transition: opacity 0.4s;
}

.about-image:hover .about-image-accent { opacity: 0.6; }

.about-text .section-label { margin-bottom: 12px; }

.about-text h2 { margin-bottom: 32px; }

.about-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.about-text .lead {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  font-weight: 400;
}

.about-quote {
  margin-top: 48px;
  padding: 32px 40px;
  border-left: 2px solid var(--gold);
  background: var(--off-white);
  position: relative;
}

.about-quote::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 8px;
  left: 24px;
  pointer-events: none;
}

.about-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 12px;
}

.about-quote cite {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-light);
  text-transform: uppercase;
  font-style: normal;
}


/* ============================================================
   REPERTOIRE
   ============================================================ */

.section-repertoire { background: var(--off-white); }

.repertoire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.repertoire-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0 32px;
}

.repertoire-list { list-style: none; }

.repertoire-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(26,26,26,0.07);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  transition: padding-left 0.3s var(--ease-out);
}

.repertoire-list li:hover { padding-left: 6px; }

.role-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--text);
  white-space: nowrap;
}

.role-opera {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
  text-align: right;
}

.repertoire-prev .role-name,
.repertoire-prev .role-opera {
  font-style: italic;
  opacity: 0.6;
}

.repertoire-note {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-top: 20px;
  font-style: italic;
}

.concert-list li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--text);
  justify-content: flex-start;
}

/* Performance photo — intentional treatment */
.performance-image {
  margin-top: 48px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.performance-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43,58,74,0.2) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity 0.5s;
}

.performance-image:hover::after { opacity: 0; }

.performance-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(30%) brightness(0.92) contrast(1.04);
  transition: filter 0.6s ease, transform 0.8s var(--ease-out);
}

.performance-image:hover img {
  filter: grayscale(0%) brightness(1.0) contrast(1.0);
  transform: scale(1.03);
}


/* ============================================================
   VENUES
   ============================================================ */

.section-venues { background: var(--navy); }

.section-venues .section-label { color: var(--gold); }
.section-venues h2 { color: var(--white); }

.venues-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.venues-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

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

.venue-item {
  text-align: center;
  padding: 52px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  cursor: default;
  transition: background 0.4s, border-color 0.4s, transform 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.venue-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.venue-item:hover {
  background: rgba(201,169,110,0.07);
  border-color: rgba(201,169,110,0.2);
  transform: translateY(-4px);
}

.venue-item:hover::before { transform: scaleX(1); }

.venue-icon {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.venue-item:hover .venue-icon { opacity: 1; }

.venue-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}

.venue-city {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}

.venue-item:hover .venue-city { color: rgba(201,169,110,0.7); }


/* ============================================================
   CONTACT
   ============================================================ */

.section-contact { background: var(--white); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.contact-image img {
  width: 100%;
  display: block;
  filter: brightness(0.95) saturate(0.9);
  transition: filter 0.5s, transform 0.8s var(--ease-out);
}

.contact-image:hover img {
  filter: brightness(1.0) saturate(1.0);
  transform: scale(1.02);
}

/* Decorative corner on contact image */
.contact-image::after {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 48px;
  height: 48px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  opacity: 0.5;
  transition: opacity 0.3s, width 0.4s var(--ease-out), height 0.4s var(--ease-out);
}

.contact-image:hover::after {
  width: 80px;
  height: 80px;
  opacity: 0.9;
}

.contact-text h2 { margin-top: 8px; margin-bottom: 20px; }

.contact-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 16px 40px;
  border-radius: 2px;
  transition: background 0.3s, transform 0.3s var(--ease-out);
  margin-bottom: 20px;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.contact-email {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.05em;
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--navy);
  padding: 64px 0;
}

.footer-inner { text-align: center; }

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 0.22em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.footer-credit {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.04em;
}

.footer-credit a {
  color: rgba(255,255,255,0.45);
  transition: color 0.25s;
}

.footer-credit a:hover { color: var(--gold); }


/* ============================================================
   VIDEO SECTION
   ============================================================ */

.section-video { background: var(--navy); }

.section-video .section-label { color: var(--gold); }
.section-video h2 { color: var(--white); }

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

.video-card { cursor: pointer; }

.video-thumb-wrap {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 6px;
  background: #111d27;
}

.video-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.85);
  transition: filter 0.5s ease, transform 0.6s var(--ease-out);
}

.video-card:hover .video-thumb-img {
  filter: brightness(0.68) saturate(0.95);
  transform: scale(1.04);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    to top,
    rgba(43,58,74,0.88) 0%,
    rgba(43,58,74,0.22) 48%,
    rgba(43,58,74,0.08) 100%
  );
  transition: background 0.35s;
  border-radius: 6px;
}

.video-card:hover .video-overlay {
  background: linear-gradient(
    to top,
    rgba(43,58,74,0.94) 0%,
    rgba(43,58,74,0.42) 48%,
    rgba(43,58,74,0.16) 100%
  );
}

/* Custom play button — thin gold circle + CSS triangle */
.play-btn {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(201,169,110,0.55);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 22px;
  transition: border-color 0.3s, background 0.3s, transform 0.35s var(--ease-out);
}

.play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid rgba(201,169,110,0.75);
  margin-left: 5px;
  transition: border-left-color 0.3s;
}

.video-card:hover .play-btn {
  border-color: var(--gold);
  background: rgba(201,169,110,0.1);
  transform: scale(1.1);
}

.video-card:hover .play-btn::after {
  border-left-color: var(--gold);
}

.video-meta {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.video-role {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}

.video-composer {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.65);
}

/* Playing state — iframe fills the card */
.video-thumb-wrap.is-playing { background: #000; }

.video-thumb-wrap.is-playing iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 6px;
}


/* ============================================================
   SECTION MORE + BTN-MORE
   ============================================================ */

.section-more {
  text-align: center;
  margin-top: 56px;
}

/* Ghost button — matches hero CTA style */
.btn-more {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-mid);
  border: 1px solid rgba(26,26,26,0.28);
  padding: 13px 34px;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.btn-more::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,169,110,0.1);
  transform: translateX(-100%);
  transition: transform 0.35s var(--ease-out);
}

.btn-more:hover {
  color: var(--gold-dark);
  border-color: var(--gold);
}

.btn-more:hover::before { transform: translateX(0); }

/* Dark section variant */
.section-video .btn-more {
  color: rgba(255,255,255,0.55);
  border-color: rgba(255,255,255,0.22);
}

.section-video .btn-more:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.section-video .btn-more::before {
  background: rgba(201,169,110,0.08);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  :root { --section-pad: 80px; }

  .container, .header-inner { padding: 0 32px; }

  .hero-photo { width: 62%; }

  .hero-content { max-width: 420px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-image {
    position: static;
    max-width: 480px;
  }

  .repertoire-grid { gap: 48px; }

  .venues-list { grid-template-columns: repeat(2, 1fr); }

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

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .container, .header-inner { padding: 0 24px; }

  .site-nav { gap: 20px; }
  .site-nav a:not(.nav-cta) { display: none; }

  .hero-photo { width: 100%; opacity: 0.5; }

  .hero-fade {
    background: linear-gradient(
      to right,
      rgba(43,58,74,0.92) 0%,
      rgba(43,58,74,0.75) 50%,
      rgba(43,58,74,0.55) 100%
    );
  }

  .hero-content { max-width: 100%; }

  .hero-name { font-size: 48px; }
  .hero-tagline { font-size: 17px; }

  .repertoire-grid { grid-template-columns: 1fr; gap: 48px; }

  .venues-list { grid-template-columns: 1fr 1fr; gap: 1px; }
  .venue-item { padding: 36px 16px; }

  .video-grid { grid-template-columns: 1fr; gap: 16px; }

  .about-image { max-width: 100%; }
  .about-image-accent { display: none; }
}

@media (max-width: 480px) {
  .hero-name { font-size: 38px; }

  .venues-list { grid-template-columns: 1fr; }

  .repertoire-list li {
    flex-direction: column;
    gap: 4px;
  }

  .role-opera { text-align: left; }
}
