


@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


/* Compiled from LESS to plain CSS */

:root {
  /* Values previously defined as LESS variables */
  --hamburger-menu-size: 36px;
  --hamburger-menu-border-radius: 0.12em;
  --hamburger-menu-bg-color: rgba(251, 108, 27, 0.85);
  --hamburger-menu-line-height: 2px;
  --hover-line-height: 2px;
  --main-color: #FEFEFE;
  --hover-color: #e6e6e6; /* darken(#FEFEFE, 10%) approx */
  --content-bg-color: rgba(38, 77, 183, 0.97);
  --anim-duration: 0.4s;
    --orange: #FB6C1B;
    --magenta: #FF54D1;
    --purple: #795EFF;
    --dark-blue: #4584FF;
    --mid-blue: #45B1FF;
    --light-blue: #30DAFF;
}

* {
  box-sizing: border-box;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}

a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}

h1 {
  font-weight: 100;
  font-size: 3em;
  text-align: center;
    text-transform: uppercase;
}

/* Outer wrapper */
.outer-menu {
  position: absolute; /* inside hero so it scrolls with content */
  top: 8px;
  right: 16px;
  z-index: 5;
}

/* Hidden checkbox toggle */
.outer-menu .checkbox-toggle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10002;
  cursor: pointer;
  width: var(--hamburger-menu-size);
  height: var(--hamburger-menu-size);
  opacity: 0;
}

/* When checked, animate the hamburger into an X */
.outer-menu .checkbox-toggle:checked + .hamburger > div {
  transform: rotate(135deg);
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:before,
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  opacity: 0;
}

/* When checked, show the radial menu */
.outer-menu .checkbox-toggle:checked ~ .menu {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div {
  transform: scale(1);
  -webkit-transform: scale(1);
  transition-duration: 0.75s;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div > div {
  opacity: 1;
  transition: opacity 0.4s ease 0.4s;
}

/* Hover effects on the hamburger button */
.outer-menu .checkbox-toggle:hover + .hamburger {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}
.outer-menu .checkbox-toggle:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}

/* Hamburger button */
.outer-menu .hamburger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: var(--hamburger-menu-size);
  height: var(--hamburger-menu-size);
  padding: 0;
  background: #FB6C1B; /* solid orange to match visual */
  border-radius: 50%;
  cursor: pointer;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.outer-menu .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: var(--hamburger-menu-line-height);
  background: var(--main-color);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer-menu .hamburger > div:before,
.outer-menu .hamburger > div:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: calc(var(--hamburger-menu-size) / -6);
  left: 0;
  width: 100%;
  height: var(--hamburger-menu-line-height);
  background: inherit;
  transition: all 0.4s ease;
}

.outer-menu .hamburger > div:after {
  top: calc(var(--hamburger-menu-size) / 6);
}

/* Fullscreen radial menu overlay */
.outer-menu .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  backface-visibility: hidden;
  outline: 1px solid transparent;
  display: flex; /* keep mounted so radial scale can animate */
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.outer-menu .menu > div {
  width: 200vw;
  height: 200vw;
  color: var(--main-color);
  background: var(--content-bg-color);
  border-radius: 50%;
  flex: none;
  transform: scale(0);
  /*-webkit-transform: scale(0);*/
  will-change: transform;
  transition: all .4s ease;
  backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer-menu .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* iOS smooth scrolling to prevent scroll stalls in overlay */
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer-menu .menu > div > div > ul {
  list-style: none;
  padding: 0 1em;
  margin: 0;
  display: block;
  max-height: 100vh;
}

.outer-menu .menu > div > div > ul > li {
  padding: 0;
  margin: 1em;
  font-size: 24px;
  display: block;
}

.outer-menu .menu > div > div > ul > li > a {
  position: relative;
  display: inline;
  cursor: pointer;
  transition: color 0.4s ease;
}

.outer-menu .menu > div > div > ul > li > a:hover {
  color: var(--hover-color);
}

.outer-menu .menu > div > div > ul > li > a:hover:after {
  width: 100%;
}

.outer-menu .menu > div > div > ul > li > a:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -0.15em;
  left: 0;
  width: 0;
  height: var(--hover-line-height);
  background: var(--hover-color);
  transition: width 0.4s ease;
}
.hero{
  position: relative;
  min-height: 100vh;
  min-height: 100svh; /* modern mobile viewport units */
  width: 100%;
  background: url('/img/layout/video-placeholder.jpg') center center/cover no-repeat;
  display: flex;
  flex-direction: column;
}

.hero-about-us { background: url('/img/layout/intro-image-about-us.jpg') center center/cover no-repeat; }
.hero-our-music { background: url('/img/layout/intro-image-our-music.jpg') center center/cover no-repeat; }
.hero-faqs { background: url('/img/layout/intro-image-faqs.jpg') center center/cover no-repeat; }
.hero-packages { background: url('/img/layout/intro-image-packages.jpg') center center/cover no-repeat; }
.hero-vocalists { background: url('/img/layout/intro-image-vocalists.jpg') center center/cover no-repeat; }
.hero-contact { background: url('/img/layout/intro-image-contact.jpg') center center/cover no-repeat; }

.hero:before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 25%, rgba(0,0,0,0) 60%);
  pointer-events: none;
}
.hero:after{
  content: '';
  position: absolute;
  left:0;right:0;bottom:0;height:35vh; /* fade height */
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 80%, rgba(0,0,0,1) 100%);
  pointer-events: none;
}
.hero__top{
  position: relative;
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 24px 24px 0 24px;
  z-index: 6;
}
.brand-logo{
  height: 72px;
  width: auto;
    z-index: 20;
}
.hero__right{
  display:flex;
  align-items:center;
  gap: 16px;
}
.contact-phone{
  position:absolute;
  top: 10px;
  right: calc(16px + var(--hamburger-menu-size) + 12px); /* gap to the right button */
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  z-index:7;
  white-space: nowrap;
    font-weight: 400;
}
/* Color strip at the very bottom */
.hero .color-strip{
  position: absolute;
  left:0;right:0;bottom:0;
  padding: 0; /* sit flush on the bottom edge */
  z-index: 1;
}
/* Base strip styles (reusable) */
.color-strip__row{display:flex;gap:5px}
.color-strip__cell{flex:1;height:15px;border-radius:0}
.color-strip__cell--orange{background: var(--orange)}
.color-strip__cell--magenta{background: var(--magenta)}
.color-strip__cell--purple{background: var(--purple)}
.color-strip__cell--dark-blue{background: var(--dark-blue)}
.color-strip__cell--mid-blue{background: var(--mid-blue)}
.color-strip__cell--light-blue{background: var(--light-blue)}
/* Inline variant for use inside normal flow */
.color-strip--inline { position: relative; z-index: 1; }
.color-strip--inline .color-strip__row { gap: 5px; }
.color-strip--tight .color-strip__row { gap: 2px; }
.color-strip--loose .color-strip__row { gap: 8px; }
.color-strip--tall .color-strip__cell { height: 20px; }
.color-strip--short .color-strip__cell { height: 10px; }

/* Ensure the hamburger aligns on right within hero */
.outer-menu{right:20px}

/* ==============================
   Background video + sound toggle
   (moved from index.php inline <style> lines 40–71)
   ============================== */
