:root {
  --black: #050505;
  --charcoal: #141414;
  --panel: #777777;
  --panel-dark: #343434;
  --red: #8b1009;
  --red-dark: #3e0302;
  --red-muted: #a23a33;
  --white: #ffffff;
  --soft: #ece7df;
  --line: rgba(255, 255, 255, 0.28);
  --shadow: rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
}

body {
  margin: 0;
  background: linear-gradient(180deg, #111 0, var(--red) 36%, var(--red-dark) 100%);
  color: var(--white);
  font-family: "Avenir Next", "Gill Sans", "Trebuchet MS", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, #6e6e6e 0%, #1b1b1b 70%, #000 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  width: min(1120px, calc(100% - 48px));
  min-height: 110px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: none;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  color: #b43a34;
  font-size: 1rem;
  text-decoration: none;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.is-active {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 870px;
  overflow: hidden;
  background: var(--black);
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.22));
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-height: 870px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 14px var(--shadow);
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1.25;
}

.hero-copy p {
  margin: 22px 0 0;
  font-size: 1.25rem;
}

.section {
  padding: 88px 24px;
}

.section-dark {
  background: linear-gradient(180deg, #000 0%, #171717 100%);
}

.section-red {
  background: linear-gradient(180deg, #1d0a09 0%, var(--red) 42%, var(--red-dark) 100%);
}

.section-heading {
  margin: 0 auto 34px;
  text-align: center;
  font-size: 2rem;
  font-weight: 300;
  text-transform: uppercase;
}

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.empty-event {
  width: min(980px, 100%);
  margin: 0 auto 76px;
  padding: 52px 24px;
  background: var(--panel);
  text-align: center;
  font-size: 1.15rem;
}

.performance-list {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 40px 34px 20px;
  background: var(--panel);
}

.performance-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 120px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.performance-row:last-child {
  border-bottom: 0;
}

.date-pill {
  justify-self: start;
  grid-column: 1 / -1;
  border: 1px solid var(--white);
  padding: 2px 14px;
  font-size: 0.86rem;
}

.performance-main {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.performance-main h3 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 300;
}

.performance-main p,
.slash {
  margin: 0;
  color: #f3f3f3;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 42px;
  padding: 10px 18px;
  text-decoration: none;
  border: 1px solid currentColor;
}

.button-light {
  background: var(--white);
  color: #777;
  border-color: var(--white);
}

.button-ghost {
  color: var(--white);
  background: transparent;
}

.button:hover,
.button:focus {
  filter: brightness(0.9);
}

.feature {
  padding: 120px 24px;
}

.feature-row {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  background: linear-gradient(180deg, #777 0%, #222 100%);
  box-shadow: 0 18px 50px var(--shadow);
}

.feature-row.reverse {
  grid-template-columns: 0.75fr 1fr;
}

.feature-row.reverse .feature-copy {
  order: 2;
}

.feature-copy {
  padding: 68px 64px;
}

.feature-copy h1,
.feature-copy h2 {
  margin: 0 0 46px;
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.2;
}

.feature-copy p {
  max-width: 560px;
  margin: 0 0 18px;
}

.feature-media {
  min-height: 530px;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-intro {
  min-height: 150px;
  background: linear-gradient(180deg, #000 0%, #111 100%);
}

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

.gallery-card {
  text-decoration: none;
  color: var(--white);
}

.gallery-card h2 {
  margin: 0 0 28px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 300;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(0.15);
}

.gallery-card:hover img,
.gallery-card:focus img {
  filter: grayscale(0);
}

.videos {
  background: linear-gradient(180deg, #151515 0%, #050505 100%);
}

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

.video-card {
  display: block;
  min-height: 100%;
  background: #1d1d1d;
  color: var(--white);
  text-decoration: none;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.duration {
  position: absolute;
  left: 12px;
  bottom: 10px;
  padding: 2px 8px;
  background: rgba(0, 0, 0, 0.78);
  font-size: 0.86rem;
}

.play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 10px var(--shadow);
}

.video-card h3 {
  margin: 0;
  padding: 18px 18px 8px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
}

.video-card p {
  margin: 0;
  padding: 0 18px 22px;
  color: #d7d7d7;
  font-size: 0.92rem;
}

.contact-shell {
  padding: 90px 24px;
  background: linear-gradient(180deg, #000 0%, #171717 34%, var(--red-dark) 100%);
}

.contact-panel {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 58px 11%;
  background: linear-gradient(180deg, #111 0%, #777 100%);
}

.contact-panel h1 {
  margin: 0 0 46px;
  font-size: 2.5rem;
  font-weight: 300;
}

.contact-email {
  margin-bottom: 48px;
}

.contact-email p {
  margin: 0;
}

.contact-email a {
  text-decoration: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 22px;
}

.field {
  display: grid;
  gap: 6px;
}

.field-message {
  grid-column: 1 / -1;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--white);
  background: #7b7b7b;
  color: var(--white);
  min-height: 38px;
  padding: 9px 11px;
  font: inherit;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.form-actions {
  grid-column: 3;
}

.form-actions .button {
  width: 100%;
}

.event-page {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(70, 5, 3, 0.96)),
    url("/assets/images/dark-stage.jpg") center / cover fixed;
}

.event-detail {
  padding: 86px 24px;
}

.event-card {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  background: linear-gradient(180deg, #777 0%, #282828 100%);
  box-shadow: 0 20px 60px var(--shadow);
}

.event-copy {
  padding: 58px;
}

.event-copy h1 {
  margin: 0 0 16px;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.18;
}

.event-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: #f1f1f1;
  margin-bottom: 28px;
}

.event-summary {
  font-size: 1.1rem;
  margin-bottom: 44px;
}

.detail-group {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-group h2 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  font-weight: 300;
}

.event-media img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.collection-header {
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(180deg, #000 0%, #151515 100%);
}

.collection-header h1 {
  margin: 0;
  font-size: 2.8rem;
  font-weight: 300;
}

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

.photo-grid img {
  width: 100%;
  height: 100%;
  max-height: 780px;
  object-fit: cover;
  background: #222;
}

.photo-grid .wide {
  grid-column: 1 / -1;
  max-height: 620px;
}

.collection-nav {
  margin-top: 42px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.site-footer {
  background: linear-gradient(180deg, #5f5f5f 0%, #000 100%);
  color: var(--white);
}

.footer-inner {
  width: min(1120px, calc(100% - 48px));
  min-height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
}

.social-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.social-links a {
  color: #f1f1f1;
  font-size: 0.92rem;
  text-decoration: none;
}

.social-links a:hover,
.social-links a:focus {
  color: #f4b4ad;
}

@media (max-width: 900px) {
  .nav {
    min-height: 82px;
    width: min(100% - 32px, 1120px);
  }

  .brand {
    display: inline-flex;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 24px;
    background: #050505;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero,
  .hero-copy {
    min-height: 680px;
  }

  .hero-copy h1 {
    font-size: 2.7rem;
  }

  .feature,
  .section {
    padding: 64px 18px;
  }

  .feature-row,
  .feature-row.reverse,
  .event-card,
  .gallery-grid,
  .video-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-copy {
    order: 0;
  }

  .feature-copy,
  .event-copy,
  .contact-panel {
    padding: 40px 28px;
  }

  .feature-copy h1,
  .feature-copy h2 {
    font-size: 2.4rem;
  }

  .feature-media,
  .event-media img {
    min-height: 420px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-actions {
    grid-column: 1;
  }

  .performance-row {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .collection-nav,
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero,
  .hero-copy {
    min-height: 590px;
  }

  .hero img {
    object-position: 48% top;
  }

  .hero-copy {
    justify-content: flex-end;
    padding-bottom: 72px;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .section-heading {
    font-size: 1.55rem;
  }

  .performance-list {
    padding: 24px 18px 12px;
  }

  .performance-main {
    display: block;
  }

  .slash {
    display: none;
  }

  .performance-main h3 {
    font-size: 1.25rem;
  }

  .event-copy h1,
  .collection-header h1 {
    font-size: 2rem;
  }
}
/* ===== Homepage refresh additions ===== */

.hero-eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f4b4ad;
}

.hero-actions,
.section-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.button-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.latest-performance .feature-row {
  grid-template-columns: 0.85fr 1fr;
}

.quiet-as-mice-poster {
  background: #111;
  display: grid;
  place-items: center;
  padding: 28px;
}

.quiet-as-mice-poster img {
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: contain;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
}

.performance-meta {
  font-size: 1.15rem;
  color: #f4b4ad;
}

.featured-roles-section {
  background: linear-gradient(180deg, #050505 0%, #171717 100%);
}

.featured-role-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.featured-role-card {
  min-height: 230px;
  padding: 28px 22px;
  background: linear-gradient(180deg, #777 0%, #252525 100%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.featured-role-card h3 {
  margin: 8px 0 8px;
  font-size: 1.45rem;
  font-weight: 300;
}

.featured-role-card p {
  margin: 0 0 10px;
}

.role-year {
  color: #f4b4ad;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.role-company {
  color: #e8e8e8;
  font-size: 0.94rem;
}

.featured-performance-row {
  background: rgba(0, 0, 0, 0.16);
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
}

.artist-cta {
  background: linear-gradient(180deg, #171717 0%, #050505 100%);
  text-align: center;
}

.artist-cta-inner {
  max-width: 760px;
}

.artist-cta h2 {
  margin: 0 0 16px;
  font-size: 2.4rem;
  font-weight: 300;
  text-transform: uppercase;
}

.footer-tagline {
  margin-top: 6px !important;
  color: #ddd;
  font-size: 0.92rem;
}

@media (max-width: 1050px) {
  .featured-role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .latest-performance .feature-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

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

  .quiet-as-mice-poster {
    padding: 18px;
  }

  .artist-cta h2 {
    font-size: 1.8rem;
  }
}
/* =========================================================
   PERFORMANCE RESUME PAGE
========================================================= */

.resume-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 24px 110px;
  background:
    radial-gradient(
      circle at 78% 28%,
      rgba(162, 58, 51, 0.28),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #050505 0%,
      #1c0908 48%,
      var(--red-dark) 100%
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.resume-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -160px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.resume-hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: 80px;
  bottom: -180px;
  border: 1px solid rgba(244, 180, 173, 0.16);
  border-radius: 50%;
}

.resume-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.resume-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.resume-voice-type {
  margin: 22px 0 0;
  font-size: 1.45rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f4b4ad;
}

.resume-location {
  margin: 12px 0 0;
  color: #e2e2e2;
}

.resume-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}


/* =========================================================
   GENERAL RESUME SECTIONS
========================================================= */

.resume-section {
  background:
    linear-gradient(
      180deg,
      #0b0b0b 0%,
      #171717 100%
    );
}

.resume-section-alt {
  background:
    linear-gradient(
      180deg,
      #220807 0%,
      #5b0b07 52%,
      #250504 100%
    );
}

.resume-section-heading {
  margin-bottom: 42px;
  text-align: center;
}

.resume-section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  text-transform: uppercase;
}

.resume-section-heading .section-kicker {
  margin-bottom: 12px;
}


/* =========================================================
   RESUME TABLE
========================================================= */

.resume-table-wrap {
  overflow-x: auto;
  background:
    linear-gradient(
      180deg,
      #737373 0%,
      #242424 100%
    );
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.resume-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.resume-table th,
.resume-table td {
  padding: 20px 22px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.resume-table th {
  background: rgba(0, 0, 0, 0.38);
  color: #f4b4ad;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resume-table td {
  color: #f7f7f7;
}

.resume-table tbody tr:last-child td {
  border-bottom: 0;
}

.resume-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.06);
}

.resume-featured-row {
  background:
    linear-gradient(
      90deg,
      rgba(139, 16, 9, 0.62),
      rgba(139, 16, 9, 0.18)
    );
}

.resume-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}


/* =========================================================
   RESUME CARDS
========================================================= */

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

.resume-card {
  position: relative;
  min-height: 220px;
  padding: 30px 28px;
  overflow: hidden;
  background:
    linear-gradient(
      155deg,
      #777 0%,
      #333 55%,
      #171717 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 15px 36px rgba(0, 0, 0, 0.28);
}

.resume-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -55px;
  bottom: -55px;
  border: 1px solid rgba(244, 180, 173, 0.18);
  border-radius: 50%;
}

.resume-card h3 {
  margin: 8px 0 8px;
  font-size: 1.55rem;
  font-weight: 300;
}

.resume-card p {
  margin: 0 0 10px;
}


/* =========================================================
   RESUME LISTS
========================================================= */

.resume-list {
  width: min(920px, 100%);
  margin: 0 auto;
  background:
    linear-gradient(
      180deg,
      #737373 0%,
      #272727 100%
    );
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

.resume-list-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.resume-list-item:last-child {
  border-bottom: 0;
}

.resume-list-item h3 {
  margin: 0 0 5px;
  font-size: 1.3rem;
  font-weight: 300;
}

.resume-list-item p {
  margin: 0;
  color: #e5e5e5;
}

.resume-list-item > span {
  color: #f4b4ad;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}


/* =========================================================
   ORCHESTRAL HIGHLIGHT
========================================================= */

.resume-highlight {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 42px;
  text-align: center;
  background:
    radial-gradient(
      circle at top right,
      rgba(244, 180, 173, 0.18),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #777 0%,
      #252525 68%,
      #111 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.36);
}

.resume-highlight h3 {
  margin: 8px 0 10px;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  font-weight: 300;
}


/* =========================================================
   AWARDS
========================================================= */

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

.award-card {
  min-height: 190px;
  padding: 26px 22px;
  background:
    linear-gradient(
      160deg,
      #777 0%,
      #303030 62%,
      #171717 100%
    );
  border-top: 3px solid #a23a33;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.award-card span {
  color: #f4b4ad;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
}

.award-card h3 {
  margin: 14px 0 8px;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.3;
}

.award-card p {
  margin: 0;
  color: #dedede;
}


/* =========================================================
   EDUCATION
========================================================= */

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

.education-card {
  min-height: 280px;
  padding: 38px 34px;
  background:
    linear-gradient(
      145deg,
      #737373 0%,
      #303030 58%,
      #151515 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.education-card h3 {
  margin: 12px 0 18px;
  font-size: 1.65rem;
  font-weight: 300;
  line-height: 1.3;
}

.education-card p {
  margin: 0 0 10px;
}


/* =========================================================
   TEACHERS / COACHES / DIRECTORS
========================================================= */

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

.artist-name-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 16px 18px;
  text-align: center;
  background:
    linear-gradient(
      145deg,
      #686868 0%,
      #292929 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.12);
}


/* =========================================================
   RESUME CTA
========================================================= */

.resume-cta {
  text-align: center;
  background:
    radial-gradient(
      circle at center top,
      rgba(162, 58, 51, 0.3),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      #1a0605 0%,
      #050505 100%
    );
}

.resume-cta-inner {
  max-width: 760px;
}

.resume-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  text-transform: uppercase;
}

.resume-cta p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}


/* =========================================================
   RESUME RESPONSIVE STYLES
========================================================= */

@media (max-width: 900px) {
  .resume-hero {
    padding: 90px 20px 82px;
  }

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

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

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

@media (max-width: 650px) {
  .resume-actions {
    flex-direction: column;
  }

  .resume-card-grid,
  .awards-grid,
  .education-grid,
  .artist-name-grid {
    grid-template-columns: 1fr;
  }

  .resume-list-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .resume-highlight {
    padding: 32px 22px;
  }

  .resume-table th,
  .resume-table td {
    padding: 16px 14px;
  }

  .resume-badge {
    display: block;
    width: fit-content;
    margin: 7px 0 0;
  }
}
/* =========================================================
   ABOUT PAGE REFRESH
========================================================= */

.about-hero {
  padding: 120px 24px 110px;
  text-align: center;
  background:
    radial-gradient(circle at 75% 20%, rgba(162, 58, 51, 0.3), transparent 34%),
    linear-gradient(135deg, #050505 0%, #1c0908 48%, var(--red-dark) 100%);
}

.about-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.about-hero-lead {
  max-width: 760px;
  margin: 28px auto 0;
  font-size: 1.25rem;
  color: #e8e8e8;
}

.about-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.about-highlights {
  background: linear-gradient(180deg, #050505 0%, #171717 100%);
}

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

.about-highlight-card {
  min-height: 210px;
  padding: 28px 24px;
  background: linear-gradient(160deg, #777 0%, #303030 62%, #171717 100%);
  border-top: 3px solid #a23a33;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.about-highlight-card h3 {
  margin: 10px 0 10px;
  font-size: 1.35rem;
  font-weight: 300;
}

.about-highlight-card p {
  margin: 0;
}

.about-cta {
  text-align: center;
  background:
    radial-gradient(circle at center top, rgba(162, 58, 51, 0.28), transparent 38%),
    linear-gradient(180deg, #1a0605 0%, #050505 100%);
}

.about-cta-inner {
  max-width: 760px;
}

.about-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .about-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-actions {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .about-hero {
    padding: 90px 20px 80px;
  }

  .about-highlight-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   MEDIA / PORTFOLIO PAGE REFRESH
========================================================= */

.media-hero {
  padding: 120px 24px 110px;
  text-align: center;
  background:
    radial-gradient(circle at 74% 24%, rgba(162, 58, 51, 0.3), transparent 35%),
    linear-gradient(135deg, #050505 0%, #1c0908 48%, var(--red-dark) 100%);
}

.media-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.media-hero-lead {
  max-width: 760px;
  margin: 28px auto 0;
  font-size: 1.25rem;
  color: #e8e8e8;
}

.selected-performances {
  background: linear-gradient(180deg, #050505 0%, #171717 100%);
}

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

.selected-performance-card {
  background: linear-gradient(160deg, #777 0%, #303030 62%, #171717 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.selected-performance-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
}

.selected-performance-image {
  background: #111;
  display: grid;
  place-items: center;
  padding: 26px;
}

.selected-performance-image img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
}

.selected-performance-copy {
  padding: 34px 32px;
}

.selected-performance-copy h3 {
  margin: 8px 0 12px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.12;
}

.selected-performance-copy p {
  margin: 0 0 14px;
}

.selected-role {
  color: #f4b4ad;
  font-size: 1.08rem;
}

.media-cta {
  text-align: center;
  background:
    radial-gradient(circle at center top, rgba(162, 58, 51, 0.28), transparent 38%),
    linear-gradient(180deg, #1a0605 0%, #050505 100%);
}

.media-cta-inner {
  max-width: 760px;
}

.media-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .selected-performance-grid,
  .selected-performance-card.featured {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .media-hero {
    padding: 90px 20px 80px;
  }

  .selected-performance-copy {
    padding: 28px 22px;
  }
}
/* =========================================================
   CONTACT PAGE REFRESH
========================================================= */

.contact-hero {
  padding: 120px 24px 110px;
  text-align: center;
  background:
    radial-gradient(circle at 74% 24%, rgba(162, 58, 51, 0.3), transparent 35%),
    linear-gradient(135deg, #050505 0%, #1c0908 48%, var(--red-dark) 100%);
}

.contact-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.contact-hero-lead {
  max-width: 760px;
  margin: 28px auto 0;
  font-size: 1.25rem;
  color: #e8e8e8;
}

.contact-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}

.contact-info-card,
.contact-panel {
  background: linear-gradient(180deg, #777 0%, #242424 100%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-info-card {
  padding: 46px 38px;
}

.contact-info-card h2,
.contact-panel h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-info-card p,
.contact-form-intro {
  color: #ececec;
}

.contact-direct-email,
.contact-location {
  margin: 30px 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-direct-email span,
.contact-location span {
  display: block;
  margin-bottom: 6px;
  color: #f4b4ad;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-direct-email a {
  font-size: 1.1rem;
  text-decoration: none;
}

.contact-panel {
  padding: 46px 42px;
}

.contact-links-section {
  background: linear-gradient(180deg, #050505 0%, #171717 100%);
}

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

.contact-resource-card {
  min-height: 230px;
  padding: 30px 28px;
  color: var(--white);
  text-decoration: none;
  background: linear-gradient(160deg, #777 0%, #303030 62%, #171717 100%);
  border-top: 3px solid #a23a33;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.contact-resource-card span {
  color: #f4b4ad;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
}

.contact-resource-card h3 {
  margin: 14px 0 10px;
  font-size: 1.45rem;
  font-weight: 300;
}

.contact-resource-card p {
  margin: 0;
  color: #e4e4e4;
}

.contact-resource-card:hover,
.contact-resource-card:focus {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

.contact-cta {
  text-align: center;
  background:
    radial-gradient(circle at center top, rgba(162, 58, 51, 0.28), transparent 38%),
    linear-gradient(180deg, #1a0605 0%, #050505 100%);
}

.contact-cta-inner {
  max-width: 760px;
}

.contact-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .contact-layout,
  .contact-resource-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .contact-hero {
    padding: 90px 20px 80px;
  }

  .contact-info-card,
  .contact-panel {
    padding: 34px 24px;
  }
}
/* =========================================================
   UPDATED EVENT LIST / UPCOMING PERFORMANCES
========================================================= */

.upcoming-feature {
  width: min(980px, 100%);
  margin: 0 auto 88px;
  padding: 42px;
  background:
    radial-gradient(circle at top right, rgba(244, 180, 173, 0.18), transparent 35%),
    linear-gradient(160deg, #777 0%, #303030 62%, #171717 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
}

.upcoming-feature-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
  margin-bottom: 30px;
}

.upcoming-feature h3 {
  margin: 8px 0 8px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.08;
}

.upcoming-role {
  margin: 0;
  color: #f4b4ad;
  font-size: 1.2rem;
}

.upcoming-company {
  min-width: 220px;
  padding: 18px;
  text-align: right;
  background: rgba(0, 0, 0, 0.22);
  border-left: 3px solid #a23a33;
}

.upcoming-company p {
  margin: 0 0 6px;
}

.upcoming-creative-team {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.upcoming-creative-team p {
  margin: 0;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.22);
}

.upcoming-creative-team span {
  display: block;
  color: #f4b4ad;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.upcoming-date-card {
  padding: 24px 22px;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.upcoming-date-card h4 {
  margin: 12px 0 4px;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 400;
}

.upcoming-date-card p {
  margin: 0 0 8px;
}

.event-address {
  color: #e0e0e0;
  font-size: 0.94rem;
}

.past-performance-kicker {
  margin-top: 20px;
  text-align: center;
}

.performance-role {
  margin-top: 4px !important;
  color: #f4b4ad !important;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .upcoming-feature-header,
  .upcoming-dates {
    grid-template-columns: 1fr;
  }

  .upcoming-company {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .upcoming-feature {
    padding: 28px 20px;
  }

  .upcoming-creative-team {
    flex-direction: column;
  }
}
/* =========================================================
   PHOTO COLLECTION PAGES
========================================================= */

.gallery-hero {
  padding: 120px 24px 110px;
  text-align: center;
  background:
    radial-gradient(circle at 74% 24%, rgba(162, 58, 51, 0.3), transparent 35%),
    linear-gradient(135deg, #050505 0%, #1c0908 48%, var(--red-dark) 100%);
}

.gallery-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-hero-lead {
  max-width: 720px;
  margin: 28px auto 0;
  font-size: 1.2rem;
  color: #e8e8e8;
}

.headshot-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.headshot-gallery {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.headshot-item {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.headshot-featured {
  grid-column: 1 / -1;
  width: min(620px, 100%);
  margin: 0 auto;
}

.headshot-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 260ms ease, filter 260ms ease;
}

.headshot-item:hover img,
.headshot-item:focus img {
  transform: scale(1.025);
  filter: brightness(0.78);
}

.photo-view-label {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.headshot-item:hover .photo-view-label,
.headshot-item:focus .photo-view-label {
  opacity: 1;
  transform: translateY(0);
}

.gallery-cta {
  text-align: center;
  background:
    radial-gradient(circle at center top, rgba(162, 58, 51, 0.28), transparent 38%),
    linear-gradient(180deg, #1a0605 0%, #050505 100%);
}

.gallery-cta-inner {
  max-width: 760px;
}

.gallery-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .headshot-gallery {
    width: min(620px, 100%);
    grid-template-columns: 1fr;
  }

  .headshot-featured {
    grid-column: auto;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .gallery-hero {
    padding: 90px 20px 80px;
  }
}
/* =========================================================
   PERFORMANCE PHOTO GALLERY
========================================================= */

.performance-photo-gallery {
  width: min(1000px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.performance-photo-item {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.performance-photo-featured {
  grid-column: 1 / -1;
  width: min(720px, 100%);
  margin: 0 auto;
}

.performance-photo-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 260ms ease, filter 260ms ease;
}

.performance-photo-item:hover img,
.performance-photo-item:focus img {
  transform: scale(1.02);
  filter: brightness(0.8);
}

.performance-photo-item:hover .photo-view-label,
.performance-photo-item:focus .photo-view-label {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .performance-photo-gallery {
    width: min(680px, 100%);
    grid-template-columns: 1fr;
  }

  .performance-photo-featured {
    grid-column: auto;
    width: 100%;
  }
}

/* =========================================================
   DIRECT CONTACT FORM STATUS
========================================================= */

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.2);
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  border-color: rgba(158, 216, 166, 0.8);
  color: #d9f5dc;
}

.form-status.is-error {
  border-color: rgba(244, 180, 173, 0.9);
  color: #ffe2de;
}

.contact-form .button[disabled] {
  cursor: progress;
  opacity: 0.72;
}
