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

:root {
  --black:   #080808;
  --dark:    #0f0f0f;
  --card:    #141414;
  --border:  #222;
  --red:     #d42b2b;
  --red-hot: #ff3333;
  --red-dim: rgba(212,43,43,0.12);
  --red-glow:rgba(212,43,43,0.35);
  --blue:    #3a63d8;
  --blue-dim:rgba(58,99,216,0.12);
  --white:   #f0eded;
  --grey:    #b0b0b0;
  --light:   #c4c4c4;
}

html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

/* NOISE */
body::after {
  content:'';
  position:fixed; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity:.03;
  pointer-events:none;
  z-index:9000;
}

/* NAV */
nav {
  position: fixed; top:0; left:0; right:0; z-index:500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px;
  height: 72px;
  background: rgba(8,8,8,.95);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
nav.stuck {
  border-color: var(--border);
  box-shadow: 0 2px 24px rgba(0,0,0,.6);
}
.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
}
.logo em { color: var(--red); font-style: normal; }
a.logo { text-decoration: none; }

.nav-links {
  display: flex; gap: 40px; list-style: none;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--red); }

.nav-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background .2s;
}
.nav-btn:hover { background: var(--red-hot); }

/* HERO */
.hero {
  position: relative;
  height: 100vh; min-height: 680px;
  display: flex; align-items: flex-end;
  padding: 0 52px 72px;
  overflow: hidden;
}

.hero-img {
  position: absolute; inset: 0;
  background: #0f0f0f url('/images/hero.webp') center/cover no-repeat;
  filter: grayscale(100%) contrast(1.1);
  transform: scale(1.04);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(8,8,8,.92) 0%, rgba(8,8,8,.55) 55%, rgba(8,8,8,.2) 100%),
    linear-gradient(to top, rgba(8,8,8,.98) 0%, transparent 50%);
}

.hero-slash {
  position: absolute;
  top: 0; right: 22%;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--red) 30%, var(--red) 70%, transparent 100%);
  opacity: .18;
}
.hero-slash2 {
  position: absolute;
  top: 0; right: calc(22% + 18px);
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--red) 40%, var(--red) 60%, transparent 100%);
  opacity: .1;
}

.hero-open {
  position: absolute; top: 100px; left: 52px;
  display: flex; align-items: center; gap: 9px;
  border: 1px solid rgba(255,255,255,.1);
  padding: 7px 16px;
  backdrop-filter: blur(4px);
  animation: fadeDown .7s .2s both;
}
.open-dot {
  width: 7px; height: 7px;
  background: #22c55e; border-radius: 50%;
  position: relative;
}
.open-dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: rgba(34,197,94,.5);
  animation: blink 1.8s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes blink {
  0%,100% { transform: scale(1); opacity: .5; }
  50%     { transform: scale(2.4); opacity: 0; }
}
.open-label {
  font-family:'Share Tech Mono',monospace;
  font-size:10px; letter-spacing:2px; text-transform:uppercase; color:#22c55e;
}

.hero-phone {
  position: absolute; top: 100px; right: 52px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 20px; letter-spacing: 2px;
  color: var(--white); text-decoration: none;
  animation: fadeDown .7s .3s both;
}
.hero-phone:hover { color: var(--red); }

.hero-content { position: relative; z-index: 2; }

.hero-kicker {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  animation: fadeUp .7s .4s both;
}
.hero-kicker::before { content: '▶  '; }

.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(82px, 13vw, 170px);
  line-height: .88;
  letter-spacing: -1px;
  text-transform: uppercase;
  animation: fadeUp .7s .55s both;
}
.hero-h1 .outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--red);
  letter-spacing: 6px;
}

.hero-sub {
  margin-top: 22px;
  font-size: 16px; font-weight: 300; line-height: 1.65;
  color: var(--light);
  max-width: 440px;
  animation: fadeUp .7s .7s both;
}

.hero-actions {
  display: flex; align-items: center; gap: 20px;
  margin-top: 36px;
  animation: fadeUp .7s .85s both;
}
.btn-red {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 15px; letter-spacing: 3px; text-transform: uppercase;
  padding: 15px 38px;
  background: var(--red);
  color: var(--white);
  border: none; cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background .2s, transform .15s;
  text-decoration: none; display: inline-block;
}
.btn-red:hover { background: var(--red-hot); transform: translateY(-2px); }

.btn-line {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--light); text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 3px;
  transition: color .2s, border-color .2s;
}
.btn-line:hover { color: var(--white); border-color: var(--grey); }

.hero-scroll {
  position: absolute; bottom: 28px; right: 52px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeUp .8s 1.2s both;
}
.hero-scroll span {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px; letter-spacing: 3px; color: var(--grey);
  writing-mode: vertical-rl; text-transform: uppercase;
}
.scroll-bar {
  width: 1px; height: 55px;
  position: relative; overflow: hidden;
}
.scroll-bar::after {
  content: ""; position: absolute; left: 0; right: 0; height: 100%;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: grow 2s ease-in-out infinite;
  will-change: transform;
}
@keyframes grow {
  0%   { transform:translateY(-100%); }
  50%  { transform:translateY(0); }
  100% { transform:translateY(100%); }
}

