
    /* ═══════════════════════════════════════════════
       RESET & BASE
    ═══════════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: #FFFFFF;
      color: #141528;
      overflow-x: hidden;
      min-height: 100vh;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    button { font-family: inherit; }
    ul { list-style: none; }

    /* ═══════════════════════════════════════════════
       CSS VARIABLES  —  White + Logo Royal Blue
    ═══════════════════════════════════════════════ */
    :root {
      /* Logo blue (sampled exactly from MC Logo New.png) */
      --blue:        #2E2F9F;
      --blue-light:  #4547C4;
      --blue-mid:    #3A3BB5;
      --blue-dark:   #1A1C6E;
      --blue-pale:   #ECEEFF;
      --blue-soft:   #F0F1FF;
      --blue-glow:   rgba(46,47,159,0.1);
      --blue-border: rgba(46,47,159,0.22);
      --blue-border-h: rgba(46,47,159,0.45);

      /* Backgrounds */
      --white:       #FFFFFF;
      --bg:          #F8F9FF;
      --bg-2:        #F2F4FF;

      /* Surfaces (cards, panels) */
      --surface:     rgba(46,47,159,0.04);
      --surface-h:   rgba(46,47,159,0.08);

      /* Borders */
      --border:      rgba(46,47,159,0.1);

      /* Text */
      --text:        #141528;
      --text-2:      #2A2B4A;
      --muted:       rgba(20,21,40,0.52);
      --muted-lo:    rgba(20,21,40,0.32);

      /* Layout */
      --nav-h:       85px;
      --ease:        cubic-bezier(0.4,0,0.2,1);
      --trans:       all 0.35s cubic-bezier(0.4,0,0.2,1);
      --radius-lg:   24px;
      --radius-md:   16px;
      --radius-sm:   10px;
    }

    /* ═══════════════════════════════════════════════
       SCROLLBAR
    ═══════════════════════════════════════════════ */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 3px; }

    /* ═══════════════════════════════════════════════
       BACKGROUND CANVAS
    ═══════════════════════════════════════════════ */
    #bg-canvas {
      position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
    }
    .bg-base {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 70% 55% at 5% 0%, rgba(46,47,159,0.08) 0%, transparent 55%),
        radial-gradient(ellipse 55% 50% at 95% 100%, rgba(46,47,159,0.06) 0%, transparent 50%),
        linear-gradient(170deg, #FFFFFF 0%, #F5F6FF 55%, #F0F1FF 100%);
    }
    .staff-lines {
      position: absolute; inset: 0;
      background: repeating-linear-gradient(
        180deg, transparent, transparent 79px,
        rgba(46,47,159,0.04) 79px, rgba(46,47,159,0.04) 80px
      );
    }
    .orb {
      position: absolute; border-radius: 50%;
      filter: blur(100px); animation: orbPulse ease-in-out infinite alternate;
    }
    .orb-1 { width:480px;height:480px;top:-120px;left:-140px;background:rgba(46,47,159,0.07);animation-duration:10s; }
    .orb-2 { width:380px;height:380px;bottom:-80px;right:-100px;background:rgba(69,71,196,0.06);animation-duration:13s; }
    @keyframes orbPulse {
      from { transform: scale(1) translate(0,0); }
      to   { transform: scale(1.15) translate(18px,-18px); }
    }
    #floating-notes { position: absolute; inset: 0; pointer-events: none; }
    .fn {
      position: absolute; bottom: -60px; user-select: none;
      animation: floatNote linear infinite;
    }
    @keyframes floatNote {
      0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
      6%   { opacity: 1; }
      94%  { opacity: 0.18; }
      100% { transform: translateY(-110vh) rotate(var(--rot,30deg)); opacity: 0; }
    }

    /* ═══════════════════════════════════════════════
       UTILITY
    ═══════════════════════════════════════════════ */
    .blue-text {
      background: linear-gradient(130deg, var(--blue-light) 0%, var(--blue) 55%, var(--blue-dark) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    /* Keep class name used in HTML */
    .gold-text {
      background: linear-gradient(130deg, var(--blue-light) 0%, var(--blue) 55%, var(--blue-dark) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .section-label {
      display: inline-block; font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--blue); margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 700; line-height: 1.2; margin-bottom: 18px;
      color: var(--text);
    }
    .section-sub {
      font-size: clamp(0.9rem, 1.8vw, 1.05rem);
      color: var(--muted); line-height: 1.85; max-width: 580px;
    }
    .divider {
      display: flex; align-items: center; gap: 12px; margin: 20px 0;
    }
    .divider .dline {
      flex: 1; height: 1px;
      background: linear-gradient(90deg, transparent, var(--blue-border), transparent);
    }
    .divider .dnote {
      color: var(--blue); font-size: 16px;
      animation: noteBob 3s ease-in-out infinite;
    }
    @keyframes noteBob {
      0%,100% { transform: translateY(0) rotate(-8deg); }
      50%      { transform: translateY(-4px) rotate(8deg); }
    }
    .divider.center { justify-content: center; }
    .divider.center .dline { max-width: 90px; }
    .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

    /* BUTTONS */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 13px 28px; border-radius: 50px;
      font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em;
      cursor: pointer; transition: var(--trans); border: none;
    }
    .btn-gold {
      background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 55%, var(--blue-dark) 100%);
      color: #FFFFFF;
      box-shadow: 0 4px 22px rgba(46,47,159,0.28);
    }
    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(46,47,159,0.42);
      filter: brightness(1.08);
    }
    .btn-wa {
      background: #25D366; color: #FFFFFF;
      box-shadow: 0 4px 22px rgba(37,211,102,0.28);
    }
    .btn-wa:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(37,211,102,0.42);
      filter: brightness(1.08);
      color: #FFFFFF;
    }
    .float-wa {
      position: fixed; bottom: 30px; right: 30px;
      width: 60px; height: 60px; border-radius: 50px;
      background: #25D366; color: #FFFFFF;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 18px rgba(37,211,102,0.35);
      z-index: 999; transition: var(--trans);
      text-decoration: none; opacity: 0; pointer-events: none; transform: translateY(20px);
    }
    .float-wa svg { width: 34px; height: 34px; fill: currentColor; }
    .float-wa.show {
      opacity: 1; pointer-events: auto; transform: none;
    }
    .float-wa:hover {
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 8px 26px rgba(37,211,102,0.45);
    }
    .btn-outline {
      background: transparent; color: var(--blue);
      border: 1.5px solid var(--blue-border);
    }
    .btn-outline:hover {
      background: var(--blue-glow); border-color: var(--blue); transform: translateY(-2px);
    }

    /* FADE-IN REVEAL */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
    }
    .reveal.in { opacity: 1; transform: none; }
    .reveal.d1 { transition-delay: 0.1s; }
    .reveal.d2 { transition-delay: 0.2s; }
    .reveal.d3 { transition-delay: 0.3s; }

    /* ═══════════════════════════════════════════════
       LANDING PAGE
    ═══════════════════════════════════════════════ */
    #landing {
      position: relative; z-index: 1;
      min-height: 100vh; display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      padding: 80px 24px 100px; text-align: center;
      transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
    }
    .landing-logo {
      width: clamp(130px, 18vw, 210px); height: auto; margin-bottom: 28px;
      animation: logoIn 1.2s cubic-bezier(0.34,1.56,0.64,1) both;
      filter: drop-shadow(0 10px 30px rgba(46,47,159,0.15));
    }
    @keyframes logoIn {
      from { opacity:0; transform: scale(0.65) translateY(-30px); }
      to   { opacity:1; transform: scale(1) translateY(0); }
    }
    .landing-h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 6.5vw, 4.6rem);
      font-weight: 700; line-height: 1.15; letter-spacing: -0.01em;
      color: var(--text);
      animation: fadeUp 0.9s 0.28s both;
    }
    .landing-tag {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.1rem, 2.4vw, 1.55rem); font-style: italic;
      color: var(--muted); letter-spacing: 0.12em; margin-top: 12px;
      animation: fadeUp 0.9s 0.42s both;
    }
    .landing-div-wrap { animation: fadeUp 0.9s 0.55s both; }
    .landing-prompt {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.35em;
      text-transform: uppercase; color: var(--blue);
      margin-bottom: 48px; opacity: 0.85; animation: fadeUp 0.9s 0.65s both;
    }
    
    /* PREMIUM GLASS DIVISION CARDS */
    .cards-row {
      display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
      max-width: 1100px; width: 100%;
      animation: fadeUp 0.9s 0.82s both;
    }
    .dcard {
      position: relative; flex: 1; min-width: 280px; max-width: 380px;
      padding: 56px 40px 48px;
      background: rgba(255, 255, 255, 0.65);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(46, 47, 159, 0.12);
      border-radius: var(--radius-lg); cursor: pointer;
      transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); overflow: hidden;
      box-shadow: 0 4px 30px rgba(46, 47, 159, 0.03);
    }
    .dcard::before {
      content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
      background: radial-gradient(circle at top left, rgba(69, 71, 196, 0.08), transparent 70%);
      opacity: 0; transition: opacity 0.5s ease;
    }
    .dcard::after {
      content: ''; position: absolute;
      bottom: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, transparent, var(--blue-light), var(--blue-dark), transparent);
      transform: scaleX(0); transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .dcard:hover, .dcard:focus-visible {
      border-color: rgba(46, 47, 159, 0.35);
      transform: translateY(-12px) scale(1.02);
      box-shadow: 0 24px 50px rgba(46, 47, 159, 0.12), 0 0 0 1px rgba(46, 47, 159, 0.15);
      background: rgba(255, 255, 255, 0.85);
      outline: none;
    }
    .dcard:hover::before { opacity: 1; }
    .dcard:hover::after  { transform: scaleX(1); }
    
    /* Icon wrapper */
    .dc-icon-wrapper {
      width: 72px;
      height: 72px;
      border-radius: 20px;
      background: rgba(46, 47, 159, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      border: 1px solid rgba(46, 47, 159, 0.1);
      font-size: 2.2rem;
      transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
      box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.8);
    }
    .dcard:hover .dc-icon-wrapper {
      background: linear-gradient(135deg, var(--blue-light), var(--blue-mid));
      color: #fff;
      transform: scale(1.12) rotate(6deg);
      box-shadow: 0 12px 24px rgba(46, 47, 159, 0.25);
      border-color: transparent;
    }
    .dc-icon {
      display: inline-block;
      animation: iconFloat 4s ease-in-out infinite;
    }
    @keyframes iconFloat {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-5px); }
    }
    .dcard .dc-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.7rem; font-weight: 700; margin-bottom: 12px;
      transition: color 0.3s;
    }
    .dcard .dc-sub {
      font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 30px;
    }
    .dcard .dc-cta {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--blue);
      transition: all 0.3s;
    }
    .dcard:hover .dc-cta {
      gap: 16px;
      color: var(--blue-light);
    }
    .dcard .dc-bg {
      position: absolute; bottom: -18px; right: -10px;
      font-size: 9rem; line-height: 1;
      color: rgba(46,47,159,0.035);
      pointer-events: none; user-select: none;
      transition: all 0.6s;
    }
    .dcard:hover .dc-bg {
      transform: scale(1.1) rotate(-8deg);
      color: rgba(46,47,159,0.06);
    }

    /* ═══════════════════════════════════════════════
       STICKY NAVIGATION
    ═══════════════════════════════════════════════ */
    #main-nav {
      position: fixed; top:0; left:0; right:0; z-index: 9999;
      height: var(--nav-h);
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(24px) saturate(1.6);
      border-bottom: 1px solid rgba(46,47,159,0.1);
      box-shadow: 0 4px 20px rgba(46,47,159,0.08);
      transition: background 0.5s, border-color 0.5s;
      display: flex; align-items: center; padding: 0 24px;
    }
    body:not(.nav-visible) #main-nav {
      display: none !important;
    }
    
    /* Dark mode for Choir nav */
    #main-nav.choir-dark-nav {
      background: rgba(10, 10, 20, 0.85);
      border-bottom: 1px solid rgba(255,255,255,0.05);
      box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    }
    #main-nav.choir-dark-nav .nav-switcher {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.12);
    }
    #main-nav.choir-dark-nav .sw-pill { color: rgba(255,255,255,0.6); }
    #main-nav.choir-dark-nav .sw-pill.on { color: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.5); }
    #main-nav.choir-dark-nav .nav-links li a { color: rgba(255,255,255,0.7); }
    #main-nav.choir-dark-nav .nav-links li a:hover { color: #fff; background: rgba(255,255,255,0.1); }
    #main-nav.choir-dark-nav .hamburger span { background: #fff; }
    .nav-inner {
      max-width: 1160px; width: 100%; margin: 0 auto;
      display: flex; align-items: center; gap: 18px;
    }
    .nav-logo-btn {
      display: flex; align-items: center;
      cursor: pointer; background: none; border: none; padding: 0; flex-shrink: 0;
    }
    .nav-logo-btn img { height: 42px; width: auto; }

    /* Switcher pills */
    .nav-switcher {
      display: flex; gap: 3px;
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: 50px; padding: 4px; flex-shrink: 0;
    }
    .sw-pill {
      padding: 5px 15px; border-radius: 50px;
      font-size: 0.76rem; font-weight: 600; letter-spacing: 0.06em;
      cursor: pointer; transition: var(--trans); color: var(--muted);
      border: none; background: transparent; white-space: nowrap;
    }
    .sw-pill.on {
      background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
      color: #FFFFFF;
      box-shadow: 0 2px 12px rgba(46,47,159,0.35);
    }

    /* Nav links */
    .nav-links { display:flex; align-items:center; gap:2px; margin-left:auto; }
    .nav-links li a {
      display: block; padding: 7px 13px; font-size: 0.83rem; font-weight: 500;
      color: var(--muted); border-radius: 8px; transition: var(--trans);
    }
    .nav-links li a:hover { color: var(--blue); background: var(--surface); }
    .nav-book {
      display: inline-block; padding: 8px 20px; margin-left: 6px;
      background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
      color: #FFFFFF !important; border-radius: 50px;
      font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em;
      transition: var(--trans); white-space: nowrap;
    }
    .nav-book:hover {
      filter: brightness(1.1); transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(46,47,159,0.38);
    }

    /* Hamburger */
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 6px; border: none; background: none;
      margin-left: auto;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--text); border-radius: 2px; transition: var(--trans);
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile menu */
    .mob-menu {
      display: none; position: fixed;
      top: var(--nav-h); left:0; right:0; z-index:199;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(24px);
      border-bottom: 1.5px solid var(--blue-border);
      box-shadow: 0 8px 30px rgba(46,47,159,0.1);
      padding: 20px 24px 28px;
      flex-direction: column; gap: 6px;
    }
    .mob-menu.open { display: flex; animation: slideDown 0.28s ease; }
    @keyframes slideDown {
      from { opacity:0; transform: translateY(-8px); }
      to   { opacity:1; transform: none; }
    }
    .mob-switcher {
      display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap;
    }
    .mob-switcher .sw-pill {
      flex:1; text-align:center; padding: 10px 8px;
      background: var(--bg-2); border: 1.5px solid var(--border);
      border-radius: 10px; font-size: 0.8rem; color: var(--muted);
    }
    .mob-switcher .sw-pill.on {
      background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
      color: #FFFFFF; border-color: transparent;
    }
    .mob-links li a {
      display: block; padding: 12px 0; font-size: 0.97rem; font-weight: 500;
      color: var(--muted); border-bottom: 1px solid rgba(46,47,159,0.07);
      transition: color 0.2s;
    }
    .mob-links li a:hover { color: var(--blue); }
    .mob-book {
      display: block; text-align: center; margin-top: 16px; padding: 13px;
      background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
      color: #FFFFFF; font-weight: 700; font-size: 0.92rem; border-radius: 12px;
    }

    /* ═══════════════════════════════════════════════
       DIVISION WRAPPER
    ═══════════════════════════════════════════════ */
    .div-wrap {
      display: none; opacity: 0;
      transition: opacity 0.4s var(--ease);
    }
    .div-wrap.active { display: block; }
    .div-wrap.vis    { opacity: 1; }

    /* ═══════════════════════════════════════════════
       HERO (MODERN GLASSMORPHISM)
    ═══════════════════════════════════════════════ */
    .hero {
      min-height: 100vh; display: flex; align-items: center; justify-content: center;
      text-align: center; position: relative; overflow: hidden;
      padding: calc(var(--nav-h) + 60px) 6% 90px;
      background: linear-gradient(160deg, #FFFFFF 0%, #F2F4FF 50%, #ECEEFF 100%);
    }
    .hero-glow {
      position: absolute; width:700px; height:700px; border-radius:50%;
      filter: blur(140px); pointer-events: none;
      top:50%; left:50%; transform: translate(-50%,-50%);
      background: radial-gradient(ellipse, rgba(46,47,159,0.15) 0%, transparent 65%);
    }
    .hero-video {
      position: absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; z-index:0; opacity:0.8;
    }
    .hero-video-overlay {
      position: absolute; top:0; left:0; width:100%; height:100%; z-index:1;
      background: linear-gradient(180deg, rgba(10,10,20,0.45) 0%, rgba(10,10,20,0.8) 100%);
    }
    .hero-content {
      position: relative; z-index:2; max-width: 900px; margin: 0 auto;
      padding: 48px; border-radius: 28px;
      background: rgba(10, 10, 20, 0.25);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
      animation: fadeUp 1.2s cubic-bezier(0.2,0.8,0.2,1) both;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 16px; border: 1.5px solid rgba(255,255,255,0.2);
      border-radius: 50px; font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: #fff; margin-bottom: 24px;
      background: rgba(255,255,255,0.08);
    }
    .badge-dot {
      width:6px;height:6px;border-radius:50%;background:#fff;
      box-shadow:0 0 8px rgba(255,255,255,0.8); animation: blink 2s infinite;
    }
    @keyframes blink {
      0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.75)}
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 6.5vw, 5rem);
      font-weight: 700; line-height: 1.05; margin-bottom: 18px;
      color: #fff;
      text-shadow: 0 4px 18px rgba(0, 0, 0, 0.65);
    }
    .hero-desc {
      font-size: clamp(0.95rem, 1.8vw, 1.1rem); color: rgba(255,255,255,0.9);
      line-height: 1.7; margin-bottom: 40px;
      max-width: 580px; margin-left: auto; margin-right: auto;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
    }
    .hero-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
    .hero-btns .btn { padding: 14px 30px; font-size: 0.95rem; }
    .btn-gold {
      background: linear-gradient(135deg, #5C5EDF 0%, #2E2F9F 100%);
      color: #FFFFFF; font-weight: 700; border: none;
      box-shadow: 0 8px 24px rgba(46, 47, 159, 0.45);
    }
    .btn-gold:hover {
      box-shadow: 0 12px 32px rgba(46, 47, 159, 0.65);
      transform: translateY(-2px);
    }
    .btn-wa {
      background: #25D366; border: none;
      color: #FFFFFF; font-weight: 700;
      box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    }
    .btn-wa:hover {
      background: #20ba5a;
      box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
      transform: translateY(-2px);
    }
    .hero-wave {
      position: absolute; bottom:-1px; left:0; right:0; height:180px;
      background: linear-gradient(to top, 
        #FFFFFF 0%, 
        rgba(255, 255, 255, 0.95) 20%, 
        rgba(255, 255, 255, 0.75) 45%, 
        rgba(255, 255, 255, 0.4) 70%, 
        rgba(255, 255, 255, 0.15) 85%, 
        transparent 100%
      );
      pointer-events: none; z-index:2;
    }

    /* Music bars (if used) */
    .music-bars {
      display:flex; align-items:flex-end; gap:5px; height:42px;
      justify-content:center; margin-top: 32px;
    }
    .mbar {
      width:4px; border-radius:2px;
      background: linear-gradient(to top, var(--blue-dark), var(--blue-light));
      animation: barDance ease-in-out infinite alternate;
    }
    .mbar:nth-child(1){animation-duration:0.8s;}
    .mbar:nth-child(2){animation-duration:0.55s;animation-delay:0.1s;}
    .mbar:nth-child(3){animation-duration:1.0s;animation-delay:0.2s;}
    .mbar:nth-child(4){animation-duration:0.7s;animation-delay:0.05s;}
    .mbar:nth-child(5){animation-duration:0.9s;animation-delay:0.15s;}
    .mbar:nth-child(6){animation-duration:0.6s;animation-delay:0.25s;}
    .mbar:nth-child(7){animation-duration:0.85s;animation-delay:0.3s;}
    @keyframes barDance { from{height:7px} to{height:38px} }

    /* ═══════════════════════════════════════════════
       ABOUT SECTION
    ═══════════════════════════════════════════════ */
    .about-sec { padding: 96px 0; position: relative; z-index:1; background: #FFFFFF; }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: center;
    }
    .about-vis {
      position: relative; height: 420px; border-radius: var(--radius-lg);
      background: linear-gradient(135deg, var(--blue-soft) 0%, var(--blue-pale) 100%);
      border: 1.5px solid var(--blue-border);
      display: flex; align-items: center; justify-content: center; overflow: hidden;
    }
    .about-vis::before {
      content:''; position:absolute;inset:0;
      background: linear-gradient(135deg, rgba(46,47,159,0.07) 0%, transparent 55%);
    }
    .about-vis-inner { text-align:center; padding:40px; position:relative; z-index:1; }
    .about-logo {
      width:130px;height:auto;margin:0 auto 18px;
      filter: drop-shadow(0 4px 20px rgba(46,47,159,0.25));
    }
    .about-vis-note {
      position:absolute;bottom:16px;right:16px;
      font-size:7rem;line-height:1;
      color:rgba(46,47,159,0.07);user-select:none;pointer-events:none;
    }
    .about-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size:1.05rem;font-style:italic;color:var(--muted);
    }
    .about-txt .section-sub { margin-bottom:22px; }
    .stats {
      display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px;
    }
    .stat {
      padding: 18px 16px;
      background: var(--bg-2);
      border: 1.5px solid var(--border); border-radius: var(--radius-md);
      text-align: center; transition: var(--trans);
    }
    .stat:hover { border-color: var(--blue-border-h); background: var(--blue-pale); }
    .stat-n {
      font-family: 'Playfair Display', serif; font-size: 1.9rem;
      font-weight:700; display:block; margin-bottom:4px;
    }
    .stat-l { font-size:0.72rem; color:var(--muted); letter-spacing:0.1em; text-transform:uppercase; }

    /* ═══════════════════════════════════════════════
       SERVICES SECTION
    ═══════════════════════════════════════════════ */
    .services-sec { padding: 96px 0; position:relative; z-index:1; background: var(--bg); }
    .sec-hdr { text-align:center; margin-bottom:56px; }
    .sec-hdr .section-sub { margin:0 auto; }
    .svc-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap:26px;
    }
    .svc-card {
      padding: 42px 32px;
      background: #FFFFFF;
      border: 1.5px solid rgba(46,47,159,0.1); border-radius: 24px;
      transition: var(--trans); position: relative; overflow: hidden;
      box-shadow: 0 1px 10px rgba(46,47,159,0.05);
    }
    .svc-card::after {
      content:''; position:absolute; bottom:0;left:0;right:0; height:3px;
      background: linear-gradient(90deg, transparent, var(--blue), transparent);
      transform: scaleX(0); transition: transform 0.4s var(--ease);
    }
    .svc-card:hover {
      border-color: rgba(46,47,159,0.3); transform: translateY(-5px);
      box-shadow: 0 14px 42px rgba(46,47,159,0.12);
    }
    .svc-card:hover::after { transform: scaleX(1); }
    .svc-icon { font-size:2.5rem; margin-bottom:18px; }
    .svc-title {
      font-family: 'Playfair Display', serif; font-size:1.3rem;
      font-weight:600; margin-bottom:12px; color: var(--text);
    }
    .svc-desc { font-size:0.9rem; color:var(--muted); line-height:1.7; }
    .svc-list { margin-top:12px; }
    .svc-list li {
      font-size:0.9rem; color:var(--muted); padding:6px 0 6px 20px;
      position:relative;
    }
    .svc-list li::before {
      content:'♪'; position:absolute; left:0; color:var(--blue); font-size:0.75rem;
    }

    /* ═══════════════════════════════════════════════
       GALLERY SECTION
    ═══════════════════════════════════════════════ */
    .gallery-sec { padding: 96px 0; position:relative; z-index:1; background: #FFFFFF; }
    .gal-hdr { text-align:center; margin-bottom:48px; }
    .gal-hdr .section-sub { margin:0 auto; }
    .gal-grid {
      display:grid; grid-template-columns: repeat(3,1fr);
      gap: 14px;
    }
    .gal-item {
      border-radius: var(--radius-md); overflow:hidden;
      background: var(--bg-2);
      border: 1.5px solid rgba(46,47,159,0.1);
      position:relative; transition: var(--trans);
      display: flex; flex-direction: column;
      height: 100%;
    }
    .gal-item:hover { border-color: rgba(46,47,159,0.3); transform: scale(1.015); box-shadow: 0 8px 30px rgba(46,47,159,0.1); }
    .gal-ph { text-align:center; padding:20px; }
    .gal-ph .gi { font-size:2.2rem; opacity:0.3; margin-bottom:8px; }
    .gal-ph p { font-size:0.72rem; color:var(--muted-lo); letter-spacing:0.12em; text-transform:uppercase; }
    .gal-badge {
      position:absolute; top:10px; right:10px;
      padding:3px 10px; background:rgba(46,47,159,0.08);
      border:1px solid var(--blue-border); border-radius:20px;
      font-size:0.62rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--blue);
    }

    /* ═══════════════════════════════════════════════
       PORTFOLIO FILTERS & PAGINATION
    ═══════════════════════════════════════════════ */
    .portfolio-filter {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 24px;
    }
    .filter-pill {
      background: transparent;
      border: 1px solid var(--border);
      padding: 8px 18px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.3s ease;
      white-space: nowrap;
    }
    .filter-pill:hover {
      border-color: var(--gold);
      color: var(--gold);
    }
    .filter-pill.active {
      background: var(--gold);
      color: #fff;
      border-color: var(--gold);
    }
    
    .show-more-container {
      text-align: center;
      margin-top: 40px;
    }

    /* ═══════════════════════════════════════════════
       LATEST ADDITIONS CAROUSEL
    ═══════════════════════════════════════════════ */
    .latest-additions-sec {
      padding: 60px 0 20px; position:relative; z-index:1; background: #fafafa;
    }
    .carousel-wrapper {
      position: relative;
      padding: 0 80px; /* Give space for the arrows */
    }
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: var(--blue);
      color: #fff;
      border: none;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      box-shadow: 0 4px 10px rgba(46,47,159,0.2);
      transition: background 0.3s, transform 0.3s;
    }
    .carousel-btn:hover {
      background: #1a1a7a;
      transform: translateY(-50%) scale(1.1);
    }
    .carousel-btn.prev {
      left: 0;
    }
    .carousel-btn.next {
      right: 0;
    }
    @media (max-width: 768px) {
      .carousel-wrapper { padding: 0 38px; } /* Keep space for arrows */
      .carousel-btn { 
        display: flex; 
        width: 32px; 
        height: 32px; 
        font-size: 0.9rem; 
      }
      .carousel-slide {
        flex: 0 0 calc(50% - 8px); /* Exactly 2 items per view */
        min-width: 140px; /* Allow cards to shrink */
      }
      .carousel-track { gap: 16px; padding: 0; }
      .carousel-container { padding-bottom: 10px; margin: 0; }
      
      /* Scale down the card content inside the carousel on mobile */
      .carousel-slide .gal-item > div:last-child {
        padding: 10px !important;
      }
      .carousel-slide .gal-item h4 {
        font-size: 0.85rem !important;
        margin-bottom: 4px !important;
      }
      .carousel-slide .gal-item p {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
      }
      .carousel-slide .yt-hover-player > div:last-child {
        font-size: 0.55rem !important;
        padding: 3px 6px !important;
        bottom: 5px !important;
        right: 5px !important;
      }
      .carousel-slide .yt-hover-overlay > div {
        width: 48px !important;
        height: 32px !important;
        border-radius: 8px !important;
      }
      .carousel-slide .yt-hover-overlay svg {
        width: 18px !important;
        height: 18px !important;
      }
    }
    .carousel-container {
      overflow-x: auto;
      overflow-y: hidden;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      -ms-overflow-style: none;
      scrollbar-width: none;
      padding-bottom: 20px;
      margin: 0 -10px; /* Counter gap padding */
    }
    .carousel-container::-webkit-scrollbar {
      display: none;
    }
    .carousel-track {
      display: flex;
      gap: 20px;
      padding: 0 10px;
    }
    .carousel-slide {
      flex: 0 0 calc(33.333% - 14px); /* 3 items per view on desktop */
      scroll-snap-align: start;
      min-width: 280px;
    }
    .testi-slide {
      flex: 0 0 calc(33.333% - 14px);
      scroll-snap-align: start;
      min-width: 280px;
      display: flex;
    }
    .testi-slide .testi-card {
      width: 100%;
      height: 100%;
      margin: 0; /* Override any card margin conflicts */
    }
    @media (max-width: 900px) {
      .testi-slide {
        flex: 0 0 calc(50% - 8px);
      }
    }
    @media (max-width: 600px) {
      .testi-slide {
        flex: 0 0 100%;
        min-width: 100%;
      }
    }

    /* ═══════════════════════════════════════════════
       TESTIMONIALS SECTION
    ═══════════════════════════════════════════════ */
    .testi-sec { padding: 96px 0; position:relative; z-index:1; background: var(--bg); }
    .testi-hdr { text-align:center; margin-bottom:52px; }
    .testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
    .testi-card {
      padding: 34px 26px; background: #FFFFFF;
      border: 1.5px solid rgba(46,47,159,0.1); border-radius: 20px;
      transition: var(--trans);
      box-shadow: 0 1px 10px rgba(46,47,159,0.05);
    }
    .testi-card:hover { border-color: rgba(46,47,159,0.3); transform: translateY(-5px); box-shadow: 0 12px 36px rgba(46,47,159,0.1); }
    .tquote {
      font-family: 'Playfair Display', serif;
      font-size: 4.5rem; line-height: 0.8;
      color: var(--blue); opacity:0.25; margin-bottom: 8px;
    }
    .ttext {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.07rem; font-style: italic;
      color: var(--text-2); line-height: 1.7; margin-bottom: 20px;
    }
    .tauthor { display:flex; align-items:center; gap:12px; }
    .tavatar {
      width:42px;height:42px;border-radius:50%;flex-shrink:0;
      background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
      display:flex;align-items:center;justify-content:center;
      font-weight:700;font-size:0.95rem;color:#FFFFFF;
    }
    .taname { font-size:0.85rem; font-weight:600; color: var(--text); }
    .tarole { font-size:0.73rem; color:var(--muted); }
    .tstars { color:var(--blue); font-size:0.8rem; margin-bottom:3px; }
    .testi-note {
      text-align:center; margin-top:28px;
      font-size:0.8rem; color:var(--muted-lo); font-style:italic;
    }

    /* ═══════════════════════════════════════════════
       CTA SECTION
    ═══════════════════════════════════════════════ */
    .cta-sec { padding: 96px 0; position:relative; z-index:1; background: #FFFFFF; }
    .cta-box {
      max-width: 740px; margin: 0 auto; text-align: center;
      padding: 68px 48px; border-radius: 30px;
      background: linear-gradient(135deg, var(--blue-soft) 0%, var(--blue-pale) 100%);
      border: 1.5px solid rgba(46,47,159,0.2);
      position: relative; overflow: hidden;
      box-shadow: 0 4px 40px rgba(46,47,159,0.1);
    }
    .cta-box::before {
      content:''; position:absolute; top:-1px; left:18%; right:18%; height:2px;
      background: linear-gradient(90deg, transparent, var(--blue), transparent);
    }
    .cta-box .section-title { color: var(--text); }
    .cta-box .section-sub { margin: 0 auto 36px; }
    .cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

    /* ═══════════════════════════════════════════════
       SHARED CONTACT SECTION
    ═══════════════════════════════════════════════ */
    #contact-sec {
      position: relative; z-index:1; padding: 96px 0;
      background: var(--bg);
      border-top: 1.5px solid rgba(46,47,159,0.1);
    }
    .contact-hdr { text-align:center; margin-bottom:56px; }
    .contact-hdr .section-sub { margin:0 auto; }
    .cc-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(210px,1fr));
      gap: 18px; margin-bottom: 60px;
    }
    .cc {
      display:flex; flex-direction:column; gap:10px;
      padding: 26px 22px; background: #FFFFFF;
      border: 1.5px solid rgba(46,47,159,0.1); border-radius: 18px;
      transition: var(--trans); color: inherit; text-decoration:none;
      box-shadow: 0 1px 10px rgba(46,47,159,0.05);
    }
    .cc:hover {
      border-color: rgba(46,47,159,0.35); transform: translateY(-5px);
      box-shadow: 0 10px 32px rgba(46,47,159,0.12);
    }
    .cc-icon {
      width:46px;height:46px;border-radius:13px;
      background: rgba(46,47,159,0.07); border:1px solid rgba(46,47,159,0.15);
      display:flex;align-items:center;justify-content:center;font-size:1.25rem;
    }
    .cc-lbl { font-size:0.66rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase; color:var(--blue); }
    .cc-val { font-size:0.88rem; color: var(--text); font-weight:500; line-height:1.5; }

    /* Connect row */
    .connect-row {
      display:flex; gap:48px; align-items:flex-start; justify-content:center; flex-wrap:wrap;
      padding-top: 20px;
    }
    .conn-block h3 {
      font-family: 'Playfair Display', serif; font-size:1.15rem;
      margin-bottom: 18px; color: var(--text);
    }
    .social-row { display:flex; gap:11px; flex-wrap:wrap; }
    .si {
      width:46px;height:46px;border-radius:13px;
      background: #FFFFFF; border:1.5px solid rgba(46,47,159,0.12);
      display:flex;align-items:center;justify-content:center;
      color:var(--muted); transition:var(--trans); text-decoration:none;
      box-shadow: 0 1px 8px rgba(46,47,159,0.06);
    }
    .si:hover {
      background: rgba(46,47,159,0.07); border-color: rgba(46,47,159,0.35);
      color:var(--blue); transform:translateY(-3px);
      box-shadow: 0 6px 20px rgba(46,47,159,0.14);
    }
    .qr-box {
      width:148px;height:148px; background:#FFFFFF;
      border:2px dashed var(--blue-border); border-radius: var(--radius-md);
      display:flex;flex-direction:column;align-items:center;justify-content:center;
      gap:8px; padding:16px;
      box-shadow: 0 1px 10px rgba(46,47,159,0.06);
    }
    .qr-icon { font-size:2.4rem; opacity:0.3; color: var(--blue); }
    .qr-lbl { font-size:0.63rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--muted-lo); text-align:center; }

    /* ═══════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════ */
    /* Modern Multi-Column Footer */
    #site-footer {
      position: relative; z-index: 1;
      background: var(--blue-dark);
      border-top: 2px solid rgba(69,71,196,0.4);
      padding: 64px 24px 34px;
      color: rgba(255, 255, 255, 0.7);
      text-align: left;
    }
    .ft-container {
      max-width: 1160px; margin: 0 auto 40px;
      display: grid; grid-template-columns: 1.2fr 0.8fr 1fr 1fr; gap: 40px;
    }
    .ft-logo-img { width: 78px; height: auto; margin-bottom: 16px; filter: brightness(0) invert(1) opacity(0.9); }
    .ft-brand-title { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: #FFFFFF; margin-bottom: 8px; }
    .ft-brand-desc { font-size: 0.8rem; line-height: 1.6; margin-bottom: 18px; color: rgba(255,255,255,0.6); }
    .ft-socials { display: flex; gap: 10px; }
    .ft-socials a {
      width: 36px; height: 36px; border-radius: 8px;
      background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255, 255, 255, 0.6); transition: var(--trans);
    }
    .ft-socials a:hover {
      background: #FFFFFF; color: var(--blue-dark); transform: translateY(-2px);
    }
    .ft-col-title {
      font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700;
      color: #FFFFFF; margin-bottom: 20px; position: relative;
      padding-bottom: 8px;
    }
    .ft-col-title::after {
      content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px;
      background: var(--blue-light);
    }
    .ft-links { list-style: none; padding: 0; margin: 0; }
    .ft-links li { margin-bottom: 10px; }
    .ft-links a { font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); transition: color 0.2s; }
    .ft-links a:hover { color: #FFFFFF; }
    .ft-contact-list { list-style: none; padding: 0; margin: 0; }
    .ft-contact-list li { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 0.82rem; }
    .ft-contact-list a { color: rgba(255, 255, 255, 0.6); transition: color 0.2s; }
    .ft-contact-list a:hover { color: #FFFFFF; }
    .ft-contact-list span { color: var(--blue-light); font-size: 0.95rem; }
    .ft-info-block { font-size: 0.82rem; }
    .ft-info-lbl { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.4); margin-bottom: 4px; }
    .ft-info-val { color: rgba(255, 255, 255, 0.85); line-height: 1.5; }
    .ft-line { width:100%;height:1px;background:rgba(255,255,255,0.08);margin:0 auto 20px; }
    .ft-copy { text-align: center; font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-top: 20px; }

    /* ═══════════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════════ */
    @media(max-width:1024px) {
      .about-grid { grid-template-columns:1fr; gap:36px; }
      .about-vis { height:280px; }
      .testi-grid { grid-template-columns:1fr 1fr; }
      .ft-container { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    
    @media(max-width:768px) {
      .hero { padding: 120px 24px; align-items: center; justify-content: center; text-align: center; }
      .hero-video-overlay { background: linear-gradient(180deg, rgba(10,10,20,0.4) 0%, rgba(10,10,20,0.85) 100%); }
      .hero-content { padding: 36px 24px; backdrop-filter: blur(12px) saturate(140%); -webkit-backdrop-filter: blur(12px) saturate(140%); }
      .hero-desc { margin-left: auto; margin-right: auto; }
      .hero-btns { justify-content: center; flex-direction: column; width: 100%; }
      .hero-btns .btn { width: 100%; text-align: center; }
      
      .about-txt { text-align: center; }
      .about-txt .divider { justify-content: center; }
      .about-txt .section-sub { margin-left: auto; margin-right: auto; }
      
      /* Center Services */
      .svc-card { text-align: center; }
      
      /* Center Testimonials */
      .testi-card { text-align: center; }
      .testi-card .tauthor { justify-content: center; text-align: left; }
      .choir-theme .testi-card {
        border-left: none;
        border-top: 2px solid var(--blue-light);
        padding: 24px 16px 16px;
      }
      .choir-theme .testi-card:hover {
        transform: translateY(4px);
        border-top-color: var(--blue);
      }
      
      /* Center Contact Details Card */
      .contact-details-card {
        text-align: center;
      }
      .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        width: 100%;
      }
    }
    @media(max-width:768px) {
      .nav-links, .nav-switcher, .nav-book-wrap { display:none; }
      .hamburger { display:flex; }
      .gal-grid { grid-template-columns:1fr 1fr; }
      .gal-item:first-child { grid-column:1/3; grid-row:auto; min-height:200px; }
      .testi-grid { grid-template-columns:1fr; }
      .cta-box { padding:44px 26px; }
      .cards-row { flex-direction:column; align-items:center; }
      .dcard { max-width:100%; width:100%; }
      .connect-row { gap: 32px; }
      .ft-container { grid-template-columns: 1fr; gap: 36px; text-align: center; }
      .ft-col { display: flex; flex-direction: column; align-items: center; }
      .ft-logo-img { margin-left: auto; margin-right: auto; }
      .ft-socials { justify-content: center; }
      .ft-col-title::after { left: 50%; transform: translateX(-50%); }
      .ft-contact-list li { justify-content: center; }
    }
    @media(max-width:560px) {
      .hero-btns { flex-direction:column; align-items:center; }
      .cta-btns { flex-direction:column; align-items:center; }
      .stats { grid-template-columns:1fr 1fr; }
      .gal-grid { grid-template-columns:1fr; }
      .gal-item:first-child { grid-column:auto; grid-row:auto; }
      .cc-grid { grid-template-columns:1fr 1fr; }
    }
    @media(max-width:400px) {
      .cc-grid { grid-template-columns:1fr; }
    }
    /* ═══════════════════════════════════════════════
       DIVISION THEMES: BAND & CHOIR
    ═══════════════════════════════════════════════ */

    /* ----- CHOIR THEME (Elegant & Symmetrical) ----- */
    .choir-theme h1, .choir-theme .section-title, .choir-theme .svc-title, .choir-theme .stat-n {
      font-family: 'Playfair Display', serif;
    }
    .choir-theme .hero-tagline, .choir-theme .about-tagline, .choir-theme .ttext {
      font-family: 'Cormorant Garamond', serif;
    }
    .choir-theme .hero {
      background: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.5) 0%, rgba(10,10,20,0.95) 100%);
    }
    
    
    
    .choir-theme .hero .hero-glow { display: none; }
    .choir-theme .music-bars { display: none !important; }
    .choir-theme .svc-card {
      background: transparent;
      border: 1px solid var(--blue-border);
      border-radius: 0; border-top-left-radius: 24px; border-bottom-right-radius: 24px;
      box-shadow: none;
    }
    .choir-theme .svc-card:hover {
      box-shadow: 0 10px 30px rgba(46,47,159,0.08);
    }
    .choir-theme .testi-card {
      background: transparent; border: none; box-shadow: none;
      border-left: 2px solid var(--blue-light); border-radius: 0;
      padding: 16px 0 16px 24px;
    }
    .choir-theme .testi-card:hover {
      transform: translateX(4px); box-shadow: none; border-left-color: var(--blue);
    }

    /* ----- BAND THEME (Dynamic & Energetic) ----- */
    .band-theme h1, .band-theme .section-title, .band-theme .svc-title, .band-theme .stat-n {
      font-family: 'Inter', sans-serif;
      letter-spacing: -0.03em; font-weight: 800;
    }
    .band-theme h1 { text-transform: uppercase; line-height: 1.05; }
    
    .band-theme .tquote { font-family: 'Inter', sans-serif; }
    .band-theme .hero {
      background: linear-gradient(135deg, #F8F9FF 0%, #E6E8F4 100%);
    }
    .band-theme .hero-content {
      background: rgba(10, 10, 20, 0.25); /* 25% Opacity */
      border-color: rgba(255, 255, 255, 0.12);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }
    
    
    .band-theme .svc-card {
      border-radius: 12px; border: none; background: #FFFFFF;
      box-shadow: 0 8px 24px rgba(46,47,159,0.08);
    }
    .band-theme .svc-card::after { background: var(--blue-dark); height: 4px; }
    .band-theme .testi-card {
      background: linear-gradient(135deg, var(--blue-dark), var(--blue));
      color: #FFFFFF; border: none;
    }
    .band-theme .testi-card .tquote { color: rgba(255,255,255,0.1); }
    .band-theme .testi-card .ttext { color: #ECEEFF; }
    .band-theme .testi-card .taname { color: #FFFFFF; }

    /* Clean Redesigned Split Contact Section */
    .contact-layout {
      display: grid; grid-template-columns: 1fr 1.25fr; gap: 40px; margin-top: 40px;
      align-items: stretch;
    }
    
    .contact-brand-card {
      background: rgba(255, 255, 255, 0.65);
      border: 1px solid rgba(46, 47, 159, 0.1);
      border-radius: var(--radius-lg);
      padding: 48px;
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      display: flex; flex-direction: column; justify-content: center;
      text-align: center;
      box-shadow: 0 4px 30px rgba(46, 47, 159, 0.02);
    }
    .contact-brand-logo {
      width: 100px; height: auto; margin: 0 auto 20px;
      filter: drop-shadow(0 4px 15px rgba(46,47,159,0.15));
    }
    .contact-brand-card h3 {
      font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700;
      color: var(--text); margin-bottom: 6px;
    }
    .contact-brand-tag {
      font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic;
      color: var(--muted); letter-spacing: 0.05em; margin-bottom: 24px;
    }
    .contact-brand-desc {
      font-size: 0.88rem; line-height: 1.7; color: var(--muted); margin-bottom: 32px;
      max-width: 360px; margin-left: auto; margin-right: auto;
    }
    .contact-social-icons {
      display: flex; gap: 12px; justify-content: center;
      border-top: 1px solid rgba(46, 47, 159, 0.08); padding-top: 24px;
    }
    
    .contact-details-card {
      background: #FFFFFF;
      border: 1px solid rgba(46, 47, 159, 0.12);
      border-radius: var(--radius-lg);
      padding: 48px;
      box-shadow: 0 10px 40px rgba(46, 47, 159, 0.05);
      display: flex; flex-direction: column; gap: 24px;
      text-align: left;
    }
    .contact-item {
      display: flex; align-items: center; gap: 20px;
      padding: 8px 0;
    }
    .contact-item-ceo {
      border-top: 1px solid rgba(46, 47, 159, 0.06);
      padding-top: 20px; margin-top: 8px;
    }
    .ci-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: rgba(46, 47, 159, 0.05); border: 1px solid rgba(46, 47, 159, 0.1);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; flex-shrink: 0;
    }
    .ci-content {
      display: flex; flex-direction: column; gap: 2px;
    }
    .ci-lbl {
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; color: var(--muted-lo);
      text-transform: uppercase;
    }
    .ci-val {
      font-size: 0.95rem; font-weight: 600; color: var(--text);
      transition: color 0.2s; text-decoration: none;
    }
    a.ci-val:hover {
      color: var(--blue-light);
    }
    
    @media(max-width: 900px) {
      .contact-layout { grid-template-columns: 1fr; }
      .contact-brand-card { padding: 36px 24px; }
      .contact-details-card { padding: 36px 24px; }
    }
    
    /* Floating Mute Button */
    .float-mute-btn {
      position: fixed;
      bottom: 30px;
      left: 30px;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.9);
      border: 1.5px solid var(--blue-border);
      color: var(--blue);
      font-size: 1.3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 18px rgba(46, 47, 159, 0.15);
      cursor: pointer;
      z-index: 999;
      transition: var(--trans);
      outline: none;
    }
    .float-mute-btn:hover {
      transform: translateY(-4px) scale(1.05);
      background: #FFFFFF;
      box-shadow: 0 8px 26px rgba(46, 47, 159, 0.25);
    }
    .float-mute-btn.playing {
      background: var(--blue);
      color: #FFFFFF;
      border-color: transparent;
      box-shadow: 0 4px 18px rgba(46, 47, 159, 0.35);
    }
    .float-mute-btn.playing:hover {
      background: var(--blue-light);
      box-shadow: 0 8px 26px rgba(46, 47, 159, 0.45);
    }
    
    /* Hero Image Carousel Styles */
    .hero-slider {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.5s ease-in-out;
    }
    .hero-slide.active {
      opacity: 1;
    }
    
    /* ═══════════════════════════════════════════════ */
  