*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: #303030;
  background: #fff;
  font-family: Raleway, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: #699b06;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

em,
i {
  font-style: italic;
  font-family: Raleway, Helvetica, Arial, sans-serif;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.6em;
  color: #699b06;
  font-family: Raleway, Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.3;
}

h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h4 { font-size: 16px; }

p {
  margin: 0 0 1em;
}

ul {
  margin: 0 0 1em;
  padding-left: 1.4em;
}

blockquote {
  margin: 0 0 1.2em;
  padding: 0 0 0 18px;
  border-left: 5px solid #699b06;
}

blockquote h2 {
  margin: 0;
}

.wrap {
  width: 80%;
  max-width: 1080px;
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 100000;
  background: #fff;
  padding: 8px 12px;
}

/* Header — split around centered logo: HOME | PRODUCTIONS | BIOGRAPHIES  LOGO  PUBLICATIONS | CONTACT */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 12px;
  min-height: 90px;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  grid-row: 1;
  padding: 8px 12px;
}

.logo img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 280px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  grid-row: 1;
}

.nav-left {
  grid-column: 1;
  justify-self: end;
}

.nav-right {
  grid-column: 3;
  justify-self: start;
}

.nav-left > li,
.nav-right > li {
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-left > li + li::before,
.nav-right > li + li::before {
  content: "|";
  color: #b5b5b5;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  padding: 0 10px;
}

.nav-left > li > a,
.nav-right > li > a {
  display: block;
  padding: 32px 6px;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.nav-left > li > a:hover,
.nav-right > li > a:hover,
.nav-left > li.is-current > a,
.nav-right > li.is-current > a,
.nav-left > li:hover > a,
.nav-right > li:hover > a {
  color: #648d01;
  text-decoration: none;
}

.nav-left .has-sub > a::after,
.nav-right .has-sub > a::after,
.mobile-nav .has-sub > a::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  transform: translateY(2px);
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  margin: 0;
  padding: 16px 0;
  list-style: none;
  background: #fff;
  border-top: 3px solid #699b06;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 20;
}

.nav-right .sub-menu {
  left: auto;
  right: 0;
}

.has-sub:hover > .sub-menu,
.has-sub:focus-within > .sub-menu,
.has-sub.open > .sub-menu {
  display: block;
}

.sub-menu a {
  display: block;
  padding: 6px 18px;
  color: #303030;
  font-size: 14px;
  text-decoration: none;
  white-space: normal;
}

.sub-menu a:hover {
  background: #f4f7ea;
  color: #648d01;
}

.nav-toggle,
.mobile-nav {
  display: none;
}

/* Banners */
.banner {
  background-image: linear-gradient(90deg, #699b06 0%, #a9c267 74%, #a9c267 100%);
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.banner blockquote {
  border-color: #fff;
  border-width: 2px;
  margin: 4px 0;
}

.banner h1,
.banner h2 {
  margin: 0;
  color: #fff !important;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 500;
}

.tagline {
  background: #ededed;
  padding: 17px 0;
}

.tagline p {
  margin: 0;
}

.section {
  padding: 36px 0;
}

.section-muted {
  background: #eeeeee;
}

.section-tight {
  padding: 18px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.caption {
  font-size: 14px;
  margin-top: 8px;
}

.quote-title {
  margin-bottom: 1em;
}

.quote-title h2 {
  font-size: 30px;
  color: #699b06;
}

.muted {
  color: #333;
  font-size: 15px;
}

.btn {
  display: inline-block;
  margin: 0.4em 0 1em;
  padding: 0.3em 1em;
  border: 2px solid #648d01;
  color: #648d01 !important;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none !important;
  background: transparent;
  cursor: pointer;
}

.btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.cite {
  font-size: 15px;
  color: #333;
  font-style: italic;
}

.news-media {
  margin-top: 40px;
}

.doc-callout {
  margin: 0 0 36px;
  padding: 22px 0 26px;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}

.doc-callout > p:last-child {
  margin-bottom: 0;
}

.doc-callout .btn {
  margin-bottom: 0;
}

.news-stories {
  align-items: stretch;
}

.story-block {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.story-block > .media {
  margin: 0 0 1em;
}

.story-block .cite {
  margin-top: auto;
  padding-top: 0.35em;
}

.media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
}

.media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Buzzsprout large-player embeds only — use class="buzz", not on YouTube (.media) iframes */
.buzz {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  overflow: hidden;
}

@media (max-width: 540px) {
  .buzz {
    height: 500px;
  }
}

.readmore-wrap.is-collapsed .readmore-body {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.readmore-toggle {
  display: inline-block;
  margin-top: 8px;
  color: #699b06;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.page-hero {
  padding: 40px 0 20px;
}

.page-hero h1 {
  font-size: 30px;
  text-transform: none;
}

.page-intro--bordered {
  border-top: 2px solid #699b06;
  padding-top: 36px;
}

.page-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 240px) 1fr;
  gap: 36px;
  align-items: center;
}

.page-thumb {
  margin: 0;
}

.page-thumb img {
  display: block;
  width: 100%;
  border: 2px solid #699b06;
  box-shadow: 4px 4px 0 #a9c267;
}

.page-intro-head h2 {
  margin: 0 0 0.5em;
  font-size: 32px;
  text-transform: none;
}

.page-intro-head blockquote {
  margin: 0;
  padding: 0 0 0 18px;
  border-left: 5px solid #699b06;
}

.page-intro-head blockquote p {
  margin: 0;
  color: #303030;
  font-weight: 400;
  font-size: 1.05rem;
}

.link-here {
  color: #699b06;
  font-weight: 600;
  text-decoration: underline;
}

.link-here:hover,
.link-here:focus {
  color: #557a05;
}

.page-intro-thumb .caption {
  margin-top: 8px;
}

.l-fest-body {
  margin-bottom: 1.5em;
}

.l-fest-body img {
  display: block;
  width: 100%;
}

.oas-launch img,
.oas-pride img {
  display: block;
  width: 100%;
}

.oas-history blockquote,
.oas-parts blockquote {
  margin-bottom: 1em;
}

.oas-pride-row {
  margin-bottom: 2em;
}

.oas-pride-row:last-child {
  margin-bottom: 0;
}

blockquote.testimonial {
  border: 1px solid #ddd;
  background: #f9f9f9;
  padding: 20px 24px;
  margin: 0 0 1em;
}

.testimonial-meta {
  font-size: 15px;
  color: #555;
}

.oas-parts blockquote + p {
  margin-bottom: 1.2em;
}

.oas-cast-entry {
  margin: 1.5em 0 0;
  padding-top: 1.2em;
  border-top: 1px solid #ddd;
}

.oas-bio-switch {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75em;
}

.oas-bio-label {
  color: #699b06;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}

.oas-bio-label-short {
  min-width: 5.5em;
}

.oas-bio-toggle-wrap {
  display: inline-flex;
  cursor: pointer;
  flex-shrink: 0;
}

.oas-bio-toggle-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.oas-bio-toggle {
  display: block;
  width: 52px;
  height: 28px;
  border-radius: 999px;
  background: #699b06;
  position: relative;
  transition: background 0.2s ease;
}

.oas-bio-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}

.oas-bio-toggle-input:checked + .oas-bio-toggle .oas-bio-toggle-thumb {
  transform: translateX(24px);
}

.oas-bio-switch:has(.oas-bio-toggle-input:not(:checked)) .oas-bio-label-short {
  opacity: 1;
}

.oas-bio-switch:has(.oas-bio-toggle-input:not(:checked)) .oas-bio-label-full {
  opacity: 0.55;
}

.oas-bio-switch:has(.oas-bio-toggle-input:checked) .oas-bio-label-short {
  opacity: 0.55;
}

.oas-bio-switch:has(.oas-bio-toggle-input:checked) .oas-bio-label-full {
  opacity: 1;
}

.oas-bio-text {
  max-width: 52em;
}

.oas-bio-short {
  margin: 0;
}

.oas-bio-full {
  margin: 0;
}

.oas-bio-full p {
  margin: 0;
}

.lb-page .lb-intro-grid {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.lb-intro-thumb .page-thumb img {
  display: block;
  width: 100%;
  max-width: 280px;
  border: 4px solid #699b06;
  box-shadow: 8px 8px 0 rgba(105, 155, 6, 0.12);
}

.lb-intro-head h2 {
  margin: 0 0 0.5em;
  font-size: 28px;
}

.lb-intro-head blockquote {
  margin: 0;
  padding-left: 16px;
  border-left: 4px solid #699b06;
}

.lb-script-btn {
  margin: 1.5em 0;
}

.btn-script {
  display: inline-block;
  background: #699b06;
  color: #fff !important;
  font-weight: 600;
  padding: 12px 22px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
}

.btn-script:hover {
  background: #557a05;
  text-decoration: none;
}

.lb-credits {
  margin: 1em 0;
  border: 1px solid #e4e4e4;
  background: #fafafa;
}

.lb-page .lb-credits {
  margin-top: 0.75em;
}

.lb-credits summary {
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 600;
  color: #699b06;
  list-style: none;
}

.lb-credits summary::-webkit-details-marker {
  display: none;
}

.lb-credits-body {
  padding: 0 18px 18px;
  border-top: 1px solid #e4e4e4;
}

.lb-bios-heading {
  margin: 2em 0 0.5em;
}

.lb-bios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 1.25em;
}

@media (min-width: 900px) {
  .lb-bios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lb-bio-entry {
  display: grid;
  grid-template-columns: 180px 1fr;
  grid-template-areas:
    "photo head"
    "bio bio";
  column-gap: 16px;
  row-gap: 12px;
  margin: 0;
  padding: 20px;
  background: #fff;
  border: 1px solid #e4e4e4;
}

.lb-bio-head {
  grid-area: head;
  align-self: start;
  margin: 0;
  padding: 0;
  border: 0;
}

.lb-bio-head h2 {
  margin: 0 0 0.2em;
  font-size: 20px;
  color: #699b06;
  line-height: 1.25;
}

.lb-bio-head p {
  margin: 0;
  font-style: italic;
  font-size: 14px;
  line-height: 1.4;
  color: #444;
}

.lb-bio-photo-wrap {
  grid-area: photo;
  margin: 0;
}

.lb-bio-photo {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: cover;
}

.lb-bio-text {
  grid-area: bio;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #333;
}

.lb-bio-text p {
  margin: 0 0 0.75em;
}

.congress-page {
  padding-top: 28px;
  padding-bottom: 28px;
}

.congress-content {
  max-width: 900px;
}

.congress-title {
  margin: 0 0 1em;
  font-size: 30px;
  color: #699b06;
  text-transform: none;
}

.congress-credits {
  margin: 0 0 1.5em;
  padding: 0 0 0 18px;
  border-left: 5px solid #699b06;
}

.congress-credits p {
  margin: 0 0 0.35em;
}

.congress-video {
  margin: 1.5em 0 2em;
}

.congress-cta {
  margin: 2em 0 0;
}

.moments-page {
  padding-top: 28px;
  padding-bottom: 28px;
}

.moments-content {
  max-width: 900px;
}

.moments-title {
  margin: 0 0 1em;
  font-size: 30px;
  color: #699b06;
  text-transform: none;
}

.moments-figure {
  margin: 0 0 1.5em;
}

.moments-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.moments-figure figcaption {
  margin-top: 0.5em;
  font-size: 15px;
  color: #555;
}

.moments-btn {
  margin: 1.25em 0 1.75em;
}

.williamstown-page {
  padding-top: 28px;
  padding-bottom: 28px;
}

.williamstown-content {
  max-width: 980px;
}

.williamstown-title {
  margin: 0 0 1em;
  font-size: 30px;
  color: #699b06;
  text-transform: none;
}

.williamstown-grid {
  display: grid;
  grid-template-columns: minmax(0, 300px) 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 1.5em;
}

.williamstown-poster {
  margin: 0;
}

.williamstown-poster img {
  display: block;
  width: 100%;
  height: auto;
}

.williamstown-text p {
  margin: 0 0 1em;
}

.williamstown-text p:last-child {
  margin-bottom: 0;
}

.williamstown-cta {
  margin: 1em 0 0;
}

.fashionista-page {
  padding-top: 28px;
  padding-bottom: 28px;
}

.fashionista-content {
  max-width: 900px;
}

.fashionista-title {
  margin: 0 0 1em;
  font-size: 30px;
  color: #699b06;
  text-transform: none;
}

.fashionista-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
  margin: 1.5em 0 0.75em;
}

.fashionista-gallery img {
  display: block;
  width: 100%;
  height: auto;
}

.fashionista-credit {
  margin: 0 0 1.5em;
  font-size: 15px;
  color: #555;
}

.fashionista-cta {
  margin: 1.5em 0 0;
}

.workshop-page {
  padding-top: 28px;
  padding-bottom: 28px;
}

.workshop-content {
  max-width: 900px;
}

.workshop-title {
  margin: 0 0 1em;
  font-size: 30px;
  color: #699b06;
  text-transform: none;
  line-height: 1.25;
}

.workshop-callout {
  margin: 1.5em 0;
}

.workshop-carousel {
  margin: 1.75em 0 1em;
}

.workshop-carousel-viewport {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}

.workshop-carousel-track {
  display: flex;
  transition: transform 0.35s ease;
}

.workshop-carousel-slide {
  flex: 0 0 100%;
  margin: 0;
}

.workshop-carousel-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.workshop-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
}

.workshop-carousel-dots {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workshop-carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d8e4b8;
  cursor: pointer;
}

.workshop-carousel-dots button.is-active,
.workshop-carousel-dots button:hover {
  background: #699b06;
}

.workshop-carousel-count {
  margin: 0;
  font-size: 14px;
  color: #555;
}

.workshop-caption {
  margin: 0.85em 0 0.35em;
  font-size: 15px;
  color: #444;
  line-height: 1.45;
  min-height: 1.45em;
}

.workshop-credit {
  margin: 0 0 0.5em;
  font-size: 14px;
  color: #555;
}

.workshop-cta {
  margin: 1.5em 0;
}

.workshop-cite {
  margin: 1.5em 0 0;
  font-size: 15px;
  color: #333;
  font-style: italic;
}

.dust-page {
  padding-top: 28px;
  padding-bottom: 28px;
}

.dust-content {
  max-width: 900px;
}

.dust-title {
  margin: 0 0 1.25em;
  font-size: 30px;
  color: #699b06;
  text-transform: none;
  line-height: 1.2;
}

.dust-hero {
  display: grid;
  grid-template-columns: minmax(0, 260px) 1fr;
  gap: 32px 40px;
  align-items: start;
  margin: 0 0 2.25em;
}

.dust-poster {
  margin: 0;
  max-width: 260px;
}

.dust-poster img {
  display: block;
  width: 100%;
  height: auto;
  border: 3px solid #699b06;
}

.dust-intro p {
  margin: 0;
}

.dust-shot {
  margin: 0 0 2em;
}

.dust-shot img {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
}

.dust-shot--wide img {
  max-width: 420px;
}

.dust-shot figcaption {
  margin-top: 0.55em;
  font-size: 15px;
  color: #555;
  line-height: 1.45;
}

.dust-story {
  margin: 1.5em 0 0;
  color: #699b06;
}

.dust-story p {
  margin: 0;
}

.dust-story a {
  color: #699b06;
  font-weight: 600;
  text-decoration: none;
}

.dust-story a:hover {
  text-decoration: underline;
}

.dust-story strong {
  font-weight: 700;
}

.anniversary-page {
  padding-top: 28px;
  padding-bottom: 28px;
}

.anniversary-content {
  max-width: 900px;
}

.anniversary-hero {
  display: grid;
  grid-template-columns: minmax(0, 240px) 1fr;
  gap: 28px 36px;
  align-items: start;
  margin: 0 0 1.75em;
}

.anniversary-poster {
  margin: 0;
  max-width: 240px;
}

.anniversary-poster img {
  display: block;
  width: 100%;
  height: auto;
  border: 3px solid #699b06;
}

.anniversary-title {
  margin: 0 0 0.65em;
  font-size: 30px;
  color: #699b06;
  text-transform: none;
  line-height: 1.2;
}

.anniversary-date {
  margin: 0;
  padding: 0 0 0 16px;
  border-left: 4px solid #699b06;
  font-size: 16px;
  color: #303030;
}

.anniversary-body {
  margin: 0 0 2em;
}

.anniversary-body p {
  margin: 0;
}

.anniversary-video-head {
  margin: 0 0 1em;
  padding: 0 0 0 16px;
  border-left: 4px solid #699b06;
}

.anniversary-video-head h2 {
  margin: 0;
  font-size: 22px;
  color: #699b06;
  text-transform: none;
  font-weight: 600;
}

.anniversary-video {
  margin: 0;
}

.castor-page {
  padding-top: 28px;
  padding-bottom: 28px;
}

.castor-content {
  max-width: 900px;
}

.castor-hero {
  display: grid;
  grid-template-columns: minmax(0, 240px) 1fr;
  gap: 28px 36px;
  align-items: start;
  margin: 0 0 1.75em;
}

.castor-poster {
  margin: 0;
  max-width: 240px;
}

.castor-poster img {
  display: block;
  width: 100%;
  height: auto;
  border: 3px solid #699b06;
}

.castor-title {
  margin: 0 0 0.65em;
  font-size: 30px;
  color: #699b06;
  text-transform: none;
  line-height: 1.2;
}

.castor-meta {
  margin: 0;
  padding: 0 0 0 16px;
  border-left: 4px solid #699b06;
  font-size: 16px;
  color: #303030;
  line-height: 1.45;
}

.castor-section-head {
  margin: 0 0 1em;
  padding: 0 0 0 16px;
  border-left: 4px solid #699b06;
}

.castor-section-head h2 {
  margin: 0;
  font-size: 22px;
  color: #699b06;
  text-transform: none;
  font-weight: 600;
  line-height: 1.3;
}

.castor-wide {
  margin: 0 0 1.25em;
}

.castor-wide img {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
}

.castor-synopsis {
  margin: 0 0 1.75em;
}

.castor-workshop {
  display: grid;
  grid-template-columns: minmax(0, 140px) 1fr;
  gap: 24px 28px;
  align-items: start;
  margin: 0 0 0.5em;
}

.castor-tall {
  margin: 0;
  max-width: 140px;
}

.castor-tall img {
  display: block;
  width: 100%;
  height: auto;
}

.castor-workshop-body {
  min-width: 0;
}

.castor-workshop .castor-section-head {
  margin-bottom: 0.75em;
}

.castor-credits {
  list-style: none;
  margin: 0;
  padding: 0;
}

.castor-credits li {
  display: grid;
  grid-template-columns: minmax(7.5em, max-content) minmax(0, 1fr);
  gap: 0 1em;
  align-items: baseline;
  padding: 4px 0;
  border-bottom: 1px solid #eee;
}

.castor-role,
.castor-name {
  font-size: 15px;
  color: #303030;
  line-height: 1.35;
}

.casa-page {
  padding-top: 28px;
  padding-bottom: 28px;
}

.casa-content {
  max-width: 900px;
}

.casa-title {
  margin: 0 0 1em;
  font-size: 30px;
  color: #699b06;
  text-transform: none;
  line-height: 1.2;
}

.casa-hero {
  display: grid;
  grid-template-columns: minmax(0, 240px) 1fr;
  gap: 28px 36px;
  align-items: start;
  margin: 0 0 1.75em;
}

.casa-poster {
  margin: 0;
  max-width: 240px;
}

.casa-poster img {
  display: block;
  width: 100%;
  height: auto;
  border: 3px solid #699b06;
}

.casa-meta {
  margin: 0;
  padding: 0 0 0 16px;
  border-left: 4px solid #699b06;
  font-size: 16px;
  color: #303030;
  line-height: 1.55;
}

.casa-meta p {
  margin: 0 0 0.35em;
}

.casa-meta p:last-child {
  margin-bottom: 0;
}

.casa-section-head {
  margin: 0 0 1em;
  padding: 0 0 0 16px;
  border-left: 4px solid #699b06;
}

.casa-section-head h2 {
  margin: 0;
  font-size: 22px;
  color: #699b06;
  text-transform: none;
  font-weight: 600;
  line-height: 1.3;
}

.casa-body {
  margin: 0;
}

.casa-body > p {
  margin: 0 0 1em;
}

.casa-body ol {
  margin: 0;
  padding-left: 1.35em;
}

.casa-body li {
  margin: 0 0 0.75em;
}

.casa-body li:last-child {
  margin-bottom: 0;
}

.wwl-page {
  padding-top: 28px;
  padding-bottom: 0;
}

.wwl-content {
  max-width: 900px;
}

.wwl-hero {
  display: grid;
  grid-template-columns: minmax(0, 240px) 1fr;
  gap: 28px 36px;
  align-items: start;
  margin: 0 0 1.5em;
}

.wwl-poster {
  margin: 0;
  max-width: 240px;
}

.wwl-poster img {
  display: block;
  width: 100%;
  height: auto;
  border: 3px solid #699b06;
}

.wwl-title {
  margin: 0 0 0.55em;
  font-size: 30px;
  color: #699b06;
  text-transform: none;
  line-height: 1.2;
}

.wwl-meta {
  margin: 0;
  padding: 0 0 0 16px;
  border-left: 4px solid #699b06;
  font-size: 16px;
  color: #303030;
  line-height: 1.45;
}

.wwl-intro {
  margin: 0;
  padding-bottom: 28px;
}

.wwl-intro p {
  margin: 0 0 1em;
}

.wwl-intro p:last-child {
  margin-bottom: 0;
}

.wwl-band {
  padding: 36px 0;
  background: #fff;
}

.wwl-band--muted {
  background: #eeeeee;
}

.wwl-section-head {
  margin: 0 0 1em;
  padding: 0 0 0 16px;
  border-left: 4px solid #699b06;
}

.wwl-section-head h2 {
  margin: 0;
  font-size: 22px;
  color: #699b06;
  text-transform: none;
  font-weight: 600;
  line-height: 1.3;
}

.wwl-season-grid {
  display: grid;
  grid-template-columns: minmax(0, 220px) 1fr;
  gap: 24px 32px;
  align-items: start;
}

.wwl-season-photo {
  margin: 0;
  max-width: 220px;
}

.wwl-season-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.wwl-season-body p {
  margin: 0 0 0.85em;
}

.wwl-themes {
  margin: 0 0 1em;
  padding: 0;
  list-style: none;
}

.wwl-themes li {
  margin: 0 0 0.25em;
  line-height: 1.45;
}

.wwl-caption {
  margin: 0 0 1em;
  font-size: 0.95em;
  color: #555;
}

.wwl-order {
  margin: 0 0 0.5em;
}

.wwl-subhead {
  margin: 1em 0 0.5em;
  font-size: 16px;
  font-weight: 700;
  color: #303030;
}

.wwl-launch {
  margin: 1.5em 0 0;
}

.wwl-launch img {
  display: block;
  width: 100%;
  height: auto;
}

.wwl-launch figcaption {
  margin-top: 0.65em;
  font-size: 0.95em;
  color: #555;
  font-style: italic;
  line-height: 1.4;
}

.ana-page {
  padding-top: 28px;
  padding-bottom: 28px;
}

.ana-content {
  max-width: 900px;
}

.ana-title {
  margin: 0 0 1em;
  font-size: 30px;
  color: #699b06;
  text-transform: none;
  line-height: 1.2;
}

.ana-hero {
  display: grid;
  grid-template-columns: minmax(0, 240px) 1fr;
  gap: 28px 36px;
  align-items: start;
  margin: 0 0 1.75em;
}

.ana-poster {
  margin: 0;
  max-width: 240px;
}

.ana-poster img {
  display: block;
  width: 100%;
  height: auto;
  border: 3px solid #699b06;
}

.ana-meta {
  margin: 0;
  padding: 0 0 0 16px;
  border-left: 4px solid #699b06;
  font-size: 16px;
  color: #303030;
  line-height: 1.45;
}

.ana-story {
  margin: 0 0 0.5em;
}

.ana-story::after {
  content: "";
  display: table;
  clear: both;
}

.ana-cast-img {
  float: left;
  width: 151px;
  max-width: 36%;
  height: auto;
  margin: 0 1.25em 0.75em 0;
}

.ana-story > p {
  margin: 0 0 0.85em;
}

.ana-resources {
  clear: both;
  padding-top: 0.25em;
}

.ana-resources p {
  margin: 0 0 0.85em;
}

.ana-resources p:last-child {
  margin-bottom: 0;
}

.ana-section-head {
  margin: 0 0 1.25em;
  padding: 0 0 0 16px;
  border-left: 4px solid #699b06;
}

.ana-section-head h2 {
  margin: 0;
  font-size: 22px;
  color: #699b06;
  text-transform: none;
  font-weight: 600;
  line-height: 1.3;
}

.ana-recording {
  padding: 36px 0;
  background: #eeeeee;
}

.ana-scenes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}

.ana-scene {
  margin: 0;
  min-width: 0;
}

.ana-scene .media {
  margin: 0 0 0.55em;
}

.ana-scene figcaption,
.ana-scene h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #303030;
  text-transform: none;
  text-align: left;
  line-height: 1.35;
}