@keyframes fadeUp   { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }
@keyframes fadeDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:none} }

/* TICKER */
.ticker {
  background: var(--red);
  overflow: hidden; white-space: nowrap;
  padding: 11px 0;
}
.ticker-track {
  display: inline-flex;
  animation: tick 22s linear infinite;
}
@keyframes tick { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.t-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 16px; letter-spacing: 3px; text-transform: uppercase;
  padding: 0 36px;
  display: flex; align-items: center; gap: 16px;
}
.t-sep { width: 4px; height: 4px; background: rgba(0,0,0,.3); border-radius: 50%; flex-shrink:0; }

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-bottom: 1px solid var(--border);
}
.stat {
  padding: 52px 40px;
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background .3s;
}
.stat:last-child { border-right: none; }
.stat::after {
  content:'';
  position:absolute; bottom:0; left:0;
  height:2px; width:0;
  background: var(--red);
  transition: width .45s ease;
}
.stat:hover { background: #111; }
.stat:hover::after { width:100%; }
.stat-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(42px, 6vw, 68px); line-height: 1;
  color: var(--red); white-space: nowrap;
}
.stat-l {
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--light); margin-top: 10px; line-height: 1.45;
}

/* SECTION HELPERS */
.s-wrap { padding: 96px 52px; }
.s-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px;
}
.s-eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
.s-eyebrow::before { content: '// '; }
.s-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: .92; letter-spacing: 1px; text-transform: uppercase;
}
.s-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 110px;
  color: transparent;
  -webkit-text-stroke: 1px #1e1e1e;
  line-height: 1; user-select: none;
}

/* SERVICES */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: var(--border);
}
.srv-card {
  background: var(--card);
  padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background .25s;
}
.srv-card::before {
  content:'';
  position:absolute; top:0; left:0;
  width:0; height:3px;
  background: var(--red);
  transition: width .4s ease;
}
.srv-card:hover { background: #1a1a1a; }
.srv-card:hover::before { width:100%; }
.srv-icon { margin-bottom:20px; display:block; color: var(--red); }
.srv-icon svg { width:36px; height:36px; display:block; }
.srv-card h3 {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:800; font-size:26px; letter-spacing:1px; text-transform:uppercase;
  margin-bottom:10px;
}
.srv-card p { font-size:14px; font-weight:300; line-height:1.7; color:var(--light); }
.srv-tag {
  margin-top:18px;
  font-family:'Share Tech Mono',monospace;
  font-size:10px; letter-spacing:1.5px; text-transform:uppercase;
  color:var(--red);
}
a.srv-tag {
  display: block;
  text-decoration: none;
  transition: letter-spacing .2s, opacity .15s;
}
a.srv-tag:hover { letter-spacing: 2.5px; opacity: .75; }

/* PRICING */
.pricing-bg { background: var(--dark); }
.p-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.p-card {
  border: 1px solid var(--border);
  padding: 40px 34px;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.p-card:hover { transform: translateY(-4px); }
.p-card-klasik  { border-color: var(--red);  background: var(--red-dim); }
.p-card-student { border-color: var(--blue); background: var(--blue-dim); }
.p-label {
  font-family:'Barlow Condensed',sans-serif;
  font-size:24px; font-weight:800; letter-spacing:.5px; text-transform:uppercase;
  margin-bottom:18px;
}
.p-card-klasik  .p-label { color:var(--red); }
.p-card-student .p-label { color:var(--blue); }
.p-tier {
  display:flex; justify-content:space-between; align-items:baseline;
  padding:18px 0; border-bottom:1px solid var(--border);
}
.p-tier:first-of-type { border-top:1px solid var(--border); }
.p-tier-name {
  font-family:'Barlow',sans-serif; font-size:15px;
  color:rgba(240,237,237,.85);
}
.p-tier-price {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:900; font-size:38px; line-height:1;
}
.p-tier-cur {
  font-family:'Share Tech Mono',monospace;
  font-size:13px; color:var(--grey); margin-left:3px;
}
.p-card-klasik  .p-tier-price { color:var(--red); }
.p-card-student .p-tier-price { color:var(--blue); }
.btn-outline {
  display:block; width:100%; padding:18px; margin-top:26px;
  box-sizing:border-box;
  border:2px solid var(--red);
  background:var(--red); color:var(--white);
  font-family:'Barlow Condensed',sans-serif;
  font-weight:800; font-size:16px; letter-spacing:2px; text-transform:uppercase;
  text-align:center; text-decoration:none;
  cursor:pointer;
  transition:background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(212,43,43,0.25);
}
.btn-outline:hover { background: var(--red-hot); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(212,43,43,0.45); }
.p-card-student .btn-outline { border-color: var(--blue); background: var(--blue); box-shadow: 0 4px 18px rgba(58,99,216,0.25); }
.p-card-student .btn-outline:hover { background: #4d75e8; box-shadow: 0 6px 24px rgba(58,99,216,0.45); }

/* HOURS */
.hours-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hours-desc {
  font-size:15px; font-weight:300; line-height:1.7; color:var(--light);
  max-width:380px; margin-top:16px;
}
.tel-big {
  display:inline-block; margin-top:28px;
  font-family:'Barlow Condensed',sans-serif;
  font-weight:900; font-size:36px; letter-spacing:2px;
  color:var(--white); text-decoration:none;
  border-bottom:2px solid var(--red); padding-bottom:2px;
  transition:color .2s;
}
.tel-big:hover { color:var(--red); }
.h-table { border:1px solid var(--border); }
.h-row {
  display:flex; justify-content:space-between; align-items:center;
  padding:16px 28px;
  border-bottom:1px solid var(--border);
  transition:background .2s;
  position:relative;
}
.h-row:last-child { border-bottom:none; }
.h-row:hover { background:var(--card); }
.h-day {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:800; font-size:18px; letter-spacing:3px; text-transform:uppercase; color:var(--white);
}
.h-time {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:700; font-size:24px; letter-spacing:1px; color:var(--white);
}
.h-row.we .h-time { color:var(--red); }
.h-row.today {
  background:linear-gradient(90deg, rgba(212,43,43,0.10) 0%, rgba(212,43,43,0) 80%);
  border-left:3px solid var(--red);
  padding-left:25px;
}
.h-row.today .h-day { color:var(--red); }
.h-today {
  position:absolute; right:28px; top:50%; transform:translateY(calc(-50% + 22px));
  font-family:'Share Tech Mono',monospace;
  font-size:9px; letter-spacing:2px; text-transform:uppercase;
  color:var(--red); opacity:.85;
  background:rgba(212,43,43,0.12);
  padding:2px 8px; border-radius:3px;
}

/* GALLERY */
.dyn-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3px;
}
.dyn-gallery img {
  width: 100%; aspect-ratio: 1; object-fit: cover; display: block;
  transition: transform .3s;
}
.dyn-gallery img:hover { transform: scale(1.02); }
.gal-empty {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px; letter-spacing: 2px; color: var(--grey);
  padding: 40px 0;
}

/* NEWS CARDS */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
}
.nc {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 36px 36px 32px;
  position: relative;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  overflow: hidden;
}
.nc-img {
  display: block !important;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 0 0 24px;
  background: #0a0a0a;
  flex-shrink: 0;
}
.nc:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
}
.nc-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
.nc-date {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px; letter-spacing: 1.5px;
  color: var(--grey); margin-bottom: 16px;
}
.nc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 28px; letter-spacing: 1px; text-transform: uppercase;
  line-height: 1.15; margin-bottom: 14px; color: var(--white);
}
.nc-perex {
  font-size: 14px; font-weight: 300; line-height: 1.75; color: var(--light);
  flex: 1;
}
.nc-expand {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s cubic-bezier(.4,0,.2,1);
}
.nc.nc-open .nc-expand { grid-template-rows: 1fr; }
.nc-expand > div { overflow: hidden; }
.nc-body {
  font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--light);
  padding-top: 20px; margin-top: 20px;
  border-top: 1px solid var(--border);
  white-space: pre-line;
}
.nc-more {
  margin-top: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--red);
  background: none; border: none; padding: 0; cursor: pointer;
  transition: letter-spacing .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.nc-more:hover { letter-spacing: 4px; }
