:root {
  /* Sumukha brand palette */
  --sumukha-ivory: #EBE3CE;
  --sumukha-sage: #A2BAAD;
  --sumukha-teal: #27747C;
  --sumukha-deep: #13454C;

  /* Compatibility aliases used throughout the theme */
  --sumukha-red: var(--sumukha-teal);
  --sumukha-red-dark: var(--sumukha-deep);
  --sumukha-crimson: var(--sumukha-sage);
  --sumukha-gold: var(--sumukha-sage);
  --sumukha-gold-light: var(--sumukha-ivory);
  --sumukha-ink: var(--sumukha-deep);
  --sumukha-charcoal: var(--sumukha-deep);
  --sumukha-cream: var(--sumukha-ivory);
  --sumukha-paper: var(--sumukha-ivory);
  --sumukha-muted: var(--sumukha-teal);
  --sumukha-border: rgba(162, 186, 173, .42);
  --shadow-lg: 0 30px 80px rgba(19, 69, 76, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--sumukha-deep);
  background: var(--sumukha-paper);
  line-height: 1.75;
}

h1, h2, h3, h4, h5, .display-font {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: -.02em;
}

a { text-decoration: none; }
img { max-width: 100%; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  z-index: 9999;
  background: #fff;
  color: #111;
  padding: .75rem 1rem;
  border-radius: .5rem;
}
.skip-link:focus { top: 1rem; }

/* Navigation */
.site-nav {
  background: rgba(19, 69, 76, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: .3s ease;
}
.site-nav.scrolled {
  background: rgba(19, 69, 76, .985);
  box-shadow: 0 10px 35px rgba(0,0,0,.16);
}
.navbar-brand { color: #fff !important; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(162, 186, 173, .78);
  border-radius: 50%;
  color: var(--sumukha-gold-light);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;
}
.brand-name {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
}
.brand-tagline {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: .25rem;
}
.navbar .nav-link {
  color: rgba(255,255,255,.78);
  font-weight: 600;
  font-size: .92rem;
  padding: .8rem .9rem !important;
  position: relative;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: .9rem;
  right: .9rem;
  bottom: .45rem;
  height: 1px;
  background: var(--sumukha-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: #fff; }
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { transform: scaleX(1); }
.navbar-toggler { border-color: rgba(255,255,255,.25); }
.navbar-toggler:focus { box-shadow: 0 0 0 .18rem rgba(162,186,173,.30); }

/* Buttons */
.btn-sumukha,
.btn-outline-sumukha,
.btn-dark-sumukha {
  border-radius: 999px;
  padding: .8rem 1.35rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: .25s ease;
}
.btn-sumukha {
  background: var(--sumukha-teal);
  color: #fff;
  border: 1px solid var(--sumukha-teal);
}
.btn-sumukha:hover {
  background: var(--sumukha-deep);
  border-color: var(--sumukha-deep);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-sumukha {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.55);
}
.btn-outline-sumukha:hover {
  background: var(--sumukha-ivory);
  color: var(--sumukha-deep);
  transform: translateY(-2px);
}
.btn-dark-sumukha {
  background: var(--sumukha-ink);
  color: #fff;
  border: 1px solid var(--sumukha-ink);
}
.btn-dark-sumukha:hover { background: var(--sumukha-red-dark); color: #fff; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: var(--sumukha-deep);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(19,69,76,.95) 0%, rgba(19,69,76,.72) 43%, rgba(19,69,76,.28) 70%, rgba(19,69,76,.48) 100%),
    linear-gradient(0deg, rgba(19,69,76,.82) 0%, rgba(19,69,76,0) 55%),
    url("https://images.pexels.com/photos/713149/pexels-photo-713149.jpeg?auto=compress&cs=tinysrgb&w=1920");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -270px;
  top: 10%;
  border: 1px solid rgba(162,186,173,.28);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(162,186,173,.04), 0 0 0 160px rgba(162,186,173,.025);
}
.hero-content { position: relative; z-index: 2; padding: 10rem 0 6rem; }
.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .19em;
}
.hero-kicker { color: var(--sumukha-gold-light); }
.section-kicker { color: var(--sumukha-red); }
.hero-kicker::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}
.hero h1 {
  font-size: clamp(4rem, 10vw, 8.4rem);
  line-height: .82;
  letter-spacing: -.055em;
  margin: 1.15rem 0 1.45rem;
  text-wrap: balance;
}
.hero h1 .gold { color: var(--sumukha-gold-light); font-style: italic; font-weight: 500; }
.hero-lead {
  max-width: 680px;
  color: rgba(255,255,255,.75);
  font-size: clamp(1rem, 2vw, 1.2rem);
}
.hero-meta {
  border-left: 1px solid rgba(162,186,173,.58);
  padding-left: 1.25rem;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}
.hero-meta strong { color: #fff; display: block; font-size: 1.05rem; }
.scroll-cue {
  position: absolute;
  right: 3rem;
  bottom: 2rem;
  z-index: 2;
  color: rgba(255,255,255,.55);
  writing-mode: vertical-rl;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .18em;
}

/* Page hero */
.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: end;
  padding: 10rem 0 4.5rem;
  color: #fff;
  position: relative;
  background: var(--sumukha-deep);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19,69,76,.96), rgba(19,69,76,.66) 60%, rgba(19,69,76,.48)), var(--page-hero-image, none);
  background-size: cover;
  background-position: center;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(3.4rem, 8vw, 6.7rem); line-height: .9; margin: .8rem 0 1rem; }