.ana-scene-video {
  display: block;
  width: 100%;
  height: auto;
  background: #111;
  aspect-ratio: 16 / 9;
}

.hh-page {
  padding-top: 28px;
  padding-bottom: 28px;
}

.hh-content {
  max-width: 900px;
}

.hh-hero {
  display: grid;
  grid-template-columns: minmax(0, 220px) 1fr;
  gap: 28px 36px;
  align-items: start;
  margin: 0 0 1.75em;
}

.hh-poster {
  margin: 0;
  max-width: 220px;
}

.hh-poster img {
  display: block;
  width: 100%;
  height: auto;
  border: 3px solid #699b06;
}

.hh-title {
  margin: 0 0 0.65em;
  font-size: 30px;
  color: #699b06;
  text-transform: none;
  line-height: 1.2;
}

.hh-meta {
  margin: 0;
  padding: 0 0 0 16px;
  border-left: 4px solid #699b06;
  font-size: 16px;
  color: #303030;
  line-height: 1.45;
}

.hh-section-head {
  margin: 1.75em 0 1em;
  padding: 0 0 0 16px;
  border-left: 4px solid #699b06;
}

.hh-section-head h2 {
  margin: 0;
  font-size: 22px;
  color: #699b06;
  text-transform: none;
  font-weight: 600;
  line-height: 1.3;
}

