/* ── Hero + Orb ── */
.hero-section,
#home.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
  margin: 0 !important;
  padding: 0 !important;
}

#orb-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: auto;
}

#orb-bg canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 90%;
  max-width: 480px;
  pointer-events: none;
}

.hero-center a {
  pointer-events: auto;
}

.hero-logo {
  width: 280px;
  max-width: 72vw;
  height: auto;
  margin: 0 0 20px;
  display: block;
}

.hero-tagline {
  margin: 0 0 32px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.hero-phone {
  display: inline-block;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 13px 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s, border-color 0.2s;
}

.hero-phone:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}

/* ── Custom header ── */
.sh-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 40px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.sh-header--scrolled {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sh-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  height: 72px;
}

.sh-logo {
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  opacity: 0.95;
  transition: opacity 0.2s;
}

.sh-logo:hover {
  opacity: 1;
}

.sh-logo img {
  display: block;
  width: 108px;
  height: auto;
}

.sh-nav {
  grid-column: 2;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.sh-nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sh-nav-group {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.sh-nav-group a {
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  white-space: nowrap;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.sh-nav-group a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.sh-nav-group a.is-active {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.sh-nav-halls a {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 13px;
}

.sh-nav-cta {
  color: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 999px !important;
  padding: 6px 16px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.sh-nav-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
}

.sh-nav-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  list-style: none;
}

.sh-header-phone {
  grid-column: 3;
  justify-self: end;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.sh-header-phone:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.sh-nav-toggle {
  display: none;
  grid-column: 3;
  justify-self: end;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
}

.sh-nav-toggle span {
  display: block;
  height: 1.5px;
  background: #ffffff;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.sh-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.sh-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.sh-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 1100px) {
  .sh-nav-group {
    gap: 16px;
  }

  .sh-nav-halls {
    display: none;
  }

  .sh-nav-divider {
    display: none;
  }
}

@media (max-width: 900px) {
  .sh-header {
    padding: 0 20px;
  }

  .sh-header-inner {
    grid-template-columns: 1fr auto;
    height: 64px;
  }

  .sh-logo img {
    width: 90px;
  }

  .sh-header-phone {
    display: none;
  }

  .sh-nav {
    display: none;
    grid-column: 1 / -1;
  }

  .sh-nav-toggle {
    display: flex;
    grid-column: 2;
  }

  /* Mobile overlay menu */
  .sh-nav.is-open {
    display: flex;
    position: fixed;
    inset: 64px 0 0;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 32px 24px;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 199;
  }

  .sh-nav.is-open .sh-nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
  }

  .sh-nav.is-open .sh-nav-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }

  .sh-nav.is-open .sh-nav-halls {
    display: flex;
  }

  .sh-nav.is-open .sh-nav-divider {
    display: block;
    width: 100%;
    height: 1px;
  }

  .sh-nav.is-open .sh-nav-group a {
    display: block;
    width: 100%;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: none;
    text-transform: none;
    letter-spacing: 0.02em;
  }

  .sh-nav.is-open .sh-nav-cta {
    display: inline-block;
    width: auto;
    margin-top: 8px;
  }

  .sh-nav.is-open .sh-nav-group a.is-active {
    color: #fff;
  }
}

@media (max-width: 767px) {
  .hero-logo {
    width: 220px;
    margin-bottom: 14px;
  }

  .hero-tagline {
    font-size: 15px;
    margin-bottom: 24px;
  }
}

body.sh-menu-open {
  overflow: hidden;
}

/* Inner pages — hide old WP header, offset content */
body.has-site-header {
  padding-top: 72px;
}

body.has-site-header #masthead,
body.has-site-header .elementor-location-header {
  display: none !important;
}

body.has-site-header .page-preloader-cover {
  top: 72px;
}