.page-hero p { color: rgba(255,255,255,.72); max-width: 720px; font-size: 1.08rem; }

/* Sections */
.section-pad { padding: 7rem 0; }
.section-pad-sm { padding: 4.5rem 0; }
.bg-ink { background: var(--sumukha-ink); color: #fff; }
.bg-cream { background: var(--sumukha-cream); }
.bg-paper { background: var(--sumukha-paper); }
.section-title {
  font-size: clamp(2.9rem, 5.6vw, 5rem);
  line-height: .96;
  color: var(--sumukha-ink);
  margin: .8rem 0 1rem;
}
.bg-ink .section-title { color: #fff; }
.section-copy { color: var(--sumukha-teal); max-width: 720px; }
.bg-ink .section-copy { color: rgba(255,255,255,.66); }

.intro-card {
  padding: 2rem;
  background: #fff;
  border: 1px solid rgba(39,116,124,.10);
  border-radius: 1.25rem;
  box-shadow: 0 18px 60px rgba(19,69,76,.09);
}
.intro-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.18;
  color: var(--sumukha-ink);
}

.image-frame {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 440px;
  background: var(--sumukha-deep);
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: inherit;
  pointer-events: none;
}
.image-caption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  background: rgba(19,69,76,.88);
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .75rem;
  padding: .75rem 1rem;
  font-size: .8rem;
}

/* Numbers */
.stat-block { border-left: 1px solid var(--sumukha-border); padding-left: 1.35rem; }
.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--sumukha-gold-light);
  line-height: 1;
}
.stat-label { color: rgba(255,255,255,.62); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; }

/* Cards */
.production-card {
  height: 100%;
  min-height: 410px;
  border-radius: 1.1rem;
  position: relative;
  overflow: hidden;
  background: var(--sumukha-deep);
  color: #fff;
  box-shadow: 0 18px 50px rgba(19,69,76,.14);
}
.production-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .55s ease; }
.production-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(19,69,76,.97), rgba(19,69,76,.18) 68%);
}
.production-card .card-content { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.6rem; }
.production-card h3 { font-size: 2rem; line-height: 1; margin-bottom: .55rem; }
.production-card p { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; }
.production-card:hover img { transform: scale(1.06); }
.play-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 1px solid rgba(39,116,124,.18);
  background: #fff;
  color: var(--sumukha-deep);
  border-radius: 999px;
  padding: .65rem .95rem;
  font-size: .85rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(19,69,76,.06);
}
.play-chip i { color: var(--sumukha-red); }