.hh-note {
  margin: -0.35em 0 1.25em;
  font-size: 0.95em;
  color: #555;
}

.hh-body p {
  margin: 0 0 1em;
}

.hh-staging {
  margin: 0 0 0.5em;
}

.hh-staging::after {
  content: "";
  display: table;
  clear: both;
}

.hh-staging-cover {
  float: right;
  width: 160px;
  max-width: 38%;
  height: auto;
  margin: 0 0 1em 1.25em;
  border: 3px solid #699b06;
}

.hh-gallery {
  margin: 0 0 0.5em;
}

.hh-recording {
  padding: 36px 0;
  background: #eeeeee;
}

.hh-scenes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}

.hh-scene {
  margin: 0;
  min-width: 0;
}

.hh-scene .media {
  margin: 0 0 0.55em;
}

.hh-scene figcaption {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #303030;
  line-height: 1.35;
}

.pub-page {
  padding-top: 28px;
  padding-bottom: 36px;
}

.pub-content {
  max-width: 900px;
}

.pub-hero {
  display: grid;
  grid-template-columns: minmax(0, 280px) 1fr;
  gap: 28px 36px;
  align-items: start;
  margin: 0 0 2.25em;
}

.pub-cover {
  margin: 0;
  max-width: 220px;
}

.pub-cover img {
  display: block;
  width: 100%;
  height: auto;
  border: 3px solid #699b06;
}

