:root {
  --color-bg: #f8f8f6;
  --color-surface: #ffffff;
  --color-text: #161618;
  --color-accent: #e3202e;
  --color-secondary: #2c2d35;
  --font-display: "Montserrat", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  padding-top: 95px;
}

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

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

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 1rem 4rem;

  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  z-index: 9999;

  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);

  transition: padding 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  padding: 0.75rem 4rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.logo-link {
  text-decoration: none;
}

.logo-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.site-logo {
  height: 40px;
  width: 40px;
  object-fit: contain;
  margin-bottom: 5px;
}

.logo-primary {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  color: var(--color-text);
}

.logo-secondary {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

/* Dropdown */

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.caret {
  font-size: 0.6em;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-surface);
  min-width: 220px;
  list-style: none;
  padding: 1rem 0;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 10000;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.5rem;
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.9rem;
}

.dropdown-menu li a:hover {
  background-color: var(--color-bg);
  color: var(--color-accent);
}

/* Header Socials */

.nav-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 2px solid #e5e7eb;
  padding-left: 1.5rem;
  margin-left: 0.5rem;
}

.nav-socials a {
  color: var(--color-text);
  display: inline-flex;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-socials a:hover {
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* Buttons */

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--color-accent);
  color: #fff;
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
}

.btn-primary:hover {
  background-color: #c11825;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(227, 32, 46, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background-color: #fff;
  color: var(--color-text);
}

.btn-massive {
  background-color: var(--color-accent);
  color: #fff;
  padding: 1rem 3rem;
  font-size: 1.2rem;
}

.btn-massive:hover {
  background-color: #c11825;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(227, 32, 46, 0.5);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
  padding: 0.8rem 1.5rem;
  margin-top: 1rem;
}

.btn-outline:hover {
  background-color: var(--color-secondary);
  color: #fff;
}

.btn-full {
  width: 100%;
}

/* Hero */