/* Values / training */
.value-card {
  border: 1px solid rgba(39,116,124,.14);
  border-radius: 1rem;
  padding: 1.55rem;
  height: 100%;
  background: rgba(255,255,255,.68);
  transition: .25s ease;
}
.value-card:hover { transform: translateY(-5px); border-color: rgba(39,116,124,.35); box-shadow: 0 18px 45px rgba(19,69,76,.10); }
.value-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--sumukha-red);
  background: rgba(162,186,173,.30);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.value-card h3 { font-size: 1.55rem; color: var(--sumukha-ink); }
.value-card p { margin: 0; color: var(--sumukha-teal); font-size: .92rem; }

.training-list { list-style: none; padding: 0; margin: 0; }
.training-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
}
.training-list li:last-child { border-bottom: 0; }
.training-list i { color: var(--sumukha-gold-light); margin-top: .2rem; }

/* Festival */
.festival-panel {
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 590px;
  background: var(--sumukha-deep);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.festival-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.festival-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19,69,76,.97) 0%, rgba(19,69,76,.76) 48%, rgba(19,69,76,.18) 100%);
}
.festival-copy { position: relative; z-index: 2; max-width: 650px; padding: clamp(2rem, 5vw, 5rem); color: #fff; }
.festival-copy h2 { font-size: clamp(3rem, 6vw, 5.2rem); line-height: .94; }
.festival-copy p { color: rgba(255,255,255,.74); }

/* Timeline */
.timeline { position: relative; padding-left: 1.9rem; }
.timeline::before { content: ""; position: absolute; left: .43rem; top: .5rem; bottom: .5rem; width: 1px; background: rgba(39,116,124,.30); }
.timeline-item { position: relative; padding: 0 0 2rem 1.4rem; }
.timeline-item::before { content: ""; position: absolute; left: -1.85rem; top: .48rem; width: 12px; height: 12px; background: var(--sumukha-paper); border: 2px solid var(--sumukha-red); border-radius: 50%; }
.timeline-item h3 { font-size: 1.7rem; color: var(--sumukha-ink); margin-bottom: .25rem; }
.timeline-item p { color: var(--sumukha-teal); margin: 0; }

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  cursor: pointer;
  background: var(--sumukha-deep);
  height: 100%;
  min-height: 280px;
}
.gallery-item.tall { min-height: 450px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .45s ease, filter .45s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(19,69,76,.82), transparent 60%); opacity: .8; }
.gallery-item:hover img { transform: scale(1.05); filter: saturate(1.08); }
.gallery-label { position: absolute; z-index: 2; bottom: 1rem; left: 1rem; right: 1rem; color: #fff; }
.gallery-label small { color: var(--sumukha-gold-light); text-transform: uppercase; letter-spacing: .12em; font-size: .65rem; }
.gallery-label h3 { font-size: 1.55rem; margin: .2rem 0 0; }

/* Contact */
.contact-card {
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid rgba(39,116,124,.12);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 18px 60px rgba(19,69,76,.08);
}
.form-control, .form-select {
  border: 1px solid rgba(162,186,173,.75);
  border-radius: .85rem;
  padding: .9rem 1rem;
  background: rgba(235,227,206,.42);
}
.form-control:focus, .form-select:focus {
  border-color: rgba(39,116,124,.55);
  box-shadow: 0 0 0 .2rem rgba(39,116,124,.12);
}
.contact-point { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.35rem; }
.contact-point .icon { width: 42px; height: 42px; border-radius: 50%; background: rgba(162,186,173,.30); color: var(--sumukha-red); display: grid; place-items: center; flex: 0 0 auto; }
.contact-point strong { display: block; color: var(--sumukha-ink); }
.contact-point span { color: var(--sumukha-teal); font-size: .92rem; }

/* CTA */
.cta-band {
  background: linear-gradient(115deg, var(--sumukha-deep), var(--sumukha-teal) 68%, var(--sumukha-deep));
  color: #fff;
  border-radius: 1.5rem;
  padding: clamp(2rem, 5vw, 4.2rem);
  position: relative;
  overflow: hidden;
}
.cta-band::after { content: ""; position: absolute; width: 280px; height: 280px; border: 1px solid rgba(162,186,173,.28); border-radius: 50%; right: -80px; top: -120px; box-shadow: 0 0 0 50px rgba(162,186,173,.08); }
.cta-band h2 { font-size: clamp(2.5rem, 5vw, 4.4rem); line-height: .96; position: relative; z-index: 1; }
.cta-band p, .cta-band .btn { position: relative; z-index: 1; }
.cta-band p { color: rgba(255,255,255,.75); }

.cta-band .btn-sumukha {
  background: var(--sumukha-ivory);
  border-color: var(--sumukha-ivory);
  color: var(--sumukha-deep);
}
.cta-band .btn-sumukha:hover {
  background: #fff;
  border-color: #fff;
  color: var(--sumukha-deep);
}

/* Footer */
.site-footer { background: var(--sumukha-deep); color: rgba(255,255,255,.66); padding: 5rem 0 1.5rem; }
.site-footer h5 { color: #fff; font-size: 1.4rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: .5rem 0; }
.footer-links a { color: rgba(255,255,255,.62); transition: .2s ease; }
.footer-links a:hover { color: var(--sumukha-gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 3.5rem; padding-top: 1.4rem; font-size: .8rem; }
.social-link { width: 38px; height: 38px; display: inline-grid; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; color: #fff; margin-right: .45rem; transition: .2s ease; }
.social-link:hover { color: var(--sumukha-deep); background: var(--sumukha-ivory); border-color: var(--sumukha-ivory); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Decorative */
.gold-rule { width: 78px; height: 1px; background: var(--sumukha-gold); display: inline-block; }
.note-box { border-left: 3px solid var(--sumukha-gold); padding: 1rem 1.2rem; background: rgba(162,186,173,.22); color: var(--sumukha-deep); }
.text-gold { color: var(--sumukha-ivory) !important; }
.text-red { color: var(--sumukha-teal) !important; }

@media (max-width: 991.98px) {
  .navbar-collapse { padding: 1rem 0 1.25rem; }
  .navbar .nav-link::after { display: none; }
  .hero { min-height: 88vh; }
  .hero-content { padding-top: 9rem; padding-bottom: 4rem; }
  .scroll-cue { display: none; }
  .section-pad { padding: 5rem 0; }
  .image-frame { min-height: 380px; }
  .festival-panel::after { background: linear-gradient(0deg, rgba(19,69,76,.98), rgba(19,69,76,.52)); }
  .festival-copy { margin-top: 12rem; }
}

@media (max-width: 575.98px) {
  .brand-tagline { display: none; }
  .hero h1 { font-size: 4rem; }
  .hero::before { background-position: 60% center; }
  .page-hero { min-height: 46vh; padding-top: 8rem; }
  .section-pad { padding: 4.25rem 0; }
  .image-frame { min-height: 320px; }
  .production-card { min-height: 350px; }
  .festival-copy { padding: 2rem; }
  .cta-band { border-radius: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   SEO typography system — requested September 2026
   H1: 52 / 900 | H2: 30 / 700 | H3: 16 / 600 | Body: 16 / 400
   ========================================================= */
body {
  font-size: 16px;
  font-weight: 400;
}

h1,
.hero h1,
.page-hero h1 {
  font-size: 52px !important;
  font-weight: 900 !important;
  line-height: 1.06;
}

h2,
.section-title,
.festival-copy h2,
.cta-band h2 {
  font-size: 30px !important;
  font-weight: 700 !important;
  line-height: 1.18;
}

h3,
.production-card h3,
.value-card h3,
.timeline-item h3,
.gallery-label h3,
.film-card h3,
.upcoming-card h3 {
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.35;
}

p,
.section-copy,
.hero-lead,
.page-hero p,
.production-card p,
.value-card p,
.timeline-item p,
.festival-copy p,
.upcoming-card p,
.film-card p {
  font-size: 16px !important;
  font-weight: 400 !important;
}

.footer-heading {
  color: #fff;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: .75rem;
}

.upcoming-card,
.film-card {
  height: 100%;
  border: 1px solid rgba(39,116,124,.16);
  border-radius: 1rem;
  padding: 1.6rem;
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 40px rgba(19,69,76,.07);
}
.upcoming-card h3,
.film-card h3 { color: var(--sumukha-deep); margin: 1rem 0 .65rem; }
.upcoming-card p,
.film-card p { color: var(--sumukha-teal); margin-bottom: 0; }
.status-badge {
  display: inline-flex;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: rgba(162,186,173,.35);
  color: var(--sumukha-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.film-card i {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(162,186,173,.32);
  color: var(--sumukha-teal);
  font-size: 1.15rem;
}
.film-card-dark {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.13);
  box-shadow: none;
}
.film-card-dark h3 { color: #fff; }
.film-card-dark p { color: rgba(255,255,255,.68); }
.film-card-dark i { background: rgba(235,227,206,.12); color: var(--sumukha-ivory); }


/* Keep body paragraphs at the requested 16px even when Bootstrap .small is used. */
p.small { font-size: 16px !important; font-weight: 400 !important; }

/* Homepage performance slideshow */
.hero-slider { isolation: isolate; }
.hero-slider::before {
  z-index: 1;
  background-image: linear-gradient(90deg, rgba(19,69,76,.95) 0%, rgba(19,69,76,.72) 43%, rgba(19,69,76,.28) 70%, rgba(19,69,76,.48) 100%), linear-gradient(0deg, rgba(19,69,76,.82) 0%, rgba(19,69,76,0) 55%);
  transform: none;
  pointer-events: none;
}
.hero-slider::after { z-index: 1; pointer-events: none; }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; visibility: hidden; transition: opacity 1s ease, visibility 1s; }
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-slider-controls { position: absolute; bottom: 2rem; left: max(1.5rem, calc((100% - 1320px) / 2)); z-index: 3; display: flex; align-items: center; gap: .8rem; }
.hero-slider-controls[hidden] { display: none; }
.hero-control { border: 1px solid rgba(255,255,255,.55); background: rgba(5,20,24,.65); color: white; border-radius: 999px; min-width: 44px; height: 44px; font-size: 20px; }
.hero-playback { font-size: 13px; padding: 0 1rem; }
.hero-control:hover { background: var(--sumukha-deep); }
.hero-dots { display: flex; align-items: center; gap: .1rem; }
.hero-dot { display: grid; place-items: center; width: 32px; height: 44px; border: 0; background: transparent; padding: 0; }
.hero-dot::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.45); }
.hero-dot.is-active::before { width: 20px; border-radius: 999px; background: var(--sumukha-ivory); }
.hero-control:focus-visible, .hero-dot:focus-visible { outline: 3px solid var(--sumukha-ivory); outline-offset: 3px; }
@media (max-width: 575.98px) {
  .hero-slider .hero-content { padding-left: 1.5rem; padding-right: 1.5rem; }
  .hero-slider-controls { gap: .3rem; left: 1.5rem; }
  .hero-slide img { object-position: 55% center; }
}
@media (prefers-reduced-motion: reduce) { .hero-slide { transition: none; } }

/* Full photographs in a responsive gallery, retaining the Sumukha palette. */
.archive-gallery { column-count: 3; column-gap: 1.5rem; }
.archive-photo { break-inside: avoid; margin: 0 0 1.5rem; overflow: hidden; border-radius: 1rem; background: var(--sumukha-deep); box-shadow: 0 18px 50px rgba(19,69,76,.14); }
.archive-photo a { display: block; overflow: hidden; }
.archive-photo img { display: block; width: 100%; height: auto; transition: transform .45s ease; }
.archive-photo a:hover img { transform: scale(1.025); }
.archive-photo a:focus-visible { outline: 3px solid var(--sumukha-ivory); outline-offset: -5px; }
.archive-photo figcaption { padding: 1rem 1.2rem; color: var(--sumukha-ivory); }
.archive-photo .section-kicker { color: var(--sumukha-sage); font-size: .65rem; letter-spacing: .12em; }
.archive-photo figcaption p { margin: .4rem 0 0; line-height: 1.5; }
@media (max-width: 991.98px) { .archive-gallery { column-count: 2; } }
@media (max-width: 575.98px) { .archive-gallery { column-count: 1; } }

/* Centre the homepage introduction vertically, aligned to the left. */
.hero-slider { align-items: center; }
.hero-slider .hero-content { padding: 8rem .75rem; }
.hero-slider .hero-content > .row { align-items: center !important; }
.hero-slider .hero-content .col-lg-9 { flex: 0 0 auto; width: 70%; }
.hero-slider .hero-lead { max-width: 640px; }
@media (max-width: 991.98px) {
  .hero-slider .hero-content .col-lg-9 { width: 100%; }
  .hero-slider .hero-content { padding: 8rem 1.5rem; }
}

/* Anchor the festival note independently of the centred introduction. */
@media (min-width: 992px) {
  .hero-slider .hero-content { position: static; }
  .hero-slider .hero-content .col-lg-3 {
    position: absolute;
    right: max(2rem, calc((100% - 1320px) / 2 + .75rem));
    bottom: 5rem;
    width: 290px;
    margin: 0;
    z-index: 2;
  }
}
.hero-slider .hero-content .col-lg-9 { position: relative; z-index: 2; }

/* Responsive YouTube player in the homepage introduction. */
.about-video { aspect-ratio: 16 / 9; width: 100%; overflow: hidden; border-radius: 1.2rem; background: var(--sumukha-deep); box-shadow: var(--shadow-lg); }
.about-video iframe { display: block; width: 100%; height: 100%; border: 0; }

/* Swap the gallery people section and button background colours. */
.gallery-people { background: var(--sumukha-teal); }
.gallery-people .btn-sumukha { background: var(--sumukha-deep); border-color: var(--sumukha-deep); color: #fff; }
.gallery-people .btn-sumukha:hover { background: var(--sumukha-ivory); border-color: var(--sumukha-ivory); color: var(--sumukha-deep); }

/* Official contact links. */
.footer-contact { color: inherit; overflow-wrap: anywhere; }
.footer-contact:hover { color: var(--sumukha-ivory); text-decoration: underline; }
.contact-point a { color: var(--sumukha-teal); overflow-wrap: anywhere; text-decoration: underline; text-underline-offset: 3px; }
.contact-point a:hover { color: var(--sumukha-deep); }

/* Awards photographs share consistent landscape frames. */
.awards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.award-photo { display: block; aspect-ratio: 3 / 2; overflow: hidden; border-radius: 1rem; background: var(--sumukha-deep); box-shadow: 0 18px 50px rgba(19,69,76,.14); }
.award-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .45s ease; }
.award-photo:hover img { transform: scale(1.04); }
.award-photo:focus-visible { outline: 3px solid var(--sumukha-teal); outline-offset: 4px; }
@media (max-width: 991.98px) { .awards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 575.98px) { .awards-grid { grid-template-columns: 1fr; } }

/* Direct YouTube video preview. */
.about-video-link { display: block; position: relative; }
.about-video-link img { width: 100%; height: 100%; object-fit: cover; }
.about-video-link::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(19,69,76,.75), transparent 60%); }
.video-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 1; display: grid; place-items: center; width: 72px; height: 72px; border-radius: 50%; background: var(--sumukha-teal); color: #fff; font-size: 36px; box-shadow: 0 8px 30px rgba(0,0,0,.25); }
.video-watch-label { position: absolute; bottom: 1.2rem; left: 1.5rem; color: #fff; font-weight: 700; z-index: 1; }
.about-video-link:hover .video-play { background: var(--sumukha-deep); }
.about-video-link:focus-visible { outline: 3px solid var(--sumukha-teal); outline-offset: 4px; }


/* Load the festival hero photograph directly from the HTML page. */
.festival-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.festival-hero::before { z-index: 1; background: linear-gradient(90deg, rgba(19,69,76,.85), rgba(19,69,76,.45) 55%, rgba(19,69,76,.16)); pointer-events: none; }
.festival-hero .container { z-index: 2; }

/* Gallery hero photograph, loaded directly from the page. */
.gallery-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.gallery-hero::before { z-index: 1; background: linear-gradient(90deg, rgba(19,69,76,.85), rgba(19,69,76,.45) 55%, rgba(19,69,76,.16)); pointer-events: none; }
.gallery-hero .container { z-index: 2; }

/* About hero photograph, loaded directly from the page. */
.about-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.about-hero::before { z-index: 1; background: linear-gradient(90deg, rgba(19,69,76,.85), rgba(19,69,76,.45) 55%, rgba(19,69,76,.16)); pointer-events: none; }
.about-hero .container { z-index: 2; }

/* Lower the About hero photograph by 120px. */
.about-hero-image { object-position: center calc(50% + 120px); }

/* Productions hero photograph, loaded directly from the page. */
.productions-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.productions-hero::before { z-index: 1; background: linear-gradient(90deg, rgba(19,69,76,.85), rgba(19,69,76,.45) 55%, rgba(19,69,76,.16)); pointer-events: none; }
.productions-hero .container { z-index: 2; }

/* Short Films hero photograph, loaded directly from the page. */
.short-films-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center calc(50% + 160px); z-index: 0; }
.short-films-hero::before { z-index: 1; background: linear-gradient(90deg, rgba(19,69,76,.85), rgba(19,69,76,.45) 55%, rgba(19,69,76,.16)); pointer-events: none; }
.short-films-hero .container { z-index: 2; }

/* Video players occupy the existing production image card frames. */
.production-video::after { display: none; }
.production-video iframe { position: absolute; inset: 0; display: block; width: 100%; height: 100%; border: 0; }
.production-video-link { display: inline-block; margin-top: .75rem; color: var(--sumukha-ivory); font-size: .85rem; }
.production-video-link:hover { color: #fff; text-decoration: underline; }

/* Production previews use the same YouTube interaction as the homepage. */
.production-video-preview { position: absolute; inset: 0; display: block; }
.production-video-preview::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(19,69,76,.75), transparent 60%); pointer-events: none; }
.production-video-preview:focus-visible { outline: 3px solid var(--sumukha-ivory); outline-offset: -5px; }
.production-video-preview:hover .video-play { background: var(--sumukha-deep); }

/* Production video cards follow the reference repertoire design. */
.repertoire-video-card { border-radius: 1.1rem; }
.repertoire-video-card .production-video-preview { color: #fff; }
.repertoire-video-card .production-video-preview::after { background: linear-gradient(0deg, rgba(19,69,76,.98) 0%, rgba(19,69,76,.78) 28%, rgba(19,69,76,.2) 72%, rgba(19,69,76,.08) 100%); }
.repertoire-video-card .card-content { padding: 1.6rem; z-index: 2; }
.repertoire-video-card .card-content small { display: block; margin-bottom: .35rem; font-size: .8rem; }
.repertoire-video-card .card-content h3 { margin-bottom: .8rem; }
.repertoire-video-card .card-content p { color: rgba(255,255,255,.72); line-height: 1.75; }
.repertoire-play { position: absolute; top: 1rem; right: 1rem; z-index: 2; display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: rgba(19,69,76,.6); color: #fff; font-size: 24px; }
.repertoire-video-card:hover .repertoire-play { background: var(--sumukha-teal); }