.pub-heading {
  margin: 0 0 1em;
  padding: 0 0 0 16px;
  border-left: 4px solid #699b06;
}

.pub-title {
  margin: 0 0 0.35em;
  font-size: 28px;
  color: #699b06;
  text-transform: none;
  line-height: 1.2;
}

.pub-subtitle {
  margin: 0;
  font-size: 16px;
  color: #555;
  line-height: 1.4;
}

.pub-intro > p {
  margin: 0 0 1em;
}

.pub-cta {
  margin: 1.25em 0 0;
}

.pub-cta .btn {
  margin: 0;
}

.pub-seasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75em 2.5em;
}

.pub-season h2 {
  margin: 0 0 0.65em;
  padding: 0 0 0 14px;
  border-left: 4px solid #699b06;
  font-size: 20px;
  color: #699b06;
  text-transform: none;
  font-weight: 600;
  line-height: 1.3;
}

.pub-season ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pub-season li {
  margin: 0 0 0.45em;
  color: #303030;
  line-height: 1.45;
}

.pub-season li:last-child {
  margin-bottom: 0;
}

.pub-hero + .pub-hero {
  margin-top: 2.5em;
  padding-top: 2.5em;
  border-top: 1px solid #e0e0e0;
}

.pub-cover--wide {
  max-width: 280px;
}

