/* ============== RESET ============== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ============== TOKENS ============== */
:root {
  --bg:        #ffffff;
  --bg-soft:   #fafaf7;
  --ink:       #1a1a1a;
  --ink-mute:  #6b6b6b;
  --line:      #ececec;
  --accent:    #d4623a;
  --accent-hover: #b9512c;

  --container: 1120px;
  --radius:    14px;
  --radius-sm: 10px;

  --font: "Noto Sans Georgian", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.10);
}

html, body { background: var(--bg); color: var(--ink); }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) { .container { padding-inline: 32px; } }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ============== HEADER ============== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.header.is-scrolled {
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--line);
}
.header-row {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 24px; padding-block: 16px;
}

/* Brand wordmark: shown only on mobile, where the nav is hidden and the
   header would otherwise be empty. Hidden on desktop (>=760px) — see below. */
.brand {
  display: inline-flex; align-items: center;
  margin-right: auto;
  font-weight: 800; font-size: 18px;
  letter-spacing: -.3px; color: var(--ink);
}

.nav { display: none; gap: 28px; margin-right: auto; }
.nav a {
  color: var(--ink-mute); font-size: 14.5px; font-weight: 500;
  position: relative;
  transition: color .2s ease;
}
.nav a:hover { color: var(--ink); }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover::after { transform: scaleX(1); }

.lang { display: inline-flex; align-items: center; gap: 4px; }
.lang-btn {
  font-size: 13px; font-weight: 600; letter-spacing: .5px;
  padding: 6px 10px; border-radius: 8px;
  color: var(--ink-mute);
  transition: color .2s ease, background .2s ease;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.is-active { color: var(--accent); background: rgba(212,98,58,.08); }

@media (min-width: 760px) { .nav { display: flex; } .brand { display: none; } }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 16px 0 32px;
  overflow: hidden;
}
.bg-graffiti { display: none; }

.hero-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
  align-items: start;
}

.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  color: var(--accent);
  margin-bottom: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(212,98,58,.30);
  border-radius: 999px;
}
.hero-text h1 {
  font-size: clamp(36px, 6.5vw, 60px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 22px;
  color: var(--ink);
}
.hero-text h1 .accent { color: var(--accent); }

.lead {
  font-size: clamp(16px, 1.7vw, 18px);
  color: var(--ink-mute);
  max-width: 56ch;
  margin-bottom: 14px;
}
.lead-sub {
  font-size: clamp(15px, 1.5vw, 16px);
  color: var(--ink-mute);
  max-width: 56ch;
  margin-bottom: 32px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600; font-size: 15px;
  transition: background .2s ease, color .2s ease, transform .15s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-link { color: var(--ink); padding: 14px 6px; }
.btn-link:hover { color: var(--accent); }

/* ===== TRAINER PROFILE CARD (photo + name + label) ===== */
.trainer-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 0;
  text-align: center;
  margin: 0 auto;
}

/* Plain portrait — image only, no container/background */
.trainer-card picture { display: block; width: 100%; max-width: 560px; margin: 0 auto; }
.trainer-img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto;
}

.trainer-meta {
  margin-top: 18px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.trainer-name {
  font-size: clamp(24px, 3.5vw, 30px);
  font-weight: 700;
  letter-spacing: -.3px;
  color: var(--ink);
}
.trainer-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  padding-top: 2px;
}
.trainer-sub {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--ink-mute);
  max-width: 38ch;
  line-height: 1.5;
}

@media (min-width: 880px) {
  .hero { padding: 24px 0 48px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .trainer-card { margin: 0; }
  .photo-wrap { width: 100%; max-width: 640px; }
}

/* ============== SECTIONS ============== */
.section { padding: 32px 0; position: relative; }
/* Offset in-page anchor jumps so the sticky header doesn't cover the heading. */
section[id] { scroll-margin-top: 72px; }
@media (min-width: 880px) { .section { padding: 48px 0; } }

.tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 14px;
  padding: 5px 10px;
  background: rgba(212,98,58,.10);
  border-radius: 6px;
}
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2,
.about-grid h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.3px;
  margin-bottom: 12px;
  color: var(--ink);
}
.section-head p { color: var(--ink-mute); font-size: 16px; }