.nc-more-arrow {
  display: inline-block;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.nc.nc-open .nc-more-arrow { transform: rotate(90deg); }

/* CTA STRIP */
.cta {
  background: var(--red);
  padding: 80px 52px;
  position: relative; overflow: hidden;
}
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  position: relative; z-index: 1;
}
.cta::before {
  content:'TRÉNUJ';
  position:absolute; right:-60px; top:50%; transform:translateY(-50%);
  font-family:'Barlow Condensed',sans-serif;
  font-weight:900; font-size:260px; line-height:1;
  color:rgba(0,0,0,.1); pointer-events:none; white-space:nowrap;
}
.cta-left h2 {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:900; font-size:clamp(48px,7vw,96px);
  line-height:.9; text-transform:uppercase; letter-spacing:1px;
}
.cta-right {
  display:flex; flex-direction:column; align-items:flex-end; gap:16px; flex-shrink:0;
}
.cta-tel {
  font-family:'Barlow Condensed',sans-serif;
  font-weight:900; font-size:32px; letter-spacing:2px;
  color:var(--white); text-decoration:none;
}
.btn-black {
  font-family:'Share Tech Mono',monospace;
  font-size:11px; letter-spacing:2px; text-transform:uppercase;
  padding:14px 32px;
  background:var(--black); color:var(--white);
  border:none; cursor:pointer;
  clip-path:polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  text-decoration:none; display:inline-block;
  transition:background .2s;
}
.btn-black:hover { background:#1a1a1a; }

/* FOOTER */
footer {
  background: #060606;
  border-top: 3px solid var(--red);
  padding: 72px 52px 36px;
  position: relative;
}
.ft-top {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:56px;
  margin-bottom:56px;
}
.ft-brand .logo { font-size:32px; display:block; margin-bottom:16px; }
.ft-brand p { font-size:14px; font-weight:300; line-height:1.75; color:var(--light); max-width:260px; }
.ft-socials { display:flex; gap:18px; margin-top:24px; }
.soc-item { display:flex; flex-direction:column; align-items:center; gap:8px; text-decoration:none; }
.soc {
  width:48px; height:48px;
  border:1px solid var(--red);
  display:flex; align-items:center; justify-content:center;
  font-family:'Barlow Condensed',sans-serif; font-size:15px; font-weight:800;
  letter-spacing:1px;
  color:var(--white); text-decoration:none;
  transition:border-color .2s, color .2s, background .2s;
}
.soc-item:hover .soc { background: var(--red); }
.soc-label {
  font-family:'Barlow Condensed',sans-serif;
  font-size:13px; font-weight:700; letter-spacing:1px; text-transform:uppercase;
  color:var(--light); transition:color .2s;
}
.soc-item:hover .soc-label { color:var(--white); }
.ft-col h4 {
  font-family:'Barlow Condensed',sans-serif;
  font-size:18px; font-weight:800; letter-spacing:2px; text-transform:uppercase;
  color:var(--white); margin-bottom:28px;
  padding-bottom:14px; border-bottom:1px solid #2a2a2a;
}
.ft-col ul { list-style:none; display:flex; flex-direction:column; gap:14px; }
.ft-col ul a,
.ft-col ul span {
  font-size:14px; font-weight:300; color:var(--light);
  text-decoration:none; transition:color .2s;
  display:flex; align-items:center; gap:6px;
}
.ft-col ul a::before,
.ft-col ul span::before { content:'›'; color:var(--red); font-size:16px; }
.ft-col ul a:hover { color:var(--white); }
.ft-bot {
  border-top:1px solid #131313;
  padding-top:28px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px;
}
@media(max-width:760px) {
  .ft-bot { flex-direction:column; align-items:flex-start; gap:18px; }
  .ft-bot p { width:100%; line-height:1.7; }
  .badges { flex-wrap:wrap; gap:6px; }
  .ft-top { grid-template-columns:1fr !important; gap:44px !important; margin-bottom:44px; }
  .ft-brand p { max-width:100%; }
}
.ft-bot p {
  font-family:'Share Tech Mono',monospace;
  font-size:12px; letter-spacing:1.3px; color:var(--white);
}
.ft-bot p a { color:var(--white); }
.badges { display:flex; gap:8px; }
.badge {
  font-family:'Share Tech Mono',monospace;
  font-size:11px; font-weight:700; letter-spacing:1.4px;
  color:var(--white); padding:6px 13px;
  border:1px solid var(--red);
  background: rgba(212,43,43,0.08);
}

/* POPUP */
.popup-overlay {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(0,0,0,.75);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  contain: layout style paint;
  visibility: hidden;
  transition: opacity .3s, visibility 0s linear .3s;
}
.popup-overlay.open { opacity: 1; pointer-events: all; visibility: visible; backdrop-filter: blur(6px); transition: opacity .3s, visibility 0s; }
.popup-box {
  background: var(--card); max-width: 360px; width: 100%;
  max-height: 92vh; overflow-y: auto;
  border: 1px solid var(--border);
  position: relative;
  transform: translateY(40px) scale(.96); transition: transform .45s cubic-bezier(.2,.7,.2,1.1);
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(212,43,43,.15);
}
.popup-overlay.open .popup-box { transform: translateY(0) scale(1); }
.popup-box img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block;
  background: #0a0a0a;
  border-bottom: 2px solid var(--red);
}
.popup-inner { padding: 28px 32px 32px; }
.popup-close {
  position: absolute; top: 12px; right: 12px;
  background: var(--red); color: var(--white);
  border: 2px solid #fff; border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2;
  box-shadow: 0 4px 14px rgba(0,0,0,.55);
  transition: background .2s, transform .2s;
}
.popup-close:hover { background: var(--red-hot); transform: rotate(90deg); }
.popup-close svg { width: 20px; height: 20px; stroke-width: 3; }
.popup-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--red); margin-bottom: .6rem;
}
.popup-tag::before { content: '// '; }
.popup-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(1.6rem, 6vw, 2.1rem); line-height: 1.05; letter-spacing: .5px; text-transform: uppercase;
  color: var(--white); margin-bottom: .85rem;
}
.popup-body { font-size: .92rem; color: var(--light); line-height: 1.6; margin-bottom: 1.4rem; }
@media (max-width: 600px) {
  .popup-overlay { padding: 16px; }
  .popup-box { max-height: 88vh; }
  .popup-inner { padding: 22px 24px 28px; }
}

