:root {
  --navy: #07182f;
  --navy-2: #0b2342;
  --red: #e50914;
  --red-dark: #b9000b;
  --white: #ffffff;
  --soft-white: #f4f6fb;
  --gold: #f6c84c;
  --muted: #a8b3c7;
  --glass: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.16);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Noto Sans Georgian', sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(229, 9, 20, 0.22), transparent 30%),
    radial-gradient(circle at 92% 20%, rgba(246, 200, 76, 0.14), transparent 24%),
    linear-gradient(135deg, #041124, var(--navy) 55%, #030812);
  color: var(--white);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { color: var(--muted); line-height: 1.8; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}
.site-header.scrolled {
  background: rgba(7, 24, 47, 0.78);
  border-color: var(--border);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 220px; font-weight: 900; }
.brand img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 3px rgba(255,255,255,.08); }
.brand span { max-width: 250px; font-size: 14px; line-height: 1.35; }
.main-nav { display: flex; align-items: center; gap: 18px; }
.main-nav a { color: var(--muted); font-weight: 700; font-size: 14px; transition: .25s; }
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 900;
  cursor: pointer;
  transition: .3s ease;
}
.btn-primary, .nav-cta {
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 0 30px rgba(229,9,20,.35);
}
.btn-primary:hover, .nav-cta:hover { transform: translateY(-3px); box-shadow: 0 16px 42px rgba(229,9,20,.48); }
.btn-ghost { background: var(--glass); backdrop-filter: blur(10px); }
.menu-toggle { display: none; background: var(--glass); border: 1px solid var(--border); border-radius: 14px; padding: 10px; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px; background: var(--white); }

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: 48px;
  align-items: center;
  padding: clamp(38px, 6vw, 86px) clamp(18px, 5vw, 86px) 34px;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px; height: 180px;
  background: linear-gradient(to top, var(--navy), transparent);
  pointer-events: none;
}
.hero-glow { position: absolute; width: 420px; height: 420px; background: rgba(229,9,20,.24); filter: blur(80px); border-radius: 50%; right: 8%; top: 15%; }
.eyebrow, .section-kicker { color: var(--gold); font-size: 13px; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }
.hero h1, .page-hero h1, .coach-hero h1 { margin: 16px 0 8px; font-size: clamp(40px, 7vw, 86px); line-height: 1.04; }
.hero h2 { margin: 0 0 20px; font-size: clamp(24px, 3.2vw, 44px); color: var(--soft-white); }
.hero p { max-width: 720px; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-media {
  position: relative;
  border-radius: 24px;
  min-height: 470px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-banner { width: 100%; height: 225px; object-fit: cover; border-radius: 18px; }
.hero-logo { position: absolute; width: 148px; height: 148px; border-radius: 50%; object-fit: cover; left: 32px; bottom: 34px; box-shadow: 0 18px 46px rgba(0,0,0,.44); }
.hero-mascot { position: absolute; width: 230px; height: 230px; object-fit: cover; border-radius: 24px; right: 28px; bottom: 28px; border: 1px solid var(--border); }

.stats-band, .section { padding: 42px clamp(18px, 5vw, 86px); }
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-card, .price-card, .coach-card, .contact-card, .contact-form, .cv-card, .timeline-card, .values-grid article, .info-grid article, .schedule-panel, .poster-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
}
.stat-card { padding: 22px; }
.stat-card strong { display: block; font-size: 36px; color: var(--gold); }
.stat-card span { color: var(--muted); font-weight: 700; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.section h2, .section-head h2 { font-size: clamp(28px, 4vw, 48px); margin: 10px 0 14px; }
.image-frame, .poster-card { border-radius: 24px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.image-frame img { width: 100%; height: 330px; object-fit: cover; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.section-head a { color: var(--gold); font-weight: 900; }
.pricing-grid, .cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.pricing-grid.compact { grid-template-columns: 1fr; }
.price-card { padding: 30px; position: relative; overflow: hidden; }
.price-card::before { content: ""; position: absolute; inset: auto -20% -40% 30%; height: 160px; background: rgba(229,9,20,.25); filter: blur(45px); }
.price-card strong, .price-card h2 { display: block; color: var(--gold); font-size: clamp(30px, 4vw, 48px); margin: 8px 0; }
.volley-icon, .volley-dot { color: var(--gold); margin-right: 10px; }
.schedule-panel { margin-top: 22px; padding: 28px; display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.schedule-panel h3, .schedule-panel h2 { width: 100%; margin: 0; }
.schedule-panel span, .badges span, .filters button {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  border: 1px solid var(--border);
  color: var(--soft-white);
  font-weight: 800;
}
.coach-feature { padding-top: 20px; }
.coach-card-large { display: grid; grid-template-columns: 340px 1fr; gap: 32px; align-items: center; padding: 24px; border-radius: 24px; background: linear-gradient(135deg, rgba(255,255,255,.11), rgba(229,9,20,.08)); border: 1px solid var(--border); box-shadow: var(--shadow); }
.coach-card-large img, .coach-card img { width: 100%; height: 360px; object-fit: cover; border-radius: 20px; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 22px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid.masonry { align-items: start; }
.gallery-item { position: relative; padding: 0; border: 0; background: transparent; border-radius: 22px; overflow: hidden; cursor: pointer; min-height: 260px; }
.gallery-item img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; transition: .45s ease; }
.gallery-item:nth-child(3n+2) { transform: translateY(26px); }
.gallery-item span { position: absolute; left: 14px; right: 14px; bottom: 14px; padding: 12px 14px; border-radius: 16px; background: rgba(7,24,47,.74); backdrop-filter: blur(12px); color: var(--white); font-weight: 900; }
.gallery-item:hover img { transform: scale(1.07); }
.cta-band { margin: 42px clamp(18px, 5vw, 86px) 70px; display: grid; grid-template-columns: 420px 1fr; align-items: center; gap: 32px; padding: 24px; border-radius: 28px; background: linear-gradient(135deg, rgba(229,9,20,.28), rgba(255,255,255,.08)); border: 1px solid var(--border); box-shadow: var(--shadow); }
.cta-band img { width: 100%; max-height: 360px; object-fit: cover; border-radius: 22px; }

.page-hero { padding: 82px clamp(18px, 5vw, 86px) 42px; text-align: center; }
.page-hero p { max-width: 760px; margin: 0 auto; }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.info-grid article { padding: 22px; }
.info-grid strong { display: block; color: var(--gold); margin-top: 10px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.values-grid article { padding: 26px; }
.cards-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.coach-card { padding: 18px; }
.coach-card h2 { font-size: 26px; }
.coach-card span { color: var(--gold); font-weight: 900; display: block; margin-bottom: 18px; }
.coach-hero { display: grid; grid-template-columns: 390px 1fr; gap: 44px; align-items: center; padding: 72px clamp(18px, 5vw, 86px) 40px; }
.coach-photo img { width: 100%; min-height: 520px; object-fit: cover; object-position: top; border-radius: 28px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.cv-layout { display: grid; grid-template-columns: 330px 1fr; gap: 24px; align-items: start; }
.cv-card, .timeline-card { padding: 26px; }
.timeline { display: grid; gap: 18px; }
.timeline-card p { border-left: 2px solid rgba(246,200,76,.4); padding-left: 16px; }
.poster-card { padding: 14px; }
.poster-card img { border-radius: 18px; width: 100%; }
.filters { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.filters button { cursor: pointer; font-family: inherit; }
.filters button.active { background: var(--red); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; }
.contact-card, .contact-form { padding: 28px; }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 8px; color: var(--soft-white); font-weight: 800; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--white);
  background: rgba(255,255,255,.08);
  outline: none;
}
textarea { resize: vertical; }
.success, .error { border-radius: 16px; padding: 12px 14px; font-weight: 800; }
.success { background: rgba(24, 180, 103, .2); color: #9ff0c5; }
.error { background: rgba(229,9,20,.2); color: #ffb5ba; }
.site-footer { padding: 48px clamp(18px, 5vw, 86px) 20px; background: rgba(2,8,19,.66); border-top: 1px solid var(--border); }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.2fr .8fr .7fr 150px; gap: 26px; align-items: center; }
.footer-logo { width: 76px; height: 76px; object-fit: cover; border-radius: 50%; }
.footer-grid a { display: block; color: var(--muted); margin: 8px 0; }
.footer-mascot { width: 140px; height: 140px; object-fit: cover; border-radius: 22px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--border); color: var(--muted); font-size: 13px; }
.whatsapp-float { position: fixed; right: 18px; bottom: 18px; z-index: 30; padding: 14px 18px; border-radius: 999px; background: #15b957; color: white; font-weight: 900; box-shadow: 0 12px 34px rgba(21,185,87,.42); }
.reveal { opacity: 0; transform: translateY(28px); transition: .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.lightbox { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; background: rgba(0,0,0,.84); padding: 24px; }
.lightbox img { max-height: 88vh; border-radius: 22px; box-shadow: var(--shadow); }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 84px 16px auto 16px; display: grid; padding: 18px; border-radius: 22px; background: rgba(7,24,47,.96); border: 1px solid var(--border); transform: translateY(-16px); opacity: 0; pointer-events: none; transition: .25s; }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .hero, .split, .coach-card-large, .coach-hero, .cv-layout, .cta-band, .contact-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid, .values-grid, .pricing-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(3n+2) { transform: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .brand span { display: none; }
  .hero { min-height: auto; padding-top: 40px; }
  .hero-media { min-height: 390px; }
  .hero-logo { width: 112px; height: 112px; }
  .hero-mascot { width: 160px; height: 160px; }
  .stats-band { grid-template-columns: 1fr; }
  .section-head, .footer-bottom { display: grid; }
  .info-grid { grid-template-columns: 1fr; }
  .coach-photo img { min-height: 420px; }
}

