:root {
  --mc-bg: #120a09;
  --mc-surface: #211311;
  --mc-glass: rgba(33, 19, 17, 0.72);
  --mc-gold: #e2b026;
  --mc-copper: #aa5b36;
  --mc-copper-deep: #9d430c;
  --mc-text: #ffffff;
  --mc-muted: rgba(255, 255, 255, 0.65);
  --mc-border: rgba(255, 255, 255, 0.1);
  --mc-container: 1120px;
  --mc-header-h: 80px;
  --mc-font: "Montserrat", sans-serif;
  --mc-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body.mc-theme {
  margin: 0;
  font-family: var(--mc-font);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(170, 91, 54, 0.18), transparent 45%),
    radial-gradient(ellipse at 80% 20%, rgba(226, 176, 38, 0.1), transparent 40%),
    var(--mc-bg);
  color: var(--mc-text);
  line-height: 1.6;
  min-height: 100vh;
}

body.mc-nav-open {
  overflow: hidden;
}

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

a {
  color: var(--mc-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #f0c44a;
}

.mc-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--mc-gold);
  color: #120a09;
  padding: 0.75rem 1rem;
  z-index: 10000;
}

.mc-skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.mc-container {
  width: min(100% - 2.5rem, var(--mc-container));
  margin-inline: auto;
}

.mc-main {
  padding-top: var(--mc-header-h);
}

/* ---------- Header ---------- */
.mc-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--mc-header-h);
  background: var(--mc-glass);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--mc-border);
}

.mc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.mc-header__logo img {
  width: auto;
  height: 52px;
  object-fit: contain;
}

.mc-nav-desktop .mc-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mc-nav-desktop .mc-menu a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.35rem 0;
  position: relative;
}

.mc-nav-desktop .mc-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--mc-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--mc-ease);
}

.mc-nav-desktop .mc-menu a:hover,
.mc-nav-desktop .mc-menu .current-menu-item > a {
  color: #fff;
}

.mc-nav-desktop .mc-menu a:hover::after,
.mc-nav-desktop .mc-menu .current-menu-item > a::after {
  transform: scaleX(1);
}

.mc-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--mc-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mc-nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--mc-ease), opacity 0.2s ease;
}

/* ---------- Mobile drawer (slide from right) ---------- */
.mc-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--mc-ease), visibility 0.35s;
}

.mc-nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.mc-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(88vw, 360px);
  height: 100%;
  z-index: 1200;
  background: linear-gradient(180deg, #1a100e 0%, #120a09 100%);
  border-left: 1px solid var(--mc-border);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.45);
  transform: translateX(105%);
  transition: transform 0.4s var(--mc-ease);
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem 2rem;
}

.mc-nav-drawer.is-open {
  transform: translateX(0);
}

.mc-nav-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--mc-border);
}

.mc-nav-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--mc-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}

.mc-menu--drawer {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mc-menu--drawer a {
  display: block;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 560;
  padding: 0.9rem 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mc-menu--drawer a:hover,
.mc-menu--drawer .current-menu-item > a {
  color: var(--mc-gold);
}

@media (max-width: 900px) {
  .mc-nav-desktop {
    display: none;
  }

  .mc-nav-toggle {
    display: inline-flex;
  }

  .mc-header__logo img {
    height: 44px;
  }
}

/* ---------- Buttons ---------- */
.mc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s var(--mc-ease), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.mc-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.mc-btn--primary {
  background: linear-gradient(135deg, rgba(226, 176, 38, 0.5), rgba(157, 67, 12, 0.5));
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 24px rgba(157, 67, 12, 0.28);
}

.mc-btn--primary:hover {
  background: linear-gradient(135deg, rgba(226, 176, 38, 0.65), rgba(157, 67, 12, 0.65));
  color: #fff;
}

.mc-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---------- Sections / alignment ---------- */
.mc-section {
  padding: 5rem 0;
}

.mc-section--tight {
  padding: 3.5rem 0;
}

.mc-section__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
}

.mc-section__lead {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--mc-muted);
  font-size: 1.05rem;
}

.mc-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--mc-ease), transform 0.8s var(--mc-ease);
}

.mc-reveal.is-revealed {
  opacity: 1;
  transform: none;
}

/* ---------- Hero ---------- */
.mc-hero {
  position: relative;
  min-height: calc(100svh - var(--mc-header-h));
  display: flex;
  align-items: center;
  padding: calc(var(--mc-header-h) * 0.35) 0 4rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.mc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(18, 10, 9, 0.82) 0%,
      rgba(18, 10, 9, 0.55) 42%,
      rgba(18, 10, 9, 0.28) 68%,
      rgba(18, 10, 9, 0.45) 100%
    ),
    linear-gradient(180deg, rgba(18, 10, 9, 0.2) 0%, transparent 35%, rgba(18, 10, 9, 0.85) 100%);
}

.mc-hero__content {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  width: 100%;
  margin-top: -2vh;
}