/* SCROLL REVEAL */
.r { opacity:0; transform:translateY(36px); transition:opacity .7s ease, transform .7s ease; }
.r.in { opacity:1; transform:none; }

/* HAMBURGER */
.ham-btn {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--white);
}
.ham-btn svg { width: 26px; height: 26px; display: block; }

.mob-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh; height: 100dvh;
  z-index: 9999;
  background: var(--black);
  flex-direction: column;
  padding: max(20px, env(safe-area-inset-top)) 20px max(20px, env(safe-area-inset-bottom));
}
.mob-nav.open { display: flex; }
body:has(.mob-nav.open) { overflow: hidden; }
.mob-nav-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.mob-socials {
  display: flex; gap: 12px;
  flex-shrink: 0;
  margin-top: 14px; padding-top: 16px;
  border-top: 1px solid var(--border);
  justify-content: center;
}
.mob-socials a {
  display: inline-flex !important; align-items: center; gap: 8px;
  padding: 10px 18px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--white) !important; text-decoration: none !important;
  border: 1px solid var(--border);
  transition: border-color .2s, color .2s;
}
.mob-socials a:hover { border-color: var(--red); color: var(--red) !important; }
.mob-socials a svg { width: 16px; height: 16px; flex-shrink: 0; }
.mob-close {
  background: none; border: none; cursor: pointer;
  color: var(--white); padding: 8px;
}
.mob-close svg { width: 28px; height: 28px; display: block; }
.mob-links { display: flex; flex-direction: column; gap: 4px; list-style: none; flex: 1; overflow-y: auto; min-height: 0; }
.mob-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.05rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
}
.mob-links a:hover { background: #141414; border-color: var(--red); }
.mob-links a.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(212,43,43,0.4);
}
.mob-links a.active svg { opacity: 1; }
.mob-links a.mob-cta {
  background: var(--red); border-color: var(--red); margin-top: 10px;
  padding: 14px 16px;
}
.mob-links a.mob-cta:hover { background: var(--red-hot); }
.mob-links a svg { width: 16px; height: 16px; opacity: .4; flex-shrink: 0; }
.mob-socials { padding-top: 20px !important; margin-top: 16px !important; }
.mob-socials a { padding: 10px 18px; font-size: 10px; }

