:root {
  --ink: #15171a;
  --muted: #626a73;
  --line: #d8dee4;
  --paper: #ffffff;
  --soft: #f5f8f8;
  --wash: #e7f4f2;
  --accent: #0f766e;
  --accent-dark: #084f49;
  --gold: #a16207;
  --gold-soft: #fff6df;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.58;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  font-weight: 850;
  font-size: 1.05rem;
  text-decoration: none;
  white-space: nowrap;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
}

nav a {
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover {
  color: var(--accent-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(54px, 8vw, 104px) clamp(18px, 6vw, 80px);
  background:
    radial-gradient(circle at 80% 15%, rgba(15, 118, 110, 0.12), transparent 28rem),
    linear-gradient(120deg, rgba(231, 244, 242, 0.96), rgba(255, 255, 255, 0.92)),
    var(--soft);
}

.hero-copy,
.section,
footer {
  max-width: 1180px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
li {
  overflow-wrap: break-word;
}

h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.55rem);
  line-height: 0.99;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.intro {
  max-width: 700px;
  margin: 24px 0 0;
  color: #303741;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-note {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.hero-actions,
.download-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  color: white;
  background: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  color: var(--accent-dark);
  background: white;
  border-color: var(--line);
}

.portrait-panel {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 14px;
}

.portrait-frame {
  display: grid;
  place-items: center;
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(255, 255, 255, 0.92)),
    #f7faf9;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.portrait-frame img {
  display: block;
  width: min(78%, 310px);
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
}

.portrait-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

code {
  padding: 2px 5px;
  border-radius: 5px;
  background: var(--soft);
  color: #26313d;
  font-size: 0.92em;
}

.section {
  margin: 0 auto;
  padding: clamp(56px, 8vw, 92px) clamp(18px, 4vw, 36px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.profile-copy {
  max-width: 880px;
  font-size: 1.1rem;
}

.profile-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: start;
}

.award-photo {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.award-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 6 / 5;
  object-fit: cover;
  object-position: center;
}

.award-photo figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.profile-copy p,
.feature-grid p,
.video-card p,
.resume-block p,
.download-box p,
.award-list p,
.contact-section p,
footer p {
  color: var(--muted);
}

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

.stat-grid {
  margin-top: 28px;
}

.stat-grid article,
.feature-grid article,
.recent-feature,
.video-card,
.resume-block,
.download-box,
.award-list article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.stat-grid article {
  padding: 22px;
  background: var(--soft);
}

.stat-grid strong {
  display: block;
  color: var(--accent-dark);
  font-size: 1.25rem;
}

.stat-grid span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.feature-grid article {
  padding: 24px;
}

.recent-section {
  max-width: 1180px;
}

.recent-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 20px;
}

.recent-feature {
  position: relative;
  padding: 26px 28px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.recent-feature::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--accent);
}

.recent-feature.upcoming {
  background: var(--gold-soft);
}

.recent-feature.upcoming::before {
  background: var(--gold);
}

.recent-label {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.recent-feature p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.recital-section {
  max-width: 1240px;
}

.recital-section .section-heading p:last-child {
  max-width: 760px;
  color: var(--muted);
}

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

.recital-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.recital-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: stretch;
}

.recital-card.featured > div:last-child,
.recital-card:not(.featured) {
  padding: 22px;
}

.recital-card h3 {
  margin-top: 8px;
  color: var(--ink);
}

.recital-card p {
  color: var(--muted);
}

.youtube-player {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1f2933;
  border-bottom: 1px solid var(--line);
}

.youtube-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-recital-card h3,
.video-recital-card p,
.video-recital-card .video-fallback-link {
  margin-left: 22px;
  margin-right: 22px;
}

.video-recital-card .video-fallback-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent-dark);
  font-weight: 850;
  text-underline-offset: 4px;
}

.recital-placeholder {
  min-height: 280px;
  display: grid;
  place-items: center;
  color: white;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.88), rgba(9, 84, 78, 0.96)),
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18), transparent 32%);
}

.recital-placeholder.small {
  min-height: 160px;
  margin: -22px -22px 18px;
}

.recital-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 850;
}

.video-section,
.awards-section,
.contact-section {
  background: var(--soft);
  max-width: none;
}

.video-section > *,
.awards-section > *,
.contact-section > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.video-card {
  overflow: hidden;
}

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

.video-card h3,
.video-card p {
  padding-left: 18px;
  padding-right: 18px;
}

.video-card h3 {
  margin-top: 4px;
}

.video-card p {
  margin-bottom: 20px;
}

.video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1f2933;
  border-bottom: 1px solid var(--line);
}

.video-thumb {
  color: white;
  text-decoration: none;
}

.video-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
  transition: transform 180ms ease, filter 180ms ease;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.38));
}

.video-thumb:hover img {
  transform: scale(1.025);
  filter: saturate(1.05) contrast(1.06);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.94);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
  font-weight: 850;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.resume-section {
  max-width: 1240px;
}

.resume-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 20px;
  align-items: start;
}

.resume-block {
  position: relative;
  padding: 26px 28px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.resume-block::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 8px 0 0 8px;
  background: var(--accent);
}

.resume-block h3 {
  color: var(--accent-dark);
}

.resume-block ul,
.award-list ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.resume-block li + li,
.award-list li + li {
  margin-top: 8px;
}

.resume-block:first-child {
  background: linear-gradient(135deg, var(--gold-soft), white 56%);
}

.resume-block:first-child::before {
  background: var(--gold);
}

.column-list {
  columns: 2;
  column-gap: 36px;
}

.download-box {
  position: sticky;
  top: 92px;
  flex-direction: column;
  padding: 24px;
  margin-top: 0;
  background: var(--accent-dark);
  color: white;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
}

.download-box p {
  color: rgba(255, 255, 255, 0.78);
}

.download-box code {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.download-box .button {
  width: 100%;
}

.download-box .button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
}

.resume-mini-link {
  align-self: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 750;
  text-underline-offset: 4px;
}

.resume-mini-link:hover {
  color: white;
}

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

.award-list article {
  padding: 22px;
}

.award-list article:nth-child(4) {
  grid-column: span 2;
}

.award-list h3 {
  color: var(--accent-dark);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 440px);
  gap: 28px;
  align-items: start;
}

.contact-card {
  padding: 24px;
}

.contact-card p {
  margin: 0;
}

.contact-card p + p {
  margin-top: 12px;
}

.contact-button {
  width: 100%;
  margin-top: 18px;
}

footer {
  margin: 0 auto;
  padding: 28px 18px 46px;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .profile-feature,
  .resume-stack,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .portrait-frame {
    min-height: 300px;
  }

  .portrait-frame img {
    width: min(72%, 260px);
    min-height: 0;
  }

  .stat-grid,
  .feature-grid,
  .recent-grid,
  .recital-grid,
  .video-grid,
  .award-list {
    grid-template-columns: 1fr;
  }

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

  .award-list article:nth-child(4) {
    grid-column: auto;
  }

  .download-box {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 16px 18px;
  }

  .hero {
    padding-top: 48px;
  }

  .column-list {
    columns: 1;
  }

  .resume-block,
  .download-box,
  .recital-card.featured > div:last-child,
  .recital-card:not(.featured),
  .award-list article {
    padding: 22px;
  }
}