/* Full-bleed background video inside .hero */
.hero__bg{
  position:absolute; inset:0; overflow:hidden; z-index:1; /* ensure above .hero background image */
}
.hero__bg video{
  position:absolute; top:0; left:0; width:100%; height:100%;
  object-fit:cover; object-position:center;
  filter: brightness(0.7) saturate(1.1);
}
/* Ensure existing content is above video */
.hero > *:not(.hero__bg){ position: relative; /*z-index: 2;*/ }

/* When video is ready, drop the static hero background image */
.hero.hero--video-active{ background: none !important; min-height:100vh; min-height:100svh; height:100vh; height:100svh; }
.hero.hero--video-active:before,
.hero.hero--video-active:after{ background: none !important; }

/* Remove any top spacer so the hero truly fills the viewport */
#header-spacer{ display:none; }

/* Sound toggle button */
.hero__sound-toggle{
  position:absolute; left:18px !important; bottom:22px !important; top:auto; right:auto; z-index:8;
  display:inline-flex; align-items:center; justify-content:center;
  width:44px; height:44px;
  background: rgba(0,0,0,0.55); color:#fff; border:1px solid rgba(255,255,255,0.35);
  border-radius: 999px; padding:0; font-size:18px; line-height:1; cursor:pointer;
  backdrop-filter: blur(2px);
}
.hero__sound-toggle:hover{ background: rgba(0,0,0,0.7); }
.hero__sound-toggle .icon{ font-size:18px; width:1.25em; text-align:center; }
@media (max-width: 576px){ .hero__sound-toggle{ width:42px; height:42px; font-size:16px; } }

@media (max-width: 576px){
  .brand-logo{height:56px}
  .contact-phone{font-size:18px}
}

/* Large screens: precise logo placement and size */
@media (min-width: 992px){
  .brand-logo{
    position: absolute;
    top: 53px;
    left: 76px;
    width: 351px;
    height: auto;
  }
  .hero__top{
    padding-top: 20px; /* keep space for right controls while logo is absolutely positioned */
  }
  /* Large-screen hamburger placement and size (from design specs) */
  .outer-menu{ top:55px; right:80px; }
  .outer-menu .hamburger{ 
    width:85px;
    height:78px; 
    background:var(--orange);
    border:3px solid #FFFFFF; 
    border-radius:6px 0 0 6px;
      border-right: none;
    box-shadow:none; 
  }
  .outer-menu .checkbox-toggle{ width:110px; height:78px; }
  /* Center the 3 bars at 32x28 area */
  .outer-menu .hamburger > div{
    width:32px; 
    height:4px; 
    background:#FFFFFF; 
  }
  .outer-menu .hamburger > div:before{ top:-12px; height:4px; }
  .outer-menu .hamburger > div:after{ top:12px; height:4px; }
  /* Phone number exact desktop styling */
  .contact-phone{
    top:60px;
    right: 130px;
    width:252px; 
    height:46px; 
    font-size:38px;
    line-height:71px; 
    text-align:right; 
    letter-spacing:0; 
    text-shadow:0 4px 6px rgba(0,0,0,0.51);
      z-index: 1;
  }
}