/* PAGE HERO (subpages) */
.page-hero {
  padding: 140px 52px 64px;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 52px;
  width: 80px; height: 2px; background: var(--red);
}
.page-kicker {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
.page-kicker::before { content: '// '; }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(52px, 8vw, 100px);
  line-height: .9; text-transform: uppercase; letter-spacing: 1px;
}

/* DISCOUNT ROW */
.disc-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--border); margin-top: 40px;
}
.visually-hidden {
  position:absolute !important; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
/* Sjednocený rendering měny Kč napříč webem — vždy stejný font + váha jako sousední číslice */
.cur {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: inherit;
  font-style: normal;
  font-size: 0.78em;
  letter-spacing: 0.04em;
  padding-left: 0.18em;
  vertical-align: 0.06em;
  text-transform: uppercase;
}
/* Cena s Kč nesmí zalamovat — vždy drží na jednom řádku */
.disc-price, .pl-price, .stat-n, .price-from { white-space: nowrap; }
.disc-item {
  background: var(--black); padding: 32px 28px;
  border-top: 3px solid var(--red);
  position: relative; overflow: hidden;
  transition: background .3s;
}
.disc-item::after {
  content:'';
  position:absolute; bottom:0; left:0;
  height:2px; width:0;
  background: var(--red);
  transition: width .45s ease;
}
.disc-item:hover { background: #111; }
.disc-item:hover::after { width:100%; }
.disc-cat {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--grey); margin-bottom: 10px;
}
.disc-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(34px, 7vw, 52px); color: var(--white); line-height: 1;
}
.disc-note {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px; letter-spacing: 2px; color: var(--grey); margin-top: 4px;
}

/* NEWSLETTER SECTION */
.nl-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 80px 52px;
}
.nl-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 60px;
}
.nl-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(40px, 5vw, 64px);
  line-height: .9; text-transform: uppercase; letter-spacing: 1px;
}
.nl-desc {
  margin-top: 14px; font-size: 15px; font-weight: 300;
  line-height: 1.65; color: var(--light); max-width: 380px;
}
.nl-right { flex-shrink: 0; min-width: 300px; }
.nl-input-row { display: flex; }
.nl-input-row input {
  flex: 1; padding: 16px 20px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-right: none; color: var(--white);
  font-family: 'Share Tech Mono', monospace; font-size: 12px; outline: none;
  transition: border-color .2s;
}
.nl-input-row input:focus { border-color: var(--red); }
.nl-input-row input::placeholder { color: var(--grey); opacity: 1; }
.nl-input-row button {
  padding: 16px 22px; background: var(--red); color: var(--white);
  border: none; cursor: pointer;
  font-family: 'Share Tech Mono', monospace; font-size: 10px;
  letter-spacing: 1px; text-transform: uppercase; white-space: nowrap;
  transition: background .2s;
}
.nl-input-row button:hover { background: var(--red-hot); }

/* TRAINERS */
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.trainer-card {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.trainer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
}
.trainer-img-wrap { overflow: hidden; }
.trainer-img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block;
  filter: grayscale(20%);
  transition: filter .4s, transform .4s;
}
.trainer-card:hover .trainer-img { filter: grayscale(0%); transform: scale(1.04); }
.trainer-img-placeholder {
  width: 100%; aspect-ratio: 4/5; background: #1a1a1a;
}
.trainer-info {
  padding: 24px 26px 28px;
  border-top: 2px solid var(--red);
}
.trainer-role {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); margin-bottom: 8px;
}
.trainer-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 30px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--white); line-height: 1.05; margin-bottom: 12px;
}
.trainer-bio {
  font-size: 13px; font-weight: 300; line-height: 1.75; color: var(--light);
}
.trainer-contacts {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.trainer-contact-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 400; color: var(--grey);
  text-decoration: none; transition: color .2s;
}
.trainer-contact-link:hover { color: var(--red); }
.trainer-contact-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.trainer-empty {
  padding: 60px 0; font-family: 'Share Tech Mono', monospace;
  font-size: 11px; letter-spacing: 2px; color: var(--grey);
}