.mc-hero__brand {
  margin: 0 0 1.15rem;
  font-size: clamp(2.75rem, 7.5vw, 5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.mc-hero__tag {
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.6vw, 1.125rem);
  font-weight: 400;
  line-height: 1.55;
  max-width: 26rem;
}

.mc-page-hero {
  position: relative;
  padding: 5rem 0 3.5rem;
  text-align: center;
  overflow: hidden;
}

.mc-page-hero__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 750;
}

.mc-page-hero__image {
  margin-top: 2rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--mc-border);
}

.mc-page-hero__image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

/* ---------- Theatre / media ---------- */
.mc-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.mc-split--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.mc-split__text h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.mc-split__text p {
  color: var(--mc-muted);
  margin: 0 0 1rem;
}

.mc-meta-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.mc-meta-list li {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--mc-border);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.mc-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mc-gallery img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--mc-border);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.mc-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.mc-video {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--mc-border);
  background: #000;
}

.mc-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- About tabs ---------- */
.mc-tabs {
  max-width: 900px;
  margin: 0 auto;
}

.mc-tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mc-tabs__btn {
  appearance: none;
  border: 1px solid var(--mc-border);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  padding: 0.65rem 1.15rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.mc-tabs__btn.is-active,
.mc-tabs__btn:hover {
  color: #fff;
  border-color: rgba(226, 176, 38, 0.45);
  background: rgba(226, 176, 38, 0.18);
}

.mc-tabs__panel {
  display: none;
  padding: 1.75rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--mc-border);
  color: var(--mc-muted);
}

.mc-tabs__panel.is-active {
  display: block;
}

.mc-tabs__panel h3 {
  margin: 0 0 0.75rem;
  color: #fff;
}

/* ---------- Contact ---------- */
.mc-contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.mc-form {
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--mc-border);
}

.mc-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.mc-form input,
.mc-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--mc-border);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
}

.mc-form input:focus,
.mc-form textarea:focus {
  outline: 2px solid rgba(226, 176, 38, 0.45);
  border-color: transparent;
}

.mc-form textarea {
  min-height: 140px;
  resize: vertical;
}

.mc-contact-aside {
  display: grid;
  gap: 1.25rem;
}

.mc-contact-card {
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--mc-border);
}

.mc-contact-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.mc-contact-card p {
  margin: 0.25rem 0;
  color: var(--mc-muted);
}

.mc-map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--mc-border);
  min-height: 280px;
}

.mc-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

/* Contact Form 7 overrides */
.wpcf7 form {
  display: grid;
  gap: 1rem;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--mc-border);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-family: inherit;
}

.wpcf7 input[type="submit"] {
  appearance: none;
  display: inline-flex;
  padding: 0.9rem 1.6rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, rgba(226, 176, 38, 0.5), rgba(157, 67, 12, 0.5));
  color: #fff;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

/* ---------- Footer ---------- */
.mc-footer {
  margin-top: 2rem;
  padding: 4.5rem 0 0;
  background: rgba(33, 19, 17, 0.55);
  border-top: 1px solid var(--mc-border);
}

.mc-footer__grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2.5rem;
}

.mc-footer__logo img {
  height: 56px;
  width: auto;
  margin-bottom: 1.25rem;
}

.mc-footer__copy {
  color: var(--mc-muted);
  max-width: 36rem;
  margin: 0 0 1.75rem;
  font-size: 0.95rem;
}

.mc-footer__heading {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.mc-footer__contact a {
  color: #fff;
  font-weight: 500;
}

.mc-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.mc-footer-menu a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

.mc-footer-menu a:hover {
  color: var(--mc-gold);
}

.mc-footer__bar {
  border-top: 1px solid var(--mc-border);
  padding: 1.35rem 0;
  text-align: center;
}

.mc-footer__bar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
}

.mc-cta-band {
  text-align: center;
  padding: 4rem 0;
}

.mc-cta-band p {
  color: var(--mc-muted);
  max-width: 40rem;
  margin: 0 auto 1.5rem;
}

/* ---------- Generic page ---------- */
.mc-content {
  padding: 4rem 0;
}

.mc-content .entry-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.mc-content .entry-body {
  color: var(--mc-muted);
  max-width: 48rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .mc-split,
  .mc-split--reverse,
  .mc-contact-grid,
  .mc-footer__grid,
  .mc-videos {
    grid-template-columns: 1fr;
  }

  .mc-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .mc-section {
    padding: 3.5rem 0;
  }

  .mc-hero {
    min-height: calc(100svh - var(--mc-header-h));
    align-items: center;
    padding: 2rem 0 3.5rem;
  }

  .mc-hero__content {
    margin-top: 0;
    max-width: 100%;
  }

  .mc-hero__brand {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

  .mc-hero__tag {
    max-width: 22rem;
    margin-bottom: 1.75rem;
  }

  .mc-footer__links {
    padding-left: 0;
    border-left: none;
  }
}

@media (max-width: 600px) {
  .mc-container {
    width: min(100% - 1.5rem, var(--mc-container));
  }

  .mc-gallery {
    grid-template-columns: 1fr;
  }

  .mc-btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .mc-btn {
    width: 100%;
  }
}
