:root {
  --ink: #111111;
  --muted: #6f675c;
  --ivory: #f7f3ea;
  --warm: #fffaf0;
  --paper: #ebe5d8;
  --gold: #b99252;
  --gold-deep: #8c6833;
  --mauve: #6e4b67;
  --sage: #687164;
  --line: rgba(17, 17, 17, 0.14);
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Noto Serif SC", "Songti SC", "Microsoft YaHei", "PingFang SC", serif;
  line-height: 1.7;
}

body.dialog-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--ivory);
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.08)),
    rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(247, 243, 234, 0.08);
  transition: background-color 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(18, 18, 18, 0.94);
  border-bottom: 1px solid rgba(247, 243, 234, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 148px;
}

.brand img {
  width: 92px;
  height: 34px;
  object-fit: contain;
}

.brand span {
  display: block;
  color: rgba(247, 243, 234, 0.68);
  font-family: Arial, sans-serif;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  color: rgba(247, 243, 234, 0.82);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(247, 243, 234, 0.24);
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(17, 17, 17, 0.24);
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  color: var(--ivory);
  background: #111;
}

.hero-carousel,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 900ms ease, transform 1800ms ease;
}

.hero-slide:nth-child(2) {
  object-position: center 48%;
}

.hero-slide:nth-child(3) {
  object-position: center 44%;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.7) 34%, rgba(0, 0, 0, 0.22) 72%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.1));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(148px, 18vh, 220px) 0 clamp(72px, 12vh, 120px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(68px, 11vw, 142px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-subtitle {
  width: min(520px, 100%);
  margin: 28px 0 0;
  color: rgba(247, 243, 234, 0.88);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(22px, 4vw, 46px);
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 34px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(247, 243, 234, 0.36);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.hero-dots button.is-active {
  width: 54px;
  background: var(--gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ivory);
  color: var(--ink);
}

.button-ghost {
  border-color: rgba(247, 243, 234, 0.48);
  color: var(--ivory);
}

.intro-band {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 104px) 0;
  background:
    linear-gradient(120deg, rgba(235, 229, 216, 0.96), rgba(247, 243, 234, 0.9)),
    var(--paper);
}

.intro-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 28px,
      rgba(140, 104, 51, 0.1) 29px,
      rgba(140, 104, 51, 0.1) 30px,
      transparent 31px,
      transparent 54px
    );
  opacity: 0.48;
}

.intro-band::after {
  content: "";
  position: absolute;
  top: 0;
  right: 7vw;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(185, 146, 82, 0.46), transparent);
}

.intro-band > .container {
  position: relative;
  z-index: 1;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 90px);
}

.intro-grid h2,
.section-heading h2,
.performance-grid h2 {
  margin: 0;
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.intro-copy p {
  margin: 0 0 18px;
  color: #332f2a;
  font-size: 17px;
}

.score-signature {
  width: min(360px, 86%);
  margin-top: 34px;
  padding: 8px 0;
}

.score-signature span {
  display: block;
  height: 1px;
  margin: 8px 0;
  background: linear-gradient(90deg, var(--gold-deep), rgba(185, 146, 82, 0.18), transparent);
}

.intro-note {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 250, 240, 0.64);
  box-shadow: 0 18px 55px rgba(17, 17, 17, 0.08);
}

.intro-note strong,
.intro-note span {
  display: block;
}

.intro-note strong {
  color: var(--gold-deep);
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro-note span {
  margin-top: 8px;
  color: #332f2a;
}

.profile-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(38px, 6vw, 72px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.56);
  box-shadow: 0 22px 70px rgba(17, 17, 17, 0.08);
}

.profile-strip div {
  position: relative;
  overflow: hidden;
  min-height: 118px;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: rgba(247, 243, 234, 0.68);
  transition: background 180ms ease, transform 180ms ease;
}

.profile-strip div:last-child {
  border-right: 0;
}

.profile-strip div::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(110, 75, 103, 0.34));
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 220ms ease;
}

.profile-strip div:hover {
  background: rgba(255, 250, 240, 0.94);
  transform: translateY(-3px);
}

.profile-strip div:hover::after {
  transform: scaleX(1);
}

.profile-strip strong,
.profile-strip span {
  display: block;
}

.profile-strip strong {
  font-size: 20px;
  font-weight: 600;
}

.profile-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.focus-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.focus-panel article {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.98), rgba(235, 229, 216, 0.9)),
    var(--warm);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.focus-panel article::before {
  content: "";
  position: absolute;
  top: 18px;
  right: -24px;
  width: 170px;
  height: 76px;
  border-top: 1px solid rgba(185, 146, 82, 0.22);
  border-bottom: 1px solid rgba(185, 146, 82, 0.16);
  transform: rotate(-10deg);
}