/* CONTACT PAGE */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.ci-block { margin-bottom: 40px; }
.ci-list { display: flex; flex-direction: column; gap: 24px; margin-top: 20px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.ci-icon svg { width: 18px; height: 18px; }
.ci-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--grey); margin-bottom: 4px;
}
.ci-val { font-size: 15px; font-weight: 300; color: var(--light); line-height: 1.6; }
.ci-link { color: var(--white); text-decoration: none; transition: color .2s; }
.ci-link:hover { color: var(--red); }
.map-wrap { border: 1px solid var(--border); overflow: hidden; }
.benefit-lead { font-family: 'Barlow', sans-serif; font-size: 16px; line-height: 1.7; color: var(--grey); max-width: 560px; margin-bottom: 36px; }
.benefit-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.benefit-card { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.benefit-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
@media (max-width: 768px) { .benefit-cards { grid-template-columns: 1fr; } }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.cf-field label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey);
}
.cf-field input, .cf-field textarea {
  padding: 14px 16px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  color: var(--white); font-family: 'Barlow', sans-serif; font-size: 14px;
  outline: none; transition: border-color .2s;
}
.cf-field input:focus, .cf-field textarea:focus { border-color: var(--red); }
.cf-field textarea { min-height: 130px; resize: vertical; }
.cf-ok { padding: 40px 0; }
.cf-ok-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 32px; letter-spacing: 1px; text-transform: uppercase;
  color: #22c55e; margin-bottom: 10px;
}
.cf-ok-sub { font-size: 14px; font-weight: 300; color: var(--light); line-height: 1.7; }

/* RESPONSIVE */
@media(max-width:1024px){
  nav { padding:0 24px; }
  .nav-links { display:none; }
  .nav-btn { display:none; }
  .ham-btn { display: block; }
  .hero { padding:0 24px 56px; }
  .hero-phone { right:24px; }
  .hero-open  { left:24px; }
  .stats { grid-template-columns:repeat(2,1fr); }
  .stat { border-right:1px solid var(--border); padding: 36px 24px; }
  .stat:nth-child(2n){ border-right:none; }
  .stat:nth-child(3),.stat:nth-child(4){ border-top:1px solid var(--border); }
  .stat-l { font-size: 14px; letter-spacing: 1.7px; margin-top: 10px; line-height: 1.45; }
  .s-wrap { padding:60px 24px; }
  .srv-grid { grid-template-columns:1fr; }
  .p-grid { grid-template-columns:1fr; }
  .hours-grid { grid-template-columns:1fr; gap:40px; }
  .cta { padding:60px 24px; }
  .cta-inner { flex-direction:column; align-items:flex-start; }
  .cta-right { align-items:flex-start; }
  footer { padding:48px 24px 24px; }
  .ft-top { grid-template-columns:1fr 1fr; gap:32px; }
  .news-grid { grid-template-columns:1fr; }
  .dyn-gallery { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
  .disc-row { grid-template-columns: 1fr 1fr; }
  .nl-section { padding: 60px 24px; }
  .nl-inner { flex-direction: column; gap: 32px; }
  .nl-right { width: 100%; min-width: unset; }
  .page-hero { padding: 120px 24px 48px; }
  .page-hero::after { left: 24px; }
  .trainers-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .cf-row { grid-template-columns: 1fr; }
  footer { padding: 56px 24px 28px; }
  .ft-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* GDPR BANNER */
#cookie-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #111; border-top: 1px solid #2a2a2a;
  padding: 14px 28px; gap: 20px;
  align-items: center; justify-content: space-between;
  font-family: 'Barlow', sans-serif; font-size: 13px; color: #a0a0a0;
  transition: opacity .3s;
}
#cookie-bar a { color: var(--red); text-decoration: none; }
#cookie-bar a:hover { text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
#cookie-bar button {
  padding: 8px 22px;
  background: var(--red); color: #fff; border: none; cursor: pointer;
  font-family: 'Share Tech Mono', monospace; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; white-space: nowrap;
}
#cookie-bar button:hover { background: #b82222; }
#cookie-bar button.cookie-reject {
  background: transparent; color: #a0a0a0; border: 1px solid #2a2a2a;
}
#cookie-bar button.cookie-reject:hover { background: #1a1a1a; color: #fff; }
@media(max-width:600px) {
  #cookie-bar { flex-direction: column; align-items: flex-start; padding: 16px; gap: 12px; }
  .cookie-actions { width: 100%; }
  #cookie-bar button { flex: 1; text-align: center; }
}

