/* ── Nav ── */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-logo img {
  height: 36px;
  width: auto;
  max-height: 36px;
  object-fit: contain;
}

.nav-links a {
  font-size: 0.8125rem;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1rem 0;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: transform 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    gap: 0;
  }

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

  .nav-links a {
    padding: 0.75rem 0;
    border-bottom: none;
  }
}

/* ── Hero ── */
.hero {
  background: var(--grad-hero);
  color: var(--white);
  padding: 4rem 1.25rem 3.5rem;
  text-align: center;
}

.hero-logo {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 2px;
  font-weight: normal;
}

.hero-tagline {
  font-family: var(--ff-script);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #d4a0d4;
  margin-top: 0.25rem;
}

.hero-sub {
  font-size: clamp(0.6rem, 1rem, 1rem);
  color: #cccccc;
  margin-top: 1rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── Credentials Strip ── */
.credentials {
  display: flex;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  margin-bottom: 2.5rem;
}

.credential {
  flex: 1;
  text-align: center;
  padding: 1.25rem 0.75rem;
  border-right: 1px solid var(--border-light);
}

.credential:last-child { border-right: none; }

.credential strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--text);
  margin-bottom: 0.125rem;
}

.credential span {
  font-size: 0.75rem;
  color: var(--text-light);
}

@media (max-width: 640px) {
  .credentials {
    flex-direction: column;
  }
  .credential {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 0.875rem 1rem;
    text-align: left;
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
  }
  .credential:last-child { border-bottom: none; }
}

/* ── Intro ── */
.intro {
  text-align: center;
  margin-bottom: 3rem;
}

.intro p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: var(--container-narrow);
  margin: 0.75rem auto 0;
}

/* ── Brand Section (alternating) ── */
.brand-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  min-height: 260px;
  
  border-radius: var(--border-radius);
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 1rem;
}

.brand-section:first-of-type {
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.brand-section--reversed {
  direction: rtl;
}

.brand-section--reversed > * {
  direction: ltr;
}

.brand-text {
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.brand-label--is { color: var(--primary); }
.brand-label--nwow { color: var(--accent-teal); }

.brand-name {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.625rem;
}

.brand-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.brand-services {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.brand-link {
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
}

.brand-link--is { color: var(--primary); }
.brand-link--nwow { color: var(--accent-teal); }

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

.brand-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.brand-visual-inner {
  width: 100%;
  height: 100%;
  min-height: 180px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

.brand-visual-inner--is { background: var(--grad-is); }
.brand-visual-inner--nwow { background: var(--grad-nwow); }

.brand-img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: 6px;
  aspect-ratio: 4/3
}

@media (max-width: 768px) {
  .brand-section {
    grid-template-columns: 1fr;
  }
  .brand-section--reversed { direction: ltr; }
  .brand-visual { min-height: 160px; }
}

/* ── Section Divider ── */
.section-divider {
  text-align: center;
  margin: 3rem 0 2rem;
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.section-divider span {
  position: relative;
  background: var(--light);
  padding: 0 1.25rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

/* ── Theatre Block ── */
.theatre-block {
  background: var(--dark);
  color: #cccccc;
  border-radius: var(--border-radius);
  padding: 2.5rem 2.75rem;
}

.theatre-block h2 {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.375rem;
}

.theatre-tagline, .theatre-block .theatre-tagline {
  font-family: var(--ff-script);
  font-size: 1.2rem;
  color: var(--primary-light);
/*  color: var(--text-muted);*/
  margin-bottom: 1.25rem;
}

.theatre-block p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #aaaaaa;
}

.theatre-productions {
  margin-top: 1.5rem;
}

.theatre-prod {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.875rem 0;
  border-top: 1px solid #333333;
  flex-wrap: wrap;
}

.theatre-prod:last-child { border-bottom: 1px solid #333333; }

.prod-title {
  font-size: 0.9375rem;
  color: var(--white);
  font-weight: 600;
  min-width: 240px;
}

.prod-author {
  font-size: 0.8125rem;
  color: var(--text-light);
  min-width: 100px;
}

.prod-venue {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.theatre-supports {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: #666666;
}

.theatre-supports span { color: var(--text-light); }

.theatre-status {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--primary);
  font-style: italic;
}

@media (max-width: 640px) {
  .theatre-prod {
    flex-direction: column;
    gap: 0.25rem;
  }
  .prod-title { min-width: auto; }
  .prod-author { min-width: auto; }
}

/* ── About Section ── */
.about-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
}

.about-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
}

.about-photo-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.about-text h2 { margin-bottom: 0.75rem; }

.about-text p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   Client logos grid (grayscale, color on hover; same treatment as IS v8)
   -------------------------------------------------------------------------- */

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding: 1rem 0;
}

.logo-grid img {
  height: 40px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter 0.3s, opacity 0.3s;
}

.logo-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
}



/* --------------------------------------------------------------------------
   Client logos (grayscale, color on hover; same treatment as IS v8)
   -------------------------------------------------------------------------- */
.client-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
}

.client-logos li { margin: 0; }

.client-logos__img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.7);
  opacity: 0.5;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.client-logos__img:hover {
  filter: none;
  opacity: 1;
}

.section--dark .client-logos__img {
  filter: grayscale(100%) brightness(1.5);
  mix-blend-mode: color-dodge;
  opacity: 0.5;
}

.section--dark .client-logos__img:hover {
  opacity: 1;
  filter: brightness(1.2);
}


/* ── CTA Band ── */
.cta-band {
  background: var(--dark);
  color: #cccccc;
  padding: 3.5rem 1.25rem;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-band p {
  margin-bottom: 1.5rem;
}

.cta-band__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Nav CTA ── */
.nav-cta a.btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  border-bottom: none;
}

.nav-cta a.btn:hover {
  text-decoration: none;
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: #999999;
  padding: 3rem 1.25rem 1.5rem;
  font-size: 0.8125rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__logo {
  height: 32px;
  width: auto;
  margin-bottom: 0.75rem;
}

.footer__brand p {
  color: #888888;
  line-height: 1.6;
  font-size: 0.8125rem;
}

.footer h4 {
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer ul {
  list-style: none;
  line-height: 2;
}

.footer a {
  color: #d4a0d4;
  text-decoration: none;
}

.footer a:hover { text-decoration: underline; }

.footer__legal {
  border-top: 1px solid #333333;
  padding-top: 1rem;
  font-size: 0.75rem;
  color: #666666;
}

@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  border: none;
}

.btn--primary, .nav-cta .btn--primary {
  background: var(--primary);
  color: var(--white);
}

.btn--primary:hover, .nav-cta .btn--primary:hover {
  background: var(--primary-dark);
  text-decoration: none;
}

.nav-cta .btn--primary:hover {
  color: var(--light);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn--ghost:hover {
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
}

.btn--on-dark {
  background: transparent;
  color: #d4a0d4;
  border: 1px solid #d4a0d4;
}

.btn--on-dark:hover {
  background: #d4a0d4;
  color: var(--dark);
  text-decoration: none;
}

.btn--ghost-light {
  background: transparent;
  color: #d4a0d4;
  border: 1px solid rgba(212, 160, 212, 0.4);
}

.btn--ghost-light:hover {
  background: rgba(212, 160, 212, 0.15);
  color: #d4a0d4;
  text-decoration: none;
}
