:root {
  --aram-accent: #c9a96a;
  --aram-background: #0f1318;
  --aram-surface: #131a22;
  --aram-surface-alt: #18202a;
  --aram-text: #f3f4f5;
  --aram-muted: #b1b7bf;
  --aram-border: rgba(255, 255, 255, 0.14);
  --aram-shadow: 0 20px 55px rgba(0, 0, 0, 0.32);
  --aram-radius: 14px;
  --aram-max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background:
    radial-gradient(circle at top left, rgba(201, 169, 106, 0.1), transparent 38%),
    var(--aram-background);
  color: var(--aram-text);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Cinzel, serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0;
  line-height: 1.16;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.container {
  width: min(100% - 2rem, var(--aram-max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(5px);
  background: rgba(7, 10, 14, 0.88);
  border-bottom: 1px solid var(--aram-border);
}

.site-header__inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 1.2rem;
  position: relative;
}

.site-brand {
  display: inline-block;
  text-decoration: none;
  line-height: 1;
  min-width: 0;
}

.site-brand__name-line {
  font-family: Cinzel, serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.02;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--aram-text);
  padding: 0;
  cursor: pointer;
}

.menu-toggle__line {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}

.primary-navigation .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.primary-navigation {
  justify-self: center;
}

.primary-navigation .menu a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease;
}

.primary-navigation .menu a:hover,
.primary-navigation .current-menu-item > a {
  color: var(--aram-accent);
}

.header-social {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
}

.header-social a {
  display: inline-grid;
  place-items: center;
  width: 15px;
  height: 15px;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease, transform 0.2s ease;
}

.header-social a:hover {
  color: var(--aram-accent);
  transform: translateY(-1px);
}

.header-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

body.home .site-header {
  position: fixed;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.2));
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  background-position: center;
  background-size: cover;
  padding-top: 72px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at left center, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0) 45%),
    radial-gradient(ellipse at right center, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0) 45%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.08) 38%, rgba(0, 0, 0, 0.74) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 100%;
  padding: 0 0 2rem;
}

.hero__content--spotlight {
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.95rem, 5.1vw, 4.15rem);
  margin-bottom: 0.95rem;
  color: #fff;
  letter-spacing: 0.022em;
  line-height: 1.06;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.55);
}

.eyebrow {
  margin-bottom: 0.7rem;
  color: var(--aram-accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--aram-accent);
  color: var(--aram-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.85rem 1.2rem;
  margin-top: 0.8rem;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.btn:hover {
  background: var(--aram-accent);
  color: #0a0c10;
}

.text-link {
  color: var(--aram-accent);
  text-decoration: none;
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}

.section {
  padding: 5.3rem 0;
}

.section--dark {
  background: var(--aram-surface);
  border-block: 1px solid var(--aram-border);
}

.section--highlight {
  background: linear-gradient(120deg, rgba(201, 169, 106, 0.11), rgba(201, 169, 106, 0.03));
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.1rem;
}

.section-head h2 {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  margin-bottom: 0.6rem;
}

.section-head p:not(.eyebrow) {
  color: var(--aram-muted);
  max-width: 64ch;
  margin-bottom: 0;
}

body.home {
  background: #040507;
}

body.home .home-main .section {
  padding: 6.8rem 0;
  background: #040507;
  border: 0;
}

.home-bio-awards {
  padding-top: 6.2rem;
}

.home-bio-awards__intro {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 1fr);
  gap: 4rem;
  align-items: start;
}

.home-intro-title {
  margin: 0;
  font-size: clamp(1.55rem, 2.7vw, 2.4rem);
  letter-spacing: 0.02em;
  color: #f4f2f5;
  max-width: 16ch;
}

.home-intro-text p {
  margin-bottom: 1.2rem;
  color: rgba(244, 245, 247, 0.78);
  font-size: 0.98rem;
  max-width: 46ch;
}

.home-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.75rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: #f4f2f5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.44);
  padding-bottom: 0.2rem;
}

.home-read-more span {
  font-size: 0.95rem;
  line-height: 1;
}

.home-awards-grid {
  margin-top: 5.7rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4.2rem 2.8rem;
}

.home-award-item__year {
  margin: 0 0 0.8rem;
  color: var(--aram-accent);
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  letter-spacing: 0.01em;
  line-height: 1;
}

.home-award-item__title {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(0.95rem, 1vw, 1.12rem);
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: #f2f3f4;
  max-width: 24ch;
}

.home-award-item__desc {
  margin: 0.7rem 0 0;
  color: rgba(244, 245, 247, 0.68);
  max-width: 30ch;
}

.home-centered-eyebrow {
  text-align: center;
}

.home-section-title {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2.3rem);
  line-height: 1.08;
  color: #f4f2f5;
  letter-spacing: 0.02em;
}

.home-section-title--center {
  margin-inline: auto;
  text-align: center;
  max-width: 20ch;
}