.pub-caption {
  margin: 0.55em 0 0;
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

.pub-body p {
  margin: 0 0 1em;
}

.pub-body p:last-child {
  margin-bottom: 0;
}

.pub-intro .readmore-wrap {
  margin: 0;
}

.pub-section {
  margin: 0 0 2.25em;
}

.pub-section:last-child {
  margin-bottom: 0;
}

.pub-section-head {
  margin: 0 0 1em;
  padding: 0 0 0 16px;
  border-left: 4px solid #699b06;
}

.pub-section-head h2 {
  margin: 0;
  font-size: 22px;
  color: #699b06;
  text-transform: none;
  font-weight: 600;
  line-height: 1.3;
}

.pub-note {
  margin: -0.35em 0 1.25em;
  font-size: 0.95em;
  color: #555;
}

.pub-praise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75em 2.5em;
}

.pub-praise > div > p {
  margin: 0 0 0.75em;
  line-height: 1.55;
}

.pub-praise .testimonial-meta {
  margin: 0;
  font-size: 15px;
  color: #555;
}

.pub-credits {
  margin: 0;
}

.pub-bib p {
  margin: 0 0 0.85em;
  line-height: 1.5;
  font-size: 15px;
}

.pub-bib p:last-child {
  margin-bottom: 0;
}

.at-page {
  padding-top: 28px;
  padding-bottom: 36px;
  overflow-x: clip;
}

.at-content {
  max-width: 920px;
}

.at-banner {
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
  margin: 2.25em 0 1.5em;
  margin-left: calc(50% - 50vw);
  padding: 0.7em max(16px, calc((100vw - min(80vw, 920px)) / 2));
  background: #699b06;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-transform: none;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.at-content > .at-banner:first-child {
  margin-top: 0;
}

.at-person {
  display: flow-root;
  margin: 0;
  padding: 1.5em 0;
  border-bottom: 1px solid #e6e6e6;
}

.at-person:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.at-photo {
  float: left;
  width: 160px;
  max-width: 38%;
  margin: 0 1.35em 0.85em 0;
}

.at-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 3px solid #699b06;
}

.at-person-main {
  min-width: 0;
}

.at-person-main h2 {
  margin: 0 0 0.3em;
  font-size: 22px;
  color: #444;
  text-transform: none;
  font-weight: 700;
  line-height: 1.25;
}

