@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,200;0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
    --deep: #000000;
    --mid: #1a1a1a;
    --rose: #c8c3bb;
    --blush: #a8a49e;
    --soft: #edebe6;
    --off-white: #f5f3ee;
    --text-dim: rgba(200,195,187,0.55);
    --text-bright: #edebe6;
    --glass: rgba(0,0,0,0.55);
    --glass-light: rgba(200,195,187,0.1);
    --glass-border: rgba(200,195,187,0.18);
  }

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

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    background: var(--deep);
    color: var(--text-bright);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  #cursor {
    position: fixed;
    width: 10px; height: 10px;
    background: var(--rose);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(.23,1,.32,1), height 0.3s cubic-bezier(.23,1,.32,1), background 0.3s;
    mix-blend-mode: difference;
  }
  #cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid rgba(200,195,187,0.45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.18s cubic-bezier(.23,1,.32,1);
  }
  #cursor-label {
    position: fixed;
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--rose);
    pointer-events: none;
    z-index: 9997;
    opacity: 0;
    transform: translate(-50%, 22px);
    transition: opacity 0.2s;
    text-transform: uppercase;
  }
  body.cursor-hover #cursor { width: 5px; height: 5px; }
  body.cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: var(--rose); }
  body.cursor-hover #cursor-label { opacity: 1; }

  /* LOADER */
  #loader {
    position: fixed; inset: 0;
    background: var(--deep);
    z-index: 9000;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    transition: opacity 1.2s cubic-bezier(.23,1,.32,1);
  }
  #loader.fade-out { opacity: 0; pointer-events: none; }
  .loader-crest {
    width: 80px; height: 80px;
    position: relative;
    margin-bottom: 32px;
  }

  .loader-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 0.4em;
    color: var(--rose);
    opacity: 0;
    animation: fadeUp 0.8s 1.8s cubic-bezier(.23,1,.32,1) forwards;
  }
  .loader-line {
    width: 0; height: 1px;
    background: var(--rose);
    margin-top: 16px;
    animation: expandLine 1s 2.2s cubic-bezier(.23,1,.32,1) forwards;
    opacity: 0.5;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes expandLine {
    to { width: 80px; }
  }

  /* GRAIN OVERLAY */
  .grain {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 100;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px;
  }

  /* NAVBAR */
  #navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 500;
    padding: 24px 48px;
    display: flex; align-items: center; justify-content: space-between;
    transition: padding 0.5s cubic-bezier(.23,1,.32,1), background 0.5s, backdrop-filter 0.5s;
  }
  #navbar.scrolled {
    padding: 14px 48px;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 0.5px solid var(--glass-border);
  }
  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.06em;
    color: var(--soft);
    text-decoration: none;
    display: flex; align-items: center; gap: 10px;
  }
  .nav-logo .crest-mini {
    width: 28px; height: 28px;
  }
  .nav-links {
    display: flex; gap: 36px; list-style: none;
    align-items: center;
  }
  .nav-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blush);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -3px; left: 0;
    width: 0; height: 0.5px;
    background: var(--rose);
    transition: width 0.4s cubic-bezier(.23,1,.32,1);
  }
  .nav-links a:hover { color: var(--soft); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--deep);
    background: var(--rose);
    padding: 10px 22px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
  }
  .nav-cta:hover { background: var(--soft); transform: translateY(-1px); }
  .hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    cursor: pointer; padding: 4px;
  }
  .hamburger span {
    display: block; width: 24px; height: 1px;
    background: var(--blush);
    transition: all 0.4s cubic-bezier(.23,1,.32,1);
  }
  .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* MOBILE MENU */
  #mobile-menu {
    position: fixed; inset: 0;
    background: var(--deep);
    z-index: 400;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 48px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.5s cubic-bezier(.23,1,.32,1);
  }
  #mobile-menu.open { opacity: 1; pointer-events: all; }
  .mobile-nav-link {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    letter-spacing: 0.05em;
    color: var(--blush);
    text-decoration: none;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(.23,1,.32,1), color 0.3s;
  }
  #mobile-menu.open .mobile-nav-link {
    opacity: 1; transform: translateY(0);
  }
  #mobile-menu.open .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
  #mobile-menu.open .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
  #mobile-menu.open .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
  #mobile-menu.open .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
  #mobile-menu.open .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }
  #mobile-menu.open .mobile-nav-link:nth-child(6) { transition-delay: 0.35s; }
  .mobile-nav-link:hover { color: var(--rose); }

  /* HERO */
  #hero {
    position: relative;
    height: 100vh; min-height: 600px;
    display: flex; flex-direction: column;
    align-items: flex-start; justify-content: flex-end;
    padding: 0 7vw 8vh;
    overflow: hidden;
  }
  .hero-video-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #000000 0%, #151515 40%, #2a2a2a 100%);
    overflow: hidden;
  }
  .hero-video-bg::before {
    content: '';
    position: absolute; inset: 0;
    background: 
      radial-gradient(ellipse at 70% 40%, rgba(60,60,60,0.3) 0%, transparent 60%),
      radial-gradient(ellipse at 20% 80%, rgba(0,0,0,0.8) 0%, transparent 50%);
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
  }
  .hero-pitch-lines {
    position: absolute; inset: 0;
    opacity: 0.06;
    background-image: 
      repeating-linear-gradient(90deg, var(--rose) 0, var(--rose) 1px, transparent 1px, transparent 120px),
      repeating-linear-gradient(0deg, var(--rose) 0, var(--rose) 1px, transparent 1px, transparent 120px);
  }
  .hero-label {
    position: relative;
    z-index: 10;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 22px;
    opacity: 0;
    animation: fadeUp 1s 3.2s cubic-bezier(.23,1,.32,1) forwards;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  }
  .hero-heading {
    position: relative;
    z-index: 10;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 10vw, 130px);
    line-height: 0.92;
    letter-spacing: 0.02em;
    color: var(--soft);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 1.1s 3.4s cubic-bezier(.23,1,.32,1) forwards;
    max-width: 14ch;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  }
  .hero-heading em {
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    color: var(--rose);
    font-size: 1.08em;
  }
  .hero-sub {
    position: relative;
    z-index: 10;
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(13px, 1.4vw, 16px);
    font-weight: 300;
    color: var(--text-dim);
    letter-spacing: 0.04em;
    max-width: 42ch;
    line-height: 1.7;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp 1s 3.6s cubic-bezier(.23,1,.32,1) forwards;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  }
  .hero-btns {
    position: relative;
    z-index: 10;
    display: flex; gap: 16px; flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s 3.8s cubic-bezier(.23,1,.32,1) forwards;
  }
  .btn-primary {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--deep);
    background: var(--rose);
    padding: 15px 34px;
    text-decoration: none;
    transition: background 0.35s, transform 0.3s cubic-bezier(.23,1,.32,1);
  }
  .btn-primary:hover { background: var(--soft); transform: translateY(-2px); }
  .btn-ghost {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blush);
    background: transparent;
    border: 0.5px solid var(--glass-border);
    padding: 15px 34px;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: border-color 0.35s, color 0.35s, transform 0.3s;
  }
  .btn-ghost:hover { border-color: var(--rose); color: var(--soft); transform: translateY(-2px); }
  .hero-scroll-hint {
    position: absolute;
    z-index: 10;
    right: 48px; bottom: 8vh;
    writing-mode: vertical-rl;
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-dim);
    display: flex; align-items: center; gap: 14px;
    opacity: 0;
    animation: fadeUp 1s 4s cubic-bezier(.23,1,.32,1) forwards;
  }
  .hero-scroll-hint::before {
    content: '';
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, transparent, var(--rose));
    animation: scrollLine 2s 4.5s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0%,100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
  }

  /* SECTIONS */
  section { position: relative; }
  .section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 16px;
  }
  .section-label::before {
    content: '';
    width: 28px; height: 0.5px;
    background: var(--rose);
  }

  /* ABOUT */
  #about {
    padding: 120px 7vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-visual {
    position: relative;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, #111111 0%, #2a2a2a 100%);
    overflow: hidden;
  }
  .about-visual::before {
    content: '';
    position: absolute; inset: 0;
    background: 
      radial-gradient(ellipse at 50% 80%, rgba(0,0,0,0.6) 0%, transparent 70%),
      radial-gradient(ellipse at 80% 20%, rgba(200,195,187,0.1) 0%, transparent 50%);
  }
  .about-visual-inner {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .about-big-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 160px;
    color: rgba(200,195,187,0.09);
    line-height: 1;
  }
  .about-text-block h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.0;
    letter-spacing: 0.03em;
    color: var(--soft);
    margin-bottom: 32px;
  }
  .about-text-block h2 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--rose);
  }
  .about-text-block p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-dim);
    max-width: 44ch;
    margin-bottom: 20px;
  }
  .about-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; margin-top: 48px;
  }
  .stat-item { border-top: 0.5px solid var(--glass-border); padding-top: 18px; }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    color: var(--rose);
    line-height: 1;
  }
  .stat-desc {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 4px;
  }

  /* PROGRAMS */
  #programs {
    padding: 100px 7vw;
    background: linear-gradient(to bottom, var(--deep) 0%, #0a0a0a 100%);
  }
  .programs-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 60px;
  }
  .programs-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.0;
    color: var(--soft);
  }
  .programs-header p {
    font-size: 13px;
    color: var(--text-dim);
    max-width: 30ch;
    text-align: right;
    line-height: 1.7;
  }
  .programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .program-card {
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 0.5px solid var(--glass-border);
    padding: 44px 36px;
    overflow: hidden;
    transition: background 0.5s, transform 0.4s cubic-bezier(.23,1,.32,1);
    cursor: none;
  }
  .program-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(200,195,187,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
  }
  .program-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
  .program-card:hover::before { opacity: 1; }
  .program-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--rose);
    margin-bottom: 40px;
  }
  .program-icon {
    width: 40px; height: 40px;
    margin-bottom: 28px;
  }
  .program-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    letter-spacing: 0.04em;
    color: var(--soft);
    margin-bottom: 16px;
  }
  .program-card p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-dim);
  }
  .program-arrow {
    margin-top: 36px;
    font-size: 20px;
    color: var(--rose);
    transition: transform 0.3s;
  }
  .program-card:hover .program-arrow { transform: translateX(6px); }

  .program-detail-card {
    display: none;
    margin-top: 40px;
    padding: 36px 40px;
    background: rgba(255,255,255,0.04);
    border: 0.5px solid var(--glass-border);
    border-radius: 18px;
    box-shadow: 0 30px 90px rgba(0,0,0,0.18);
  }
  .program-detail-card.open {
    display: block;
  }
  .program-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
  }
  .program-detail-header h3 {
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
    color: var(--soft);
  }
  .program-detail-card p,
  .program-detail-card ul {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.8;
  }
  .program-detail-card ul {
    margin: 18px 0 0 22px;
    list-style: disc;
  }
  .program-detail-card li {
    margin-bottom: 10px;
  }
  .program-detail-close {
    background: transparent;
    border: 1px solid rgba(200,195,187,0.25);
    color: var(--rose);
    font-size: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
  }
  .program-detail-close:hover {
    background: rgba(200,195,187,0.08);
    transform: scale(1.05);
  }

  /* COACHES */
  #coaches {
    padding: 100px 7vw;
  }
  .coaches-intro {
    display: grid; grid-template-columns: 1fr 2fr;
    gap: 60px; align-items: start;
    margin-bottom: 72px;
  }
  .coaches-intro h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 68px);
    color: var(--soft);
    line-height: 1;
    position: sticky; top: 100px;
  }
  .coaches-intro p {
    font-size: 15px; line-height: 1.85;
    color: var(--text-dim); max-width: 52ch;
  }
  .coaches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .coach-card {
    position: relative;
    overflow: hidden;
    cursor: none;
  }
  .coach-img {
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, #1a1a1a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(.23,1,.32,1);
  }
  .coach-card:hover .coach-img { transform: scale(1.04); }
  .coach-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
  }
  .coach-img-pattern {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    color: rgba(200,195,187,0.08);
    font-style: italic;
  }
  .coach-info {
    padding: 20px 0 0;
  }
  .coach-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 0.04em;
    color: var(--soft);
  }
  .coach-role {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose);
    margin-top: 4px;
  }
  .coach-exp {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 8px;
    line-height: 1.6;
  }

  /* ACHIEVEMENTS */
  #achievements {
    padding: 120px 7vw;
    background: linear-gradient(to bottom, #0a0a0a 0%, var(--deep) 100%);
    text-align: center;
  }
  .achievements-big {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 72px;
  }
  .ach-item {
    padding: 60px 24px;
    border: 0.5px solid var(--glass-border);
    position: relative;
    overflow: hidden;
  }
  .ach-item::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--rose), transparent);
    opacity: 0;
    transition: opacity 0.5s;
  }
  .ach-item:hover::before { opacity: 1; }
  .ach-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 6vw, 88px);
    color: var(--rose);
    line-height: 1;
    display: block;
  }
  .ach-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 12px;
    display: block;
  }

  /* GALLERY */
  #gallery {
    padding: 100px 7vw;
  }
  .gallery-header { margin-bottom: 56px; }
  .gallery-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 68px);
    color: var(--soft);
  }
  .gallery-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, 220px);
    gap: 3px;
  }
  .gallery-item {
    overflow: hidden;
    position: relative;
    cursor: none;
    min-width: 0;
    min-height: 0;
  }
  /* grid positions now set via inline styles on each gallery-item */
  .gallery-inner {
    width: 100%; height: 100%;
    overflow: hidden;
    position: relative;
    transition: transform 0.7s cubic-bezier(.23,1,.32,1);
  }
  .gallery-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    inset: 0;
    transition: transform 0.7s cubic-bezier(.23,1,.32,1);
  }
  .gallery-item:hover .gallery-inner img { transform: scale(1.06); }
  .gallery-item:hover .gallery-inner { transform: scale(1.06); }
  .gi-1 { background: #111; } /* fallback */
  .gi-2 { background: #111; }
  .gi-3 { background: #111; }
  .gi-4 { background: #111; }
  .gi-5 { background: #111; }
  .gi-6 { background: #111; }
  .gi-7 { background: #111; }
  .gi-8 { background: #111; }
  .gallery-item-label {
    position: absolute; bottom: 18px; left: 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(200,195,187,0.55);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .gallery-item:hover .gallery-item-label { opacity: 1; }
  .gallery-inner-content {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: rgba(200,195,187,0.09);
    font-style: italic;
  }

  /* TRIAL REGISTRATION */
  #trials {
    padding: 120px 7vw;
    background: linear-gradient(to bottom, var(--deep) 0%, #0a0a0a 100%);
    min-height: 100vh;
    display: flex; align-items: center;
  }
  .trials-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    width: 100%;
  }
  .trials-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 6vw, 88px);
    line-height: 0.95;
    color: var(--soft);
    margin-bottom: 28px;
  }
  .trials-content h2 em {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--rose);
    font-size: 1.1em;
  }
  .trials-content p {
    font-size: 14px; line-height: 1.85;
    color: var(--text-dim); max-width: 42ch;
    margin-bottom: 40px;
  }
  .trials-detail {
    display: flex; flex-direction: column; gap: 16px;
  }
  .td-item {
    display: flex; align-items: center; gap: 16px;
    font-size: 13px; color: var(--blush);
    letter-spacing: 0.04em;
  }
  .td-item::before {
    content: '';
    width: 20px; height: 0.5px;
    background: var(--rose);
    flex-shrink: 0;
  }
  .trial-form {
    background: rgba(255,255,255,0.05);
    border: 0.5px solid var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 48px 40px;
  }
  .form-row {
    margin-bottom: 28px;
  }
  .form-label {
    display: block;
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 10px;
  }
  .form-input {
    width: 100%;
    background: rgba(0,0,0,0.4);
    border: 0.5px solid var(--glass-border);
    border-top: none; border-left: none; border-right: none;
    border-bottom: 0.5px solid rgba(200,195,187,0.25);
    padding: 12px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--soft);
    outline: none;
    transition: border-color 0.3s;
    background: transparent;
  }
  .form-input::placeholder { color: rgba(200,195,187,0.30); }
  .form-input:focus { border-bottom-color: var(--rose); }
  select.form-input option { background: #000000; color: var(--soft); }
  .form-submit {
    width: 100%;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--deep);
    background: var(--rose);
    border: none;
    padding: 18px;
    cursor: none;
    margin-top: 8px;
    transition: background 0.35s, transform 0.3s;
  }
  .form-submit:hover { background: var(--soft); transform: translateY(-2px); }
  .wa-cta {
    display: flex; align-items: center; gap: 12px;
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 20px;
    text-decoration: none;
    transition: color 0.3s;
  }
  .wa-cta:hover { color: var(--rose); }
  .wa-icon {
    width: 32px; height: 32px;
    background: rgba(37,211,102,0.15);
    border: 0.5px solid rgba(37,211,102,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
  }

  /* FAQ */
  #faq {
    padding: 100px 7vw;
  }
  .faq-grid {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 80px; align-items: start;
  }
  .faq-left h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 68px);
    color: var(--soft); line-height: 1;
    position: sticky; top: 100px;
  }
  .faq-list { display: flex; flex-direction: column; gap: 2px; }
  .faq-item {
    border-bottom: 0.5px solid var(--glass-border);
    padding: 24px 0;
    cursor: none;
    transition: padding-left 0.3s;
  }
  .faq-item:hover { padding-left: 4px; }
  .faq-q {
    display: flex; justify-content: space-between; align-items: center;
    gap: 20px;
  }
  .faq-q span {
    font-size: 15px;
    color: var(--blush);
    font-weight: 300;
    letter-spacing: 0.02em;
  }
  .faq-toggle {
    font-size: 20px;
    color: var(--rose);
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(.23,1,.32,1);
  }
  .faq-item.open .faq-toggle { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(.23,1,.32,1), padding 0.4s;
  }
  .faq-item.open .faq-a { max-height: 200px; padding-top: 16px; }
  .faq-a p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.85;
  }

  /* CONTACT */
  #contact {
    padding: 100px 7vw;
    background: linear-gradient(to bottom, #0a0a0a 0%, var(--deep) 100%);
  }
  .contact-grid {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 80px; align-items: start;
  }
  .contact-left h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 68px);
    color: var(--soft); line-height: 1;
    margin-bottom: 40px;
  }
  .contact-info { display: flex; flex-direction: column; gap: 28px; }
  .ci-item label {
    display: block;
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 8px;
  }
  .ci-item a, .ci-item p {
    font-size: 14px; color: var(--blush);
    text-decoration: none;
    transition: color 0.3s;
  }
  .ci-item a:hover { color: var(--rose); }
  .contact-form-mini { display: flex; flex-direction: column; gap: 24px; }
  .contact-form-mini textarea.form-input {
    min-height: 100px;
    resize: none;
    border: 0.5px solid var(--glass-border);
    border-bottom: 0.5px solid rgba(200,195,187,0.25);
    padding: 12px;
  }

  /* FOOTER */
  #footer {
    padding: 100px 7vw 60px;
    border-top: 0.5px solid var(--glass-border);
    overflow: hidden;
  }
  .footer-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(56px, 10vw, 140px);
    line-height: 0.9;
    letter-spacing: -0.01em;
    color: rgba(200,195,187,0.09);
    margin-bottom: 80px;
    transition: color 0.4s, letter-spacing 0.4s;
    cursor: none;
  }
  .footer-headline:hover {
    color: rgba(200,195,187,0.18);
    letter-spacing: 0.02em;
  }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: flex-end;
    flex-wrap: wrap; gap: 32px;
    border-top: 0.5px solid var(--glass-border);
    padding-top: 40px;
  }
  .footer-brand .logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 0.08em;
    color: var(--rose);
  }
  .footer-brand p {
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    margin-top: 6px;
  }
  .footer-links {
    display: flex; gap: 36px; flex-wrap: wrap;
  }
  .footer-links a {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--rose); }
  .footer-copy {
    font-size: 10px;
    color: rgba(200,195,187,0.20);
    letter-spacing: 0.1em;
  }

  /* REVEAL ANIMATIONS */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(.23,1,.32,1), transform 0.9s cubic-bezier(.23,1,.32,1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* MOBILE */
  @media (max-width: 768px) {
    #navbar { padding: 18px 24px; }
    #navbar.scrolled { padding: 12px 24px; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    #hero { padding: 0 6vw 10vh; }
    #about { grid-template-columns: 1fr; gap: 48px; padding: 80px 6vw; }
    .about-visual { aspect-ratio: 4/3; }
    #programs { padding: 80px 6vw; }
    .programs-header { flex-direction: column; gap: 16px; align-items: flex-start; }
    .programs-header p { text-align: left; }
    .programs-grid { grid-template-columns: 1fr; gap: 2px; }
    #coaches { padding: 80px 6vw; }
    .coaches-intro { grid-template-columns: 1fr; gap: 24px; }
    .coaches-intro h2 { position: static; }
    .coaches-grid { grid-template-columns: 1fr; gap: 32px; }
    .achievements-big { grid-template-columns: repeat(2, 1fr); }
    #gallery { padding: 80px 6vw; }
    .gallery-masonry {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
    }
    .gallery-item { grid-column: auto !important; grid-row: auto !important; aspect-ratio: 1 !important; }
    .trials-inner { grid-template-columns: 1fr; gap: 48px; }
    #trials { padding: 80px 6vw; min-height: auto; }
    .trial-form { padding: 32px 24px; }
    .faq-grid { grid-template-columns: 1fr; gap: 40px; }
    .faq-left h2 { position: static; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    #footer { padding: 80px 6vw 48px; }
    .footer-bottom { flex-direction: column; gap: 24px; }
    .mobile-nav-link { font-size: 40px; }
  }

  @media (max-width: 480px) {
    .achievements-big { grid-template-columns: 1fr 1fr; }
    .ach-item { padding: 40px 16px; }
  }

  /* HALL OF FAME */
  #hall-of-fame {
    padding: 120px 7vw;
    background: linear-gradient(to bottom, #0a0a0a 0%, #000000 100%);
    overflow: hidden;
  }
  .hof-header { text-align: center; margin-bottom: 80px; }
  .hof-header h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(52px, 8vw, 110px);
    line-height: 0.9;
    color: var(--soft);
    letter-spacing: 0.02em;
    margin-top: 16px;
  }
  .hof-header h2 em {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    color: var(--rose);
  }
  .hof-header p {
    font-size: 14px; color: var(--text-dim);
    max-width: 44ch; margin: 20px auto 0;
    line-height: 1.8; letter-spacing: 0.04em;
  }
  .hof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }
  .hof-card {
    position: relative; overflow: hidden;
    cursor: none; aspect-ratio: 3/4;
  }
  .hof-card-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    transition: transform 0.8s cubic-bezier(.23,1,.32,1), filter 0.6s cubic-bezier(.23,1,.32,1);
    filter: grayscale(25%);
  }
  .hof-card:hover .hof-card-img { transform: scale(1.07); filter: grayscale(0%); }
  .hof-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
    transition: background 0.5s;
  }
  .hof-card:hover .hof-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.38) 60%, rgba(0,0,0,0.05) 100%);
  }
  .hof-card-body {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 32px 28px;
    transform: translateY(8px);
    transition: transform 0.5s cubic-bezier(.23,1,.32,1);
  }
  .hof-card:hover .hof-card-body { transform: translateY(0); }
  .hof-card-number {
    font-family: "Bebas Neue", sans-serif;
    font-size: 11px; letter-spacing: 0.35em;
    color: var(--rose); margin-bottom: 8px;
    display: flex; align-items: center; gap: 12px;
  }
  .hof-card-number::before { content: ""; width: 20px; height: 0.5px; background: var(--rose); }
  .hof-card-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px; letter-spacing: 0.04em;
    color: var(--soft); line-height: 1; margin-bottom: 6px;
  }
  .hof-card-position { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blush); }
  .hof-card-badge {
    position: absolute; top: 20px; right: 20px;
    width: 44px; height: 44px;
    border: 0.5px solid rgba(200,195,187,0.25);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: scale(0.8);
    transition: opacity 0.4s 0.1s, transform 0.4s 0.1s cubic-bezier(.23,1,.32,1);
  }
  .hof-card:hover .hof-card-badge { opacity: 1; transform: scale(1); }
  .hof-card-badge svg { width: 20px; height: 20px; }
  .hof-marquee-wrap {
    margin-top: 72px; overflow: hidden;
    border-top: 0.5px solid var(--glass-border);
    border-bottom: 0.5px solid var(--glass-border);
    padding: 18px 0;
  }
  .hof-marquee { display: flex; gap: 64px; animation: marquee 18s linear infinite; width: max-content; }
  .hof-marquee-item {
    font-family: "Bebas Neue", sans-serif;
    font-size: 13px; letter-spacing: 0.35em;
    color: var(--text-dim); white-space: nowrap;
    display: flex; align-items: center; gap: 20px;
  }
  .hof-marquee-item::before { content: "✦"; font-size: 8px; color: var(--rose); }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @media (max-width: 768px) {
    .hof-grid { grid-template-columns: repeat(2, 1fr); }
    #hall-of-fame { padding: 80px 6vw; }
    .hof-card-name { font-size: 22px; }
  }


  /* REAL LOGO */
  .nav-logo-img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 50%;
    border: 0.5px solid rgba(200,195,187,0.2);
    transition: transform 0.4s cubic-bezier(.23,1,.32,1), filter 0.3s, border-color 0.3s;
    filter: drop-shadow(0 0 6px rgba(200,195,187,0.12));
    position: relative;
    top: -3px;
    left: -4px;
  }
  .nav-logo:hover .nav-logo-img {
    transform: scale(1.08);
    filter: drop-shadow(0 0 12px rgba(200,195,187,0.25));
    border-color: rgba(200,195,187,0.45);
  }
  .loader-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s cubic-bezier(.23,1,.32,1) forwards;
    filter: drop-shadow(0 0 16px rgba(200,195,187,0.2));
  }
  /* Adjust nav-logo so it no longer uses flex gap for text */
  .nav-logo { gap: 0; }


  /* ── STAFF SECTION ─────────────────────────────── */
  #staff {
    padding: 100px 7vw 120px;
    background: linear-gradient(to bottom, #000000 0%, #0a0a0a 100%);
  }
  .staff-header {
    margin-bottom: 64px;
  }
  .staff-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    color: var(--soft); line-height: 1;
    margin: 12px 0 18px;
  }
  .staff-header h2 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; color: var(--rose);
  }
  .staff-header p {
    font-size: 14px; color: var(--text-dim);
    max-width: 50ch; line-height: 1.85;
  }

  /* Tier divider */
  .staff-tier-row {
    display: flex; align-items: center;
    gap: 16px; margin: 40px 0 28px;
  }
  .tier-line {
    flex: 1; height: 0.5px;
    background: var(--glass-border);
  }
  .tier-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px; letter-spacing: 0.32em;
    text-transform: uppercase; color: var(--rose);
    white-space: nowrap;
  }

  /* Connector */
  .staff-connector {
    display: flex; justify-content: center;
    padding: 8px 0 4px;
  }
  .staff-connector span {
    width: 0.5px; height: 36px;
    background: linear-gradient(to bottom, var(--rose), transparent);
    display: block;
  }

  /* Rows */
  .staff-row { width: 100%; }
  .staff-row--3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }
  .staff-row--feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }

  /* Small card — photo top, info below, 3-col grid */
  .staff-card--small {
    position: relative;
    overflow: hidden;
    cursor: none;
    background: rgba(255,255,255,0.03);
    border: 0.5px solid var(--glass-border);
    transition: border-color 0.4s;
    display: flex;
    flex-direction: column;
  }
  .staff-card--small:hover { border-color: rgba(200,195,187,0.35); }
  .staff-photo {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }
  .staff-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    filter: grayscale(20%);
    transition: transform 0.7s cubic-bezier(.23,1,.32,1), filter 0.5s;
  }
  .staff-card--small:hover .staff-img { transform: scale(1.05); filter: grayscale(0%); }
  .staff-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(145deg, #111 0%, #222 100%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px; color: rgba(200,195,187,0.12);
    letter-spacing: 0.04em;
  }
  .staff-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%);
  }
  .staff-info-small {
    padding: 18px 20px 22px;
    border-top: 0.5px solid var(--glass-border);
    flex: 1;
  }
  .staff-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px; letter-spacing: 0.04em;
    color: var(--soft); line-height: 1;
  }
  .staff-role {
    font-size: 10px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--rose);
    margin-top: 5px;
  }

  /* Feature card (row 2) */
  .staff-card--feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden; cursor: none;
    border: 0.5px solid var(--glass-border);
    background: rgba(255,255,255,0.03);
    transition: border-color 0.4s;
    min-height: 300px;
  }
  .staff-card--feature:hover { border-color: rgba(200,195,187,0.35); }
  .staff-photo-feature {
    position: relative; overflow: hidden;
  }
  .staff-photo-feature .staff-img { height: 100%; }
  .staff-photo-feature .staff-placeholder { height: 100%; aspect-ratio: unset; }
  .staff-card--feature:hover .staff-img { transform: scale(1.05); filter: grayscale(0%); }
  .staff-info-feature {
    padding: 32px 28px;
    display: flex; flex-direction: column;
    justify-content: center; gap: 8px;
    border-left: 0.5px solid var(--glass-border);
  }
  .staff-tier-label {
    font-size: 9px; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--rose);
  }
  .staff-name-lg {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px; letter-spacing: 0.03em;
    color: var(--soft); line-height: 1;
    margin-top: 4px;
  }
  .staff-role-lg {
    font-size: 11px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--blush);
  }
  .staff-desc-placeholder {
    margin-top: 20px;
    display: flex; flex-direction: column; gap: 8px;
  }
  .staff-desc-line {
    display: block; height: 1px;
    background: var(--glass-border);
    width: 100%;
  }
  .staff-desc-line.short { width: 60%; }

  /* Mobile */
  @media (max-width: 768px) {
    #staff { padding: 80px 6vw; }
    .staff-row--3 { grid-template-columns: 1fr 1fr; }
    .staff-row--feature { grid-template-columns: 1fr; }
    .staff-card--feature { grid-template-columns: 1fr; }
    .staff-photo-feature { aspect-ratio: 4/3; }
    .staff-info-feature { border-left: none; border-top: 0.5px solid var(--glass-border); }
  }
  @media (max-width: 480px) {
    .staff-row--3 { grid-template-columns: 1fr 1fr; }
    .staff-name { font-size: 17px; }
    .staff-desc { -webkit-line-clamp: 2; font-size: 11px; }
  }


  /* HERO CAROUSEL */
  .hero-carousel {
    position: absolute; inset: 0;
    overflow: hidden;
  }
  .hero-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.4s cubic-bezier(.23,1,.32,1);
    will-change: opacity;
  }
  .hero-slide::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
    pointer-events: none;
  }
  .hero-slide.active { opacity: 1; z-index: 1; }
  .hero-slide.prev   { opacity: 0; z-index: 0; }
  .hero-slide img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transform: scale(1.04);
    transition: transform 8s cubic-bezier(.23,1,.32,1);
  }
  .hero-slide.active img { transform: scale(1); }

  /* Carousel nav buttons */
  .carousel-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 20;
    width: 44px; height: 44px;
    border: none;
    background: transparent;
    color: var(--blush);
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    cursor: none;
    transition: color 0.3s, transform 0.3s cubic-bezier(.23,1,.32,1);
    appearance: none;
  }
  .carousel-btn:hover {
    color: var(--soft);
  }
  .carousel-btn--prev { left: 32px; }
  .carousel-btn--prev:hover { transform: translateY(-50%) translateX(-3px); }
  .carousel-btn--next { right: 32px; }
  .carousel-btn--next:hover { transform: translateY(-50%) translateX(3px); }

  /* Dot indicators */
  .carousel-dots {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex; gap: 10px; align-items: center;
  }
  .carousel-dot {
    width: 20px; height: 1px;
    background: rgba(200,195,187,0.35);
    cursor: none;
    transition: width 0.4s cubic-bezier(.23,1,.32,1), background 0.3s;
  }
  .carousel-dot.active {
    width: 40px;
    background: var(--rose);
  }

  /* Slide counter */
  .carousel-counter {
    position: absolute;
    bottom: 48px; right: 52px;
    z-index: 20;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 11px; letter-spacing: 0.3em;
    color: rgba(200,195,187,0.45);
  }
  .carousel-counter span { color: var(--rose); }

  /* Progress bar */
  .carousel-progress {
    position: absolute;
    bottom: 0; left: 0;
    height: 1px;
    background: var(--rose);
    z-index: 20;
    width: 0%;
    transition: width 0s;
    opacity: 0.6;
  }
  .carousel-progress.running {
    width: 100%;
    transition: width 5s linear;
  }

  @media (max-width: 768px) {
    .carousel-btn { width: 36px; height: 36px; font-size: 13px; }
    .carousel-btn--prev { left: 16px; }
    .carousel-btn--next { right: 16px; }
    .carousel-counter { right: 24px; bottom: 40px; }
  }


  .staff-desc {
    font-size: 12px;
    line-height: 1.75;
    color: var(--text-dim);
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0.02em;
  }
  .staff-card--feature .staff-desc-full {
    font-size: 13px;
    line-height: 1.85;
    color: var(--text-dim);
    margin-top: 16px;
    letter-spacing: 0.02em;
  }


  

  /* hover hint on photo */
  .staff-photo-clickable { cursor: pointer; }
  .staff-view-hint {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.35s;
    z-index: 2;
  }
  .staff-photo-clickable:hover .staff-view-hint {
    background: rgba(0,0,0,0.5);
  }
  .staff-view-hint span {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px; letter-spacing: 0.3em;
    text-transform: uppercase; color: #edebe6;
    border: 0.5px solid rgba(237,235,230,0.5);
    padding: 8px 16px;
    opacity: 0; transform: translateY(5px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
  }
  .staff-photo-clickable:hover .staff-view-hint span {
    opacity: 1; transform: translateY(0);
  }
  @media (max-width: 580px) {
    .smodal-box { grid-template-columns: 1fr; }
    .smodal-photo { min-height: 200px; }
    .smodal-body { border-left: none; border-top: 0.5px solid rgba(200,195,187,0.15); }
  }


  

  /* ── ABHISHEK MODAL ─────────────────────────── */
  #abhishekModal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  #abhishekModal.open {
    display: flex;
  }
  .amodal-box {
    background: #0d0d0d;
    border: 0.5px solid rgba(200,195,187,0.22);
    max-width: 700px;
    width: 100%;
    max-height: 86vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    position: relative;
    animation: amodalIn 0.4s cubic-bezier(.23,1,.32,1);
  }
  @keyframes amodalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  .amodal-photo {
    overflow: hidden;
  }
  .amodal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    min-height: 300px;
    display: block;
  }
  .amodal-content {
    padding: 36px 30px;
    border-left: 0.5px solid rgba(200,195,187,0.15);
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .amodal-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .amodal-tag::before {
    content: '';
    width: 18px;
    height: 0.5px;
    background: var(--rose);
  }
  .amodal-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    letter-spacing: 0.03em;
    color: var(--soft);
    line-height: 1;
    margin-bottom: 8px;
  }
  .amodal-role {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blush);
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 0.5px solid rgba(200,195,187,0.13);
  }
  .amodal-bio {
    font-size: 13px;
    line-height: 1.9;
    color: var(--text-dim);
    letter-spacing: 0.02em;
  }
  .amodal-bio p + p { margin-top: 14px; }
  .amodal-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 30px; height: 30px;
    background: rgba(0,0,0,0.6);
    border: 0.5px solid rgba(200,195,187,0.2);
    color: var(--blush);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
    z-index: 2;
    line-height: 1;
  }
  .amodal-close:hover { border-color: var(--rose); color: var(--soft); }

  /* View hint */
  .staff-photo-clickable { cursor: pointer !important; }
  .staff-view-hint {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: background 0.4s;
  }
  .staff-photo-clickable:hover .staff-view-hint {
    background: rgba(0,0,0,0.5);
  }
  .staff-view-hint span {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--soft);
    border: 0.5px solid rgba(200,195,187,0.55);
    padding: 9px 18px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s, transform 0.3s cubic-bezier(.23,1,.32,1);
  }
  .staff-photo-clickable:hover .staff-view-hint span {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 600px) {
    .amodal-box { grid-template-columns: 1fr; }
    .amodal-photo img { min-height: 200px; height: 200px; }
    .amodal-content { border-left: none; border-top: 0.5px solid rgba(200,195,187,0.15); padding: 22px 18px; }
  }


  /* ── SHARED STAFF MODALS ───────────────────── */
  .smodal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  .smodal-backdrop.open {
    display: flex;
  }
  .smodal-box {
    background: #0d0d0d;
    border: 0.5px solid rgba(200,195,187,0.22);
    max-width: 700px;
    width: 100%;
    max-height: 86vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    position: relative;
    animation: smodalIn 0.42s cubic-bezier(.23,1,.32,1);
  }
  @keyframes smodalIn {
    from { opacity:0; transform: translateY(22px) scale(0.97); }
    to   { opacity:1; transform: translateY(0) scale(1); }
  }
  .smodal-photo {
    overflow: hidden;
    background: linear-gradient(145deg, #111, #222);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
  }
  .smodal-photo img {
    width:100%; height:100%;
    object-fit:cover; object-position:top center;
    display:block;
  }
  .smodal-placeholder-img {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    color: rgba(200,195,187,0.12);
    letter-spacing: 0.04em;
  }
  .smodal-content {
    padding: 36px 30px;
    border-left: 0.5px solid rgba(200,195,187,0.13);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }
  .smodal-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .smodal-tag::before {
    content: '';
    width: 18px; height: 0.5px;
    background: var(--rose);
  }
  .smodal-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    letter-spacing: 0.03em;
    color: var(--soft);
    line-height: 1;
    margin-bottom: 8px;
  }
  .smodal-role {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blush);
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 0.5px solid rgba(200,195,187,0.13);
  }
  .smodal-bio {
    font-size: 13px;
    line-height: 1.9;
    color: var(--text-dim);
    letter-spacing: 0.02em;
  }
  .smodal-bio p + p { margin-top: 14px; }
  .smodal-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 30px; height: 30px;
    background: rgba(0,0,0,0.6);
    border: 0.5px solid rgba(200,195,187,0.2);
    color: var(--blush);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
    z-index: 2;
  }
  .smodal-close:hover { border-color: var(--rose); color: var(--soft); }

  @media (max-width: 600px) {
    .smodal-box { grid-template-columns: 1fr; }
    .smodal-photo { min-height: 180px; }
    .smodal-content { border-left: none; border-top: 0.5px solid rgba(200,195,187,0.13); padding: 22px 18px; }
    .smodal-name { font-size: 24px; }
  }


  /* ── POLICY PAGES ──────────────────────────────── */
  .policy-page {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 8500;
    background: #000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(.23,1,.32,1);
  }
  .policy-page.open {
    display: block;
  }
  .policy-page.visible {
    opacity: 1;
  }
  .policy-inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 100px 48px 120px;
  }
  .policy-back {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--rose);
    cursor: pointer;
    margin-bottom: 64px;
    background: none;
    border: none;
    padding: 0;
    transition: gap 0.3s;
  }
  .policy-back:hover { gap: 18px; }
  .policy-back::before {
    content: '←';
    font-size: 14px;
  }
  .policy-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--rose);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  .policy-tag::before {
    content: '';
    width: 24px; height: 0.5px;
    background: var(--rose);
  }
  .policy-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.92;
    color: var(--soft);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
  }
  .policy-updated {
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    margin-bottom: 64px;
    padding-bottom: 40px;
    border-bottom: 0.5px solid var(--glass-border);
  }
  .policy-body h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 0.04em;
    color: var(--soft);
    margin: 48px 0 16px;
  }
  .policy-body p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-dim);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
  }
  .policy-body ul {
    margin: 12px 0 20px 20px;
  }
  .policy-body ul li {
    font-size: 14px;
    line-height: 1.85;
    color: var(--text-dim);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
    list-style: none;
    position: relative;
    padding-left: 20px;
  }
  .policy-body ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--rose);
    font-size: 12px;
  }
  .policy-divider {
    width: 100%;
    height: 0.5px;
    background: var(--glass-border);
    margin: 48px 0;
  }
  .policy-contact-box {
    background: rgba(255,255,255,0.03);
    border: 0.5px solid var(--glass-border);
    padding: 32px 36px;
    margin-top: 60px;
  }
  .policy-contact-box p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.8;
  }
  .policy-contact-box a {
    color: var(--rose);
    text-decoration: none;
  }
  .policy-contact-box a:hover {
    color: var(--soft);
  }

  /* Footer policy links */
  .footer-policy-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 24px;
  }
  .footer-policy-links button {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s;
  }
  .footer-policy-links button:hover { color: var(--rose); }

  @media (max-width: 768px) {
    .policy-inner { padding: 80px 24px 100px; }
    .policy-title { font-size: clamp(40px, 10vw, 64px); }
    .policy-body h2 { font-size: 22px; }
  }