.home-repertoire-grid {
  margin-top: 3.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.home-repertoire-card img {
  width: 100%;
  aspect-ratio: 5 / 7;
  object-fit: cover;
}

.home-repertoire-card__meta {
  margin: 1.15rem 0 0.4rem;
  color: rgba(244, 245, 247, 0.72);
  font-size: 0.95rem;
}

.home-repertoire-card h3 {
  margin: 0;
  font-size: clamp(1.08rem, 1.35vw, 1.5rem);
  line-height: 1.18;
  color: #f4f2f5;
}

.home-repertoire-link {
  margin-top: 2rem;
  text-align: right;
}

body:not(.home) {
  background: #040507;
}

.inner-main .section,
.inner-main .section--dark,
.inner-main .section--highlight {
  background: #040507;
  border: 0;
}

.inner-main .section {
  padding: 6.2rem 0;
}

.inner-main .page-hero,
.inner-main .page-hero--small {
  padding: 8.4rem 0 2.5rem;
}

.inner-main .page-hero .container {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.inner-main .page-hero h1 {
  font-size: clamp(1.75rem, 3.2vw, 2.9rem);
  letter-spacing: 0.02em;
  color: #f4f2f5;
}

.inner-main .page-hero img {
  margin-top: 2rem;
  border: 0;
  border-radius: 0;
}

.inner-main .section-head {
  margin-bottom: 2.6rem;
  max-width: none;
}

.inner-main .section-head h2 {
  font-size: clamp(1.45rem, 2.3vw, 2.3rem);
  color: #f4f2f5;
  line-height: 1.08;
  letter-spacing: 0.02em;
}

.inner-main .section-head p:not(.eyebrow) {
  color: rgba(244, 245, 247, 0.76);
  max-width: 58ch;
}

.inner-main .entry-page,
.inner-main .entry-card,
.inner-main .contact-details article,
.inner-main .biography-layout__years,
.inner-main .role-item {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.inner-main .entry-title {
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  letter-spacing: 0.02em;
}

.inner-main .entry-title a {
  text-decoration: none;
}

.inner-main .entry-content :is(h2, h3, h4) {
  color: #f4f2f5;
  margin-top: 2rem;
}

.inner-main .entry-content :is(p, li) {
  color: rgba(244, 245, 247, 0.8);
}

.inner-main .entry-content a,
.inner-main .contact-details a {
  color: var(--aram-accent);
}

.inner-main .biography-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.6fr);
  gap: 3rem;
  align-items: start;
}

.inner-main .biography-layout__years h2 {
  font-size: clamp(1.2rem, 1.6vw, 1.65rem);
}

.inner-main .biography-layout__years li {
  color: var(--aram-accent);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  padding: 0.55rem 0;
}

.inner-main .gallery-grid {
  gap: 1rem;
}

.inner-main .gallery-grid img {
  border: 0;
  border-radius: 0;
  height: 260px;
}

.inner-main .repertoire-gallery {
  gap: 1rem;
}

.inner-main .repertoire-gallery img {
  border: 0;
  border-radius: 0;
}

.inner-main .roles-grid {
  gap: 2.6rem 2.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.inner-main .role-index {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
  font-family: Cinzel, serif;
  font-weight: 400;
}

.inner-main .role-item h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.15rem, 1.5vw, 1.55rem);
  color: #f4f2f5;
}

.inner-main .role-item p {
  color: rgba(244, 245, 247, 0.78);
}

.inner-main .upcoming-show {
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1fr);
  gap: 3rem;
}

.inner-main .upcoming-show__media img {
  border: 0;
  border-radius: 0;
}

.inner-main .upcoming-show__content h2 {
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  line-height: 1.08;
  color: #f4f2f5;
}

.inner-main .upcoming-show__content p {
  color: rgba(244, 245, 247, 0.78);
}

.inner-main .contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
}

.inner-main .contact-details {
  gap: 1.6rem;
}

.inner-main .contact-details h3 {
  margin-bottom: 0.35rem;
  color: #f4f2f5;
}

.inner-main .contact-details p {
  color: rgba(244, 245, 247, 0.8);
}

.inner-main .contact-map iframe {
  border: 0;
  border-radius: 0;
  min-height: 500px;
}

.upcoming-show {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(240px, 0.9fr) minmax(300px, 1fr);
  align-items: center;
}

.upcoming-show__media img {
  width: 100%;
  border-radius: var(--aram-radius);
  border: 1px solid var(--aram-border);
}

.upcoming-show__date {
  color: var(--aram-accent);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-hero {
  padding: 5rem 0 1.5rem;
}

.page-hero .container {
  background: var(--aram-surface);
  border: 1px solid var(--aram-border);
  border-radius: var(--aram-radius);
  padding: 2rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 0;
}

.page-hero img {
  width: 100%;
  border-radius: var(--aram-radius);
  border: 1px solid var(--aram-border);
  margin-top: 1.2rem;
}

.page-hero--small {
  padding-top: 4.5rem;
}

.page-content {
  padding-block: 3.5rem;
}

.entry-page,
.entry-card {
  background: var(--aram-surface);
  border: 1px solid var(--aram-border);
  border-radius: var(--aram-radius);
  padding: 1.4rem;
}

.entry-content :is(h2, h3, h4) {
  margin-top: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--aram-text);
}