.at-role {
  margin: 0 0 0.85em;
  color: #699b06;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.at-note {
  margin: -0.35em 0 0.85em;
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.at-bio p {
  margin: 0 0 0.85em;
}

.at-bio p:last-child {
  margin-bottom: 0;
}

/* No headshot yet: text uses the full row */
.at-person--text {
  padding-left: 0;
  border-left: 0;
}

.at-person--text .at-person-main {
  max-width: none;
}

.at-rop-block {
  margin: 0.75em 0 0.5em;
  padding: 1.15em 1.25em;
  background: #f4f7ec;
  border-left: 4px solid #699b06;
}

.at-rop-block h2 {
  margin: 0 0 0.55em;
  font-size: 17px;
  color: #699b06;
  text-transform: none;
  font-weight: 600;
  line-height: 1.35;
}

.at-rop-block p {
  margin: 0;
  color: #303030;
  line-height: 1.55;
}

.cb-page {
  padding-top: 28px;
  padding-bottom: 36px;
}

.cb-content {
  max-width: 900px;
}

.cb-title {
  margin: 0 0 0.85em;
  font-size: 30px;
  color: #699b06;
  text-transform: none;
  line-height: 1.2;
}

.cb-intro p {
  margin: 0 0 1.25em;
}

.cb-highlights {
  margin: 0 0 1.5em;
  padding: 0 0 0 16px;
  border-left: 4px solid #699b06;
  font-size: 22px;
  color: #699b06;
  text-transform: none;
  font-weight: 600;
  line-height: 1.3;
}

.cb-timeline {
  margin: 0;
}

.cb-era {
  margin: 0 0 2.25em;
}

.cb-era:last-child {
  margin-bottom: 0;
}

.cb-era-label {
  display: inline-block;
  margin: 0 0 1.1em;
  padding: 0.35em 0.85em;
  background: #699b06;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-transform: none;
}

.cb-track {
  --cb-line-x: 7px;
  --cb-gutter: 28px;
  list-style: none;
  position: relative;
  margin: 0;
  padding: 0 0 0 var(--cb-gutter);
  border: 0;
}

.cb-track::before {
  content: "";
  position: absolute;
  top: 0.45em;
  bottom: 0.2em;
  left: var(--cb-line-x);
  width: 2px;
  background: #c5d89a;
}

.cb-item {
  position: relative;
  margin: 0 0 1.65em;
  padding: 0;
}

.cb-item:last-child {
  margin-bottom: 0;
}

.cb-item::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: calc(var(--cb-line-x) - var(--cb-gutter) + 1px);
  width: 12px;
  height: 12px;
  border: 3px solid #699b06;
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
  transform: translateX(-50%);
}

.cb-year {
  margin: 0 0 0.45em;
  font-size: 18px;
  font-weight: 700;
  color: #699b06;
  text-transform: none;
  line-height: 1.3;
}

.cb-body p {
  margin: 0 0 0.85em;
}

.cb-body p:last-child {
  margin-bottom: 0;
}

.cb-media {
  margin: 1em 0 0;
}

.cb-media img {
  display: block;
  height: auto;
}

.cb-media--photo img {
  max-width: 200px;
  width: 100%;
  border: 3px solid #699b06;
}

.cb-media--cover img {
  max-width: 140px;
  width: 100%;
  border: 3px solid #699b06;
}

.cb-media--logo img {
  max-width: 220px;
  width: 100%;
}