.focus-panel article:hover {
  border-color: rgba(185, 146, 82, 0.44);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.focus-panel span {
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.focus-panel h3 {
  margin: 18px 0 10px;
  font-size: 24px;
  font-weight: 500;
}

.focus-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.section {
  padding: clamp(70px, 9vw, 118px) 0;
}

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

.education-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 243, 234, 0.98), rgba(235, 229, 216, 0.72)),
    var(--ivory);
}

.education-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, transparent, rgba(185, 146, 82, 0.09));
  background-size: 92px 100%, 100% 100%;
  opacity: 0.62;
}

.education-section > .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading.split {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: clamp(28px, 6vw, 74px);
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--muted);
}

.timeline {
  position: relative;
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 190px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(185, 146, 82, 0.1), rgba(185, 146, 82, 0.74), rgba(185, 146, 82, 0.1));
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
  padding: 0;
  border-bottom: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 27px;
  left: 184px;
  width: 13px;
  height: 13px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  background: var(--ivory);
  box-shadow: 0 0 0 8px rgba(185, 146, 82, 0.1);
}

.timeline time {
  display: grid;
  align-content: start;
  gap: 4px;
  padding-top: 16px;
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.25;
}

.timeline time span:first-child {
  font-size: 23px;
}

.timeline time span:last-child {
  color: rgba(17, 17, 17, 0.5);
}

.timeline-card {
  position: relative;
  overflow: hidden;
  min-height: 134px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.74);
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.06);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.timeline-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(110, 75, 103, 0.36), transparent);
}

.timeline-card::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 18px;
  width: 120px;
  height: 38px;
  border-top: 1px solid rgba(185, 146, 82, 0.18);
  border-bottom: 1px solid rgba(185, 146, 82, 0.14);
}

.timeline li:hover .timeline-card {
  border-color: rgba(185, 146, 82, 0.42);
  box-shadow: var(--shadow);
  transform: translateX(8px);
}

.timeline-place {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold-deep);
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline h3 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
}

.timeline p {
  margin: 8px 0 0;
  color: var(--muted);
}

.repertoire-card {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(247, 243, 234, 0.14);
  border-radius: var(--radius);
  background: rgba(247, 243, 234, 0.06);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.program-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(247, 243, 234, 0.14);
}

.program-title span {
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.program-title strong {
  font-size: 28px;
  font-weight: 500;
}

.repertoire-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.repertoire-card li {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(247, 243, 234, 0.12);
}

.repertoire-card li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.repertoire-card li span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.repertoire-card li p {
  margin: 0;
  color: rgba(247, 243, 234, 0.78);
}

.listen-section {
  background: #161614;
  color: var(--ivory);
}

.listen-section .section-heading p {
  color: rgba(247, 243, 234, 0.66);
}

.audio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.audio-card,
.video-card,
.award-card {
  border-radius: var(--radius);
}

.audio-card {
  padding: 26px;
  border: 1px solid rgba(247, 243, 234, 0.14);
  background: rgba(247, 243, 234, 0.05);
}

.audio-card span,
.award-card span {
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.audio-card h3 {
  margin: 10px 0 22px;
  font-size: 22px;
  font-weight: 500;
}

.audio-card audio {
  width: 100%;
  min-height: 42px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.video-card {
  overflow: hidden;
  border: 1px solid rgba(247, 243, 234, 0.14);
  background: rgba(247, 243, 234, 0.04);
}

.video-card iframe,
.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
  object-fit: contain;
}

.video-card h3 {
  margin: 0;
  padding: 16px 18px;
  font-size: 18px;
  font-weight: 500;
}

.performance-band {
  background: var(--warm);
}

.performance-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
}

.performance-grid p {
  color: var(--muted);
}

.program-list {
  display: grid;
  gap: 10px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.program-list li {
  display: grid;
  gap: 5px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: #312c26;
}

.program-list strong {
  font-size: 17px;
  font-weight: 600;
}

.program-list span {
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-deep);
  font-weight: 600;
}

.stage-photo {
  margin: 0;
}

.stage-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stage-photo figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.recital-program {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  margin-top: clamp(42px, 7vw, 82px);
  padding-top: clamp(34px, 5vw, 58px);
  border-top: 1px solid var(--line);
}

.recital-program-copy h3 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 500;
  line-height: 1.22;
}

.recital-program-copy p {
  margin: 18px 0 26px;
  color: var(--muted);
}

.performance-program-card {
  background:
    radial-gradient(circle at 92% 8%, rgba(185, 146, 82, 0.16), rgba(185, 146, 82, 0) 30%),
    #151515;
  color: var(--ivory);
}

.award-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.award-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf1;
}

.award-image {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #f0eadf;
  cursor: zoom-in;
}

.award-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 16px;
  background: #fffaf1;
  transition: transform 220ms ease;
}

.award-image:hover img {
  transform: scale(1.025);
}

.award-info {
  padding: 22px 24px 24px;
}

.award-info h3 {
  min-height: 68px;
  margin: 14px 0 12px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.35;
}

.award-info p {
  margin: 0 0 24px;
  color: var(--muted);
}

