:root {
    --red: #F5C400;
    --red-dark: #C9A000;
    --red-deep: #9A7A00;
    --gold: #F5C400;
    --gold-light: #F9E79F;
    --black: #0A0A0A;
    --off-black: #0E0E0E;
    --dark: #161616;
    --mid: #2C2C2C;
    --gray: #888;
    --light-gray: #BBBBB5;
    --cream: #F5F0E8;
    --white: #FFFFFF;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 3rem;
    transition: background 0.4s, backdrop-filter 0.4s;
  }
  nav.scrolled {
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(245,196,0,0.3);
  }
  nav { top: 34px; }
  .nav-logo-img { text-decoration: none; display: flex; align-items: center; gap: 0.7rem; }
  .nav-logo-png { height: 42px; width: 42px; object-fit: contain; }
  .nav-logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.1em; color: var(--white); line-height: 1; display: flex; flex-direction: column; }
  .nav-logo-yellow { color: var(--red); }
  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  .nav-links a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-cta {
    background: var(--red);
    color: var(--black) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
    font-size: 0.72rem !important;
    letter-spacing: 0.14em !important;
  }
  .nav-cta:hover { background: var(--red-dark) !important; color: var(--black) !important; }

  /* ── HERO VIDEO ── */
  #hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ── HERO VIDEO BACKGROUND ── */
  .hero-video-bg {
    position: absolute;
    inset: 0;
    background: var(--black);
    overflow: hidden;
  }
  .hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.4s ease;
  }
  .hero-bg-video.ready { opacity: 1; }

  /* Large decorative kanji/symbol */
  .hero-kanji {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Noto Serif', serif;
    font-size: clamp(180px, 22vw, 340px);
    line-height: 1;
    color: rgba(245,196,0,0.06);
    user-select: none;
    pointer-events: none;
    letter-spacing: -0.05em;
  }

  /* Diagonal red stripe */
  .hero-stripe {
    position: absolute;
    top: 0; bottom: 0;
    left: -10%;
    width: 5px;
    background: var(--red);
    transform: rotate(-8deg) translateX(25vw);
    transform-origin: top center;
    opacity: 0.7;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.82) 32%, rgba(10,10,10,0.15) 60%, rgba(10,10,10,0.75) 85%, rgba(10,10,10,0.97) 100%),
      linear-gradient(to top, rgba(10,10,10,1) 0%, transparent 22%),
      linear-gradient(to bottom, rgba(10,10,10,0.85) 0%, transparent 18%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    padding: 0 2rem 0 4rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .hero-left {}

  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }
  .hero-eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--red);
  }
  .hero-eyebrow span {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 500;
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 8vw, 8rem);
    line-height: 0.9;
    letter-spacing: 0.04em;
    margin-bottom: 1.8rem;
  }
  .hero-title .line-yellow { color: var(--red); display: block; }
  .hero-title .line-white { color: var(--white); display: block; }
  .hero-title .line-small { color: var(--white); display: block; font-size: clamp(1rem, 2vw, 2rem); letter-spacing: 0.2em; opacity: 0.7; margin-bottom: 0.2rem; }
  .hero-subtitle-tag { font-family: 'Noto Serif', serif; font-style: italic; font-size: clamp(1.1rem, 2.5vw, 1.6rem); color: var(--red); margin-bottom: 1rem; letter-spacing: 0.04em; }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--light-gray);
    max-width: 440px;
    margin-bottom: 2.5rem;
    font-weight: 300;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--red);
    color: var(--black);
    padding: 0.9rem 2rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
    border: none;
    cursor: pointer;
  }
  .btn-primary:hover { background: var(--red-dark); color: var(--black); transform: translateY(-1px); }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    padding: 0.9rem 2rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: border-color 0.2s, transform 0.15s;
    cursor: pointer;
  }
  .btn-outline:hover { border-color: var(--white); transform: translateY(-1px); }

  .hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-left: auto;
    width: 100%;
    padding-right: 1rem;
  }

  /* Reel preview card in hero */
  .hero-reel-card {
    background: var(--dark);
    border: 1px solid rgba(245,196,0,0.2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
  }
  .hero-reel-label {
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .ig-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
  .hero-reel-label span {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
  }
  .hero-reel-embed {
    width: 100%;
    aspect-ratio: 9/16;
    max-height: 380px;
    border: none;
    display: block;
    background: #111;
  }

  /* Stats bar */
  .hero-stats {
    display: flex;
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
  }
  .hero-stat {
    flex: 1;
    padding: 1rem;
    background: var(--dark);
    text-align: center;
  }
  .hero-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--red);  /* yellow via var */
    letter-spacing: 0.06em;
    display: block;
  }
  .hero-stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
  }

  /* ── SECTION BASE ── */
  section { padding: 7rem 3rem; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
  }
  .section-eyebrow-line { width: 30px; height: 2px; background: var(--red); }
  .section-eyebrow span {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 500;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: 0.06em;
    line-height: 1;
    margin-bottom: 1.5rem;
  }
  .section-title em {
    font-style: normal;
    color: var(--red);
  }

  /* ── O NÁS / FILOSOFIE ── */
  #o-nas { background: var(--off-black); }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .about-text p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    font-weight: 300;
  }
  .about-text p strong {
    color: var(--white);
    font-weight: 500;
  }

  .about-quote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--red);
    background: rgba(245,196,0,0.06);
  }
  .about-quote blockquote {
    font-family: 'Noto Serif', serif;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--cream);
  }
  .about-quote cite {
    display: block;
    margin-top: 0.8rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    font-style: normal;
  }

  .about-visual {
    position: relative;
  }
  .about-img-wrap {
    position: relative;
    background: var(--dark);
    border: 1px solid rgba(245,196,0,0.15);
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-img-placeholder {
    text-align: center;
    padding: 2rem;
  }
  .about-kanji-big {
    font-family: 'Noto Serif', serif;
    font-size: 8rem;
    color: rgba(245,196,0,0.15);
    display: block;
    margin-bottom: 1rem;
  }
  .about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 100px;
    height: 100px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .about-badge-num { color: var(--black) !important; }
  .about-badge-text { color: rgba(0,0,0,0.65) !important; }
  /* ── ABOUT SECTION — seamless video ── */
  .about-section {
    background: var(--off-black);
    padding: 0;
    overflow: hidden;
    position: relative;
  }
  .about-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 85vh;
    position: relative;
  }
  .about-text-col {
    padding: 7rem 3rem 7rem 3rem;
  }
  .about-text-col p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    font-weight: 300;
  }
  .about-text-col p strong { color: var(--white); font-weight: 500; }

  /* Video column — bleeds to right edge, no box */
  .about-video-col {
    position: relative;
    height: 100%;
    min-height: 85vh;
    overflow: hidden;
  }
  .about-video-seamless {
    position: absolute;
    inset: 0;
  }
  .about-video-seamless video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
  }
  .about-video-seamless video.playing {
    opacity: 1;
  }
  /* Left fade — blends into page bg */
  .about-vid-fade-left {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 200px;
    background: linear-gradient(to right, var(--off-black), transparent);
    pointer-events: none;
    z-index: 2;
  }
  /* Top fade */
  .about-vid-fade-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, var(--off-black), transparent);
    pointer-events: none;
    z-index: 2;
  }
  /* Bottom fade */
  .about-vid-fade-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--off-black), transparent);
    pointer-events: none;
    z-index: 2;
  }
  /* Dark overlay to darken video slightly and let it breathe */
  .about-video-seamless::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.25);
    pointer-events: none;
    z-index: 1;
  }

  @media (max-width: 900px) {
    .about-section-inner {
      grid-template-columns: 1fr;
      min-height: unset;
    }
    .about-text-col { padding: 5rem 1.5rem 2rem; }
    .about-video-col {
      min-height: 55vw;
      height: 55vw;
    }
    .about-video-seamless { right: 0; }
    .about-vid-fade-left { display: none; }
  }

  .about-badge-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--white);
  }
  .about-badge-text {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    text-align: center;
    line-height: 1.3;
  }

  /* ── PROGRAM ── */
  #program { background: var(--black); }

  .program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 4rem;
  }

  .program-card {
    background: var(--off-black);
    padding: 2.5rem 2rem;
    position: relative;
    transition: background 0.3s;
    cursor: default;
  }
  .program-card:hover { background: var(--dark); }
  .program-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }
  .program-card:hover::after { transform: scaleX(1); }

  .program-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    line-height: 1;
    color: rgba(245,196,0,0.12);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    letter-spacing: 0.04em;
  }

  .program-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
  }

  .program-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
    color: var(--white);
  }

  .program-desc {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ── TRENÉR ── */
  #trener { background: var(--black); }

  .trainer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
  }

  .trainer-img-wrap {
    position: relative;
  }
  .trainer-img-frame {
    position: relative;
    background: #000000;
    border: none;
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 3/4;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .trainer-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .trainer-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 1.5rem 1.4rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.92) 40%);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .trainer-name-overlay-title {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .trainer-name-overlay-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.08em;
    line-height: 1;
    color: var(--white);
  }

  .trainer-stripe {
    position: absolute;
    top: -10px;
    left: -10px;
    bottom: -10px;
    width: 4px;
    background: var(--red);
    border-radius: 2px;
  }

  .trainer-content .section-title { margin-bottom: 2rem; }

  .trainer-text {
    color: var(--light-gray);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 1.2rem;
  }

  .trainer-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 2rem 0;
  }
  .credential {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: var(--dark);
    border-left: 2px solid var(--red);
  }
  .credential-dot {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .credential span {
    font-size: 0.82rem;
    color: var(--light-gray);
    font-weight: 300;
  }

  /* ── REELS / INSTAGRAM ── */
  #reels { background: var(--black); }

  .reels-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .reels-header-left {}

  .ig-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 2px;
    transition: border-color 0.2s, color 0.2s;
  }
  .ig-link:hover { border-color: var(--red); color: var(--white); }
  .ig-link svg { width: 16px; height: 16px; }

  .reels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .reel-card {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
  }
  .reel-card:hover {
    border-color: rgba(245,196,0,0.4);
    transform: translateY(-3px);
  }

  .reel-embed-wrap {
    width: 100%;
    aspect-ratio: 9/16;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
  }
  .reel-embed-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }

  /* Fallback placeholder for reels */
  .reel-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--gray);
    padding: 2rem;
    text-align: center;
  }
  .reel-placeholder svg { width: 40px; height: 40px; opacity: 0.4; }
  .reel-placeholder p { font-size: 0.75rem; line-height: 1.5; }

  .reel-footer {
    padding: 0.8rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .reel-footer-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; }
  .reel-footer span {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
  }
  .reel-footer a {
    margin-left: auto;
    color: var(--red);
    font-size: 0.65rem;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .reel-footer a:hover { color: var(--white); }

  /* ── RECENZE ── */
  #recenze { background: var(--off-black); }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .review-card {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 2px;
    padding: 2rem;
    position: relative;
  }
  .review-card::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1.5rem;
    font-family: 'Noto Serif', serif;
    font-size: 6rem;
    line-height: 1;
    color: rgba(245,196,0,0.15);
    pointer-events: none;
  }

  .review-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
  }
  .star {
    width: 14px;
    height: 14px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  }

  .review-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--light-gray);
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-style: italic;
  }

  .review-author {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 500;
  }

  /* ── NABORY / CTA ── */
  #nabory {
    background: var(--black);
    position: relative;
    overflow: hidden;
  }
  #nabory::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(245,196,0,0.12) 0%, transparent 70%);
  }
  #nabory::after {
    content: 'KARATE';
    position: absolute;
    bottom: -3rem;
    right: -2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20vw;
    color: rgba(245,196,0,0.04);
    letter-spacing: 0.1em;
    pointer-events: none;
    user-select: none;
  }

  .nabory-wrap {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }
  .nabory-wrap .section-eyebrow { justify-content: center; }
  .nabory-wrap .section-title { font-size: clamp(3rem, 6vw, 6rem); }

  .nabory-text {
    font-size: 1rem;
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .nabory-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }

  .nabory-contact {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 0.05em;
  }
  .nabory-contact a {
    color: var(--white);
    text-decoration: none;
  }
  .nabory-contact a:hover { color: var(--red); }

  /* ── KONTAKT ── */
  #kontakt { background: var(--off-black); }

  .kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .kontakt-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 1.5rem;
  }

  .kontakt-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    align-items: flex-start;
  }
  .kontakt-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(245,196,0,0.12);
    border: 1px solid rgba(245,196,0,0.2);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .kontakt-item-icon svg { width: 16px; height: 16px; stroke: var(--red); fill: none; stroke-width: 1.5; }
  .kontakt-item-text { font-size: 0.9rem; color: var(--light-gray); line-height: 1.5; }
  .kontakt-item-text strong { display: block; color: var(--white); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.2rem; }
  .kontakt-item-text a { color: var(--light-gray); text-decoration: none; }
  .kontakt-item-text a:hover { color: var(--red); }

  .kontakt-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 2rem;
  }
  .social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    color: var(--gray);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: border-color 0.2s, color 0.2s;
  }
  .social-btn:hover { border-color: var(--red); color: var(--white); }
  .social-btn svg { width: 14px; height: 14px; }

  .kontakt-form {}
  .kontakt-form h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 1.5rem;
  }

  .form-group { margin-bottom: 1rem; }
  .form-group label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 0.4rem;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2px;
    padding: 0.75rem 1rem;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--red);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* ── FOOTER ── */
  footer {
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 3rem 3rem 2rem;
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.12em; color: var(--white); text-decoration: none; }
  .footer-logo span { color: var(--red); }
  .footer-logo-yellow { color: var(--red) !important; }
  .footer-text {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.4rem;
    letter-spacing: 0.05em;
  }
  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  .footer-links a {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--white); }
  .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.7rem;
    color: var(--gray);
    letter-spacing: 0.05em;
    text-align: center;
  }

  /* ── ANIMATIONS ── */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── MOBILE NAV ── */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: 0.2s;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 3rem; }
    .hero-right { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { display: none; }
    .trainer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .program-grid { grid-template-columns: repeat(2, 1fr); }
    .reels-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    .kontakt-grid { grid-template-columns: 1fr; gap: 3rem; }
  }

  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    section { padding: 5rem 1.5rem; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .hero-content { padding: 0 1.5rem; }
    .program-grid { grid-template-columns: 1fr; }
    .reels-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    footer { padding: 2rem 1.5rem; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .footer-links { flex-wrap: wrap; gap: 1rem; }
  }

  /* ── HERO STATS NEW ── */
  .hero-stats-new {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(245,196,0,0.2);
    border-radius: 4px;
    overflow: hidden;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(8px);
    max-width: 340px;
    margin-left: auto;
  }
  .hero-stat-new {
    padding: 1.4rem 2rem;
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
  }
  .hero-stat-new:hover { background: rgba(245,196,0,0.06); }
  .hero-stat-num-new {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    color: #F5C400;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .hero-stat-label-new {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.06em;
    line-height: 1.3;
    text-transform: uppercase;
  }
  .hero-stat-divider {
    height: 1px;
    background: rgba(245,196,0,0.15);
    margin: 0;
  }

  .about-video-wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(245,196,0,0.2);
    background: #000;
    aspect-ratio: 16/9;
  }
  .about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .about-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(0,0,0,0.3);
    transition: background 0.2s;
  }
  .about-video-play:hover { background: rgba(0,0,0,0.15); }
  .about-video-play svg {
    width: 64px;
    height: 64px;
    fill: rgba(245,196,0,0.9);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
    transition: transform 0.2s;
  }
  .about-video-play:hover svg { transform: scale(1.1); }

  /* Zapoj se — text readability on photo bg */
  #nabory .nabory-wrap { position: relative; z-index: 2; }
  #nabory .nabory-text { color: rgba(255,255,255,0.85); }
  #nabory .nabory-contact { color: rgba(255,255,255,0.5); }
  #nabory .nabory-contact a { color: rgba(255,255,255,0.8); }
  #nabory::after { display: none !important; }
  #nabory::before { display: none !important; }

  /* ── HERO CITIES STRIP ── */
  .hero-cities {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: rgba(245,196,0,0.92);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(245,196,0,0.5);
    padding: 0.7rem 0;
    overflow: hidden;
  }
  .hero-cities-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    overflow: hidden;
  }
  .hero-cities-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.5);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .hero-cities-list {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
  }
  .hero-cities-list span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0A0A0A;
    white-space: nowrap;
  }
  .hero-cities-dot {
    color: rgba(0,0,0,0.3) !important;
    font-weight: 400 !important;
    font-size: 0.8rem !important;
  }
  @media (max-width: 768px) {
    .hero-cities-inner { padding: 0 1rem; gap: 0.6rem; }
    .hero-cities-label { display: none; }
    .hero-cities-list span { font-size: 0.62rem; }
  }

  .kontakt-mesta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 2rem;
  }
  .kontakt-mesta span {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--light-gray);
    padding: 0.3rem 0.7rem;
    border: 1px solid rgba(245,196,0,0.2);
    border-radius: 2px;
  }

  /* ════════════════════════════════
     MOBILNÍ ZOBRAZENÍ
  ════════════════════════════════ */
  @media (max-width: 768px) {

    /* Topbar */
    #topbar { height: 30px; }
    .topbar-inner { padding: 0 1rem; gap: 0.5rem; }
    .topbar-label { display: none; }
    .topbar-item, .topbar-social { font-size: 0.62rem; gap: 0.25rem; }

    /* Nav */
    nav { padding: 0.8rem 1rem; top: 30px !important; }
    .nav-logo-png { height: 34px; width: 34px; }
    .nav-logo-text { font-size: 1.1rem; }
    .nav-links { display: none !important; }
    .nav-toggle { display: flex !important; }
    .nav-toggle.open + .nav-links,
    .nav-links.mobile-open {
      display: flex !important;
      flex-direction: column;
      position: fixed;
      top: 30px;
      left: 0; right: 0;
      background: rgba(10,10,10,0.98);
      padding: 4rem 2rem 2rem;
      gap: 1.5rem;
      z-index: 99;
      border-bottom: 1px solid rgba(245,196,0,0.2);
    }
    .nav-links a { font-size: 1rem !important; letter-spacing: 0.1em; }

    /* Hero */
    #hero { padding-top: 30px; min-height: 100svh; }
    .hero-content {
      grid-template-columns: 1fr !important;
      padding: 0 1.2rem !important;
      gap: 2rem !important;
      max-width: 100% !important;
    }
    .hero-right { display: none !important; }
    .hero-title { font-size: clamp(3.5rem, 18vw, 6rem) !important; }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-subtitle-tag { font-size: 1.1rem; }
    .hero-actions { flex-direction: column; gap: 0.8rem; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; padding: 1rem; }
    .hero-cities-inner { padding: 0 1rem; }
    .hero-cities-list { gap: 0.3rem 0.4rem; }
    .hero-cities-list span { font-size: 0.55rem; }

    /* O nás */
    .about-section-inner { grid-template-columns: 1fr !important; min-height: unset !important; }
    .about-text-col { padding: 4rem 1.2rem 1.5rem !important; }
    .about-video-col { min-height: 56vw !important; height: 56vw !important; }
    .about-vid-fade-left { display: none !important; }
    .about-video-seamless { right: 0 !important; }

    /* Sekce obecně */
    section { padding: 4rem 1.2rem !important; }
    .container { padding: 0 !important; }
    .section-title { font-size: clamp(2.2rem, 10vw, 3.5rem) !important; }

    /* Trenér */
    .trainer-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .trainer-img-wrap { max-width: 340px; margin: 0 auto; }
    .trainer-stripe { display: none; }

    /* Nábory + Tréninky grid */
    .nabory-grid, .treninky-grid { grid-template-columns: 1fr !important; }

    /* Kontakt */
    .kontakt-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .form-row { grid-template-columns: 1fr !important; }

    /* Recenze */
    .reviews-grid { grid-template-columns: 1fr !important; }

    /* Program */
    .program-grid { grid-template-columns: 1fr !important; }

    /* Carousel */
    .gal-arrow { width: 38px !important; height: 38px !important; font-size: 1.3rem !important; }
    .gal-prev { left: 0.4rem !important; }
    .gal-next { right: 0.4rem !important; }

    /* Footer */
    footer { padding: 2rem 1.2rem 1.5rem !important; }
    .footer-inner { flex-direction: column; gap: 1rem; }
    .footer-links { flex-wrap: wrap; gap: 0.8rem; }

    /* Hero cities bottom strip */
    .hero-cities { padding: 0.5rem 0; }
    .hero-cities-inner { flex-wrap: wrap; }

    /* Zapoj se */
    .nabory-wrap { padding: 0 1rem !important; }
    .nabory-actions { flex-direction: column; }

    /* Lightbox */
    #lightbox button { width: 36px !important; height: 36px !important; }
  }

  @media (max-width: 480px) {
    .hero-title { font-size: clamp(3rem, 16vw, 4.5rem) !important; }
    .nabory-date { font-size: 1.1rem !important; }
    .trenink-time { font-size: 1.4rem !important; }
    .hero-eyebrow span { font-size: 0.6rem; }
  }