.cb-media figcaption {
  margin: 0.55em 0 0;
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

.cb-media--video {
  max-width: 640px;
  margin-top: 1em;
}

.pp-page {
  padding-top: 28px;
  padding-bottom: 28px;
}

.pp-content {
  max-width: 900px;
}

.pp-hero {
  display: grid;
  grid-template-columns: minmax(0, 220px) 1fr;
  gap: 28px 36px;
  align-items: start;
  margin: 0 0 1.75em;
}

.pp-poster {
  margin: 0;
  max-width: 220px;
}

.pp-poster img {
  display: block;
  width: 100%;
  height: auto;
  border: 3px solid #699b06;
}

.pp-poster figcaption {
  margin: 0.55em 0 0;
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

.pp-title {
  margin: 0 0 0.65em;
  font-size: 30px;
  color: #666;
  text-transform: none;
  line-height: 1.2;
}

.pp-meta {
  margin: 0;
  padding: 0 0 0 16px;
  border-left: 4px solid #699b06;
  font-size: 16px;
  color: #303030;
  line-height: 1.45;
}

.pp-section-head {
  margin: 1.75em 0 1em;
  padding: 0 0 0 16px;
  border-left: 4px solid #699b06;
}

.pp-section-head h2 {
  margin: 0;
  font-size: 22px;
  color: #699b06;
  text-transform: none;
  font-weight: 600;
  line-height: 1.3;
}

.pp-body p {
  margin: 0 0 1em;
}

.pp-body p:last-child {
  margin-bottom: 0;
}

.ld-page {
  padding-top: 28px;
  padding-bottom: 28px;
}

.ld-content {
  max-width: 900px;
}

.ld-title {
  margin: 0 0 0.55em;
  padding-bottom: 0.45em;
  border-bottom: 1px solid #ddd;
  font-size: 30px;
  color: #666;
  text-transform: none;
  line-height: 1.2;
}

.ld-meta {
  margin: 0 0 1.5em;
  padding: 0 0 0 16px;
  border-left: 4px solid #699b06;
  font-size: 16px;
  color: #303030;
  line-height: 1.45;
}

.ld-media {
  display: grid;
  grid-template-columns: minmax(0, 180px) 1fr;
  gap: 24px 32px;
  align-items: start;
  margin: 0 0 1.75em;
}

.ld-poster {
  margin: 0;
  max-width: 180px;
}

.ld-poster img {
  display: block;
  width: 100%;
  height: auto;
  border: 3px solid #699b06;
}

.ld-poster figcaption {
  margin: 0.55em 0 0;
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

.ld-carousel.workshop-carousel {
  margin: 0;
  min-width: 0;
}

.ld-carousel .workshop-carousel-count,
.ld-carousel .workshop-caption {
  display: none;
}

.ld-carousel .workshop-carousel-controls {
  justify-content: center;
  margin-top: 10px;
}

.ld-section-head {
  margin: 1.75em 0 1em;
  padding: 0 0 0 16px;
  border-left: 4px solid #699b06;
}

.ld-section-head h2 {
  margin: 0;
  font-size: 22px;
  color: #699b06;
  text-transform: none;
  font-weight: 600;
  line-height: 1.3;
}

.ld-body p {
  margin: 0 0 1em;
}

.ld-body p:last-child {
  margin-bottom: 0;
}

.ld-script {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px 20px;
  align-items: start;
}

.ld-script-cover {
  display: block;
  max-width: 100px;
}

.ld-script-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.zt-page {
  padding-top: 28px;
  padding-bottom: 28px;
}

.zt-content {
  max-width: 900px;
}

.zt-hero {
  display: grid;
  grid-template-columns: minmax(0, 220px) 1fr;
  gap: 28px 36px;
  align-items: start;
  margin: 0 0 1.75em;
}

.zt-poster {
  margin: 0;
  max-width: 220px;
}

.zt-poster img {
  display: block;
  width: 100%;
  height: auto;
  border: 3px solid #699b06;
}

.zt-title {
  margin: 0 0 0.65em;
  font-size: 30px;
  color: #699b06;
  text-transform: none;
  line-height: 1.2;
}

.zt-meta {
  margin: 0;
  padding: 0 0 0 16px;
  border-left: 4px solid #699b06;
  font-size: 16px;
  color: #303030;
  line-height: 1.45;
}

.zt-section-head {
  margin: 1.75em 0 1em;
  padding: 0 0 0 16px;
  border-left: 4px solid #699b06;
}

.zt-section-head h2 {
  margin: 0;
  font-size: 22px;
  color: #699b06;
  text-transform: none;
  font-weight: 600;
  line-height: 1.3;
}

.zt-body p {
  margin: 0 0 1em;
}

.zt-body p:last-child {
  margin-bottom: 0;
}

.section-muted + .section-muted {
  padding-top: 0;
}

.section-muted.page-intro {
  padding-bottom: 24px;
}

.credits {
  margin-bottom: 1.2em;
}

.cast {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.5em;
}

.cast th,
.cast td {
  text-align: left;
  padding: 4px 10px 4px 0;
  vertical-align: top;
  border-bottom: 1px solid #eee;
}

.cast th {
  color: #699b06;
  font-weight: 600;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 1em 0 1.5em;
}

.bio {
  margin: 0 0 1.8em;
}

.bio h3 {
  margin-bottom: 0.2em;
}

.role {
  font-size: 15px;
  color: #555;
  margin-bottom: 0.6em;
}

/* Footer widgets in-page */
.site-widgets {
  padding: 48px 0 36px;
  background: #fff;
  border-top: 4px solid #699b06;
}

.widgets-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 40px 48px;
  align-items: start;
}

.widgets-primary .widget-email {
  margin-bottom: 18px;
}

.widget-email,
.widget-substack,
.widget-prod-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #699b06;
  text-decoration: none;
}

.widget-email:hover,
.widget-substack:hover {
  text-decoration: none;
}

.widget-email h4,
.widget-substack h4,
.widget-prod-head h4 {
  margin: 0;
  font-size: 16px;
  text-transform: lowercase;
  color: #699b06;
}

.icon-circle {
  width: 42px;
  height: 42px;
  border: 2px solid #699b06;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: transparent;
}

.icon-circle svg {
  width: 18px;
  height: 18px;
  fill: #699b06;
}


.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.socials a {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #699b06;
  color: #fff;
  text-decoration: none;
}

.socials a:hover {
  background: #648d01;
  color: #fff;
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

.prod-list {
  list-style: square;
  margin: 12px 0 0;
  padding-left: 18px;
  color: #699b06;
}

.prod-list li {
  margin: 0 0 0.35em;
}

.prod-list a {
  color: #699b06;
  font-size: 14px;
  text-decoration: none;
}

.prod-list a:hover {
  text-decoration: underline;
}

.prod-list-all {
  margin-top: 0.65em;
  padding-top: 0.55em;
  list-style: none;
}

.prod-list-all a {
  font-weight: 700;
}

.site-footer {
  background: #222;
  color: #fff;
}

.footer-brand {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 40%),
    linear-gradient(180deg, #8fb33a 0%, #699b06 52%, #5a8605 100%);
  text-align: center;
  padding: 28px 16px;
}

.footer-tagline {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.footer-bottom {
  padding: 14px 0 18px;
  color: #ccc;
  font-size: 12px;
  text-align: center;
}

.footer-bottom a {
  color: #ccc;
}

.footer-bottom a:hover {
  color: #fff;
}

.slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin: 1em 0;
}

.contact-note {
  font-size: 18px;
}

.widget-prod-head a {
  color: inherit;
  text-decoration: none;
}

.widget-prod-head a:hover {
  color: #648d01;
}

.prod-intro {
  margin: 0 0 1.2em;
  max-width: 40rem;
}

.prod-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 0 2rem;
}

.prod-jump a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid #699b06;
  padding-bottom: 2px;
}

.prod-jump a:hover {
  color: #648d01;
}

.prod-recent,
.prod-era {
  margin: 0 0 2.5rem;
  scroll-margin-top: 110px;
}

.prod-era:last-child {
  padding-bottom: 1.5rem;
}

