:root {
    --bone:       #F4F2EE;
    --bone-md:    #EAE8E3;
    --bone-dk:    #DDD9D1;
    --ash:        #E2DFD9;
    --ink:        #1C2329;
    --ink-md:     #2D3740;
    --ink-lt:     #3D4B55;
    --slate:      #6B7A88;
    --teal:       #B8965A;
    --teal-lt:    #D4AF6E;
    --teal-dk:    #9A7840;
    --teal-pale:  #FDF3E3;
    --navy:       #0F1E35;
    --navy-md:    #162840;
    --white:      #FFFFFF;
    --border-lt:  rgba(28,35,41,0.08);
    --border-md:  rgba(28,35,41,0.14);
    --border-teal:rgba(184,150,90,0.22);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bone);
    color: var(--ink);
    overflow-x: hidden;
    cursor: none;
  }

  /* -- Cursor -- */
  .cursor {
    width: 8px; height: 8px;
    background: var(--teal);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transition: transform 0.12s ease;
  }
  .cursor-ring {
    width: 32px; height: 32px;
    border: 1.5px solid rgba(184,150,90,0.45);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94), width 0.2s, height 0.2s;
  }

  /* -- Announce -- */
  .announce {
    background: var(--navy);
    color: rgba(255,255,255,0.82);
    text-align: center;
    padding: 10px 20px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.09em;
  }
  .announce strong { color: var(--teal-lt); }
  .announce a { color: var(--teal-lt); text-decoration: underline; }

  /* -- Nav -- */
  nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 52px; height: 68px;
    border-bottom: 1px solid var(--border-md);
    position: sticky; top: 0; z-index: 100;
    background: rgba(244,242,238,0.96);
    backdrop-filter: blur(20px);
  }

  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .logo-mark {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--ink);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .logo-mark svg { width: 18px; height: 18px; }

  .logo-text { display: flex; flex-direction: column; line-height: 1; }
  .logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; font-weight: 600; letter-spacing: 0.04em;
    color: var(--ink);
  }
  .logo-sub {
    font-family: 'Space Mono', monospace;
    font-size: 8px; letter-spacing: 0.20em; text-transform: uppercase;
    color: var(--slate); margin-top: 3px;
  }

  .nav-links { display: flex; gap: 34px; list-style: none; }
  .nav-links a {
    font-family: 'Space Mono', monospace;
    font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase;
    color: var(--ink); text-decoration: none;
    opacity: 0.50; transition: opacity 0.2s; position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
    height: 1.5px; background: var(--teal);
    transform: scaleX(0); transition: transform 0.25s;
  }
  .nav-links a:hover { opacity: 1; }
  .nav-links a:hover::after { transform: scaleX(1); }

  /* -- Submenu -- */
  .nav-links .has-submenu { position: relative; }
  .nav-links .submenu {
    display: none;
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%);
    background: rgba(244,242,238,0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-md);
    border-radius: 4px;
    list-style: none;
    min-width: 170px;
    padding: 20px 0 6px;
    box-shadow: 0 8px 24px rgba(28,35,41,0.10);
    z-index: 200;
  }
  .nav-links .has-submenu:hover .submenu { display: block; }
  .nav-links .submenu li a {
    display: block;
    padding: 10px 20px;
    font-family: 'Space Mono', monospace;
    font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase;
    color: var(--ink); text-decoration: none;
    opacity: 0.55; transition: opacity 0.2s, background 0.2s;
    white-space: nowrap;
  }
  .nav-links .submenu li a::after { display: none; }
  .nav-links .submenu li a:hover { opacity: 1; background: var(--bone-md); }

  .nav-actions { display: flex; align-items: center; gap: 14px; }
  .nav-login {
    font-family: 'Space Mono', monospace;
    font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase;
    color: var(--ink); opacity: 0.42; text-decoration: none; transition: opacity 0.2s;
  }
  .nav-login:hover { opacity: 1; }
  .nav-join {
    background: var(--teal); color: var(--navy);
    padding: 9px 22px; border-radius: 2px;
    font-family: 'Space Mono', monospace;
    font-size: 10px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase;
    text-decoration: none; transition: background 0.2s, transform 0.15s;
  }
  .nav-join:hover { background: var(--teal-lt); transform: translateY(-1px); }

  /* -- Hero -- */
  .hero {
    position: relative;
    min-height: calc(100vh - 98px);
    display: flex; align-items: center;
    overflow: hidden;
    background: var(--bone);
  }

  .hero-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: 65% center;
    opacity: 1;
  }

  .hero-fade {
    position: absolute; inset: 0;
    background: linear-gradient(
      90deg,
      rgba(28,35,41,0.94) 0%,
      rgba(28,35,41,0.82) 34%,
      rgba(28,35,41,0.28) 58%,
      transparent 100%
    );
  }

  /* Court-line watermark on hero */
  .hero-court {
    position: absolute; inset: 0;
    opacity: 0.04; pointer-events: none;
  }

  /* Teal vertical accent line */
  .hero-accent-line {
    position: absolute; left: 52px; top: 0; bottom: 0;
    width: 2px; background: var(--teal);
    opacity: 0.35;
    animation: fadeIn 1.2s 0.5s both;
  }

  .hero-content {
    position: relative; z-index: 2;
    padding: 80px 52px 80px 72px;
    max-width: 660px;
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Space Mono', monospace;
    font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--teal-lt);
    margin-bottom: 24px;
    opacity: 0; animation: fadeUp 0.7s 0.15s forwards;
  }
  .hero-eyebrow::before { content: ''; width: 26px; height: 1.5px; background: var(--teal-lt); }

