 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --black: #000000;
      --dark:  #0d0d0d;
      --red:   #cc1e2e;
      --gold:  #f0b429;
      --white: #ffffff;
      --gray:  rgba(255,255,255,0.65);
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; background: #ffffff; color: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
    img  { display: block; max-width: 100%; }
    a    { text-decoration: none; }

    /* ── HERO ─────────────────────────────────────────── */
    .hero {
      position: relative;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center;
    }
    .hero img {
      display: block;
      image-rendering: -webkit-optimize-contrast;
      transform: translateZ(0);
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
    }
    .hero-text {
      position: absolute;
      bottom: 2rem;
      left: 2rem;
      z-index: 10;
      text-align: left;
    }
    .hero-text p {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.8rem, 5vw, 8rem);
      line-height: 1.15;
      letter-spacing: 2px;
      color: var(--white);
      text-shadow: 11px 10px 5px rgb(0, 0, 0,0.75);
      white-space: pre-line;
    }
    .hero-text .hero-sub {
      font-size: clamp(1rem, 3vw, 4.5rem) !important;
      /* color: var(--red) !important; */
    }    
    .hero-video-wrap {
      position: relative; width: 100%; max-width: 680px; margin: 0 auto 2.5rem;
      background: #000; cursor: pointer;
      aspect-ratio: 16/9;
    }
    .hero-video-wrap video {
      width: 100%; height: 100%; object-fit: cover; display: block;
    }
    .play-overlay {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      background: rgba(0,0,0,0.25);
      transition: background .2s;
    }
    .play-overlay.hidden { display: none; }
    .play-overlay:hover { background: rgba(0,0,0,0.1); }
    .play-btn {
      width: 68px; height: 68px; border-radius: 50%;
      background: rgba(255,255,255,0.15);
      border: 2px solid rgba(255,255,255,0.5);
      display: flex; align-items: center; justify-content: center;
      backdrop-filter: blur(4px);
      transition: transform .2s, background .2s;
    }
    .play-btn svg { width: 24px; height: 24px; fill: var(--white); margin-left: 4px; }
    .play-overlay:hover .play-btn { transform: scale(1.1); background: rgba(255,255,255,0.25); }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.8rem, 9vw, 6rem);
      letter-spacing: 3px; line-height: 1; margin-bottom: 1.4rem;
      display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0 .3em;
    }
    .hero-title .play-icon {
      display: inline-flex; align-items: center; justify-content: center;
      width: .55em; height: .55em; background: var(--white);
      border-radius: 50%; vertical-align: middle; margin: 0 .1em;
      flex-shrink: 0;
    }
    .hero-title .play-icon svg { width: 40%; height: 40%; fill: var(--black); margin-left: 2px; }
    .hero-desc {
      max-width: 520px; margin: 0 auto 2.5rem;
      font-size: clamp(.9rem, 2.5vw, 1.05rem); line-height: 1.75;
      color: var(--gray); text-align: center;
    }
    .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .btn-primary {
      background: var(--red); color: var(--white);
      padding: 14px 36px; font-weight: 700; font-size: .9rem;
      letter-spacing: 1.5px; text-transform: uppercase; border: 2px solid var(--red);
      transition: all .25s;
      box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
    }
    .btn-primary:hover { background: transparent; color: var(--red); }
    .btn-outline {
      background: transparent; color: var(--white);
      padding: 14px 36px; font-weight: 700; font-size: .9rem;
      letter-spacing: 1.5px; text-transform: uppercase; border: 2px solid rgba(255,255,255,0.3);
      transition: all .25s;
      box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
    }
    .btn-outline:hover { border-color: var(--white); }

    /* ── STATS ────────────────────────────────────────── */
    .stats-bar {
      display: grid; grid-template-columns: repeat(4,1fr);
      background: var(--red); text-align: center;
    }
    .stat-item { padding: 28px 16px; border-right: 1px solid rgba(255,255,255,0.2); }
    .stat-item:last-child { border: none; }
    .stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; letter-spacing: 2px; }
    .stat-num sup { color: var(--gold); font-size: 1.4rem; vertical-align: super; }
    .stat-label { font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-top: .2rem; }

    /* ── SECTIONS ─────────────────────────────────────── */
    section { padding: 90px 6%; }
    .section-tag { display: block; color: var(--red); font-size: .7rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; margin-bottom: .7rem; }
    .section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: 2px; line-height: 1; }
    .section-title em { color: var(--red); font-style: normal; }
    .divider { width: 50px; height: 3px; background: var(--red); margin: 1rem 0 1.8rem; }

    /* ── PHILOSOPHY ───────────────────────────────────── */
    .philosophy { background: var(--dark); }
    .philosophy-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .philosophy-img img { width: 100%; }
    .philosophy-steps { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 1.8rem; }
    .step { display: flex; align-items: flex-start; gap: 1rem; }
    .step-num { flex-shrink: 0; width: 36px; height: 36px; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; }
    .step-text strong { display: block; color: var(--gold); font-size: .82rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: .2rem; }
    .step-text p { color: var(--gray); font-size: .86rem; line-height: 1.6; }

    /* ── COACH ────────────────────────────────────────── */
    .coach { background: var(--black); }
    .coach-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .coach-img { position: relative; }
    .coach-img img { width: 100%; }
    .coach-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--red), var(--gold)); }
    .coach-name { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: 3px; line-height: 1; margin-bottom: .4rem; }
    .coach-name em { color: var(--red); font-style: normal; }
    .coach-role { color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1.4rem; }
    .coach-bio { color: var(--gray); line-height: 1.8; font-size: .9rem; margin-bottom: 1.5rem; }
    .coach-tags { display: flex; gap: .8rem; flex-wrap: wrap; }
    .tag { padding: 6px 14px; border: 1px solid rgba(204,30,46,0.5); color: var(--red); font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }

    /* ── PROGRAMS ─────────────────────────────────────── */
    .programs { background: var(--dark); }
    .programs-grid { max-width: 1100px; margin: 2.5rem auto 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; }
    .prog-card {
      background: var(--black); padding: 2.2rem 2rem;
      border-top: 3px solid transparent; transition: border-color .3s;
    }
    .prog-card:hover { border-top-color: var(--red); }
    .prog-age { display: inline-block; background: rgba(204,30,46,0.12); color: var(--red); font-size: .68rem; font-weight: 700; letter-spacing: 2px; padding: 3px 10px; text-transform: uppercase; margin-bottom: .9rem; }
    .prog-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 2px; margin-bottom: .7rem; }
    .prog-card p { color: var(--gray); font-size: .86rem; line-height: 1.7; }

    /* ── GALLERY ──────────────────────────────────────── */
    .gallery { background: var(--black); padding: 70px 0; }
    .gallery-hdr { padding: 0 6% 2rem; }
    .gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
    .g-item { overflow: hidden; aspect-ratio: 4/3; }
    .g-item.wide { grid-column: span 2; aspect-ratio: 16/7; }
    .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
    .g-item:hover img { transform: scale(1.04); }

    /* ── JOIN ─────────────────────────────────────────── */
    .join {
      background: var(--dark); text-align: center; padding: 100px 6%;
      border-top: 1px solid rgba(204,30,46,0.2);
    }
    /* ── FANCY SEPARATOR ─────────────────────────────── */
    .fancy-sep {
      display: flex; align-items: center; gap: 1rem;
      padding: 2.5rem 6%;
      background: var(--white);
    }
    .fancy-sep-line {
      flex: 1; height: 2px;
      background: linear-gradient(to right, transparent, var(--red), var(--gold), var(--red), transparent);
    }
    .fancy-sep-icon {
      font-size: 1.6rem;
      filter: drop-shadow(0 2px 6px rgba(204,30,46,0.35));
    }

    /* ── BTN GREEN ───────────────────────────────────── */
    .btn-green {
      display: inline-block;
      background: #2e7d32;
      color: #ffffff;
      padding: 16px 32px; font-weight: 700; font-size: .82rem;
      letter-spacing: 1.5px; text-transform: uppercase;
      border: 2px solid #2e7d32;
      border-radius: 15px;
      transition: all .25s;
    }
