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

    :root {
      --red: #d42b2b;
      --black: #0f0f0f;
      --white: #ffffff;
      --gray-50: #f7f7f8;
      --gray-100: #f0f0f2;
      --gray-200: #e2e2e6;
      --gray-400: #9898a4;
      --gray-600: #5a5a68;
      --radius-lg: 20px;
      --radius-md: 14px;
      --radius-sm: 10px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--black);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: 3px;
    }

    /* ─── NAV ─── */
    nav {
      position: sticky;
      top: 0;
      z-index: 10000;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s;
      isolation: isolate;
    }
    nav.scrolled {
      border-bottom: 1px solid #f3f4f6;
      box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    }
    .nav-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 40px;
      height: 81px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 32px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 16px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .nav-logo-icon {
      width: 44px;
      height: 44px;
      background: var(--black);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      transition: background 0.3s;
      flex-shrink: 0;
    }
    .nav-logo:hover .nav-logo-icon { background: var(--red); }
    .nav-logo-text { display: flex; flex-direction: column; align-items: center; line-height: 1.1; }
    .nav-logo-name {
      font-size: 30.5px;
      font-weight: 900;
      color: var(--black);
      letter-spacing: 0;
      line-height: 1;
    }
    .nav-logo-name span { color: var(--red); }
    .nav-logo-sub {
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 2px;
      color: var(--gray-400);
      text-transform: uppercase;
      margin-top: 2px;
    }
    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
      align-items: center;
      flex: 1;
      justify-content: flex-end;
      padding-right: 25px;
    }
    .nav-links a {
      text-decoration: none;
      color: #374151;
      font-size: 14px;
      font-weight: 400;
      position: relative;
      transition: color 0.2s;
      padding: 0;
      white-space: nowrap;
    }
    .nav-links a span.underline-anim {
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--red);
      transition: width 0.3s ease;
      display: block;
    }
    .nav-links a:hover { color: var(--red); }
    .nav-links a:hover span.underline-anim { width: 100%; }
    .nav-proovitrenn {
      background: var(--black);
      color: var(--white);
      border: none;
      border-radius: 100px;
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: background 0.3s, transform 0.2s;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .nav-proovitrenn:hover { background: var(--red); transform: scale(1.05); }
    .nav-register {
      background: var(--red);
      color: var(--white);
      border: none;
      border-radius: 100px;
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      white-space: nowrap;
      flex-shrink: 0;
      box-shadow: 0 4px 16px rgba(212,43,43,.30);
      letter-spacing: 0.01em;
    }
    .nav-register:hover { background: #b81f1f; transform: scale(1.05); box-shadow: 0 6px 22px rgba(212,43,43,.45); }
    .mob-register {
      display: block;
      margin: 10px 0 4px;
      padding: 14px 20px;
      background: var(--red);
      color: var(--white) !important;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 14px rgba(212,43,43,.25);
    }
    .mob-register:hover { background: #b81f1f; }
    .nav-burger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      color: var(--black);
    }
    .btn-outline {
      background: transparent;
      color: var(--black);
      border: 2px solid var(--black);
      border-radius: 100px;
      padding: 12px 24px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      transition: background 0.15s, color 0.15s, transform 0.1s;
      white-space: nowrap;
    }
    .btn-outline:hover { background: var(--black); color: var(--white); transform: translateY(-1px); }
    /* ─── DROPDOWN ─── */
    .nav-links li {
      position: relative;
    }
    .nav-links li:hover {
      z-index: 10001;
    }
    .nav-links li .dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      background: white;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      border: 1px solid var(--gray-200);
      padding: 0;
      min-width: 220px;
      z-index: 10002;
      flex-direction: column;
      overflow: hidden;
    }
    .nav-links li .dropdown::before {
      content: none;
    }
    .nav-links li:hover .dropdown {
      display: flex;
    }
    .nav-links li .dropdown a {
      color: #374151;
      font-size: 14px;
      font-weight: 400;
      padding: 10px 20px;
      white-space: nowrap;
      display: block;
      position: relative;
      z-index: 1;
      background: #fff;
      transition: color 0.15s, background 0.15s;
      border-radius: 0;
    }
    .nav-links li .dropdown a:first-child { border-radius: 10px 10px 0 0; }
    .nav-links li .dropdown a:last-child  { border-radius: 0 0 10px 10px; }
    .nav-links li .dropdown a:first-child:last-child { border-radius: 10px; }
    .nav-links li .dropdown a:hover {
      color: var(--red);
      background: var(--gray-100);
    }
    .nav-links li .dropdown a span.underline-anim { display: none; }
    .nav-links li > a .arrow {
      display: inline-block;
      margin-left: 4px;
      font-size: 10px;
      opacity: 0.5;
      transition: transform 0.2s;
    }
    .nav-links li:hover > a .arrow {
      transform: rotate(180deg);
      opacity: 1;
    }
    .nav-links li {
      position: relative;
      padding-bottom: 16px;
      margin-bottom: -16px;
    }
    .mobile-menu {
      display: none;
      position: fixed;
      top: 80px;
      left: 0;
      right: 0;
      background: white;
      z-index: 99;
      padding: 24px 40px 32px;
      border-bottom: 1px solid var(--gray-200);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      flex-direction: column;
      gap: 0;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      text-decoration: none;
      color: #374151;
      font-size: 16px;
      font-weight: 500;
      padding: 14px 0;
      border-bottom: 1px solid var(--gray-100);
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--red); }
    .mobile-menu a:last-of-type { border-bottom: none; }
    .mobile-menu-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid var(--gray-200);
    }
    /* accordion items */
    .mob-item { border-bottom: 1px solid var(--gray-100); }
    .mob-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      text-decoration: none;
      color: #374151;
      font-size: 16px;
      font-weight: 500;
      padding: 14px 0;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      transition: color 0.2s;
    }
    .mob-link:hover { color: var(--red); }
    .mob-arrow { font-size: 12px; opacity: 0.5; transition: transform 0.25s; }
    .mob-item.open .mob-arrow { transform: rotate(180deg); opacity: 1; }
    .mob-sub {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      display: flex;
      flex-direction: column;
      padding-left: 16px;
    }
    .mob-item.open .mob-sub { max-height: 300px; }
    .mob-sub a {
      text-decoration: none;
      color: #6b7280;
      font-size: 14px;
      font-weight: 400;
      padding: 10px 0;
      border-bottom: 1px solid var(--gray-100);
      transition: color 0.2s;
    }
    .mob-sub a:last-child { border-bottom: none; }
    .mob-sub a:hover { color: var(--red); }

    /* ─── LANG SWITCHER ─── */
    .lang-switcher {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }
    .lang-btn {
      background: white;
      border: 1.5px solid var(--gray-200);
      border-radius: 50%;
      width: 36px;
      height: 36px;
      padding: 3px;
      cursor: pointer;
      transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.7;
    }
    .lang-btn img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      display: block;
    }
    .lang-btn:hover { opacity: 1; transform: scale(1.08); border-color: var(--gray-400); }
    .lang-btn.active {
      border-color: var(--red);
      opacity: 1;
      box-shadow: 0 0 0 2px rgba(212,43,43,0.15);
    }

    /* ─── HERO ─── */
    #avaleht {
      max-width: 1440px;
      margin: 0 auto;
      padding: 30px 40px 60px;
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 60px;
      align-items: center;
      min-height: calc(100vh - 68px);
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fde8e8;
      color: var(--black);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      padding: 8px 18px;
      border-radius: 100px;
      margin-bottom: 28px;
    }
    .hero-badge .dot {
      width: 8px;
      height: 8px;
      background: var(--red);
      border-radius: 50%;
      flex-shrink: 0;
      display: inline-block;
    }
    .hero-title {
      font-size: clamp(52px, 5vw, 76px);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -2px;
      margin-bottom: 24px;
    }
    .hero-title .red { color: var(--red); }
    .hero-subtitle {
      font-size: 17px;
      color: var(--gray-600);
      line-height: 1.7;
      margin-bottom: 40px;
      max-width: 480px;
    }
    .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
    .btn-primary-lg {
      background: var(--black);
      color: var(--white);
      border: none;
      border-radius: 100px;
      padding: 16px 32px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: opacity 0.15s, transform 0.1s;
    }
    .btn-primary-lg:hover { opacity: 0.85; transform: translateY(-1px); }
    .btn-outline-lg {
      background: transparent;
      color: var(--black);
      border: 2px solid var(--black);
      border-radius: 100px;
      padding: 16px 32px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      transition: background 0.15s, color 0.15s, transform 0.1s;
    }
    .btn-outline-lg:hover { background: var(--black); color: var(--white); transform: translateY(-1px); }
    .hero-stats {
      display: flex;
      gap: 48px;
    }
    .hero-stat-item { display: flex; align-items: center; gap: 10px; }
    .hero-stat-icon {
      font-size: 22px;
      color: var(--red);
    }
    .hero-stat-num {
      font-size: 28px;
      font-weight: 900;
      letter-spacing: -1px;
      line-height: 1;
    }
    .hero-stat-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--gray-400);
    }
    .hero-image-wrap {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
    }
    .hero-slider {
      width: 100%;
      height: 580px;
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.8s ease;
    }
    .hero-slide.active { opacity: 1; }
    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .hero-slider-dots {
      position: absolute;
      bottom: 16px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 10;
    }
    .hero-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
      padding: 0;
    }
    .hero-dot.active {
      background: white;
      transform: scale(1.3);
    }
    .hero-slider-prev, .hero-slider-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.85);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: background 0.2s;
      color: var(--black);
    }
    .hero-slider-prev { left: 12px; }
    .hero-slider-next { right: 12px; }
    .hero-slider-prev:hover, .hero-slider-next:hover { background: white; }
    .hero-badge-since {
      position: absolute;
      top: -18px;
      right: -18px;
      background: var(--black);
      color: var(--white);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.5px;
      padding: 12px 20px;
      border-radius: 100px;
    }
    .hero-rating-card {
      position: absolute;
      bottom: 24px;
      right: 24px;
      background: white;
      border-radius: var(--radius-md);
      padding: 14px 18px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .hero-rating-star {
      width: 40px;
      height: 40px;
      background: var(--red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }
    .hero-rating-label {
      font-size: 11px;
      color: var(--gray-400);
      font-weight: 500;
    }
    .hero-rating-score {
      font-size: 20px;
      font-weight: 900;
      line-height: 1;
    }
    .hero-rating-sub {
      font-size: 12px;
      color: var(--gray-600);
    }

    /* ─── SECTION HEADER ─── */
    .section-label {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 16px;
    }
    .section-label::before {
      content: '—';
      color: var(--red);
      flex-shrink: 0;
    }

    .section-title {
      font-size: clamp(36px, 3.5vw, 54px);
      font-weight: 900;
      letter-spacing: -1.5px;
      line-height: 1.05;
    }
    .section-title .red { color: var(--red); }

    /* ─── READ MORE UNIVERSAL ─── */
    .read-more-link, .about-more-link, .event-card-more, .champion-more {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--red);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: gap 0.2s;
      cursor: pointer;
    }
    .read-more-link:hover, .about-more-link:hover, .event-card-more:hover, .champion-more:hover {
      gap: 10px;
      opacity: 0.85;
    }
    .read-more-link::after, .about-more-link::after, .event-card-more::after, .champion-more::after {
      content: '';
      display: inline-block;
      width: 16px;
      height: 16px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23d42b2b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat;
      flex-shrink: 0;
    }

    /* ─── ABOUT ─── */
    #klubist {
      background: var(--gray-50);
      padding: 80px 0;
    }
    .klubist-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-img-wrap { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
    .about-slider-track { display: block; position: relative; }
    .about-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; width: 100%; }
    .about-slide.active { opacity: 1; position: relative; }
    .about-slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.45); color: #fff; border: none; border-radius: 50%; width: 40px; height: 40px; font-size: 24px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 2; transition: background .2s; }
    .about-slider-btn:hover { background: rgba(0,0,0,.7); }
    .about-slider-prev { left: 12px; }
    .about-slider-next { right: 12px; }
    .about-slider-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 2; }
    .about-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; transition: background .2s; }
    .about-dot.active { background: #fff; }
    .about-img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      border-radius: var(--radius-lg);
    }
    .about-img-placeholder {
      width: 100%;
      height: 500px;
      background: linear-gradient(135deg, #e2e0d8 0%, #c8c4b4 100%);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: monospace;
      font-size: 13px;
      color: var(--gray-400);
      text-align: center;
    }
    .about-years-card {
      position: absolute;
      bottom: 24px;
      left: 24px;
      background: white;
      border-radius: var(--radius-md);
      padding: 20px 24px;
      color: var(--black);
      box-shadow: 0 8px 32px rgba(0,0,0,0.15);
      border-left: 4px solid var(--red);
    }
    .about-years-num {
      font-size: 48px;
      font-weight: 900;
      color: var(--red);
      line-height: 1;
    }
    .about-years-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gray-600);
      margin-top: 6px;
    }
    .about-text { padding-top: 8px; }
    .about-description {
      font-size: 16px;
      color: var(--gray-600);
      line-height: 1.75;
      margin-top: 28px;
    }
    .about-description + .about-description { margin-top: 16px; }
    .about-more-link { margin-top: 30px; }
    .about-sensei {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 36px;
    }
    .about-sensei-avatar {
      width: 52px;
      height: 52px;
      background: var(--red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: white;
      font-weight: 700;
      flex-shrink: 0;
    }
    .about-sensei-name {
      font-size: 16px;
      font-weight: 700;
    }
    .about-sensei-title {
      font-size: 14px;
      color: var(--gray-400);
    }

    /* ─── VALUES ─── */
    #values {
      background: var(--white);
      padding: 80px 0;
    }
    .values-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 40px;
    }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 0;
    }
    .value-card {
      background: white;
      border-radius: var(--radius-md);
      padding: 36px 28px 28px;
      position: relative;
      overflow: hidden;
      border: 1px solid var(--gray-200);
      transition: box-shadow 0.25s, transform 0.25s;
      cursor: default;
    }
    .value-card:hover {
      box-shadow: 0 8px 32px rgba(0,0,0,0.08);
      transform: translateY(-3px);
    }
    .value-num {
      font-size: 64px;
      font-weight: 900;
      color: rgba(212,43,43,0.07);
      line-height: 1;
      position: absolute;
      top: 12px;
      right: 16px;
      letter-spacing: -3px;
      user-select: none;
      pointer-events: none;
      font-variant-numeric: tabular-nums;
    }
    .value-icon-wrap {
      width: 48px;
      height: 48px;
      background: #fde8e8;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .value-icon { color: var(--red); }
    .value-title {
      font-size: 20px;
      font-weight: 800;
      color: var(--black);
      margin-bottom: 10px;
      letter-spacing: -0.3px;
    }
    .value-desc {
      font-size: 14px;
      color: var(--gray-600);
      line-height: 1.7;
    }
    .value-line {
      width: 28px;
      height: 3px;
      background: var(--red);
      margin-top: 24px;
      border-radius: 2px;
      transition: width 0.3s ease;
    }
    .value-card:hover .value-line { width: 52px; }

    /* ─── TRAINERS ─── */
    #treenerid {
      background: var(--gray-50);
      padding: 80px 0;
    }
    .trainers-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 40px;
    }
    .trainers-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
    }
    .trainer-card {
      position: relative;
      height: 360px;
      border-radius: 28px;
      overflow: hidden;
      background: #f5f5f5;
      box-shadow: 0 18px 40px rgba(0,0,0,0.12);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .trainer-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 55px rgba(0,0,0,0.18);
    }
    .trainer-photo {
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
    }
    .trainer-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 15%;
      display: block;
      transition: transform 0.4s ease;
    }
    .trainer-card:hover .trainer-photo img { transform: scale(1.05); }
    a.trainer-card--link { text-decoration: none; display: block; cursor: pointer; }
    .trainer-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.68), rgba(0,0,0,0.05) 60%);
      pointer-events: none;
    }
    .trainer-info {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 24px;
      z-index: 2;
    }
    .trainer-name {
      color: #fff;
      font-size: 22px;
      font-weight: 800;
      line-height: 1.15;
    }
    @media (max-width: 900px) {
      .halls-grid { grid-template-columns: repeat(2, 1fr); }
      .halls-content { padding: 60px 20px 36px; }
    }
    @media (max-width: 540px) {
      .halls-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 1024px) {
      .trainers-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    }
    @media (max-width: 600px) {
      .trainers-grid { grid-template-columns: 1fr; }
      .trainer-card { height: 380px; }
    }
    .trainers-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: end;
      margin-bottom: 48px;
    }
    .trainers-desc {
      font-size: 16px;
      color: var(--gray-400);
      line-height: 1.65;
      max-width: 340px;
    }
    .trainers-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 46px;
    }
    .trainer-socials {
      display: flex;
      gap: 12px;
    }
    .trainer-social-btn {
      width: 36px;
      height: 36px;
      border: 1px solid var(--gray-200);
      border-radius: 8px;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--gray-600);
      text-decoration: none;
      transition: border-color 0.15s, color 0.15s;
    }
    .trainer-social-btn:hover { border-color: var(--black); color: var(--black); }

    /* ─── SCHEDULE ─── */
    #ajakava {
      background: #fff;
      padding: 80px 0;
    }
    .ajakava-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 40px;
    }
    .ajakava-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .ajakava-sub {
      font-size: 16px;
      color: var(--gray-600);
      margin-top: 16px;
    }
    .schedule-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 12px;
    }
    .day-card {
      background: white;
      border-radius: var(--radius-md);
      padding: 22px;
      border: 1px solid var(--gray-200);
    }
    .day-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }
    .day-name {
      font-size: 17px;
      font-weight: 800;
    }
    .day-count {
      width: 28px;
      height: 28px;
      background: var(--red);
      color: white;
      border-radius: 50%;
      font-size: 13px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .time-slot {
      background: var(--gray-50);
      border-radius: var(--radius-sm);
      padding: 12px 14px;
      margin-bottom: 8px;
    }
    .time-slot:last-child { margin-bottom: 0; }
    .time-slot.dark {
      background: var(--black);
      color: white;
    }
    .time-slot.highlight {
      background: #fde8e8;
    }
    .slot-time {
      font-size: 12px;
      color: var(--gray-400);
      font-weight: 500;
      margin-bottom: 2px;
    }
    .time-slot.dark .slot-time { color: rgba(255,255,255,0.5); }
    .time-slot.highlight .slot-time { color: var(--red); }
    .slot-name {
      font-size: 14px;
      font-weight: 700;
    }
    .time-slot.highlight .slot-name { color: var(--red); }
    .ajakava-footer {
      text-align: center;
      margin-top: 40px;
    }
    .ajakava-note {
      font-size: 14px;
      color: var(--gray-400);
      margin-bottom: 24px;
    }

    /* ─── EVENTS ─── */
    #sobytiya {
      background: var(--gray-50);
    }
    .events-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 80px 40px;
    }
    .events-header { margin-bottom: 48px; }
    .events-header-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-top: 12px;
    }
    .events-all-link {
      color: var(--red);
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      transition: opacity 0.2s;
      white-space: nowrap;
      margin-bottom: 4px;
    }
    .events-all-link:hover { opacity: 0.7; }
    .events-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .event-card {
      text-decoration: none;
      color: inherit;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: white;
      border: 1px solid var(--gray-200);
      display: flex;
      flex-direction: column;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .event-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.10);
    }
    .event-card-img {
      position: relative;
      height: 220px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .event-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
    .event-card:hover .event-card-img img { transform: scale(1.05); }
    .event-card-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .event-card-date {
      font-size: 12px;
      color: var(--gray-400);
      font-weight: 500;
      margin-bottom: 10px;
    }
    .event-card-title {
      font-size: 18px;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 12px;
      color: var(--black);
    }
    .event-card-desc {
      font-size: 14px;
      color: var(--gray-600);
      line-height: 1.65;
      flex: 1;
      margin-bottom: 18px;
    }
    .event-card-footer {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      margin-top: 16px;
    }
    .event-card-more {
      color: var(--red);
      font-size: 14px;
      font-weight: 600;
    }

    /* ─── CHAMPIONS ─── */
    .champions-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 80px 40px;
    }
    .champions-header {
      text-align: center;
      margin-bottom: 60px;
    }
    .champions-title {
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 900;
      letter-spacing: -1px;
      color: var(--black);
      margin-bottom: 16px;
    }
    .champions-line {
      width: 60px;
      height: 3px;
      background: var(--red);
      margin: 0 auto 24px;
      border-radius: 2px;
    }
    .champions-sub {
      font-size: 16px;
      color: var(--gray-600);
    }
    .champions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 48px;
    }
    .champion-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .champion-avatar {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      overflow: hidden;
      margin-bottom: 24px;
      border: 4px solid var(--gray-200);
      flex-shrink: 0;
    }
    .champion-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .champion-name {
      font-size: 18px;
      font-weight: 700;
      color: var(--red);
      margin-bottom: 6px;
    }
    .champion-dan {
      font-size: 15px;
      color: var(--black);
      margin-bottom: 16px;
    }
    .champion-bio {
      font-size: 14px;
      color: var(--gray-600);
      line-height: 1.7;
      font-style: italic;
      margin-bottom: 12px;
    }
    /* ─── GALLERY (keep for styles) ─── */
    #galerii {
      max-width: 1440px;
      margin: 0 auto;
      padding: 80px 40px;
    }
    .galerii-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: end;
      margin-bottom: 40px;
    }
    .galerii-desc {
      font-size: 16px;
      color: var(--gray-400);
      line-height: 1.65;
      max-width: 380px;
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      grid-template-rows: auto;
      gap: 12px;
    }
    .gallery-main {
      grid-row: span 2;
      border-radius: var(--radius-lg);
      overflow: hidden;
      height: 500px;
    }
    .gallery-main img, .gallery-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .gallery-right {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 12px;
    }
    .gallery-thumb {
      border-radius: var(--radius-md);
      overflow: hidden;
      height: 244px;
    }
    .gallery-thumb:nth-child(3) { grid-column: span 2; }
    .gallery-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: monospace;
      font-size: 11px;
      color: var(--gray-400);
      text-align: center;
    }

    /* ─── CONTACT ─── */
    #kontakt {
      background: var(--gray-50);
      padding: 80px 0;
    }
    .kontakt-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 40px;
    }
    .kontakt-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .kontakt-title {
      font-size: clamp(36px, 4vw, 60px);
      font-weight: 900;
      letter-spacing: -2px;
      margin-bottom: 14px;
    }
    .kontakt-sub {
      font-size: 16px;
      color: var(--gray-600);
    }
    .kontakt-grid {
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 28px;
      align-items: start;
    }
    .kontakt-left { display: flex; flex-direction: column; gap: 20px; }
    .contact-card {
      background: var(--black);
      color: white;
      border-radius: var(--radius-lg);
      padding: 32px;
    }
    .contact-card-title {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 24px;
    }
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 20px;
    }
    .contact-icon-wrap {
      width: 38px;
      height: 38px;
      background: rgba(255,255,255,0.08);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 16px;
    }
    .contact-item-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 3px;
    }
    .contact-item-value {
      font-size: 15px;
      font-weight: 500;
      color: white;
      line-height: 1.5;
    }
    .contact-socials {
      display: flex;
      gap: 10px;
      margin-top: 28px;
    }
    .contact-social-btn {
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      font-size: 16px;
      transition: background 0.15s;
    }
    .contact-social-btn:hover { background: rgba(255,255,255,0.2); }
    .map-wrap {
      border-radius: var(--radius-lg);
      overflow: hidden;
      height: 220px;
      background: var(--gray-200);
      position: relative;
    }
    .map-wrap iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }
    .form-card {
      background: white;
      border-radius: var(--radius-lg);
      padding: 36px;
      border: 1px solid var(--gray-200);
    }
    .form-title {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 28px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .form-group { margin-bottom: 20px; }
    .form-label {
      display: block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 8px;
    }
    .form-label .req { color: var(--red); }
    .form-input, .form-select, .form-textarea {
      width: 100%;
      border: 1.5px solid var(--gray-200);
      border-radius: var(--radius-sm);
      padding: 13px 16px;
      font-size: 15px;
      font-family: inherit;
      color: var(--black);
      background: white;
      outline: none;
      transition: border-color 0.15s;
      appearance: none;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--black); }
    .form-input::placeholder, .form-textarea::placeholder { color: var(--gray-400); }
    .form-select-wrap { position: relative; }
    .form-select-wrap::after {
      content: '';
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 6px solid var(--gray-600);
      pointer-events: none;
    }
    .form-select { cursor: pointer; }
    .form-textarea { resize: vertical; min-height: 100px; }
    .btn-submit {
      width: 100%;
      background: var(--black);
      color: white;
      border: none;
      border-radius: 100px;
      padding: 18px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: opacity 0.15s, transform 0.1s;
      margin-top: 8px;
    }
    .btn-submit:hover { opacity: 0.85; transform: translateY(-1px); }
    .form-note {
      text-align: center;
      font-size: 13px;
      color: var(--gray-400);
      margin-top: 14px;
    }

    /* ─── FOOTER ─── */
    footer {
      background: #fff;
      color: var(--black);
      padding: 60px 0 0;
      border-top: 1px solid var(--gray-200);
    }
    .footer-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 80px;
      padding-bottom: 48px;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
      text-decoration: none;
    }
    .footer-logo-icon {
      width: 44px;
      height: 44px;
      background: var(--red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: white;
      font-weight: 700;
    }
    .footer-logo-name {
      font-size: 20px;
      font-weight: 800;
      color: var(--black);
      letter-spacing: -0.5px;
    }
    .footer-logo-name span { color: var(--red); }
    .footer-logo-sub {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gray-400);
      display: block;
    }
    .footer-desc {
      font-size: 14px;
      color: var(--gray-600);
      line-height: 1.7;
      max-width: 320px;
    }
    .footer-col-title {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 20px;
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-links a {
      color: var(--gray-600);
      text-decoration: none;
      font-size: 15px;
      transition: color 0.15s;
    }
    .footer-links a:hover { color: var(--black); }
    .footer-contact-items {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-contact-item {
      color: var(--gray-600);
      font-size: 15px;
    }
    .footer-bottom {
      border-top: 1px solid var(--gray-200);
      padding: 24px 40px;
      max-width: 1440px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-copy {
      font-size: 13px;
      color: var(--gray-400);
    }
    .footer-tagline {
      font-size: 13px;
      color: var(--gray-400);
      display: flex;
      gap: 16px;
    }
    .footer-tagline span { display: flex; align-items: center; gap: 4px; }
    .footer-tagline span::before {
      content: '·';
      color: var(--gray-300);
    }
    .footer-tagline span:first-child::before { display: none; }

    /* ─── HOME DIRECTIONS ─── */
    #home-directions {
      background: var(--white);
      padding: 80px 0;
    }
    .home-directions-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 40px;
    }
    .home-directions-label {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 16px;
    }
    .home-directions-label::before {
      content: '—';
      color: var(--red);
      flex-shrink: 0;
    }
    .home-directions-title {
      font-size: clamp(36px, 3.5vw, 54px);
      font-weight: 900;
      letter-spacing: -1.5px;
      line-height: 1.05;
      margin: 0 0 40px;
    }
    .about-directions-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
    .about-direction-card { position: relative; min-height: 270px; overflow: hidden; border-radius: 16px; background: #ececec; box-shadow: 0 4px 24px rgba(16,16,20,.10); }
    .about-direction-card__copy { position: relative; z-index: 2; width: 45%; min-height: 270px; display: flex; flex-direction: column; padding: 26px 0 22px 26px; }
    .about-direction-card__icon { width: 46px; height: 46px; margin-bottom: 18px; border-radius: 50%; background: #d71920; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(215,25,32,.28); flex-shrink: 0; }
    .about-direction-card__icon svg { display: block; width: 22px; height: 22px; }
    .about-direction-card h3 { margin: 0; color: #050505; font-size: 21px; line-height: 1.05; font-weight: 900; letter-spacing: 0; }
    .about-direction-card p { margin: 10px 0 0; color: #5f6470; font-size: 12.5px; line-height: 1.5; font-weight: 400; flex: 1; }
    .about-direction-card a { margin-top: 14px; color: #d71920; font-size: 11px; line-height: 1; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; text-decoration: none; }
    .about-direction-card a:hover { opacity: .75; }
    .about-direction-card img { position: absolute; z-index: 0; right: 0; bottom: 0; width: 57%; height: 100%; object-fit: contain; object-position: bottom right; }
    .about-direction-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, #ececec 0%, #ececec 38%, rgba(236,236,236,.45) 50%, rgba(236,236,236,0) 60%); pointer-events: none; }
    .about-direction-card--kickboxing img { object-fit: contain; object-position: bottom right; width: 62%; height: 78%; }
    .about-direction-card--kobudo img { object-fit: cover; object-position: center; width: 66%; height: 105%; }
    @media (max-width: 900px) {
      #home-directions { padding: 48px 0; }
      .home-directions-inner { padding: 0 20px; }
      .about-directions-grid { grid-template-columns: 1fr; gap: 16px; }
    }

    /* ─── HALLS ─── */
    .halls-section { background: #fff; padding: 0; }
    .halls-content { max-width: 1440px; margin: 0 auto; padding: 80px 40px 48px; }
    .halls-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; margin-top: 40px; }
    .hall-card { background: #f8f8f8; border-radius: 16px; padding: 28px; border-left: 4px solid var(--red); }
    .hall-card__icon { width: 44px; height: 44px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
    .hall-card__addr { font-size: 17px; font-weight: 900; color: #050505; margin: 0 0 4px; line-height: 1.2; }
    .hall-card__name { font-size: 13px; color: #6b7280; margin: 0; line-height: 1.5; font-weight: 500; }
    #halls-map { height: 480px; width: 100%; }
    #halls-map .leaflet-control-attribution { display: none; }
    .kontakt-inner--form-only { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

    /* ─── SPONSORS ─── */
    .sponsors-section { background: #111116; padding: 72px 0; }
    .sponsors-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
    .sponsors-header { display: flex; align-items: flex-start; gap: 80px; margin-bottom: 56px; }
    .sponsors-col { flex: 1; }
    .sponsors-col-title { font-size: 11px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; color: #888; margin: 0 0 12px; }
    .sponsors-col-heading { font-size: clamp(28px, 3vw, 40px); font-weight: 950; color: #fff; margin: 0; letter-spacing: -1px; }
    .sponsors-col-heading span { color: var(--red); }
    .sponsors-divider { width: 1px; background: rgba(255,255,255,.08); align-self: stretch; }
    .sponsors-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
    .partners-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
    .sponsor-logo { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; height: 80px; display: flex; align-items: center; justify-content: center; padding: 12px 16px; transition: background .2s; }
    .sponsor-logo:hover { background: rgba(255,255,255,.09); }
    .sponsor-logo img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(1) brightness(1.8); transition: filter .2s; }
    .sponsor-logo:hover img { filter: grayscale(0) brightness(1); }
    .sponsor-logo--text { font-size: 13px; font-weight: 800; color: rgba(255,255,255,.6); text-align: center; letter-spacing: .03em; }

    /* ─── SVG ICONS ─── */
    .icon { display: inline-block; }

    /* ─── SCROLL ANIMATION ─── */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-in.visible { opacity: 1; transform: none; }

    /* ─── BURGER BUTTON ─── */
    .nav-burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      border-radius: 8px;
      flex-shrink: 0;
      transition: background 0.15s;
    }
    .nav-burger:hover { background: var(--gray-100); }
    .nav-burger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--black);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-burger.open span:nth-child(2) { opacity: 0; }
    .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ─── MOBILE MEDIA QUERIES ─── */
    @media (max-width: 900px) {
      /* NAV */
      .nav-burger { display: flex; }
      .nav-links { display: none; }
      .nav-register { display: none; }
      .nav-inner { padding: 0 16px; gap: 0; flex: none; }
      .nav-logo { margin-right: auto; }
      .lang-switcher { gap: 5px; margin-right: 10px; }
      .lang-btn { width: 28px; height: 28px; }
      .mobile-menu { padding: 16px 20px 24px; }

      /* HERO */
      #avaleht {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 20px 48px;
        min-height: auto;
      }
      .hero-image-wrap { order: -1; margin: 0 -20px 28px; border-radius: 0; }
      .hero-content { order: 1; padding-top: 24px; }
      .hero-title { font-size: clamp(36px, 9vw, 56px); margin-bottom: 16px; }
      .hero-subtitle { font-size: 15px; margin-bottom: 28px; }
      .hero-buttons { gap: 12px; margin-bottom: 36px; }
      .hero-stats { gap: 24px; flex-wrap: wrap; }
      .hero-slider { height: 480px; border-radius: 0; }
      .hero-badge-since { font-size: 11px; padding: 6px 14px; }

      /* ABOUT */
      #klubist { padding: 0; }
      .klubist-inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 20px 48px;
      }
      .about-img-wrap { margin: 0 -20px 28px; order: -1; border-radius: 0; }
      .about-text { order: 1; }
      .about-img, .about-img-placeholder { height: 280px; border-radius: 0; }

      /* VALUES */
      #values { padding: 24px 0; }
      .values-inner { padding: 0 20px; }
      .values-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

      /* TRAINERS */
      #treenerid { padding: 48px 0; }
      .trainers-inner { padding: 0 20px; }
      .trainers-header { grid-template-columns: 1fr; margin-bottom: 32px; }
      .trainers-desc { max-width: 100%; }
      .trainers-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
      .trainer-card { height: 320px; border-radius: 20px; }
      .trainer-name { font-size: 18px; }
      .trainer-info { left: 16px; right: 16px; bottom: 16px; }

      /* EVENTS */
      .events-inner { padding: 48px 20px; }
      .events-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

      /* CHAMPIONS */
      .champions-inner { padding: 48px 20px; }
      .champions-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
      .champion-avatar { width: 160px; height: 160px; }

      /* GALLERY */
      #galerii { padding: 48px 20px; }
      .galerii-header { grid-template-columns: 1fr; gap: 12px; }
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-main { height: 300px; grid-row: auto; }
      .gallery-right { grid-template-columns: 1fr 1fr; }
      .gallery-thumb { height: 180px; }
      .gallery-thumb:nth-child(3) { grid-column: auto; }

      /* CONTACT */
      #kontakt { padding: 48px 0; }
      .kontakt-inner { padding: 0 20px; }
      .kontakt-header { margin-bottom: 36px; }
      .kontakt-grid { grid-template-columns: 1fr; gap: 20px; }
      .form-card { padding: 24px; }
      .form-row { grid-template-columns: 1fr; }

      /* HALLS */
      .halls-content { padding: 48px 20px 32px; }
      .halls-grid { grid-template-columns: repeat(2, 1fr); }
      #halls-map { height: 320px; }
      .kontakt-inner--form-only { padding: 0 20px; }

      /* SPONSORS */
      .sponsors-inner { padding: 0 20px; }
      .sponsors-header { flex-direction: column; gap: 24px; }
      .sponsors-divider { display: none; }
      .sponsors-grid { grid-template-columns: repeat(2, 1fr); }

      /* FOOTER */
      .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 20px 40px; }
      .footer-desc { max-width: 100%; }
      .footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 20px; }
      .footer-tagline { justify-content: center; }
    }

    @media (max-width: 540px) {
      .nav-inner { height: 68px; }
      .nav-logo-name { font-size: 22px; }
      .nav-logo-sub { font-size: 11px; letter-spacing: 1px; }
      .mobile-menu { top: 68px; }

      /* HERO */
      .hero-slider { height: 380px; }
      .hero-stats { gap: 16px; }
      .hero-stat-num { font-size: 22px; }

      /* VALUES */
      .values-grid { grid-template-columns: 1fr; }
      .value-card { padding: 24px 20px; }

      /* TRAINERS */
      .trainers-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
      .trainer-card { height: 340px; }

      /* EVENTS */
      .events-grid { grid-template-columns: 1fr; gap: 16px; }
      .event-card-img { height: 200px; }

      /* CHAMPIONS */
      .champions-grid { grid-template-columns: 1fr; gap: 24px; }
      .champion-avatar { width: 140px; height: 140px; }

      /* GALLERY */
      .gallery-right { grid-template-columns: 1fr; }
      .gallery-thumb { height: 200px; }

      /* HALLS */
      .halls-grid { grid-template-columns: 1fr; }

      /* SPONSORS */
      .sponsors-grid, .partners-grid { grid-template-columns: 1fr; }

      /* SCHEDULE */
      .schedule-grid { grid-template-columns: 1fr; }
      .ajakava-inner { padding: 0 20px; }
    }