.hero-eyebrow1 {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Space Mono', monospace;
    font-size: 70px; letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
    opacity: 0; animation: fadeUp 0.7s 0.15s forwards;
  }
  .hero-eyebrow1::before { content: ''; width: 26px; height: 1.5px; background: var(--teal-lt); }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(58px, 9vw, 128px);
    font-weight: 500; line-height: 0.88;
    letter-spacing: -0.02em; color: var(--bone);
    opacity: 0; animation: fadeUp 0.8s 0.28s forwards;
  }
  .hero-title em { font-style: italic; color: var(--teal-lt); display: block; }

  .hero-rule {
    width: 48px; height: 1.5px; background: var(--teal);
    margin: 28px 0;
    opacity: 0; animation: fadeUp 0.5s 0.46s forwards;
  }

  .hero-sub {
    font-size: 15px; line-height: 1.72;
    color: rgba(244,242,238,0.55);
    max-width: 380px;
    opacity: 0; animation: fadeUp 0.7s 0.56s forwards;
  }

  .hero-actions {
    display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap;
    opacity: 0; animation: fadeUp 0.7s 0.70s forwards;
  }

  .btn-teal {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--teal); color: var(--ink);
    padding: 14px 32px; border-radius: 2px;
    font-family: 'Space Mono', monospace;
    font-size: 11px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase;
    text-decoration: none; transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  }
  .btn-teal:hover {
    background: var(--teal-lt); transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(184,150,90,0.28);
  }

  .btn-ghost-bone {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1.5px solid rgba(244,242,238,0.28);
    color: var(--bone); padding: 14px 32px; border-radius: 2px;
    font-family: 'Space Mono', monospace;
    font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase;
    text-decoration: none; transition: border-color 0.2s, background 0.2s;
  }
  .btn-ghost-bone:hover { border-color: var(--teal); background: rgba(184,150,90,0.10); }



  .hero-stats {
    position: absolute; right: 52px; bottom: 64px;
    display: flex; flex-direction: column; gap: 20px; z-index: 2;
    opacity: 0; animation: fadeIn 1s 1.0s forwards;
  }
  .hero-stat { text-align: right; }
  .hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 70px; font-weight: 500; color: var(--bone); line-height: 1;
  }
  .hero-stat-lbl {
    font-family: 'Space Mono', monospace;
    font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--white); margin-top: 2px;
  }
  .hero-stat-div { width: 1px; height: 48px; background: rgba(244,242,238,0.12); margin-left: auto; }

  /* -- Marquee Carousel -- */
  .marquee-carousel {
    overflow: hidden;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 40px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }
  .mc-track {
    display: flex;
    width: max-content;
    animation: mc-scroll 36s linear infinite;
    will-change: transform;
  }
  .mc-track:hover { animation-play-state: paused; }
  .mc-set {
    display: flex;
    flex-shrink: 0;
    gap: 16px;
    padding: 0 8px;
  }
  .mc-card {
    flex-shrink: 0;
    width: 200px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 24px 20px 22px;
    display: flex; flex-direction: column; gap: 10px;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    cursor: default;
  }
  .mc-card:hover {
    background: rgba(184,150,90,0.08);
    border-color: rgba(184,150,90,0.30);
    transform: translateY(-3px);
  }
  .mc-card-icon {
    width: 32px; height: 32px;
    color: var(--teal);
    opacity: 0.85;
  }
  .mc-card-icon svg { width: 100%; height: 100%; }
  .mc-card-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; font-weight: 600; letter-spacing: 0.01em;
    color: rgba(255,255,255,0.90);
    line-height: 1.2;
  }
  .mc-card-sub {
    font-family: 'Space Mono', monospace;
    font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    line-height: 1.5;
  }

  @keyframes mc-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* -- Section commons -- */
  .section-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--teal-dk); margin-bottom: 10px;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5.5vw, 70px);
    font-weight: 500; letter-spacing: -0.02em; line-height: 0.9;
    color: var(--ink);
  }
  .section-title em { font-style: italic; color: var(--teal); }
  .section-title-bone { color: var(--bone); }
  .section-header {
    display: flex; align-items: baseline; justify-content: space-between;
    margin-bottom: 48px;
  }
  .section-link {
    font-family: 'Space Mono', monospace;
    font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase;
    color: var(--ink); text-decoration: none;
    opacity: 0.38; transition: opacity 0.2s;
    border-bottom: 1px solid currentColor; padding-bottom: 2px;
  }
  .section-link:hover { opacity: 1; }
  .section-link-bone { color: rgba(244,242,238,0.45); }
  .section-link-bone:hover { color: #fff; opacity: 1; }

  .scroll-reveal {
    opacity: 0; transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .scroll-reveal.visible { opacity: 1; transform: translateY(0); }

  /* -- Programs -- */
  .programs { padding: 96px 52px; background: var(--bone); }

  .program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

  .program-card {
    position: relative; aspect-ratio: 3/4;
    overflow: hidden; cursor: none; text-decoration: none;
  }
  .program-bg {
    position: absolute; inset: 0;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .program-card:hover .program-bg { transform: scale(1.04); }

/*   .prog-adult { background: linear-gradient(158deg, #1C2E2C 0%, #132220 60%, #0D1A18 100%); } */
  .prog-adult { background: url('images/JuniorClass_5.png') center/cover no-repeat; }
  .prog-youth { background: url('images/JuniorClass_8.png') center/cover no-repeat; }
  .prog-comp  { background: url('images/ClubTeam.png') center/cover no-repeat; }

  .prog-icon {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    opacity: 0.14; transition: opacity 0.4s;
  }
  .program-card:hover .prog-icon { opacity: 0.24; }
  .prog-icon svg { width: 150px; height: 150px; }

  .prog-accent-line {
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--teal);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .program-card:hover .prog-accent-line { transform: scaleX(1); }

  .prog-content {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 32px;
    background: linear-gradient(to top, rgba(5,10,10,0.92) 0%, transparent 100%);
    transform: translateY(6px); transition: transform 0.4s; color: #fff;
  }
  .program-card:hover .prog-content { transform: translateY(0); }

  .prog-tag {
    font-family: 'Space Mono', monospace;
    font-size: 9px; letter-spacing: 0.20em; text-transform: uppercase;
    color: var(--teal-lt); margin-bottom: 8px;
  }
  .prog-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px; font-weight: 500; letter-spacing: -0.01em;
    line-height: 0.92; margin-bottom: 10px;
  }
  .prog-cta {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Space Mono', monospace;
    font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    opacity: 0; transform: translateX(-8px);
    transition: opacity 0.3s 0.05s, transform 0.3s 0.05s;
  }
  .program-card:hover .prog-cta { opacity: 1; transform: translateX(0); }
  .prog-cta::after { content: '?'; color: var(--teal-lt); }

  /* -- Schedule -- */
  .schedule {
    padding: 96px 52px;
    background: var(--white);
    border-top: 1px solid var(--border-lt);
    border-bottom: 1px solid var(--border-lt);
  }

  .session-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }

  .session-card {
    background: var(--bone-md);
    padding: 28px 26px 32px;
    text-decoration: none; color: var(--ink);
    border-top: 3px solid transparent;
    transition: background 0.22s, border-color 0.22s;
  }
  .session-card:hover { background: var(--bone-dk); border-top-color: var(--teal); }

  .session-day {
    font-family: 'Space Mono', monospace;
    font-size: 9px; letter-spacing: 0.20em; text-transform: uppercase;
    color: var(--teal-dk); margin-bottom: 11px;
  }
  .session-time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; font-weight: 500; line-height: 1;
    color: var(--ink); margin-bottom: 6px;
  }
  .session-name { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
  .session-detail { font-size: 12px; color: var(--slate); font-style: italic; }
  .session-spots {
    display: inline-flex; align-items: center; gap: 5px; margin-top: 18px;
    font-family: 'Space Mono', monospace;
    font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--slate);
  }
  .spots-dot { width: 6px; height: 6px; border-radius: 50%; background: #2E8B57; }
  .spots-dot.few  { background: var(--teal); }
  .spots-dot.full { background: #DC2626; }

  /* -- Brand panels -- */
  .brand-strip { display: grid; grid-template-columns: 1fr 1fr; }

  .brand-panel { padding: 88px 64px; position: relative; overflow: hidden; }
  .brand-panel p { font-size: 15px; line-height: 1.75; margin: 22px 0 34px; max-width: 390px; }

  .bp-ink {
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .bp-ink .section-label { color: var(--teal-lt); }
  .bp-ink .section-title { color: var(--bone); }
  .bp-ink p { color: rgba(244,242,238,0.50); }

  .bp-ash { background: var(--ash); }
  .bp-ash .section-label { color: var(--teal-dk); }
  .bp-ash .section-title { color: var(--ink); }
  .bp-ash p { color: var(--slate); }

  .brand-bg-text {
    position: absolute; right: -14px; bottom: -28px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 190px; font-weight: 500; line-height: 1;
    user-select: none; pointer-events: none;
  }
  .bp-ink .brand-bg-text   { color: rgba(255,255,255,0.03); }
  .bp-ash .brand-bg-text   { color: rgba(28,35,41,0.05); }

  /* -- Coverflow Brand Carousel -- */
  .bcf-section {
    background: var(--ink);
    padding: 80px 0 72px;
    text-align: center;
    overflow: hidden;
  }
  .bcf-header { margin-bottom: 56px; padding: 0 52px; }
  .bcf-header .section-label { color: var(--teal-dk); }
  .bcf-header .section-title { color: var(--bone); }
  .bcf-header .section-title em { color: var(--teal-lt); }

  .bcf-viewport {
    position: relative;
    height: 380px;
    perspective: 1200px;
    transform-style: preserve-3d;
  }

  .bcf-card {
    position: absolute;
    width: 280px; height: 340px;
    left: calc(50% - 140px);
    top: 20px;
    border-radius: 12px;
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94),
                opacity  0.75s cubic-bezier(0.25,0.46,0.45,0.94),
                box-shadow 0.75s;
    cursor: pointer;
    will-change: transform, opacity;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  }
  .bcf-card.bcf-active {
    box-shadow: 0 0 0 1.5px var(--teal),
                0 24px 64px rgba(0,0,0,0.55),
                0 0 60px rgba(184,150,90,0.14);
  }

  /* Logo area — white bg so any brand logo color shows correctly */
  .bcf-logo-area {
    flex: 1;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    padding: 32px 28px;
  }
  .bcf-logo-area img {
    max-width: 180px; max-height: 100px;
    width: auto; height: auto;
    object-fit: contain;
    display: block;
  }
  .bcf-logo-text {
    background: var(--ink);
  }
  .bcf-logo-text span {
    font-family: 'DM Sans', sans-serif;
    font-size: 28px; font-weight: 300;
    letter-spacing: 10px; text-transform: uppercase;
    color: rgba(255,255,255,0.88);
  }

  /* Info bar — dark strip at bottom */
  .bcf-bar {
    background: var(--ink-md);
    padding: 16px 20px 18px;
    display: flex; flex-direction: column; gap: 8px; align-items: center;
    border-top: 2px solid transparent;
    transition: border-color 0.75s;
  }
  .bcf-active .bcf-bar { border-color: var(--teal); }
  .bcf-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 600; letter-spacing: 0.04em;
    color: var(--bone);
  }
  .bcf-meta {
    font-family: 'Space Mono', monospace;
    font-size: 8px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.35);
  }
  .bcf-active .bcf-meta { color: var(--teal-lt); }
  .bcf-pills { display: flex; gap: 5px; flex-wrap: wrap; justify-content: center; }
  .bcf-pills span {
    font-family: 'Space Mono', monospace;
    font-size: 7px; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.30);
    border: 1px solid rgba(255,255,255,0.10);
    padding: 2px 7px; border-radius: 2px;
    transition: color 0.75s, border-color 0.75s;
  }
  .bcf-active .bcf-pills span {
    color: rgba(212,175,110,0.75);
    border-color: rgba(184,150,90,0.28);
  }

  .bcf-controls {
    display: flex; align-items: center; justify-content: center;
    gap: 20px; margin-top: 40px;
  }
  .bcf-btn {
    width: 42px; height: 42px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.50);
    cursor: none; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
  }
  .bcf-btn svg { width: 18px; height: 18px; }
  .bcf-btn:hover { background: rgba(184,150,90,0.14); border-color: rgba(184,150,90,0.40); color: var(--teal-lt); }
  .bcf-dots { display: flex; gap: 8px; align-items: center; }
  .bcf-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.18); border: none; cursor: none;
    transition: background 0.3s, transform 0.3s;
  }
  .bcf-dot.bcf-dot-on { background: var(--teal); transform: scale(1.45); }

  .btn-outline-ink {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1.5px solid rgba(28,35,41,0.22);
    color: var(--ink); padding: 13px 28px; border-radius: 2px;
    font-family: 'Space Mono', monospace;
    font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase;
    text-decoration: none; transition: border-color 0.2s, background 0.2s;
  }
  .btn-outline-ink:hover { border-color: var(--teal); background: rgba(13,148,136,0.06); }

  .btn-outline-bone {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1.5px solid rgba(244,242,238,0.22);
    color: var(--bone); padding: 13px 28px; border-radius: 2px;
    font-family: 'Space Mono', monospace;
    font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase;
    text-decoration: none; transition: border-color 0.2s, background 0.2s;
  }
  .btn-outline-bone:hover { border-color: var(--teal-lt); background: rgba(184,150,90,0.12); }

  /* -- Coaches -- */
  .coaches { padding: 96px 52px; background: var(--bone); }

  .coaches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

  .coach-card {
    background: var(--white);
    padding: 36px 30px;
    border-bottom: 3px solid transparent;
    transition: border-color 0.22s, background 0.22s;
  }
  .coach-card:hover { border-bottom-color: var(--teal); background: #F9FFFE; }

  .coach-avatar {
    width: 60px; height: 60px; border-radius: 50%;
    background: #FDF3E3;
    margin-bottom: 20px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600; color: var(--teal-dk);
    border: 1.5px solid var(--border-teal);
  }
  .coach-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 600; color: var(--ink); margin-bottom: 3px;
    letter-spacing: -0.01em;
  }
  .coach-role {
    font-family: 'Space Mono', monospace;
    font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--teal-dk); margin-bottom: 14px;
  }
  .coach-bio { font-size: 13px; line-height: 1.65; color: var(--slate); }
  .coach-cert {
    display: inline-flex; align-items: center; gap: 5px;
    margin-top: 18px; padding: 5px 10px;
    background: rgba(13,148,136,0.08);
    border-radius: 2px;
    font-family: 'Space Mono', monospace;
    font-size: 8px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--teal-dk);
  }

  /* -- AI Analytics Section -- */
  .ai-section {
    background: var(--ink);
    padding: 100px 0 80px;
    overflow: hidden;
    position: relative;
  }
  .ai-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(184,150,90,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .ai-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 52px;
  }
  .ai-header {
    text-align: center;
    margin-bottom: 56px;
  }
  .ai-header .section-label { color: var(--teal-dk); }
  .ai-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 500; line-height: 1;
    letter-spacing: -0.02em;
    color: var(--bone);
    margin: 12px 0 20px;
  }
  .ai-title em { font-style: italic; color: var(--teal-lt); }
  .ai-desc {
    font-size: 15px; color: rgba(244,242,238,0.45);
    max-width: 480px; margin: 0 auto;
    line-height: 1.75;
  }

  /* Carousel shell */
  .ai-carousel {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(184,150,90,0.16);
    box-shadow: 0 40px 100px rgba(0,0,0,0.65);
  }
  .ai-track {
    position: relative;
    height: 560px;
    background: #050d1a;
  }
  .ai-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1);
    display: flex; align-items: center; justify-content: center;
  }
  .ai-slide-active { opacity: 1; }
  .ai-slide-img {
    width: 100%; height: 100%;
    object-fit: contain;
    display: block;
  }

  /* Nav arrows */
  .ai-arr {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(10,20,40,0.72);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.11);
    color: rgba(255,255,255,0.8); font-size: 20px;
    cursor: pointer; z-index: 10;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
  }
  .ai-arr:hover {
    background: rgba(184,150,90,0.22);
    border-color: rgba(184,150,90,0.55);
    color: #fff;
  }
  .ai-arr-l { left: 18px; }
  .ai-arr-r { right: 18px; }

  /* Bottom info bar */
  .ai-bar {
    display: flex; align-items: center; gap: 18px;
    padding: 14px 22px;
    background: rgba(8,17,34,0.94);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .ai-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(184,150,90,0.22);
    border-radius: 4px;
    padding: 5px 11px;
    font-family: 'Space Mono', monospace;
    font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .ai-badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74,222,128,0.8);
    animation: pulse-dot 2s ease-in-out infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.55; transform: scale(0.82); }
  }
  .ai-counter {
    font-family: 'Space Mono', monospace;
    font-size: 11px; color: rgba(255,255,255,0.28);
    white-space: nowrap; flex-shrink: 0;
  }
  .ai-slash { opacity: 0.5; }
  .ai-captions {
    flex: 1; position: relative; height: 18px; overflow: hidden;
  }
  .ai-cap {
    position: absolute; inset: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; color: rgba(244,242,238,0.6);
    letter-spacing: 0.02em;
    opacity: 0; transition: opacity 0.5s;
    white-space: nowrap;
  }
  .ai-cap-active { opacity: 1; }
  .ai-dots-row {
    display: flex; gap: 6px; align-items: center; flex-shrink: 0;
  }
  .ai-dot {
    width: 6px; height: 6px; border-radius: 3px;
    background: rgba(255,255,255,0.18);
    border: none; padding: 0; cursor: pointer;
    transition: background 0.3s, width 0.35s;
  }
  .ai-dot.ai-dot-on {
    background: var(--teal-lt);
    width: 20px;
  }

  /* Progress bar */
  .ai-prog-bar {
    height: 2px;
    background: rgba(255,255,255,0.06);
  }
  .ai-prog-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--teal-dk), var(--teal-lt));
    width: 0%;
  }

  /* -- Testimonials -- */
  .testimonials {
    padding: 96px 52px;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

  .testimonial {
    padding: 36px 30px;
    background: var(--ink-md);
    position: relative; overflow: hidden;
  }
  .testimonial::before {
    content: '"';
    position: absolute; top: 8px; left: 22px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 110px; color: var(--teal); opacity: 0.12; line-height: 1;
  }

  .testimonial-stars { display: flex; gap: 4px; margin-bottom: 18px; }
  .star {
    width: 10px; height: 10px; background: var(--teal);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  }
  .testimonial-text {
    font-size: 14px; line-height: 1.72;
    color: rgba(244,242,238,0.75); margin-bottom: 24px;
    font-style: italic; position: relative; z-index: 1;
  }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--ink-lt); border: 1.5px solid rgba(184,150,90,0.35);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px; font-weight: 600; color: var(--teal-lt); flex-shrink: 0;
  }
  .author-name { font-size: 13px; font-weight: 600; color: var(--bone); }
  .author-tag {
    font-family: 'Space Mono', monospace;
    font-size: 9px; letter-spacing: 0.10em; color: var(--slate); margin-top: 2px;
  }

  /* -- Newsletter -- */
  .newsletter {
    padding: 96px 52px;
    background: var(--ash);
    text-align: center;
    position: relative; overflow: hidden;
  }
  .newsletter .section-label { color: var(--teal-dk); }
  .newsletter .section-title { margin-bottom: 14px; }
  .newsletter p { font-size: 15px; color: var(--slate); max-width: 440px; margin: 0 auto 34px; line-height: 1.68; }

  /* Subtle dot grid */
  .nl-dots {
    position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(circle, rgba(184,150,90,0.14) 1px, transparent 1px);
    background-size: 28px 28px;
  }
  .nl-inner { position: relative; z-index: 1; }

  .email-form {
    display: flex; flex-direction: column; gap: 12px;
    max-width: 440px; margin: 0 auto;
  }
  .name-input, .email-input, .phone-input {
    width: 100%; padding: 14px 18px;
    font-family: 'DM Sans', sans-serif; font-size: 14px;
    background: var(--white); border: 1.5px solid var(--border-md);
    color: var(--ink); border-radius: 2px; outline: none;
    transition: border-color 0.2s;
  }
  .name-input::placeholder, .email-input::placeholder, .phone-input::placeholder { color: rgba(28,35,41,0.32); }
  .name-input:focus, .email-input:focus, .phone-input:focus { border-color: var(--teal); }
  .email-submit {
    width: 100%; padding: 15px 22px; margin-top: 4px;
    background: var(--navy); color: #fff; border: none;
    font-family: 'Space Mono', monospace;
    font-size: 10px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase;
    cursor: none; border-radius: 2px; transition: background 0.2s;
  }
  .email-submit:hover { background: var(--navy-md); }

  /* -- Footer -- */
  footer { background:var(--navy); padding: 64px 52px 32px; }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 48px; padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .footer-brand p { font-size: 13px; line-height: 1.72; color: rgba(244,242,238,0.34); margin: 16px 0 22px; max-width: 260px; }
  .footer-logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 600; color: var(--bone);
    letter-spacing: 0.02em;
  }
  .footer-logo-teal { color: var(--teal-lt); }
  .social-links { display: flex; gap: 8px; }
  .social-link {
    width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.10);
    border-radius: 2px; display: flex; align-items: center; justify-content: center;
    font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 0.1em;
    color: rgba(255,255,255,0.38); text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }
  .social-link:hover { border-color: var(--teal); color: var(--teal-lt); }
  .footer-col h4 {
    font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 0.20em;
    text-transform: uppercase; color: rgba(255,255,255,0.24); margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { font-size: 13px; color: rgba(255,255,255,0.44); text-decoration: none; transition: color 0.2s; }
  .footer-col a:hover { color: #fff; }
  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 0.10em;
    color: rgba(255,255,255,0.20);
  }
  .footer-legal { display: flex; gap: 20px; }
  .footer-legal a { color: rgba(255,255,255,0.20); text-decoration: none; transition: color 0.2s; }
  .footer-legal a:hover { color: rgba(255,255,255,0.55); }

  @keyframes fadeUp { from { opacity:0; transform:translateY(20px);} to { opacity:1; transform:translateY(0);} }
  @keyframes fadeIn { from { opacity:0;} to { opacity:1;} }

  @media (max-width: 960px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .hero-content { padding: 60px 24px; }
    .hero-accent-line { display: none; }
    .hero-stats { display: none; }
    .programs, .schedule, .coaches, .testimonials, .newsletter, footer { padding-left: 24px; padding-right: 24px; }
    .program-grid, .coaches-grid, .testimonial-grid { grid-template-columns: 1fr; }
    .session-grid { grid-template-columns: 1fr 1fr; }
    .brand-strip { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  /* -- Pro Shop Image Slider -- */
  .pro-shop {
    padding: 80px 40px;
    background: var(--bone);
  }

  .slider-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
  }

  .slider-main {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--bone-md);
    aspect-ratio: 4/3;
  }

  .slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
  }

  @keyframes fadeIn {
    to { opacity: 1; }
  }

  .slider-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .slider-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--white);
    border: 2px solid var(--border-lt);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
  }

  .slider-tab:hover {
    border-color: var(--teal);
    transform: translateX(4px);
  }

  .slider-tab.active {
    border-color: var(--teal);
    background: var(--teal-pale);
  }

  .slider-tab img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 2px;
  }

  .slider-tab span {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
  }

  .slider-tab.active span {
    color: var(--teal-dk);
    font-weight: 600;
  }

  .slider-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 40px;
    background: var(--navy);
    color: var(--white);
    border-radius: 4px;
  }

  .slider-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
  }

  .slider-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
  }

  @media (max-width: 768px) {
    .slider-container {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .slider-tabs {
      flex-direction: row;
      overflow-x: auto;
      gap: 8px;
    }

    .slider-tab {
      flex-shrink: 0;
      padding: 8px;
    }

    .slider-tab img {
      width: 60px;
      height: 45px;
    }

    .slider-title {
      font-size: 24px;
    }
  }


  

    .carousel-card {
      height: 180px;
    }

    .carousel-card-title {
      font-size: 18px;
    }

    .carousel-card-overlay {
      padding: 20px 16px;
    }

    .my-gear-slider {
  max-width: 1180px;
  margin: 40px auto 0;
}

.my-gear-slider .swiper-slide {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.2);
}