.award-info a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-deep);
  font-size: 14px;
  font-weight: 600;
}

.gallery-section {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-height: 240px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #d6cdbf;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 492px;
}

.gallery-item.wide {
  grid-column: span 2;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 88px) 0 24px;
  border-top: 1px solid rgba(185, 146, 82, 0.18);
  background:
    linear-gradient(120deg, rgba(17, 17, 17, 0.98), rgba(22, 18, 14, 0.96)),
    #111;
  color: var(--ivory);
}

.site-footer::before {
  content: "LZQ";
  position: absolute;
  right: -2vw;
  bottom: -74px;
  color: rgba(247, 243, 234, 0.035);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(110px, 18vw, 260px);
  line-height: 1;
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 24px,
      rgba(185, 146, 82, 0.08) 25px,
      rgba(185, 146, 82, 0.08) 26px,
      transparent 27px,
      transparent 50px
    );
  opacity: 0.34;
}

.site-footer > .container {
  position: relative;
  z-index: 1;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(260px, 0.7fr) auto;
  gap: clamp(34px, 6vw, 82px);
  align-items: end;
  padding-bottom: clamp(34px, 5vw, 54px);
  border-bottom: 1px solid rgba(247, 243, 234, 0.12);
}

.footer-brand img {
  width: 148px;
  height: 66px;
  object-fit: contain;
  margin-bottom: 22px;
}

.footer-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-brand strong {
  display: block;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.2;
}

.footer-brand p:not(.footer-kicker) {
  max-width: 520px;
  margin: 14px 0 0;
  color: rgba(247, 243, 234, 0.62);
  font-size: 16px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(96px, 1fr));
  gap: 10px 26px;
}

.footer-links a {
  position: relative;
  width: fit-content;
  color: rgba(247, 243, 234, 0.78);
  font-size: 15px;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.footer-links a:hover {
  color: var(--ivory);
  transform: translateX(3px);
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.footer-meta {
  display: grid;
  justify-items: end;
  white-space: nowrap;
}

.footer-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(185, 146, 82, 0.52);
  border-radius: 999px;
  color: var(--gold);
  font-size: 14px;
  transition: background 160ms ease, color 160ms ease;
}

.footer-meta a:hover {
  background: var(--gold);
  color: #111;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  color: rgba(247, 243, 234, 0.42);
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.footer-bottom a {
  margin-left: 8px;
  color: rgba(247, 243, 234, 0.62);
  text-decoration: underline;
  text-decoration-color: rgba(185, 146, 82, 0.62);
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.footer-bottom a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

.image-dialog {
  width: min(1100px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #111;
  box-shadow: var(--shadow);
}

.image-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.image-dialog img {
  width: 100%;
  max-height: calc(100vh - 92px);
  object-fit: contain;
  background: #111;
}

.image-dialog button {
  position: sticky;
  top: 0;
  z-index: 2;
  width: 100%;
  min-height: 44px;
  border: 0;
  color: var(--ivory);
  background: #111;
  cursor: pointer;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .hero-dots button,
  .profile-strip div,
  .focus-panel article,
  .timeline-card,
  .reveal-ready [data-reveal] {
    transition: none;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    display: none;
    width: min(280px, calc(100vw - 36px));
    padding: 12px;
    border: 1px solid rgba(247, 243, 234, 0.14);
    border-radius: var(--radius);
    background: rgba(18, 18, 18, 0.96);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 10px 8px;
  }

  .intro-grid,
  .section-heading.split,
  .performance-grid {
    grid-template-columns: 1fr;
  }

  .profile-strip,
  .award-grid,
  .focus-panel {
    grid-template-columns: 1fr;
  }

  .profile-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .profile-strip div:last-child {
    border-bottom: 0;
  }

  .recital-program {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container,
  .hero-content {
    width: min(100% - 28px, 620px);
  }

  .site-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 72px;
    height: 28px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-slide {
    object-position: center center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.76) 48%, rgba(0, 0, 0, 0.52) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.2));
  }

  .hero-content {
    padding-top: 132px;
  }

  .hero h1 {
    font-size: clamp(58px, 20vw, 84px);
  }

  .hero-subtitle {
    max-width: 330px;
    font-size: 19px;
  }

  .hero-dots {
    right: 14px;
    bottom: 18px;
  }

  .hero-dots button {
    width: 26px;
  }

  .hero-dots button.is-active {
    width: 40px;
  }

  .audio-grid,
  .video-grid,
  .timeline li {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: 30px;
  }

  .timeline::before {
    left: 6px;
  }

  .timeline li {
    gap: 10px;
  }

  .timeline li::before {
    top: 18px;
    left: -1px;
  }

  .timeline li:hover .timeline-card {
    transform: translateY(-4px);
  }

  .timeline time {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    padding-top: 0;
  }

  .repertoire-card li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-brand img {
    width: 118px;
    height: 54px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-meta {
    justify-items: start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