.hero {
  min-height: calc(80vh - 95px);
  background-color: var(--color-text);
  background-image: url("/images/AFGM_hero001.png");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 4rem;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.badge {
  background-color: var(--color-secondary);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.hero-tagline {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Season Grid */

.season-grid-section {
  padding: 6rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: -1px;
  text-transform: uppercase;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.show-card {
  background: var(--color-surface);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.show-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card-image {
  height: 400px;
  background-size: cover;
  background-position: center;
}

.placeholder-fall {
  background-image: url("images/potus_400.png");
}

.placeholder-winter {
  background-image: url("images/CFA_400.png");
}

.placeholder-spring {
  background-image: url("images/play-placeholder.png");
}

.card-info {
  padding: 2rem;
}

.show-dates {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
}

.card-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.card-info .venue {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Editorial Section */

.article-flow {
  max-width: 750px;
  margin: 0 auto;
}

.magazine-section {
  padding: 6rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.magazine-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 8rem;
}

.editorial-heading {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  text-transform: uppercase;
  line-height: 1;
}

.editorial-paragraph {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #374151;
  margin-bottom: 1.5rem;
}

.magazine-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Compact Editorial */

.compact-editorial {
  padding: 3rem 4rem;
  background-color: var(--color-surface);
}

.compact-editorial .magazine-row {
  gap: 3rem;
  margin-bottom: 0;
}

.compact-editorial .magazine-img {
  height: 300px;
  object-fit: cover;
}

.compact-editorial .editorial-heading {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.compact-editorial .editorial-paragraph {
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
}

/* Instagram */

.instagram-feed {
  padding: 6rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.instagram-feed .section-heading {
  margin-bottom: 3rem;
}

.instagram-feed iframe {
  width: 100%;
  border: none;
  overflow: hidden;
}

/* Footer */

.site-footer {
  background-color: var(--color-secondary);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
}

.site-footer h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-accent);
}

.footer-affiliations {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}

.tba-logo {
  max-width: 150px;
  height: auto;
  filter: grayscale(100%);
}

.tax-info {
  font-size: 0.85rem;
  opacity: 0.6;
}

.legal-links {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  opacity: 0.5;
}

.legal-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 0.5rem;
}

.legal-links a:hover {
  color: var(--color-accent);
}

/* Mobile Nav */

.hamburger {
  display: none;
  cursor: pointer;
  border: none;
  background: transparent;
  z-index: 10001;
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--color-text);
  transition: all 0.3s ease-in-out;
}

.mobile-sticky-cta {
  display: none;
}

/* Accessibility */

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.btn:focus-visible {
  border-radius: 50px;
}

/* Mobile */

@media (max-width: 900px) {
  main {
    padding-top: 85px;
  }

  .site-header {
    padding: 1rem 1.5rem;
  }

  .site-header.scrolled {
    padding: 0.75rem 1.5rem;
  }

  .logo-primary {
    font-size: 1.1rem;
  }

  .logo-secondary {
    font-size: 0.55rem;
    letter-spacing: 2px;
  }

  .nav-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: flex;
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--color-surface);
    width: 75%;
    max-width: 300px;
    height: 100vh;
    padding: 6rem 3rem;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 10000;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links a {
    font-size: 1.5rem;
    font-weight: 800;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 0.5rem 0 0 1rem;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown.active .caret {
    transform: rotate(180deg);
  }

  .dropdown-menu li a {
    font-size: 1.2rem;
    padding: 0.5rem 0;
    opacity: 0.8;
  }

  .nav-socials {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    margin-top: 1rem;
    justify-content: flex-start;
  }

  .nav-socials a {
    padding: 10px;
    margin-left: -10px;
  }

  .nav-socials svg {
    width: 28px;
    height: 28px;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    min-height: calc(78vh - 85px);
    padding: 0 2rem;
    text-align: center;
    justify-content: center;
  }

  .hero::before {
    background: rgba(0, 0, 0, 0.6);
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .season-grid-section,
  .magazine-section,
  .instagram-feed {
    padding: 4rem 2rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

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

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

  .magazine-row {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
  }

  .editorial-heading {
    font-size: 2.5rem;
  }

  .editorial-paragraph {
    text-align: left;
  }

  .compact-editorial {
    padding: 3rem 2rem;
  }

  .compact-editorial .magazine-img {
    height: auto;
  }

  .compact-editorial .editorial-heading {
    font-size: 2rem;
  }

  .instagram-feed .section-heading {
    font-size: 2rem;
  }

  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-surface);
    padding: 15px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
  }

  .btn-full-width {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
  }

  .site-footer {
    padding-bottom: 120px;
  }
}
/* Production History Page */

.history-intro {
    padding: 2rem 4rem 1rem;
}

.history-intro .editorial-paragraph {
    max-width: 850px;
    margin: 0 auto;
}

.history-grid-section {
    padding-top: 2rem;
}

.history-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.history-card {
    display: flex;
    flex-direction: column;
}

.history-image {
    height: 250px;
    max-height: 250px;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    background-color: #E5E7EB;
}

.history-card .card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.history-card .btn {
    margin-top: auto;
}

@media (min-width: 901px) {
    .history-card {
        max-width: 350px;
        width: 100%;
        justify-self: center;
    }

    .history-grid {
        justify-items: center;
    }
}

@media (max-width: 900px) {
    .history-intro {
        padding: 2rem 2rem 1rem;
    }

    .history-image {
        height: 240px;
        min-height: 240px;
        max-height: 240px;
    }

    .history-card {
        max-width: 100%;
    }
}
/* Fix massive page title spacing */

.page-header-massive {
    padding: 6rem 4rem 4rem;
    background-color: var(--color-bg);
}

.page-header-content {
    max-width: 1400px;
    margin: 0 auto;
}

.title-massive {
    font-family: var(--font-display);
    font-size: clamp(3.25rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 1rem;
    overflow-wrap: normal;
    word-break: normal;
}

.subtitle-sleek {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 400;
    color: #374151;
    opacity: 0.85;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .page-header-massive {
        padding: 4rem 2rem 3rem;
    }

    .title-massive {
        font-size: clamp(2.75rem, 14vw, 4rem);
        letter-spacing: -2px;
        line-height: 0.95;
    }

    .subtitle-sleek {
        font-size: 1.1rem;
        line-height: 1.5;
    }
}
/* Get Involved Page */

.get-involved-hero {
    padding-top: 2rem;
}

.get-involved-hero .magazine-row {
    margin-bottom: 0;
}

.involvement-section {
    padding-top: 4rem;
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.involvement-card {
    background: var(--color-surface);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    min-height: 315px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.involvement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.involvement-card h3 {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.involvement-card p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.involvement-card .btn {
    margin-top: auto;
}

.involvement-card-featured {
    background: var(--color-secondary);
    color: #fff;
}

.involvement-card-featured h3,
.involvement-card-featured p {
    color: #fff;
}

.involvement-card-featured p {
    opacity: 0.85;
}

@media (min-width: 901px) {
    .involvement-card-featured {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .get-involved-hero {
        padding-top: 1rem;
    }

    .involvement-section {
        padding-top: 3rem;
    }

    .involvement-card {
        min-height: auto;
    }

    .involvement-card h3 {
        font-size: 1.45rem;
    }
}
/* Auditions Page */

.auditions-status-section {
    padding: 2rem 4rem 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.auditions-status-card {
    background: var(--color-surface);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    text-align: center;
}

.auditions-status-card h2 {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--color-text);
    margin: 1rem 0;
}

.auditions-status-card p {
    max-width: 760px;
    margin: 0 auto 1rem;
    color: #374151;
    font-size: 1.08rem;
    line-height: 1.8;
}

.auditions-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.audition-info-section {
    padding-top: 2rem;
}

@media (max-width: 900px) {
    .auditions-status-section {
        padding: 1rem 2rem 3rem;
    }

    .auditions-status-card {
        padding: 2rem;
    }

    .auditions-status-card h2 {
        font-size: 2rem;
    }

    .auditions-status-card p {
        font-size: 1rem;
    }

    .auditions-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
/* A Few Good Men Show Page */

.show-hero {
    min-height: calc(82vh - 95px);
    background-color: var(--color-text);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 4rem;
    color: #fff;
}

.afgm-hero {
    background-image: url('/images/AFGM_hero001.png');
}

.show-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.28) 100%);
    z-index: 1;
}

.show-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.show-info-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--color-secondary);
    color: #fff;
}

.show-info-item {
    padding: 1.5rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.show-info-item:last-child {
    border-right: none;
}

.show-info-item span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.show-info-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.25;
    text-transform: uppercase;
}

.credits-grid {
    background: var(--color-surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
}

.credit-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid #E5E7EB;
}

.credit-row:last-child {
    border-bottom: none;
}

.credit-row span,
.credit-row strong {
    padding: 1rem 1.5rem;
}

.credit-row span {
    background: #F3F4F6;
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--color-text);
}

.credit-row strong {
    font-family: var(--font-body);
    font-weight: 600;
    color: #374151;
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.cast-card {
    background: var(--color-surface);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform .3s ease, box-shadow .3s ease;
}

.cast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.cast-headshot {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: #E5E7EB;
    border: 4px solid var(--color-bg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.placeholder-headshot {
    background:
        linear-gradient(135deg, rgba(227,32,46,.18), rgba(44,45,53,.18)),
        #E5E7EB;
    position: relative;
}

.placeholder-headshot::after {
    content: "Headshot";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6B7280;
}

.cast-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: .5rem;
    color: var(--color-text);
}

.cast-card p {
    color: #6B7280;
    font-size: .95rem;
    line-height: 1.45;
}

.advisory-section {
    padding-top: 2rem;
}

.advisory-card {
    background: var(--color-secondary);
    color: #fff;
    border-radius: 16px;
    padding: 3rem;
}

.advisory-card h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.advisory-card p {
    max-width: 950px;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

@media (max-width: 900px) {
    .show-hero {
        min-height: calc(78vh - 85px);
        padding: 0 2rem;
        text-align: center;
        justify-content: center;
    }

    .show-hero::before {
        background: rgba(0,0,0,0.62);
    }

    .show-info-strip {
        grid-template-columns: 1fr 1fr;
    }

    .show-info-item {
        border-right: 1px solid rgba(255,255,255,0.12);
        border-bottom: 1px solid rgba(255,255,255,0.12);
        padding: 1.25rem;
    }

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

    .cast-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .advisory-card {
        padding: 2rem;
    }
}

@media (max-width: 520px) {
    .show-info-strip {
        grid-template-columns: 1fr;
    }

    .show-info-item {
        border-right: none;
    }

    .cast-grid {
        grid-template-columns: 1fr;
    }
}
.afgm-quote{
    margin-top:2rem;
    padding-left:1.5rem;
    border-left:4px solid var(--color-accent);
    font-family:var(--font-display);
    font-size:1.5rem;
    font-weight:800;
    line-height:1.4;
}

.afgm-quote span{
    display:block;
    margin-top:.75rem;
    font-size:.8rem;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#6B7280;
}
/* Workshops Page */

.workshops-intro-section {
    padding: 2rem 4rem 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.workshops-intro-card {
    background: var(--color-surface);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    text-align: center;
}

.workshops-intro-card h2 {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--color-text);
    margin: 1rem 0;
}

.workshops-intro-card p {
    max-width: 820px;
    margin: 0 auto 1rem;
    color: #374151;
    font-size: 1.08rem;
    line-height: 1.8;
}

.workshop-streams-section {
    padding-top: 2rem;
}

.workshop-label {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: .75rem;
}

.workshops-philosophy-section {
    padding-top: 2rem;
}

.workshop-note-card {
    background: var(--color-secondary);
    color: #fff;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.workshop-note-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.workshop-note-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.workshop-note-card li {
    padding: .8rem 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
    font-weight: 600;
}

.workshop-note-card li:last-child {
    border-bottom: none;
}

.workshop-cta-section {
    padding-top: 2rem;
}

.workshop-cta-section .advisory-card .hero-actions {
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .workshops-intro-section {
        padding: 1rem 2rem 3rem;
    }

    .workshops-intro-card {
        padding: 2rem;
    }

    .workshops-intro-card h2 {
        font-size: 2rem;
    }

    .workshops-intro-card p {
        font-size: 1rem;
    }

    .workshop-note-card {
        padding: 2rem;
    }

    .workshop-note-card h3 {
        font-size: 1.6rem;
    }
}
/* Submissions Page */

.submissions-title {
    max-width: 1100px;
}

.submissions-hero {
    padding-top: 2rem;
}

.submissions-hero .magazine-row {
    margin-bottom: 0;
}

.submissions-section {
    padding-top: 4rem;
}

.submissions-guidelines {
    padding-top: 2rem;
}

.submissions-cta-section {
    padding-top: 2rem;
}

@media (max-width: 900px) {
    .submissions-title {
        font-size: clamp(2.5rem, 13vw, 4rem);
    }

    .submissions-hero {
        padding-top: 1rem;
    }

    .submissions-section {
        padding-top: 3rem;
    }
}