.slide-video {
  width: 100%;
  height: 900px;
  object-fit: cover;
  display: block;
}

.my-gear-slider .swiper-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 38, 0.05) 0%, rgba(10, 18, 38, 0.35) 45%, rgba(10, 18, 38, 0.7) 100%);
  pointer-events: none;
}

.slide-copy {
  position: absolute;
  left: 32px;
  bottom: 32px;
  width: min(520px, calc(100% - 64px));
  padding: 28px 26px;
  background: rgba(9, 18, 35, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  backdrop-filter: blur(18px);
  color: #fff;
  z-index: 2;
}

.slide-copy h3 {
  font-size: 38px;
  margin-bottom: 12px;
  line-height: 1.05;
}

.slide-copy p {
  max-width: 520px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.my-gear-slider .swiper-pagination {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.my-gear-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.my-gear-slider .swiper-pagination-bullet-active {
  width: 14px;
  height: 14px;
  background: #7dd3fc;
  box-shadow: 0 0 18px rgba(125, 211, 252, 0.45);
}

@media (max-width: 900px) {
  .my-gear-slider .swiper-slide {
    min-height: 420px;
  }

  .slide-copy {
    left: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
    padding: 22px;
  }

  .slide-copy h3 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .my-gear-slider .swiper-slide {
    min-height: 320px;
  }

  .slide-copy {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    padding: 18px;
  }

  .slide-copy h3 {
    font-size: 24px;
  }
}

/* -- Shop Marquee Carousel -- */
.shop-marquee {
  overflow: hidden;
  padding: 48px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.shop-track {
  display: flex;
  width: max-content;
  animation: shop-scroll 40s linear infinite;
  will-change: transform;
}
.shop-track:hover { animation-play-state: paused; }
.shop-set {
  display: flex;
  flex-shrink: 0;
  gap: 20px;
  padding: 0 10px;
}
.shop-card {
  flex-shrink: 0;
  width: 280px;
  background: var(--white);
  border: 1px solid var(--border-md);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.28s, box-shadow 0.28s;
  cursor: default;
}
.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(28,35,41,0.12);
}
.shop-img {
  width: 100%; height: 200px;
  overflow: hidden;
  background: var(--bone-md);
}
.shop-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.5s;
}
.shop-card:hover .shop-img img { transform: scale(1.05); }
.shop-copy {
  padding: 20px 20px 22px;
  display: flex; flex-direction: column; gap: 6px;
  text-decoration: none; color: var(--ink);
}
.shop-tag {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-dk);
}
.shop-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--ink); line-height: 1.2;
}
.shop-desc {
  font-size: 13px; color: var(--slate); line-height: 1.6;
}
@keyframes shop-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.thumb-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.6;
}

 