/* LEGAL / PRIVACY PAGE */
.legal {
  max-width: 760px; margin: 0 auto;
  font-family: 'Barlow', sans-serif; color: #c8c8c8;
  font-size: 15px; line-height: 1.75;
}
.legal-intro {
  font-size: 16px; color: #e4e4e4;
  padding-bottom: 8px; margin-bottom: 8px;
}
.legal h2 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  color: #fff; font-size: 21px;
  margin: 36px 0 12px;
}
.legal p { margin: 0 0 14px; }
.legal ul { margin: 0 0 14px; padding-left: 22px; }
.legal li { margin-bottom: 7px; }
.legal a { color: var(--red); text-decoration: none; }
.legal a:hover { text-decoration: underline; }
.legal strong { color: #fff; }
.legal-updated {
  margin-top: 36px; padding-top: 18px;
  border-top: 1px solid #2a2a2a;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px; letter-spacing: 1px; color: var(--grey);
}

/* REVIEWS */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
.review-card {
  background: #111; border: 1px solid #2a2a2a;
  padding: 30px 26px; display: flex; flex-direction: column; gap: 16px;
}
.review-stars { display: flex; gap: 3px; }
.review-stars svg { width: 17px; height: 17px; fill: var(--red); }
.review-text {
  font-family: 'Barlow', sans-serif; font-size: 15px; line-height: 1.65;
  color: rgba(240, 237, 237, .85); flex: 1;
}
.review-author {
  display: flex; flex-direction: column; gap: 3px;
  border-top: 1px solid #2a2a2a; padding-top: 16px;
}
.review-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--white); font-size: 16px;
}
.review-meta {
  font-family: 'Share Tech Mono', monospace; font-size: 10px;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey);
}
@media(max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list {
  max-width: 860px; margin: 48px auto 0;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item { background: #111; border: 1px solid #2a2a2a; }
.faq-q {
  list-style: none; cursor: pointer; padding: 20px 24px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 18px; letter-spacing: .5px; color: var(--white);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: ''; width: 10px; height: 10px; flex-shrink: 0;
  border-right: 2px solid var(--red); border-bottom: 2px solid var(--red);
  transform: rotate(45deg); transition: transform .25s;
}
.faq-item[open] .faq-q::after { transform: rotate(-135deg); }
.faq-a {
  padding: 0 24px 22px;
  font-family: 'Barlow', sans-serif; font-size: 14.5px;
  line-height: 1.7; color: rgba(240, 237, 237, .7);
}

/* SLUŽBY — ZOBRAZIT VÍCE */
.srv-hidden { display: none; }
.srv-more-wrap { display: flex; justify-content: center; margin-top: 32px; }
.srv-toggle {
  background: var(--red); color: var(--white);
  border: 2px solid var(--red);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 15px; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 16px 48px; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(212,43,43,0.25);
}
.srv-toggle:hover { background: var(--red-hot); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(212,43,43,0.45); }
.gal-hidden { display: none; }
.gal-toggle { display: block; margin: 32px auto 0; }

/* FOOTER — odkazy v patičce */
.ft-bot p a {
  color: var(--white); text-decoration: none;
  border-bottom: 1px solid #4a4a4a;
  transition: color .2s, border-color .2s;
}
.ft-bot p a:hover { color: var(--red); border-color: var(--red); }

/* LIGHTBOX */
.dyn-gallery img, .trainer-img { cursor: zoom-in; }
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(0, 0, 0, .94);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img {
  max-width: 90vw; max-height: 86vh;
  object-fit: contain; box-shadow: 0 0 60px rgba(0, 0, 0, .7);
}
.lb-btn {
  position: absolute; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20, 20, 20, .85); border: 1px solid #2a2a2a;
  color: #fff; cursor: pointer; transition: background .2s, border-color .2s;
}
.lb-btn:hover { background: var(--red); border-color: var(--red); }
.lb-btn svg { width: 22px; height: 22px; }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
@media(max-width: 600px) {
  .lb-btn { width: 42px; height: 42px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-close { top: 14px; right: 14px; }
}

/* ROZVRH LEKCÍ — kalendář */
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 2px; margin-top: 48px; background: var(--border);
}
.cal-col { background: var(--card); display: flex; flex-direction: column; }
.cal-day {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 15px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--white); text-align: center;
  padding: 16px 6px; border-bottom: 2px solid var(--red);
}
.cal-date {
  display: block; margin-top: 3px;
  font-family: 'Share Tech Mono', monospace; font-weight: 400;
  font-size: 10px; letter-spacing: 1px; color: var(--grey);
}
.cal-day-today { background: var(--red); color: #fff; }
.cal-day-today .cal-date { color: rgba(255, 255, 255, .85); }
.cal-slots { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 10px; }
.cal-lesson {
  background: #1a1a1a; border-left: 2px solid var(--red);
  padding: 10px 11px;
}
.cal-time {
  font-family: 'Share Tech Mono', monospace; font-size: 11px;
  letter-spacing: .5px; color: var(--red);
}
.cal-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 14px; line-height: 1.2; text-transform: uppercase;
  color: var(--white); margin-top: 3px;
}
.cal-trainer {
  font-family: 'Barlow', sans-serif; font-size: 11px;
  color: var(--grey); margin-top: 3px;
}
.cal-free {
  text-align: center; color: #333;
  font-family: 'Share Tech Mono', monospace; font-size: 12px; padding: 6px 0;
}
.cal-msg {
  font-family: 'Share Tech Mono', monospace; font-size: 12px;
  letter-spacing: 1px; color: var(--grey); margin-top: 44px;
}
@media(max-width: 760px) {
  .cal-grid { grid-template-columns: 1fr; }
  .cal-col-empty { display: none; }
  .cal-day { text-align: left; padding-left: 16px; }
}

/* CENÍK — KOMPLETNÍ PŘEHLED */
.price-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; margin-top: 48px; background: var(--border);
}
.pl-cat { background: var(--card); padding: 30px 32px; }
.pl-cat-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 22px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--white); margin-bottom: 16px;
}
.pl-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--border);
}
.pl-row:last-child { border-bottom: none; }
.pl-item { font-family: 'Barlow', sans-serif; font-size: 14px; color: var(--light); }
.pl-note {
  display: block; font-family: 'Share Tech Mono', monospace;
  font-size: 10px; letter-spacing: .5px; color: var(--grey); margin-top: 3px;
}
.pl-price {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 18px; color: var(--red); white-space: nowrap; flex-shrink: 0;
}
@media(max-width: 760px) { .price-list { grid-template-columns: 1fr; } }