/* about */
.about { background: var(--bg-soft); }
.about-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
  align-items: center;
}
.about-grid p { color: var(--ink-mute); font-size: 17px; max-width: 56ch; }

.stats {
  display: grid; gap: 14px;
  /* minmax(0, …) instead of bare 1fr: keeps the three tracks equal and stops a
     long Georgian label from expanding its column and overflowing the row. */
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.stats li {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 18px 12px;
  text-align: center;
}
.stats strong {
  display: block;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stats .stat-svg { display: flex; justify-content: center; align-items: center; height: clamp(26px, 3.2vw, 32px); }
.stats .stat-svg svg { width: clamp(28px, 3.4vw, 34px); height: clamp(28px, 3.4vw, 34px); }
.stats span {
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.35;
  overflow-wrap: break-word;
}

/* On small phones the 3-up stat grid gets cramped — the long third label
   ("Champion of Europe & Georgia") wraps under the icon and the cards end up
   uneven. Stack into full-width horizontal rows instead. Tablet/desktop keep
   the 3-column grid untouched. */
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; gap: 10px; }
  .stats li {
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding: 16px 18px;
  }
  .stats strong { margin-bottom: 0; }
  .stats .stat-svg { height: auto; justify-content: flex-start; }
  .stats span { font-size: 14px; line-height: 1.4; }
}

@media (min-width: 880px) { .about-grid { grid-template-columns: 1.1fr .9fr; gap: 60px; } }

/* services */
.services-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.card:hover {
  border-color: rgba(212,98,58,.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(212,98,58,.10);
  color: var(--accent);
  margin-bottom: 16px;
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.card p { color: var(--ink-mute); font-size: 14.5px; }

@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* packages */
.packages { background: var(--bg-soft); }

.packages-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  max-width: 720px;
  margin-inline: auto;
}
@media (min-width: 560px) {
  .packages-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

.package-card {
  padding: 44px 30px 38px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .09);
}
@media (min-width: 720px) {
  .package-card { padding: 56px 36px 44px; }
}
.package-card:hover {
  box-shadow: 0 14px 34px rgba(0, 0, 0, .20);
}
.package-card h3 {
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 4px;
}

.package-type {
  align-self: flex-start;
  display: inline-block;
  background: rgba(212, 98, 58, .10);
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .2px;
  padding: 9px 16px;
  border-radius: 10px;
  margin-bottom: 22px;
}

.package-prices {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 22px;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-row-solo .price-amount {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
}
.price-row-solo .price-period {
  font-size: 16px;
  color: var(--ink-mute);
}
.price-row-family {
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.price-row-family .price-label {
  font-size: 16px;
  color: var(--ink-mute);
}
.price-row-family .price-family-amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}

.package-cta {
  width: 100%;
  margin-top: 26px;
  padding-block: 15px;
  font-size: 15.5px;
}

/* contact */
.contact-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: flex-start; align-items: stretch;
}
.contact-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.contact-item:hover {
  border-color: rgba(212,98,58,.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.contact-icon {
  width: 26px; height: 26px;
  border-radius: 7px;
  display: grid; place-items: center;
  background: rgba(212,98,58,.10);
  color: var(--accent);
  flex-shrink: 0;
}
.contact-icon svg { width: 14px; height: 14px; }
.contact-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: 1px;
}
.contact-value {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.social-btn {
  display: grid; place-items: center;
  width: 48px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--accent);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.social-btn:hover {
  border-color: rgba(212,98,58,.4);
  background: rgba(212,98,58,.08);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.social-btn svg { width: 20px; height: 20px; }

/* contact: flat treatment — no chrome, icons sit directly on the bg */
.contact-item,
.social-btn {
  background: transparent;
  border: 0;
  transition: none;
}
.contact-item:hover,
.social-btn:hover {
  background: transparent;
  border-color: transparent;
  transform: none;
  box-shadow: none;
}
.contact-icon {
  background: transparent;
  width: auto;
  height: auto;
  border-radius: 0;
}

/* ============== FOOTER ============== */
.footer {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.footer-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--ink-mute);
}

::selection { background: var(--accent); color: #fff; }