.entry-content p,
.entry-content li {
  color: var(--aram-muted);
}

.entry-content a {
  color: var(--aram-accent);
}

.entry-media img {
  border-radius: var(--aram-radius);
  border: 1px solid var(--aram-border);
  margin-bottom: 1rem;
}

.biography-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}

.biography-layout__years {
  border: 1px solid var(--aram-border);
  border-radius: var(--aram-radius);
  padding: 1.1rem;
  background: var(--aram-surface-alt);
}

.biography-layout__years h2 {
  margin-bottom: 0.9rem;
}

.biography-layout__years ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.biography-layout__years li {
  color: var(--aram-accent);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--aram-border);
}

.biography-layout__years li:last-child {
  border-bottom: 0;
}

.gallery-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--aram-radius);
  border: 1px solid var(--aram-border);
}

.repertoire-gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.repertoire-gallery img {
  width: 100%;
  border-radius: var(--aram-radius);
  border: 1px solid var(--aram-border);
}

.roles-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.6rem;
}

.role-item {
  border: 1px solid var(--aram-border);
  border-radius: var(--aram-radius);
  padding: 1rem;
  background: var(--aram-surface-alt);
}

.role-index {
  color: var(--aram-accent);
  font-weight: 700;
}

.role-item h3 {
  margin: 0.35rem 0 0.45rem;
}

.role-item p {
  margin-bottom: 0;
  color: var(--aram-muted);
}

.contact-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr 1.2fr;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 0.8rem;
}

.contact-details article {
  background: var(--aram-surface-alt);
  border: 1px solid var(--aram-border);
  border-radius: var(--aram-radius);
  padding: 1rem;
}

.contact-details h3 {
  color: var(--aram-accent);
  margin-bottom: 0.45rem;
}

.contact-map iframe {
  width: 100%;
  min-height: 420px;
  border: 1px solid var(--aram-border);
  border-radius: var(--aram-radius);
}

.social-links {
  display: inline-flex;
  gap: 0.45rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--aram-border);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
  font-size: 0.74rem;
  color: var(--aram-accent);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  border-color: var(--aram-accent);
  color: var(--aram-text);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1120px) {
  .site-header__inner {
    column-gap: 1rem;
  }

  .primary-navigation .menu {
    gap: 1.45rem;
  }

  .primary-navigation .menu a {
    font-size: 0.72rem;
    letter-spacing: 0.09em;
  }

  .header-social {
    gap: 0.75rem;
  }
}

@media (max-width: 920px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
    min-height: 62px;
  }

  .site-brand__name-line {
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    max-width: calc(100vw - 112px);
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
  }

  .header-social {
    display: none;
  }

  .primary-navigation {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    width: 100%;
    background: #0f141b;
    border: 1px solid var(--aram-border);
    border-radius: 12px;
    padding: 0.9rem;
    box-shadow: var(--aram-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-header.is-open .primary-navigation {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-navigation .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.95rem;
  }

  .hero {
    padding-top: 62px;
  }
}

@media (max-width: 1020px) {
  .roles-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid,
  .upcoming-show,
  .biography-layout {
    grid-template-columns: 1fr;
  }

  .home-bio-awards__intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .inner-main .section {
    padding: 5.1rem 0;
  }

  .inner-main .page-hero,
  .inner-main .page-hero--small {
    padding-top: 7.4rem;
  }

  .inner-main .biography-layout,
  .inner-main .contact-grid,
  .inner-main .upcoming-show {
    grid-template-columns: 1fr;
  }

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

  .inner-main .contact-map iframe {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .site-brand__name-line {
    max-width: calc(100vw - 92px);
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: 92vh;
    padding-top: 62px;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
  }

  .hero__content {
    padding-bottom: 1.6rem;
  }

  .page-hero .container {
    padding: 1.2rem;
  }

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

  body.home .home-main .section {
    padding: 4.3rem 0;
  }

  .home-intro-title {
    max-width: 100%;
  }

  .home-awards-grid,
  .home-repertoire-grid {
    margin-top: 2.4rem;
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .home-repertoire-card h3 {
    font-size: clamp(1.05rem, 5.8vw, 1.4rem);
  }

  .home-repertoire-link {
    text-align: left;
  }

  .inner-main .section {
    padding: 4rem 0;
  }

  .inner-main .page-hero,
  .inner-main .page-hero--small {
    padding: 6.6rem 0 1.7rem;
  }

  .inner-main .page-hero h1 {
    font-size: clamp(1.45rem, 7.2vw, 2rem);
  }

  .inner-main .roles-grid,
  .inner-main .gallery-grid,
  .inner-main .repertoire-gallery {
    grid-template-columns: 1fr;
  }

  .inner-main .contact-map iframe {
    min-height: 320px;
  }
}