.prod-recent h2,
.prod-era h2 {
  margin: 0 0 1rem;
  font-size: 24px;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.prod-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 108px;
  color: inherit;
  text-decoration: none;
  background: linear-gradient(145deg, #fafafa 0%, #fff 55%);
  border: 1px solid #e4e4e4;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.prod-card:hover {
  border-color: #699b06;
  background: linear-gradient(145deg, #f3f8e8 0%, #fff 60%);
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(105, 155, 6, 0.12);
}

.prod-card-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ededed;
}

.prod-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prod-card-media--empty {
  background:
    linear-gradient(135deg, #ededed 0%, #dfe6c8 100%);
}

.prod-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding: 18px 42px 18px 18px;
}

.prod-card-year {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  background: #699b06;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.prod-card-title {
  color: #303030;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.prod-card:hover .prod-card-title {
  color: #648d01;
}

.prod-card::after {
  content: "→";
  position: absolute;
  right: 16px;
  bottom: 18px;
  color: #699b06;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.prod-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.prod-recent .prod-card {
  min-height: 120px;
}

.prod-recent .prod-card-body {
  padding-top: 20px;
  padding-bottom: 20px;
}

.prod-recent .prod-card-title {
  font-size: 18px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 0.5em;
}

.btn-row .btn {
  margin: 0;
}

.btn-ghost {
  border-color: #999;
  color: #555 !important;
}

.btn-ghost:hover {
  border-color: #648d01;
  color: #648d01 !important;
}

.eyebrow {
  margin: 0 0 0.35em;
  color: #699b06;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-copy h2 {
  margin-bottom: 0.5em;
  font-size: 28px;
}

.featured-more {
  margin-top: 0.5em;
}

.featured-media img {
  max-width: 280px;
  display: block;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 1.25rem;
}

.section-head h2 {
  margin: 0;
  font-size: 24px;
}

.section-link {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

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

.recent-home .prod-grid {
  grid-template-columns: repeat(3, 1fr);
}

.listen h3 {
  margin-bottom: 0.35em;
}

/* Tablet + narrow laptop: stack production layouts before columns get cramped */
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 40px);
  }

  .grid-2,
  .page-intro-grid,
  .williamstown-grid,
  .dust-hero,
  .anniversary-hero,
  .castor-hero,
  .casa-hero,
  .wwl-hero,
  .wwl-season-grid,
  .ana-hero,
  .hh-hero,
  .zt-hero,
  .pp-hero,
  .ld-media,
  .ld-script,
  .pub-hero,
  .pub-seasons,
  .pub-praise,
  .at-person-grid,
  .lb-page .lb-intro-grid {
    grid-template-columns: 1fr;
  }

  .dust-hero {
    gap: 1.25em;
  }

  .dust-poster {
    max-width: 240px;
  }

  .anniversary-hero {
    gap: 1.25em;
  }

  .anniversary-poster {
    max-width: 220px;
  }

  .castor-hero {
    gap: 1.25em;
  }

  .castor-poster {
    max-width: 220px;
  }

  .casa-hero {
    gap: 1.25em;
  }

  .casa-poster {
    max-width: 220px;
  }

  .wwl-hero {
    gap: 1.25em;
  }

  .wwl-poster,
  .wwl-season-photo {
    max-width: 220px;
  }

  .ana-hero {
    gap: 1.25em;
  }

  .ana-poster {
    max-width: 220px;
  }

  .hh-hero {
    gap: 1.25em;
  }

  .hh-poster {
    max-width: 200px;
  }

  .zt-hero {
    gap: 1.25em;
  }

  .zt-poster {
    max-width: 200px;
  }

  .pp-hero {
    gap: 1.25em;
  }

  .pp-poster {
    max-width: 200px;
  }

  .pub-hero {
    gap: 1.25em;
  }

  .pub-cover {
    max-width: 200px;
  }

  .pub-cover--wide {
    max-width: 260px;
  }

  .at-photo {
    width: 140px;
    max-width: 34%;
    margin: 0 1.1em 0.75em 0;
  }

  .ld-media {
    gap: 1.25em;
  }

  .ld-poster {
    max-width: 200px;
  }

  .ld-script-cover {
    max-width: 100px;
  }

  .hh-staging-cover {
    float: none;
    display: block;
    max-width: 160px;
    margin: 0 0 1em;
  }

  .ana-cast-img {
    max-width: 140px;
  }

  /* Tablet: graphic + 2 credit columns = 3 columns */
  .castor-workshop {
    grid-template-columns: minmax(0, 120px) 1fr;
    gap: 20px 24px;
  }

  .castor-tall {
    max-width: 120px;
  }

  .castor-credits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    align-items: start;
  }

  .castor-credits li {
    grid-template-columns: minmax(0, max-content) minmax(0, 1fr);
    gap: 0 0.65em;
  }

  .dust-shot img {
    max-width: 180px;
  }

  .dust-shot--wide img {
    max-width: 240px;
  }

  .williamstown-poster {
    max-width: 280px;
  }

  .fashionista-gallery {
    grid-template-columns: 1fr;
    align-items: stretch;
    max-width: 420px;
  }

  .lb-bio-entry {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "head"
      "bio";
    row-gap: 10px;
  }

  .lb-bio-photo {
    width: 160px;
    height: 160px;
  }

  .page-thumb img,
  .lb-intro-thumb .page-thumb img {
    max-width: 260px;
  }

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

@media (max-width: 980px) {
  .wrap {
    width: calc(100% - 32px);
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
    width: calc(100% - 24px);
  }

  html {
    scroll-padding-top: 80px;
  }

  .prod-era {
    scroll-margin-top: 80px;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .logo {
    grid-column: auto;
    padding: 6px 0;
  }

  .logo img {
    height: 52px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    min-height: 40px;
    border: 2px solid #699b06;
    background: #fff;
    color: #699b06;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 8px 14px;
    line-height: 1;
  }

  .nav-toggle[aria-expanded="true"] {
    background: #699b06;
    color: #fff;
  }

  .nav-toggle-label {
    display: block;
    font-size: inherit;
    line-height: 1;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-label {
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
  }

  .mobile-nav {
    display: none;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    padding: 8px 0 16px;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .mobile-nav > ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav > ul > li > a {
    display: block;
    padding: 12px 20px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
  }

  .mobile-nav > ul > li.is-current > a {
    color: #648d01;
  }

  .mobile-nav .sub-menu {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    border-top: 0;
    padding: 0 0 8px 12px;
  }

  .mobile-nav .has-sub.open > .sub-menu {
    display: block;
  }
}

@media (max-width: 700px) {
  .widgets-grid {
    grid-template-columns: 1fr;
  }


  .recent-home .prod-grid,
  .prod-grid {
    grid-template-columns: 1fr;
  }

  .at-photo {
    float: none;
    width: 160px;
    max-width: 55%;
    margin: 0 0 1em;
  }

  .at-person-main h2 {
    font-size: 20px;
  }

  .at-banner {
    font-size: 16px;
    padding-top: 0.65em;
    padding-bottom: 0.65em;
  }

  .at-rop-block {
    padding: 1em;
  }

  .fashionista-gallery {
    max-width: 100%;
  }

  .dust-poster {
    max-width: 200px;
  }

  .dust-shot img {
    max-width: 150px;
  }

  .dust-shot--wide img {
    max-width: 200px;
  }

  .castor-workshop {
    grid-template-columns: 1fr;
  }

  .castor-tall {
    max-width: 140px;
  }

  .castor-credits {
    grid-template-columns: 1fr;
  }

  .ana-cast-img {
    float: none;
    max-width: 151px;
    margin: 0 0 1em;
  }

  .ana-scenes {
    grid-template-columns: 1fr;
  }

  .hh-scenes {
    grid-template-columns: 1fr;
  }

  .featured-media img {
    max-width: 200px;
  }

  .banner h1,
  .banner h2,
  .quote-title h2 {
    font-size: 22px;
  }
}