.btn-green:hover { background: transparent; color: #2e7d32; }
  
    /* ── GRID CARDS ────────────────────────────────────── */
    .grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.4rem;
      width: 100%;
      max-width: 860px;
      margin-top: 2rem;
    }

    /* ── RESPONSIVE ───────────────────────────────────── */
    @media (max-width: 860px) {
      nav ul { display: none; }
      .nav-hamburger { display: none; }
      .stats-bar { grid-template-columns: repeat(2,1fr); }
      .stat-item:nth-child(2) { border-right: none; }
      .philosophy-inner, .coach-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .programs-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .g-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
      .footer-top { grid-template-columns: 1fr; gap: 2rem; }
      .mastery { padding: 60px 6%; min-height: unset; }
      .join-bottom { flex-direction: column; align-items: flex-start; }
      .contact-list li a, .contact-list li { overflow-wrap: break-word; word-break: break-word; max-width: 100%; }
    }
    @media (max-width: 540px) {
      .hero-title { font-size: clamp(2.2rem, 11vw, 3.5rem); }
      .hero-text p {font-size: clamp(1.5rem, 5vw, 8rem);}
      .gallery-grid { grid-template-columns: 1fr; }
      .grid { grid-template-columns: 1fr; }
    }

    /* ── INTRO (Klaudio section) ──────────────────────── */
    .intro { background: var(--white); padding: 80px 6% 90px; display: flex; flex-direction: column; align-items: center; text-align: center; }
    .intro-inner { max-width: 580px; display: flex; flex-direction: column; align-items: center;}
    .intro-badge {
      display: inline-block; margin-bottom: 1.8rem;
      padding: 6px 16px; border: 1px solid var(--red);
      background: rgba(204,30,46,0.08);
      font-size: .68rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--dark);
      border-radius: 15px;
    }
    .intro-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.4rem, 8vw, 4rem);
      letter-spacing: 4px; line-height: .9;
      margin-bottom: 1.2rem;
      color: var(--dark);
    }
    .intro-name .red { color: var(--red); }
    .intro-role {
      font-size: .82rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--dark); margin-bottom: 1.4rem;
    }
    .intro-desc {
      color: var(--dark); font-size: .92rem; line-height: 1.8;
      text-align: justify; margin-bottom: 2.2rem; max-width: 480px;
    }
    .intro-btns { display: flex; flex-direction: column; gap: .9rem; width: 100%; max-width: 340px; }
    .btn-solid {
      display: block; text-align: center;
      background: var(--red); color: var(--white);
      padding: 16px 24px; font-weight: 700; font-size: .82rem;
      letter-spacing: 1.5px; text-transform: uppercase; border: 2px solid var(--red);
      transition: all .25s;
      border-radius: 15px;
    }
    .btn-solid:hover { background: transparent; color: var(--red); }
    .btn-dark {
      display: block; text-align: center;
      background: #111; color: rgba(255,255,255,0.7);
      padding: 16px 24px; font-weight: 700; font-size: .82rem;
      letter-spacing: 1.5px; text-transform: uppercase; border: 2px solid rgba(255,255,255,0.12);
      transition: all .25s;
      border-radius: 15px;
    }
    .btn-dark:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }

    /* ── TEAM PIC SPLIT ────────────────────────────────── */
    .mastery-split {
      background: var(--white);
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 4rem;
      text-align: left;
      padding: 80px 6%;
    }
    .mastery-split-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      align-items: flex-start;
      text-align: left;
    }
    .mastery-split-text h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      line-height: 1.1;
      letter-spacing: 2px;
    }
    .team_pic {
      flex: 0 0 42%;
      max-width: 42%;
      position: relative;
    }
    .team_pic img {
      width: 100%;
      border-radius: 6px;
      box-shadow: 10px 10px 0 var(--red), 20px 20px 0 var(--gold);
      transition: box-shadow .3s;
    }
    .team_pic img:hover {
      box-shadow: 14px 14px 0 var(--red), 28px 28px 0 var(--gold);
    }
    @media (max-width: 860px) {
      .mastery-split {
        flex-direction: column !important;
        text-align: center !important;
        gap: 2rem;
        padding: 60px 6% !important;
      }
      .mastery-split-text {
        align-items: center;
        text-align: center;
      }
      .mastery-split-text h2.mastery-title {
        justify-content: center !important;
      }
      .team_pic {
        flex: none;
        max-width: 100%;
        width: 100%;
      }
      .team_pic img {
        box-shadow: 6px 6px 0 var(--red), 12px 12px 0 var(--gold);
      }
    }

    /* ── VIDEO BANNER ──────────────────────────────────── */
    .video-banner {
      width: 100vw;
      /* max-height: 500px; */
      overflow: hidden;
      line-height: 0;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      padding: 0;
    }
    .mute-btn {
      position: absolute;
      bottom: 16px;
      right: 20px;
      z-index: 10;
      background: rgba(0,0,0,0.55);
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 42px;
      height: 42px;
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s;
    }
    .mute-btn:hover { background: rgba(0,0,0,0.8); }
    .video-banner video {
      width: 100%;
      height: 500px;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    @media (min-width: 1084px) {
      .video-banner video {
        height: 100%;
        object-position: center 80%;
      }
    }

    /* ── MASTERY STATEMENT ────────────────────────────── */
    .mastery {
      background: var(--white); padding: 1px 5% 1px;
      text-align: center; display: flex; flex-direction: column;
      align-items: center; justify-content: center; min-height: 70vh;
    }
    .mastery-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.4rem, 8vw, 4rem);
      font-weight: 400;
      letter-spacing: 3px; line-height: 1; margin-bottom: 1.8rem;
      display: flex; flex-wrap: wrap; align-items: center;
      justify-content: center; gap: 0 .25em;
      color: var(--dark);
    }
   
    .mastery-title .play-icon svg { width: 42%; height: 42%; fill: var(--black); margin-left: 3px; }
    .mastery-desc {
      max-width: 560px; color: var(--dark); text-align: center;
      font-size: clamp(.92rem, 2.5vw, 1.05rem); line-height: 1.8;
    }

   
    /* ── PRICING ──────────────────────────────────────── */
    .pricing {
      background: #f1f1f1;
      padding: 4rem 2rem;
      text-align: center;
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
      max-width: 1100px;
      margin: 2.5rem auto 0;
    }
    .price-card {
      background: #f9f9f9;
      border: 1px solid #e5e5e5;
      border-radius: 12px;
      padding: 2rem 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .75rem;
      position: relative;
      transition: transform .2s, border-color .2s, box-shadow .2s;
    }
    .price-card:hover { transform: translateY(-4px); border-color: var(--red); box-shadow: 0 8px 24px rgba(204,30,46,0.1); }
    .price-card.featured { border-color: var(--red); background: #fff5f5; }
    .price-card.featured:hover { box-shadow: 0 8px 24px rgba(204,30,46,0.18); }
    .price-badge {
      position: absolute;
      top: -13px;
      background: var(--red);
      color: #fff;
      font-family: 'Bebas Neue', sans-serif;
      font-size: .85rem;
      letter-spacing: 1px;
      padding: 2px 14px;
      border-radius: 20px;
    }
    .price-label {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1rem;
      letter-spacing: 1px;
      color: #888;
      text-transform: uppercase;
    }
    .price-amount {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.5rem;
      line-height: 1;
      color: var(--dark);
    }
    .price-card.featured .price-amount { color: var(--red); }
    .price-unit {
      font-size: .78rem;
      color: #aaa;
    }
    .price-features {
      list-style: none;
      text-align: left;
      width: 100%;
      margin-top: .5rem;
      display: flex;
      flex-direction: column;
      gap: .45rem;
    }
    .price-features li {
      font-size: .85rem;
      color: #555;
      padding-left: 1.2rem;
      position: relative;
    }
    .price-features li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--red);
      font-weight: bold;
    }
    .price-btn {
      margin-top: auto;
      padding: .65rem 1.5rem;
      background: var(--red);
      color: #fff;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1rem;
      letter-spacing: 1px;
      border-radius: 6px;
      transition: background .2s;
      width: 100%;
      text-align: center;
      display: block;
    }
    .price-btn:hover { background: #a8172b; }