/* ─── section ─── */

#topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  background: #F5C400;
  height: 34px;
  display: flex;
  align-items: center;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-contact {}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #0A0A0A;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: opacity 0.2s;
}
.topbar-item:hover { opacity: 0.7; }
.topbar-socials {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.topbar-social {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #0A0A0A;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: opacity 0.2s;
}
.topbar-social:hover { opacity: 0.65; }
.topbar-divider {
  width: 1px;
  height: 12px;
  background: rgba(0,0,0,0.25);
}
/* Push nav down by topbar height */
#navbar {
  top: 34px !important;
}
/* Hero needs extra top padding for topbar + nav */
#hero {
  padding-top: 34px;
}
@media (max-width: 600px) {
  .topbar-inner { padding: 0 1rem; }
  .topbar-item span, .topbar-social span { display: none; }
}

/* ─── section ─── */

/* ── BG PHOTO SECTIONS ── */
.bg-photo-section {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
}
.bg-photo-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  filter: blur(1px) brightness(0.22) saturate(0.7);
  transform: scale(1.03);
}
.bg-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.3) 40%, rgba(10,10,10,0.3) 60%, rgba(10,10,10,0.8) 100%);
}
.bg-photo-content {
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
}

/* ── NÁBORY GRID ── */
.nabory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(245,196,0,0.15);
  border: 1px solid rgba(245,196,0,0.2);
  border-radius: 4px;
  overflow: hidden;
  margin: 3rem 0 2.5rem;
}
.nabory-card {
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(8px);
  padding: 1.8rem 1.6rem;
  border: none;
  transition: background 0.25s;
}
.nabory-card:hover { background: rgba(245,196,0,0.08); }
.nabory-date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #F5C400;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.nabory-school {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.nabory-addr {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.nabory-cta {
  text-align: center;
  margin-top: 1rem;
}

/* ── TRÉNINKY GRID ── */
.treninky-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(245,196,0,0.15);
  border: 1px solid rgba(245,196,0,0.2);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 3rem;
}
.trenink-card {
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(8px);
  padding: 1.8rem 1.6rem;
  transition: background 0.25s;
  position: relative;
}
.trenink-card:hover { background: rgba(245,196,0,0.08); }
.trenink-double {
  border-top: 2px solid rgba(245,196,0,0.3);
}
.trenink-day {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #F5C400;
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.trenink-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.trenink-school {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.trenink-addr {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .nabory-grid, .treninky-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 580px) {
  .nabory-grid, .treninky-grid { grid-template-columns: 1fr; }
}

/* ─── section ─── */

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-left { opacity: 0; }