/* ANTISPAM */
.hp-field {
  position: absolute !important; left: -9999px !important; top: -9999px !important;
  width: 1px; height: 1px; opacity: 0; pointer-events: none;
}

/* FAQ — animace rozbalení odpovědi */
.faq-item[open] .faq-a { animation: faqReveal .28s ease; }
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* CENÍK — dvojí cena na kartě (běžná / studentská) */
/* VIDEO */
.video-section { background: var(--dark); }
.video-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px;
  align-items: center;
}
.video-frame-wrap { }
.video-frame {
  width: 100%;
  aspect-ratio: 9/16;
  position: relative;
  background: #000;
  border: 1px solid var(--border);
  overflow: hidden;
}
.video-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}
.video-text { }
.video-body {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 20px;
}
.video-body p { font-size: 14px; font-weight: 300; line-height: 1.75; color: var(--light); }
.video-body strong { color: var(--white); font-weight: 500; }
.video-cta { display: none; }
.video-cta-desktop { display: inline-block; margin-top: 32px; }
@media(max-width:1024px) {
  .video-layout { grid-template-columns: 1fr; gap: 36px; }
  .video-frame-wrap { max-width: 360px; margin: 0 auto; order: 2; }
  .video-frame { min-height: 480px; }
  .video-text { order: 1; }
  .video-cta { display: inline-block; order: 3; }
  .video-cta-desktop { display: none; }
}

/* REVIEWS */
.rev-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 32px 36px;
  background: var(--dark);
  border: 1px solid var(--border);
  margin-bottom: 2px;
}
.rev-left { display: flex; flex-direction: column; gap: 4px; }
.rev-score {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 72px; line-height: 1;
  color: var(--red);
}
.rev-stars { font-size: 20px; color: #f5c518; letter-spacing: 3px; }
.rev-count {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--grey); margin-top: 4px;
}
.rev-glink {
  display: inline-block;
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--light); text-decoration: none;
  border-bottom: 1px solid var(--border); padding-bottom: 2px;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.rev-glink:hover { color: var(--white); border-color: var(--grey); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
}
.review-card {
  background: var(--card);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: background .25s;
}
.review-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .4s ease;
}
.review-card:hover { background: #1a1a1a; }
.review-card:hover::before { width: 100%; }
.review-stars { color: #f5c518; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text {
  font-size: 13px; font-weight: 300; line-height: 1.75;
  color: var(--light); flex: 1; margin-bottom: 20px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 38px; height: 38px;
  background: var(--red-dim); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 13px; letter-spacing: 1px;
  color: var(--red); flex-shrink: 0;
}
.review-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 16px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--white);
}
.review-date {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px; letter-spacing: 1px; color: var(--grey); margin-top: 2px;
}

/* FAQ */
.faq-list { border: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 22px 32px;
  background: transparent; border: none; cursor: pointer; text-align: left;
  transition: background .2s; gap: 20px;
}
.faq-question:hover { background: var(--card); }
.faq-question span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 22px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--white);
}
.faq-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  transition: transform .3s, background .2s, border-color .2s;
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--red-dim); border-color: var(--red); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-answer { max-height: 220px; }
.faq-answer-inner {
  padding: 16px 32px 28px;
  font-size: 14px; font-weight: 300; line-height: 1.75;
  color: var(--light); border-top: 1px solid var(--border);
}
.faq-answer-inner a { color: var(--red); text-decoration: none; }
.faq-answer-inner a:hover { text-decoration: underline; }
.faq-answer-inner strong { color: var(--white); font-weight: 500; }

@media(max-width:1024px) {
  .rev-banner { flex-direction: column; align-items: flex-start; }
  .rev-glink { white-space: normal; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .faq-question span { font-size: 18px; }
}
@media(max-width:600px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .faq-question { padding: 18px 20px; }
  .faq-answer-inner { padding: 14px 20px 22px; }
}