/* Global overflow safety and body reset */
html, body { overflow-x: hidden; }
body { margin: 0; background-color: #000; }

/* Hero content text and actions */
.hero__content {
    position:relative;
    z-index:1;
    margin-top:auto;
    margin-bottom:130px;
    padding:0 24px;
    color:#fff;
    max-width:min(1800px,90%);
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    margin-left:auto;
    margin-right:auto
}

@media (max-width: 767.98px){
    .hero__content {
        margin-bottom:60px;
    }
}

.hero__headline {
    font-weight:300;
    line-height:1.1;
    margin:0 0 8px;
    font-size:clamp(28px,5vw,60px);
}
.hero__subhead {
    font-weight:300;
    line-height:1.1;
    margin:0 0 40px;
    font-size:clamp(28px,5vw,60px);
    text-transform: uppercase;
}

.hero__actions {
    display:flex;
    gap:40px;
    flex-wrap:wrap;
    /* Push the actions toward the bottom within the flex column hero */
    margin-top: auto;
    /* Keep some breathing room from the very bottom (above the color strip) */
    margin-bottom: 0;
}

.btn-hero {
    background: var(--orange);
    color:#fff;
    padding:16px 26px;
    border:2px solid #fff;
    border-radius:6px;
    font-weight:400;
    display:inline-block;
    text-transform: uppercase;
}
.btn-hero:hover {
    background: #fff;
    color:#000;
}
.btn-hero--outline {
    background: var(--mid-blue);
    border:2px solid #fff;
    color:#fff
}

.btn-generic {
    background: var(--orange);
    color:#fff;
    font-size: 1rem;
    padding:12px 26px;
    border:2px solid #fff;
    border-radius:6px;
    font-weight:400;
    display:inline-block;
    text-transform: uppercase;
}
.btn-generic:hover {
    background: #fff;
    color:#000;
}
.btn-generic--outline {
    background: var(--mid-blue);
    border:2px solid #fff;
    color:#fff
}


/* Make small screens match perfected desktop layout */
@media (max-width: 991.98px){
  /* Logo placement and size same as desktop */
  .brand-logo{
    position: absolute;
    top: 30px;
    left: 28px;
    width: 351px;
    height: auto;
  }
  .hero__top{ padding-top: 20px; }

  /* Hamburger/menu box: same visuals as desktop */
  .outer-menu{ top:35px; right:90px; }
  .outer-menu .hamburger{
    width:90px;
    height:78px;
    background:var(--orange);
    border:3px solid #FFFFFF;
    border-radius:6px 0 0 6px;
    border-right:none;
    box-shadow:none;
  }
  .outer-menu .checkbox-toggle{ width:110px; height:78px; }
  .outer-menu .hamburger > div{ width:32px; height:4px; background:#FFFFFF; }
  .outer-menu .hamburger > div:before{ top:-12px; height:4px; }
  .outer-menu .hamburger > div:after{ top:12px; height:4px; }

  /* Phone number: same placement/size as desktop */
  .contact-phone{
      display: none;
    /*top:60px;*/
    /*right:130px;
    width:252px;
    height:46px;
    font-size:38px;
    line-height:71px;
    text-align:right;
    letter-spacing:0;
    text-shadow:0 4px 6px rgba(0,0,0,0.51);
    z-index:1;
    white-space:nowrap;*/
  }
}

/*@media (min-width: 992px){
    .contact-phone { display: none; }
}*/

/* Responsive scaling for logo on very small screens */
@media (max-width: 600px){
  .brand-logo{
    width: min(65vw, 280px);
    height: auto; /* ensure correct aspect ratio when scaling */
  }
  /* Stack hero buttons vertically and center them */
  .hero__actions{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
}


.home-intro { padding-top: 100px; background-image: url("/img/layout/dancing-silhouette.png"); background-repeat: no-repeat; background-position-x: center; background-position-y: bottom; background-size: 100%; color: #fff; }
.home-intro h2 { color: #fff; font-weight: 300; font-size: 55px; text-align: center; text-transform: uppercase; margin-bottom: 80px; }
.home-intro h2 span { color: var(--orange); }
.home-intro .home-intro-text { font-size: 22px; line-height: 37px; padding-right: 40px; padding-bottom: 100px; }
.home-intro .home-intro-text p { margin-bottom: 30px; font-weight: 300; }
.home-intro .home-intro-text p strong { font-weight: 900; }
.home-intro .home-intro-image { padding-top: 10px; }
.home-intro .home-intro-button { margin-top: 70px; }

.home-cards { padding-top: 100px; color: #fff; }
.home-cards h2 { color: #fff; font-weight: 300; font-size: 55px; text-align: center; text-transform: uppercase; margin-bottom: 80px; }
.home-cards h2 span { color: var(--orange); }


/* Home Cards – flip cards */
.home-cards{ padding:100px 0 40px 0; color:#fff}
.home-cards .container { max-width: 1500px; width: 100%; }
.home-cards h2{text-transform:uppercase; letter-spacing:.06em; margin-bottom:50px; text-align:center}
.home-cards__row{margin-top:10px}

.flip-card{position:relative; width:100%; aspect-ratio: 1 / 1; perspective:1100px; border-radius:14px; overflow:hidden; border:2px solid rgba(255,255,255,.35); box-shadow:0 0 0 1px rgba(255,255,255,.08) inset, 0 8px 28px rgba(0,0,0,.55); background:#0c0c0f}
.flip-card:focus{outline:2px solid var(--orange); outline-offset:2px}
.flip-card__inner{position:relative; width:100%; height:100%; transform-style:preserve-3d; transition:transform .7s cubic-bezier(.2,.65,.12,1)}
/* Hover/focus flip only on devices that support hover with a fine pointer (desktop) */
@media (hover: hover) and (pointer: fine){
  .flip-card:hover .flip-card__inner,
  .flip-card:focus .flip-card__inner{transform:rotateY(180deg)}
}
/* Programmatic/toggled state used on mobile via JS */
.flip-card.is-flipped .flip-card__inner{transform:rotateY(180deg)}

.flip-card__face{position:absolute; inset:0; display:flex; align-items:flex-end; justify-content:center; backface-visibility:hidden; -webkit-backface-visibility:hidden; border-radius:14px; overflow:hidden}
.flip-card__face--front{background-size:cover; background-position:center;}
.flip-card__vignette{position:absolute; inset:0; background:linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.6) 45%, rgba(0,0,0,0) 100%)}
.flip-card__title{position:relative; z-index:1; text-align:center; padding:22px 18px 10px; font-weight:400; font-size:clamp(16px, 2.2vw, 26px); line-height:1.0; letter-spacing:.5px; text-transform:uppercase; color:#fff; text-shadow:0 3px 10px rgba(0,0,0,.8)}
.flip-card__title-sub{font-weight:700; font-size:80%}

.flip-card__face--back{transform:rotateY(180deg); background:#0f0f13; display:flex; align-items:center; justify-content:center}
.flip-card__back-content { padding:24px; text-align:center; }
.flip-card__back-content p{margin:0; font-size:clamp(14px, 1.4vw, 19px); line-height:1.75; color:#e9eef7; font-weight: 300!important;}

.home-cards .home-cards-copy { padding: 60px 0; font-size: 28px; line-height: 39px; font-weight: 300; text-align: center; }
.home-cards .home-cards-copy span { font-weight: 700; color: var(--orange); text-transform: uppercase; }

@media (max-width: 992px) {
    .flip-card__back-content p{font-size:clamp(19px, 1.4vw, 19px); line-height:1.75; }
    .flip-card__title {padding:22px 18px 10px; font-size:clamp(30px, 2.2vw, 16px); }
    .flip-card { width:94%; margin-left: auto; margin-right: auto; }
    .home-cards h2{ font-size: 42px; margin-bottom: 20px; }
    .home-intro .home-intro-button { margin-top: 40px; }
    .home-intro .home-intro-image { width:94%; margin-left: auto; margin-right: auto; margin-bottom: 100px; }
    .home-intro .home-intro-text { font-size: 22px; line-height: 37px; padding-right: 0; padding-bottom: 50px; }
    .home-cards .home-cards-copy { padding: 40px 0 0 0; font-size: 22px; line-height: 34px; font-weight: 300; text-align: center; }
}

@media (max-width: 767.98px){
  .home-cards{padding:40px 0}
    .home-intro { padding-top: 50px; }
    .home-intro h2 { font-size: 44px; margin-bottom: 40px; text-align: left; }
}

@media (prefers-reduced-motion: reduce){
  .flip-card__inner{transition:none}
  .flip-card:hover .flip-card__inner,
  .flip-card:focus .flip-card__inner,
  .flip-card.is-flipped .flip-card__inner{transform:none}
}



/* ----- iOS Safari flip-card backface fix (prevents mirrored front text on back) ----- */
/* Add WebKit 3D props and reinforce backface hiding on key elements */
.flip-card{ -webkit-perspective:1100px; }
.flip-card__inner{ -webkit-transform-style:preserve-3d; }
.flip-card__face--front{ transform: rotateY(0deg); -webkit-transform: rotateY(0deg); }
.flip-card__face--back{ -webkit-transform: rotateY(180deg); }
.flip-card__face, .flip-card__title, .flip-card__vignette{ backface-visibility:hidden; -webkit-backface-visibility:hidden; }
/* Nudge the title onto its own layer to avoid iOS paint bleed */
.flip-card__title{ transform: translateZ(0.01px); -webkit-transform: translateZ(0.01px); }


/* =====================
   Home – Call to Action
   ===================== */
.home-call-to-action{ position:relative; padding: 90px 0; color:#fff; }
.push-up-30 { margin-top: -30px;}
.home-call-to-action .container{ position:relative; z-index:1; }
/* Orange slab with slanted top & bottom */
.home-cta__bg{ position:absolute; inset:0; background: var(--orange); clip-path: polygon(0 9%, 100% 0%, 100% 91%, 0% 100%); z-index:0; }

.home-cta__content{ max-width: 1200px; margin: 0 auto; }
.home-cta__headline{ font-weight:300; text-transform:uppercase; letter-spacing:.02em; font-size: clamp(28px, 5vw, 55px); margin:0 0 16px; }
.home-cta__sub{ color:#0f0f13; font-size: clamp(16px, 1.6vw, 22px); margin:0 0 28px; }
.home-cta__sub strong{ color:#000; font-weight:900; }

.home-cta__actions{ display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap; }
.btn-cta{ display:inline-flex; align-items:center; justify-content:center; padding: 14px 26px; border-radius:10px; border:2px solid #fff; font-weight:700; letter-spacing:.02em; text-transform:uppercase; color:#fff; transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease; box-shadow: 0 6px 16px rgba(0,0,0,.25); }
.btn-cta:focus{ outline:2px solid #fff; outline-offset:2px; }
.btn-cta:hover{ transform: translateY(-1px); }
.btn-cta--dark{ background:#1b1b1f; }
.btn-cta--dark:hover{ box-shadow: 0 10px 22px rgba(0,0,0,.35); }
.btn-cta--blue{ background: var(--mid-blue); }
.btn-cta--blue:hover{ box-shadow: 0 10px 22px rgba(0,0,0,.35); }

@media (max-width: 991.98px){
  .home-call-to-action{ padding:70px 0; }
  .home-cta__bg{ clip-path: none; }
    .home-cta__headline{ font-size: clamp(38px, 5vw, 55px); margin:0 0 16px; }
}
@media (max-width: 575.98px){
  .home-call-to-action{ padding:40px 0; }
  .home-cta__bg{ clip-path: none; }
  .home-cta__actions{ flex-direction:column; gap:12px; }
  .btn-cta{ width: 100%; max-width: 320px; }
    .home-cta__sub{ font-size: clamp(18px, 1.6vw, 22px); }
}


/* =====================
   Global Button Unification — reuse CTA styling for all buttons
   ===================== */
/* Apply CTA look-and-feel to hero and generic buttons without changing markup */
.btn-hero,
.btn-generic{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 26px;
  border-radius:10px;
  border:2px solid #fff;
  font-weight:700;
  letter-spacing:.02em;
  text-transform:uppercase;
  color:#fff;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  background:#1b1b1f; /* default filled style matches .btn-cta--dark */
}
.btn-hero:focus,
.btn-generic:focus{ outline:2px solid #fff; outline-offset:2px; }
.btn-hero:hover,
.btn-generic:hover{ transform: translateY(-1px); box-shadow: 0 10px 22px rgba(0,0,0,.35); }

/* Outline variants to mirror CTA outline aesthetic */
.btn-hero--outline,
.btn-generic--outline{
  background: transparent;
  color:#fff;
  border:2px solid #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.btn-hero--outline:hover,
.btn-generic--outline:hover{ box-shadow: 0 10px 22px rgba(0,0,0,.35); }

.blue { background-color: var(--dark-blue); }
.orange { background-color: var(--orange); }

/* Keep CTA mobile full-width behavior scoped only to CTA buttons (no changes needed here) */


/* =====================
   Home – Infill (full-width image with top/bottom vignettes)
   ===================== */
.home-infill{
  position:relative;
  color:#fff;
  /* Layered backgrounds: top vignette, bottom vignette, image */
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,.95) 0%, rgba(0,0,0,.65) 45%, rgba(0,0,0,0) 100%),
    linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.65) 45%, rgba(0,0,0,0) 100%),
    url('/img/home/fullwidth-home-infil-image.jpg');
  background-position: top, bottom, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 100% 28%, 100% 28%, cover;
  padding:110px 0;
  display:flex;
  align-items:flex-end; /* anchor content to bottom without absolute positioning */
  contain: paint; /* isolate paints to reduce iOS compositing issues */
}
.home-infill .container{ position:relative; z-index:2; }

/* Content */
.home-infill__content{ position:relative; z-index:2; max-width:1000px; margin-left: 120px; }
.home-infill__headline{ font-weight:300; text-transform:uppercase; letter-spacing:.02em; font-size: clamp(26px, 4.4vw, 58px); margin: 0 0 14px; }
.home-infill__copy{ font-weight:400; font-size: clamp(16px, 1.6vw, 21px); line-height: 1.9; margin: 0 0 14px; color: #e9eef7; }
.home-infill__tagline{ font-size: clamp(18px, 1.8vw, 30px); font-weight:900; color: var(--mid-blue); margin: 18px 0 0; }

/* Mobile image is hidden on desktop; used only for the stacked mobile layout */
.home-infill__image{ display:none; }

/* Responsive: on mobile, remove background + vignettes and stack image then text */
@media (max-width: 767.98px){
  .home-infill{ background:none; padding:0 0 32px; display:block; }
  .home-infill__image{ display:block; }
  .home-infill__image img{ width:100%; height:auto; display:block; }
  .home-infill__content{ padding:18px 0 0; margin-left: 0; }
}

/* Home Infill tweaks: ensure full-width background shows more image area on larger screens */
@media (min-width: 768px){
  .home-infill{ min-height: clamp(520px, 70vh, 900px); }
}

/* Position home-infill text near bottom on full-size screens without absolute positioning */
@media (min-width: 1200px){
  /* Place text block close to the bottom on full-size screens */
  .home-infill{ padding-bottom: 10px; }
}

@media (max-width: 767.8px){
  .home-infill {  }
    .home-infill__headline{ font-size: clamp(36px, 4.4vw, 58px); margin: 10px 20px 14px 20px; }
    .home-infill__copy{ font-size: clamp(17px, 1.6vw, 21px); margin: 0 20px }
    .home-infill__tagline{ font-size: clamp(22px, 1.8vw, 30px);  margin: 20px }
}


/* ---- iOS scroll stall mitigation: simplify mobile menu overlay and hint touch behavior ---- */
html, body{ touch-action: pan-y; }
.outer-menu .hamburger, .outer-menu .checkbox-toggle{ touch-action: manipulation; }


/* Reduce motion: respect user preference */
@media (prefers-reduced-motion: reduce){
  .outer-menu .menu{ transition: none; }
  .outer-menu .menu > div{ transition: none; }
  .outer-menu .checkbox-toggle:checked ~ .menu > div > div{ transition: none; }
}

/* =====================
   Home – Testimonials Slider
   ===================== */
.home-testimonials{ padding: 90px 0; color:#fff; background: #000; }
.home-testimonials__headline{ color:#fff; font-weight:300; font-size:55px; text-align:center; text-transform:uppercase; margin:0 0 40px; }
.home-testimonials__headline span{ color: var(--orange); }

/* Slider wrap positions left/right arrows visually outside cards */
.home-testimonials__slider-wrap{ position:relative; max-width: 1700px; margin: 0 auto; }
.testimonials-nav{ position:absolute; top:50%; transform:translateY(-50%); background:transparent; color:#cfd8ea; border:none; font-size:48px; line-height:1; padding:8px 14px; cursor:pointer; z-index:3; transition: color .2s ease, transform .2s ease; }
.testimonials-nav:hover{ color:#fff; transform:translateY(-50%) scale(1.04); }
.testimonials-prev{ left:10px; }
.testimonials-next{ right:10px; }

/* Card styles */
.testimonial-card{ background:#22262d; border-radius:12px; border:1px solid rgba(255,255,255,.18); box-shadow:0 8px 28px rgba(0,0,0,.45); padding:22px 26px; min-height: 220px; display:flex; flex-direction:column; justify-content:flex-start; }
.testimonial-card__stars{ color:#ffbf00; letter-spacing:2px; font-size:26px; margin-bottom:12px; }
.testimonial-card__excerpt { color:#e9eef7; font-size:18px; line-height:1.7; margin: 0 0 10px; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient: vertical; overflow:hidden; text-overflow:ellipsis; }
.testimonial-card__more{ color: var(--dark-blue) !important; font-weight:700; text-transform:uppercase; font-size:14px; letter-spacing:.04em; margin-top:auto; }
.testimonial-card__more:hover{ text-decoration:underline; }
.testimonial-card__meta{ margin-top:12px; color:#cfd8ea; font-size:16px; }
.testimonial-card__name{ font-weight:900; }
.testimonial-card__role{ font-style:italic; opacity:.9; }

/* Swiper sizing */
.testimonials-swiper{ padding: 8px 6px 18px; }
.testimonials-swiper .swiper-slide{ height: auto; }

@media (max-width: 1199.98px){
  .home-testimonials__headline{ font-size:44px; }
}
@media (max-width: 991.98px){
  .home-testimonials{ padding:70px 0; }
  .home-testimonials__headline{ font-size:38px; }
}
@media (max-width: 575.98px){
  .home-testimonials{ padding:50px 0; }
  .testimonials-nav{ font-size:38px; }
}

/* Hide testimonials chevrons on mobile */
@media (max-width: 767.98px){
  .testimonials-nav{ display:none; }
}

/* --- No-JS / Swiper-not-loaded fallback: show a responsive grid --- */
.no-swiper .home-testimonials__slider-wrap { max-width: 1700px; margin: 0 auto; }
.no-swiper .testimonials-swiper { padding: 0; }
.no-swiper .testimonials-swiper .swiper-wrapper{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.no-swiper .testimonials-swiper .swiper-slide{ width:auto; height:auto; }
.no-swiper .testimonials-nav{ display:none; }
@media (max-width: 1199.98px){
  .no-swiper .testimonials-swiper .swiper-wrapper{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 991.98px){
  .no-swiper .testimonials-swiper .swiper-wrapper{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767.98px){
  .no-swiper .testimonials-swiper .swiper-wrapper{ grid-template-columns: 1fr; }
}


/* Testimonials – Expandable excerpts (with smooth slide animation) */
/* Base: clamped to 3 lines, hidden overflow, animate max-height for smooth open/close */
.testimonial-card__excerpt{
  transition: max-height 320ms ease;
}
/* When a testimonial card is expanded, remove the 3-line clamp and show full copy */
.testimonial-card--expanded .testimonial-card__excerpt{
  -webkit-line-clamp: unset;
  display: block;
  /* Keep overflow hidden to avoid content spilling during height animation */
  overflow: hidden;
}
/* Optional: emphasize the toggle state via underline */
.testimonial-card__more[aria-expanded="true"]{ text-decoration: underline; }

@media (prefers-reduced-motion: reduce){
  .testimonial-card__excerpt{ transition: none; }
}


/* =====================
   Home – Company Logos Scroller
   ===================== */
.home-logos{ position:relative; padding: 50px 0; background:#000; }
.home-logos__header{ max-width: 1700px; margin: 0 auto 16px; padding: 0 24px; }
.home-logos__headline{ color:#fff; font-weight:300; text-transform:uppercase; letter-spacing:.04em; text-align:center; margin:0 0 30px 0; font-size: clamp(22px, 3.8vw, 44px); }
/* Full-bleed wrapper, constrain inner height only via images */
.logos-swiper{ width:100%; }
.logos-swiper .swiper-wrapper{ align-items:center; }
 .home-logos__item{ display:flex; align-items:center; justify-content:center; padding: 16px 28px; }
.home-logos__item img{ max-height: 64px; width:auto; height:auto; filter: none; opacity:1; }

/* Spacing adjustments at breakpoints */
@media (min-width: 768px){ .home-logos{ padding: 60px 0; } .home-logos__item img{ max-height: 96px; } }
@media (min-width: 1200px){ .home-logos{ padding: 70px 0; } .home-logos__item img{ max-height: 160px; } }

/* No-JS / no-Swiper fallback: show responsive grid; 2 logos on mobile */
.no-swiper .logos-swiper .swiper-wrapper{ display:grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 10px 24px; }
@media (max-width: 1199.98px){ .no-swiper .logos-swiper .swiper-wrapper{ grid-template-columns: repeat(4, minmax(0,1fr)); } }
@media (max-width: 991.98px){ .no-swiper .logos-swiper .swiper-wrapper{ grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 767.98px){ .no-swiper .logos-swiper .swiper-wrapper{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
.no-swiper .logos-swiper .swiper-slide{ width:auto; height:auto; }


/* Mobile tweak: enlarge logos by 1.75x on small screens */
@media (max-width: 767.98px){
  .home-logos__item img{ max-height: 112px; }
}

/* =====================
   Home – Signup Rotator + Form
   ===================== */
.home-signup{ background:#000; color:#fff; padding: 90px 0; }
.home-signup .container{ max-width: 1700px; }
.home-signup__rotator{ display:flex; flex-direction:column; align-items:center; gap:28px; }
.home-signup__icon{ flex:0 0 auto; }
.home-signup__slides{ position:relative; min-height: 120px; display:flex; align-items:center; justify-content:center; text-align:center; }
.home-signup__slide{ position:absolute; left:0; top:0; right:0; opacity:0; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease; font-weight:300; text-transform:uppercase; letter-spacing:.02em; font-size: clamp(28px, 3.6vw, 56px); line-height:1.25; }
.home-signup__slide.is-active{ opacity:1; transform:translateY(0); position:relative; }

/* Right card */
.home-signup__card{ background:#32363b; border:2px solid var(--orange); border-radius:12px; padding:26px 28px; box-shadow: 0 10px 30px rgba(0,0,0,.45); }
.home-signup__headline{ color: var(--orange); font-weight:300; text-transform:uppercase; letter-spacing:.02em; font-size: clamp(26px, 3.2vw, 46px); margin:0 0 10px; }
.home-signup__sub{ color:#e2e6ec; margin:0 0 18px; font-size: clamp(16px, 1.6vw, 20px); }
.home-signup__input{ height:58px; border-radius:10px; border:2px solid #fff; background:#fff; color:#111; font-size:18px; padding: 12px 16px; }
.home-signup__input::placeholder{ color:#777; }
.home-signup__form .btn-cta{ margin-top:4px; }

/* Layout: stack on mobile */
@media (max-width: 991.98px){
  .home-signup{ padding:70px 0; }
}
@media (max-width: 767.98px){
  .home-signup__rotator{ flex-direction:column; align-items:center; gap:18px; }
  .home-signup__icon svg{ width:90px; height:90px; }
  .home-signup__slides{ min-height: 96px; justify-content:center; text-align:center; }
}

/* Reduced motion: keep first slide only */
@media (prefers-reduced-motion: reduce){
  .home-signup__slide{ transition:none; }
}



/* =====================
   Site Footer
   ===================== */
.site-footer{ background:#0b0c10; color:#cfd8ea; padding: 70px 0 32px; /*border-top: 2px solid rgba(255,255,255,0.08);*/ }
.site-footer .container{ max-width: 1700px; }

/* Brand block */
.footer__logo{ height: 110px; width:auto; display:block; margin: 0 0 14px; filter: drop-shadow(0 4px 16px rgba(0,0,0,.45)); }
.footer__tagline{ margin: 0 0 12px; color:#e9eef7; font-size: 16px; line-height:1.7; font-style: italic; }
.footer__contact{ margin: 0 0 12px; }
/* Ensure phone and email are left-aligned even when the column centers text */
.footer__links .footer__contact{ text-align:left !important; }
.footer__phone, .footer__email{ color:#fff; font-weight:700; font-size: 22px; }
.footer__phone:hover, .footer__email:hover{ color: var(--mid-blue); }
.footer__social{ display:flex; gap:14px; margin-top:8px; }
.footer__social-link{ display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; border-radius:50%; background:#1b1f26; color:#cfd8ea; transition: background .2s ease, color .2s ease, transform .2s ease; }
.footer__social-link:hover{ background: var(--mid-blue); color:#fff; transform: translateY(-1px); }

/* Links */
.footer__links{ color:#cfd8ea; }
.footer__heading{ color:#fff; font-weight:900; font-size:40px; text-transform:uppercase; letter-spacing:.06em; margin-top: 2px; margin-bottom: 2px; color: var(--orange); }
.footer-small { font-size: 18px; }
.footer__list{ list-style:none; padding:0; margin:0; }
.footer__list li{ margin: 6px 0; }
.footer__link{ color:#cfd8ea; text-decoration:none; }
.footer__link:hover{ color:#fff; text-decoration:underline; }

/* CTA */
.footer__cta-text{ margin: 0 0 24px; color:#e2e6ec; }
.footer__cta .btn-cta{ white-space:nowrap; }

/* Bottom row */
.footer__bottom{ margin-top: 36px; border-top:1px solid rgba(255,255,255,.1); padding-top: 16px; }
.footer__bottom-inner{ display:flex; align-items:center; justify-content:space-between; gap:16px; }
.footer__legal{ font-size: 14px; color:#9fb0c9; }
.footer__policies{ display:flex; gap:14px; list-style:none; padding:0; margin:0; }
.footer__policies a{ color:#9fb0c9; }
.footer__policies a:hover{ color:#fff; }

/* Responsive stacking and centering on mobile */
@media (max-width: 991.98px){
  .site-footer{ padding: 60px 0 28px; }
}
@media (max-width: 767.98px){
  .footer__brand, .footer__links, .footer__cta{ text-align:center !important; }
  .footer__social{ justify-content:center; }
  .footer__bottom-inner{ flex-direction:column; text-align:center; }
  /* Ensure phone and email block centers on mobile (override desktop left-align) */
  .footer__links .footer__contact{ text-align:center !important; }
  /* Center the footer logo image on mobile */
  .footer__logo{ margin: 0 auto 14px; }
}

/* =====================
   About – Image/Text Matrix
   ===================== */
.about-matrix{ width:100%; color:#fff; background:#0c0c0f; }
.about-matrix__row{ display:flex; flex-wrap:nowrap; align-items:stretch; justify-content:stretch; }
.about-matrix__row + .about-matrix__row{ border-top: 20px solid #0c0c0f; }
.about-matrix__text, .about-matrix__image{ flex: 0 0 50%; max-width:50%; }
.about-matrix__image{ position:relative; overflow:hidden; background:#000; }
.about-matrix__image img{ display:block; width:100%; height:100%; object-fit:cover; }
/* Make rows visually substantial on desktop */
@media (min-width: 992px){
  .about-matrix__row{ min-height: 520px; }
}
@media (max-width: 991.98px){
  .about-matrix__row{ flex-direction: column; }
  .about-matrix__text, .about-matrix__image{ flex: 0 0 auto; max-width:100%; }
}

/* Text block centered as a unit */
.about-matrix__text{ background:#0c0c0f; display:flex; align-items:center; justify-content:center; padding: 40px; }
.about-matrix__text-inner{ width:100%; max-width:720px; margin:0 auto; }
.about-matrix__title{ color:var(--orange); font-weight:300; font-size: clamp(28px, 4vw, 38px); text-transform:uppercase; margin:0 0 18px; letter-spacing:.02em; }
.about-matrix__copy{ color:#e9eef7; font-size: clamp(15px, 1.5vw, 18px); line-height: 1.8; margin:0; font-weight:300; padding-bottom: 18px; }

/* Reverse row on wide screens */
@media (min-width: 992px){
  .about-matrix__row--reverse .about-matrix__text{ order:2; }
  .about-matrix__row--reverse .about-matrix__image{ order:1; }
}

.faqs { margin-bottom: 100px; }
.faqs h2 { color: var(--orange); margin-top: 60px; font-weight: 300; }
.faqs .accordion{
    margin: 40px 0;
}
.faqs .accordion .accordion-item {
    border: none;
    margin-bottom: 20px;
    background: none;
}
.faqs .t-p{
    color: rgb(193 206 216);
    padding: 20px 30px 10px 30px;
}
/* Style the Bootstrap 5 accordion button to match the design */
.faqs .accordion .accordion-button {
    background: #333435;
    color: white;
    border-radius: 0px;
    /*font-family: 'Poppins';*/
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
    text-decoration: none;
    box-shadow: none;
    display: flex; /* keep Bootstrap's flex so the chevron can align right */
    align-items: center;
    width: 100%;
    text-align: left;
}
/* Keep appearance when expanded */
.faqs .accordion .accordion-button:not(.collapsed){
    background: #333435;
    color: #fff;
    box-shadow: none;
}
/* Remove default Bootstrap caret since we use our own icon */
.faqs .accordion .accordion-button::after{ display: none; }

.faqs .accordion .accordion-header {
    border-bottom: none;
    background: transparent;
    padding: 0px;
    margin: 2px;
}

.faqs .accordion .accordion-button {
    color: white;
    font-size: 20px;
    padding: 10px 0 10px 30px;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
}

.faqs .accordion .accordion-button i {
    margin-left: auto;
    margin-right: 20px; /* keep chevron ~30px from right edge */
    font-size: 30px;
    color: var(--orange);
    background-color: black;
    width: 60px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.faqs .accordion-button.collapsed i {
    transform: rotate(0deg);
}

.faqs .accordion-button i {
    transform: rotate(180deg);
    transition: 0.5s;
}


/* =====================
   Packages – Our Packages Cards
   ===================== */
.band-packages{ padding: 90px 0; color:#fff; }
.band-packages .container{ max-width: 1500px; width:100%; }
.packages__heading{ color:#fff; font-weight:300; font-size: clamp(28px, 5vw, 55px); text-align:center; text-transform:uppercase; margin: 0 0 40px; letter-spacing:.03em; }

.band-packages #one-repertoire { color: var(--dark-blue); text-align: center; font-weight: 700; font-size: 36px; padding-bottom: 10px; }
.band-packages .one-repertoire-text { text-align: center; font-size: 18px; padding: 0 100px; }
.band-packages .one-repertoire-text strong { color: var(--dark-blue); }

.package-card{ position:relative; background:#2f3033; border-radius:10px; box-shadow: 0 8px 28px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.06); border:2px solid rgba(255,255,255,.12); padding: 22px 22px 24px; height:auto; }
.package-card__header{ display:flex; gap:38px; align-items:center; flex-wrap: nowrap; margin-bottom: 17px; }
.package-card__title{ margin:0; color:#fff; font-weight:900; font-size: 36px; line-height:1.05; text-align: center; }

/* Badge (number + PIECE) */
.package-card__badge{ display:flex; flex-direction:column; align-items:center; justify-content:center; flex: 0 0 auto; gap: 6px; background: #000; color:#000; border-radius: 6px; }
.package-card__badge-number{ color:var(--orange); font-weight:900; font-size: 70px; line-height:1; border-radius:8px; width:92px; height:70px; display:flex; align-items:center; justify-content:center; box-shadow: 0 6px 16px rgba(0,0,0,.35); }
.package-card__badge-sub{ margin-top:-12px; background:#0c0c0f; color:#fff; font-weight:900; text-transform:uppercase; letter-spacing:.08em; font-size:17px; line-height:1; padding:8px 10px; border-radius:6px; box-shadow: 0 3px 8px rgba(0,0,0,.35); }

/* Subhead labels */
.package-card__sub{ color: var(--orange); font-weight:900; font-size: 18px; margin: 18px 0 6px; }
.package-card__body{ color:#d7dde6; font-size:16px; line-height:1.7; }
.package-card__body p{ margin:0 0 12px; }

/* Responsive tweaks */
@media (max-width: 991.98px){
  .band-packages{ padding: 60px 0; }
  .packages__row{ row-gap: 18px; }
  .package-card{ padding: 20px; }
  .package-card__header{ align-items:flex-start; }
    .band-packages .one-repertoire-text { padding: 0; }
}

@media (max-width: 575.98px){
  .package-card__badge-number{ width:94px; height:70px; font-size:70px; }
}


/* =====================
   Packages – What's Included
   ===================== */
.packages-included{ padding: 90px 0; color:#fff; }
.packages-included .container{ max-width: 1500px; width:100%; }
.packages-included .packages__heading{ color:#fff; font-weight:300; font-size: clamp(28px, 5vw, 55px); text-align:center; text-transform:uppercase; margin: 0 0 40px; letter-spacing:.03em; }
.packages-included__row{ align-items: stretch; }

/* Card panels */
.included-card{ background:#333435; border-radius:10px; box-shadow: 0 8px 28px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.06); border:2px solid rgba(255,255,255,.12); padding: 26px 26px 28px; height:auto; }
.included-card__title{ margin:0 0 4px; color:#fff; font-weight:900; font-size: clamp(24px, 3vw, 36px); line-height:1.1; text-align:center; }
.included-card__sub{ margin:0 0 18px; text-align:center; color:#c1ced8; font-style: italic; font-size: 17px; }

/* List styling */
.included-list{ padding:0; margin:0; color:#e9eef7; font-size:16px; line-height:1.8; text-align: center; }
.included-list p{ position:relative; padding: 6px 0; margin: 0; }
.included-list p + p{ border-top: 1px solid rgba(255,255,255,.06); }
.included-list strong{ color: var(--orange); font-weight: 900; }

@media (max-width: 991.98px){
  .packages-included{ padding: 60px 0; }
}

.vocalists{ padding: 80px 0; color:#fff; }
.vocalists .container{ max-width: 1500px; }
.vocalists__heading{ color:var(--orange); font-weight:300; font-size: clamp(28px, 5vw, 55px); text-align:center; text-transform:uppercase; margin: 0 0 40px; letter-spacing:.03em; }
.vocalists-intro { text-align: center; padding: 0 50px 50px 50px; font-size: 20px; line-height: 1.8; }
.vocalists__list{ display:flex; flex-direction:column; gap:28px; }

.vocalist-card{ display:flex; gap:24px; background:#333435; border-radius:10px; box-shadow: 0 8px 28px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.06); border:2px solid rgba(255,255,255,.12); padding: 25px; }
.vocalist-card__media{ flex: 0 0 400px; max-width: 400px; border-radius:8px; overflow:hidden; align-self:flex-start; }
.vocalist-card__media img{ display:block; width:100%; height:100%; object-fit:cover; }
.vocalist-card__body{ flex:1 1 auto; display:flex; flex-direction:column; min-width:0; }
.vocalist-card__header{ margin: 4px 0 8px; }
.vocalist-card__title{ margin:0 0 2px; color:var(--orange); font-weight:300; font-size: clamp(36px, 2.2vw, 40px); line-height:1.15; letter-spacing:.02em; text-transform: uppercase }
.vocalist-card__role{ margin:0; color:#c1ced8; font-style: italic; font-size: 20px; }

/* Collapsible text area */
.vocalist-card__text{ position:relative; color:#e9eef7; font-size:16px; line-height:1.75; overflow:hidden; max-height: var(--clamp-height, 300px); transition: max-height .45s ease; }
.vocalist-card__text p{ margin:0 0 12px; }
/* Fade at bottom when collapsed */
.vocalist-card__text:after{ content:""; position:absolute; left:0; right:0; bottom:0; height:64px; background: linear-gradient(to bottom, rgba(51,52,53,0) 0%, rgba(51,52,53,0.75) 60%, rgba(51,52,53,1) 100%); pointer-events:none; opacity:1; transition: opacity .25s ease; }
.vocalist-card--expanded .vocalist-card__text{ max-height: 9999px; }
.vocalist-card--expanded .vocalist-card__text:after{ opacity:0; }

.vocalist-card__toggle{ align-self:flex-start; margin-top: 10px; background: transparent; color: var(--mid-blue); font-weight: 900; letter-spacing:.04em; text-transform: uppercase; border: none; padding: 10px 0; cursor: pointer; }
.vocalist-card__toggle:focus{ outline:2px solid var(--orange); outline-offset:2px; }

@media (max-width: 1199.98px){
  .vocalist-card__media{ flex-basis: 280px; max-width: 280px; }
}
@media (max-width: 991.98px){
  .vocalist-card{ flex-direction:column; }
  .vocalist-card__media{ flex: 0 0 auto; max-width: 100%; }
}
@media (prefers-reduced-motion: reduce){
  .vocalist-card__text{ transition: none; }
}



/* =====================
   News & Views – Plain Hero (page-specific)
   ===================== */
.hero.hero--plain{
  /* Plain header for News & Views: not full screen, but with a clear header height */
  width: 100%;
  background: #000; /* remove background image */
  min-height: 140px; /* ensure visible header height */
  /*padding: 12px 0 16px;*/ /* breathing room above/below the top bar */
}
.hero.hero--plain:before,
.hero.hero--plain:after{ display:none; } /* remove vignette overlays */
.hero.hero--plain .hero__content{ display:none; } /* hide page title/subhead per design */
/* Let the color strip sit in normal flow just under the header */
.hero.hero--plain .color-strip{ position: static; margin-top: 0; }


/* =====================
   News & Views – News List
   ===================== */
.news-list{ padding: 60px 0 40px; color:#fff; }
.news-list .container{ max-width: 1500px; width:100%; }
.news-list__header{ margin: 20px 0 24px; }
.news-list__suptitle{ margin:0 0 4px; color:#c1ced8; font-weight:300; letter-spacing:.06em; text-transform:uppercase; font-size:44px; }
.news-list__title{ margin-bottom:50px; font-weight:300; text-transform:uppercase; letter-spacing:.03em; font-size: 44px; }
.news-list__title span{ color: var(--orange); font-weight:300; }

.news-card{ background:#333435; border-radius:6px; box-shadow: 0 8px 28px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.06); border:2px solid rgba(255,255,255,.12); overflow:hidden; height:100%; display:flex; flex-direction:column; padding: 25px; }
.news-card__media{ position:relative; display:block; line-height:0; }
.news-card__media img{ display:block; width:100%; height:auto; aspect-ratio: 4 / 3; object-fit:cover; }
.news-card__title{ margin-top: 10px; font-size: 26px; font-weight:300; letter-spacing:.02em; line-height:1.2; /*text-transform:uppercase;*/ color:#fff; }
.news-card__title a{ color: var(--orange); font-weight:300; }
.news-card__title a:hover{ color: #fff; }
.news-card__meta{ color:#c1ced8; font-size:13px; display:flex; align-items:center; gap:10px; }
.news-card__meta i{ color:#c1ced8; margin-right:6px; }
.news-card__by{ opacity:.9; }
.news-card__dot{ opacity:.6; }

@media (max-width: 991.98px){
  .news-list{ padding: 40px 0 20px; }
}


/* =====================
   News & Views – Article Detail
   ===================== */
.news-article{ padding: 100px 0 40px; color:#fff; }
.news-article h2 { color: var(--orange); font-weight: 700; }
.news-article h1 { color: var(--orange); text-transform: unset; }
.news-article .container{ max-width: 1500px; width:100%; }

/* Back link */
.article-back{ display:inline-flex; align-items:center; gap:8px; color:var(--orange)!important; font-size:20px; margin-bottom:16px; text-transform: uppercase; }
.article-back i{ color:#c1ced8; }
.article-back:hover{ color:#fff!important; }

/* Main article card */
.article-card{ background:#333435; border-radius:10px; box-shadow: 0 8px 28px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.06); border:2px solid rgba(255,255,255,.12); overflow:hidden; padding: 30px ; }
.article-card__media{ line-height:0; background:#000; }
.article-card__media img{ display:block; width:100%; height:auto; object-fit:cover; }
.article-card__header{ padding: 18px 22px 6px; }
.article-card__title{ margin: 0 0 6px; color: var(--orange); font-weight:300; letter-spacing:.02em; text-transform:uppercase; font-size: clamp(26px, 3.6vw, 42px); line-height:1.2; text-align: left; }
.article-card__meta{ color:#c1ced8; font-size:13px; display:flex; align-items:center; gap:10px; padding: 10px 0;  margin-bottom: 15px; }
.article-card__meta i{ color:#c1ced8; margin-right:6px; }
.article-card__dot{ opacity:.6; }

.article-card__body{ color:#b8b8b8; font-size:18px; line-height:1.85; padding: 20px 22px 24px; }
.article-card__body p{ margin: 0 0 14px; }

/* Sidebar */
.article-sidebar{ position:sticky; top:20px; margin-top: 50px; }
.article-sidebar__title{ margin: 6px 0 10px; color:var(--orange); font-weight:300; text-transform:uppercase; letter-spacing:.04em; font-size:24px; }
.recent-list{ list-style:none; padding:0; margin:0; }
.recent-list li{ padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.recent-list li:last-child{ border-bottom: 0; }
.recent-list a{ color:#c1ced8; display:block; font-weight: 300; }
.recent-list a:hover{ color:var(--orange); }

@media (max-width: 991.98px){
  .news-article{ padding: 40px 0 28px; }
  .article-sidebar{ position: static; }
}


/* =====================
   Contact – Contact Details + Form
   ===================== */
.contact{ padding: 80px 0 60px; color:#fff; }
.contact .container{ max-width: 1500px; width:100%; }
.contact__title{ color:#fff; font-weight:300; font-size: clamp(28px, 5vw, 55px); text-transform:uppercase; letter-spacing:.03em; margin:0 0 20px; }

/* Details panel */
.contact-details{ font-size:18px; line-height:1.8; }
.contact-details__item{ display:flex; align-items:flex-start; gap:14px; margin: 18px 0; color:#c1ced8; }
.contact-details__item i{ color: var(--orange); font-size: 20px; margin-top: 6px; width: 22px; text-align:center; }
.contact-details a{ color:#fff; text-decoration:none; border-bottom: 1px solid transparent; }
.contact-details a:hover{ color:#fff; border-bottom-color: rgba(255,255,255,.35); }

/* Form */
.contact-form{ background:#333435; border-radius:10px; box-shadow: 0 8px 28px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.06); border:2px solid rgba(255,255,255,.12); padding: 24px; }
.form-control--dark{ background:#1b1b1f; color:#e9eef7; border-color:#3a3a3a; }
.form-control--dark:focus{ background:#1b1b1f; color:#fff; border-color: var(--orange); box-shadow: 0 0 0 .2rem rgba(251,108,27,.25); }
/* Lighter, more legible placeholders on dark inputs */
.form-control--dark::placeholder,
textarea.form-control--dark::placeholder{ color:#757b80; opacity:1; }
/* Vendor fallbacks */
.form-control--dark::-webkit-input-placeholder,
textarea.form-control--dark::-webkit-input-placeholder{ color:#757b80; opacity:1; }
.form-control--dark::-moz-placeholder,
textarea.form-control--dark::-moz-placeholder{ color:#757b80; opacity:1; }
.form-control--dark:-ms-input-placeholder,
textarea.form-control--dark:-ms-input-placeholder{ color:#757b80; opacity:1; }
.form-control--dark::-ms-input-placeholder,
textarea.form-control--dark::-ms-input-placeholder{ color:#757b80; opacity:1; }
.form-label{ color:#c1ced8; font-weight:600; font-size:14px; text-transform:uppercase; letter-spacing:.04em; }
.req{ color: var(--orange); margin-left:6px; font-weight:700; }

/* Radio chips */
.radio-chip{ display:inline-flex; align-items:center; gap:10px; background:#1b1b1f; border:1px solid #3a3a3a; color:#e9eef7; border-radius:20px; padding:10px 14px; margin:0 10px 10px 0; cursor:pointer; user-select:none; }
.radio-chip input{ appearance:none; width:16px; height:16px; border:2px solid #c1ced8; border-radius:50%; display:inline-block; position:relative; }
.radio-chip input:checked{ border-color: var(--orange); }
.radio-chip input:checked::after{ content:""; position:absolute; inset:3px; background: var(--orange); border-radius:50%; }
.radio-chip span{ font-weight:600; font-size:14px; text-transform: none; }

/* Consent */
.contact-form__consent .form-check-input{ background:#1b1b1f; border-color:#3a3a3a; }
.contact-form__consent .form-check-input:checked{ background-color: var(--mid-blue); border-color: var(--mid-blue); }

/* Submit button alignment */
.contact-form__submit{ padding:12px 22px; font-size:16px; text-transform:uppercase; }

/* Honeypot */
.hp{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

@media (max-width: 991.98px){
  .contact{ padding: 60px 0 40px; }
}

.modal-sent .modal-content { background-color: #1b1b1f; color: #fff; border:2px solid #3a3a3a;; }
/* Force the close (×) icon to render white on dark modal backgrounds */
.modal-sent .btn-close { 
  /* Bootstrap's close icon is an SVG background; filter ensures white */
  filter: invert(1) grayscale(100%) brightness(200%);
  opacity: .9;
}
.modal-sent .btn-close:hover,
.modal-sent .btn-close:focus { 
  opacity: 1; 
  outline: none; 
  box-shadow: none; 
}
.modal-sent .modal-content .modal-title { font-size: 1.8rem; }

.privacy-policy { color: #eeeeee!important; margin: 80px 0; }
.privacy-policy h4 {
    font-size: 1.3rem;
    color: #eeeeee;
}
.privacy-policy h3 {
    font-size: 1.6rem;
    color: var(--light-blue);
}
.privacy-policy h2 {
    color: var(--orange);
}
.privacy-policy a {
    color: var(--light-blue);
}
.privacy-policy a:hover {
    color: var(--orange);
}

/* Remove white border/padding from Fancybox for promo lightbox */
.fancybox__slide { padding: 0 !important; }
.fancybox__content {
    /* Prefer CSS variables used by Fancybox v4 */
    --fancybox-content-bg: transparent;
    --fancybox-content-padding: 0px;
    --fancybox-content-border-radius: 0;
    --fancybox-content-shadow: none;

    /* Hard overrides as fallback */
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
}