@font-face {
  font-family: "Vazirmatn FD NL";
  src: url("https://lib.arvancloud.ir/vazir-font/33.003/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-FD-NL-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn FD NL";
  src: url("https://lib.arvancloud.ir/vazir-font/33.003/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-FD-NL-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vazirmatn FD NL";
  src: url("https://lib.arvancloud.ir/vazir-font/33.003/Farsi-Digits-Non-Latin/fonts/webfonts/Vazirmatn-FD-NL-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #080808;
  --paper: #f5f4f0;
  --red: #e5232a;

  --color-bg: var(--ink);
  --color-bg-soft: #101010;
  --color-panel: #141414;
  --color-fg: var(--paper);
  --color-muted: rgba(245, 244, 240, .72);
  --color-muted-strong: rgba(245, 244, 240, .86);
  --color-accent: var(--red);
  --color-border: rgba(255, 255, 255, .12);
  --color-ring: var(--red);

  --black: var(--color-bg);
  --black-soft: var(--color-bg-soft);
  --panel: var(--color-panel);
  --white: var(--color-fg);
  --line: var(--color-border);

  --font: "Vazirmatn FD NL", Tahoma, Arial, sans-serif;
  --font-latin: Arial, sans-serif;
  --text-display: clamp(54px, 6.5vw, 92px);
  --text-title: clamp(40px, 5.2vw, 68px);
  --text-body: 16px;
  --text-meta: 12px;
  --text-latin: 11px;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 80px;

  --container: 1180px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --duration: .3s;
  --header: 80px;
  --z-header: 100;
  --radius: 0;
  --clip: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-fg);
  background: var(--color-bg);
  font-family: var(--font);
  font-size: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  font-family: var(--font);
}

img,
svg,
iframe {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

address {
  font-style: normal;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

:focus-visible {
  outline: 3px solid var(--color-ring);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - var(--space-4)), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1000;
  padding: 10px 18px;
  color: var(--color-fg);
  background: var(--color-accent);
  border-radius: var(--radius);
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.icon {
  width: 18px;
  height: 18px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-lg {
  width: 28px;
  height: 28px;
}

.icon-ext {
  width: 16px;
  height: 16px;
}

.icon-frame {
  display: grid;
  width: 34px;
  height: 38px;
  flex: none;
  place-items: center;
  overflow: hidden;
  color: currentColor;
  background: rgba(255, 255, 255, .1);
  clip-path: var(--clip);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  height: var(--header);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, .9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 50px;
  height: 56px;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  clip-path: var(--clip);
}

.brand-mark img {
  width: 37px;
  height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.brand-copy strong {
  font-size: 15px;
  font-weight: 900;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 400;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.desktop-nav a {
  position: relative;
  padding: 30px 0;
  color: var(--color-muted-strong);
  font-size: 13px;
  font-weight: 700;
  transition: color var(--duration) ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 24px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transition: width .3s var(--ease);
}

.desktop-nav a:hover {
  color: var(--color-fg);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.button-call {
  min-width: 0;
  min-height: 48px;
  gap: 10px;
  justify-content: flex-start;
  padding: 0 var(--space-2) 0 18px;
  color: var(--color-accent);
  background: transparent;
  border: 1px solid var(--color-accent);
  font-size: var(--text-meta);
  font-weight: 700;
}

.button-call > span:last-of-type {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.button-call small {
  color: var(--color-muted);
  font-size: 9px;
  font-weight: 700;
}

.button-call strong {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
}

.button-call .icon-frame,
.button-call > span:last-of-type {
  position: relative;
  z-index: 1;
}

.button-call .icon-frame {
  display: grid;
  place-items: center;
  color: var(--color-accent);
  background: transparent;
}

.button-call:hover {
  background: rgba(229, 35, 42, .08);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - var(--header));
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  contain: layout paint;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at 18% 46%, rgba(229, 35, 42, .08), transparent 28%),
    linear-gradient(105deg, #050505 0%, #0b0b0b 65%, #050505 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -2;
  height: 230px;
  content: "";
  background: linear-gradient(to bottom, transparent, var(--black));
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .07;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to left, black, transparent 80%);
}

.hero-word {
  position: absolute;
  bottom: -2vw;
  left: -1vw;
  z-index: -2;
  color: transparent;
  font-family: var(--font);
  font-size: clamp(72px, 12vw, 180px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.06em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .045);
  user-select: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 60px;
}

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

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-muted);
  font-size: var(--text-meta);
  font-weight: 700;
  letter-spacing: .02em;
}

.kicker > span {
  width: 38px;
  height: 1px;
  background: var(--red);
}

.hero-title {
  max-width: 690px;
  margin-top: var(--space-3);
  font-size: var(--text-display);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.055em;
}

.hero-title span {
  position: relative;
  display: inline-block;
  color: var(--red);
}

.hero-title span::after {
  position: absolute;
  right: -3%;
  bottom: 8%;
  left: -3%;
  z-index: -1;
  height: 18%;
  content: "";
  opacity: .22;
  background: var(--red);
  transform: skewX(-18deg) scaleX(0);
  transform-origin: right;
  animation: title-stroke .8s 1.25s var(--ease) forwards;
}

.hero-description {
  max-width: 620px;
  margin-top: 28px;
  color: var(--color-muted);
  font-size: var(--text-body);
  line-height: 2.1;
}

.hero-description strong {
  color: var(--white);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.button {
  position: relative;
  display: inline-flex;
  min-width: 170px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  padding: 0 var(--space-3);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
  transition: transform var(--duration) var(--ease), border-color var(--duration) ease, color var(--duration) ease, background var(--duration) ease;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background: rgba(255, 255, 255, .08);
  transition: opacity var(--duration) ease;
}

.button:hover::before {
  opacity: 1;
}

.button-call::before {
  content: none;
}

.button:hover {
  transform: none;
}

.button-primary {
  flex-direction: column;
  gap: 2px;
  min-height: 62px;
  padding: 10px 28px;
  color: var(--color-fg);
  background: var(--color-accent);
}

.button-primary span,
.button-primary small {
  position: relative;
  z-index: 1;
}

.button-primary small {
  color: var(--color-muted-strong);
  font-size: var(--text-latin);
  font-weight: 700;
  letter-spacing: .04em;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--color-muted-strong);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, .6);
  color: var(--color-fg);
}

.button-inverse {
  flex-direction: column;
  min-width: 240px;
  min-height: 72px;
  flex-shrink: 0;
  gap: 4px;
  padding: 14px var(--space-4);
  color: var(--color-bg);
  background: var(--color-fg);
}

.button-inverse span {
  position: relative;
  z-index: 1;
  font-size: var(--text-meta);
}

.button-inverse strong {
  position: relative;
  z-index: 1;
  font-size: 18px;
  letter-spacing: .04em;
}

.button-inverse:hover {
  background: #fff;
}

.button-inverse::before {
  background: rgba(0, 0, 0, .08);
}

.hero-stats {
  display: flex;
  max-width: 580px;
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-stats > div {
  flex: 1;
  padding: 19px 20px;
  border-left: 1px solid var(--line);
}

.hero-stats > div:first-child {
  padding-right: 0;
}

.hero-stats > div:last-child {
  border-left: 0;
}

.hero-stats dt {
  color: var(--color-accent);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.hero-stats dd {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: var(--text-meta);
}

.hero-emblem {
  position: relative;
  width: min(100%, 470px);
  margin-right: auto;
}

.emblem-frame {
  position: relative;
  display: grid;
  aspect-ratio: .88;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .17);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .055), transparent 45%),
    rgba(255, 255, 255, .018);
  clip-path: polygon(13% 0, 100% 0, 87% 100%, 0 100%);
}

.emblem-frame::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12%;
  width: 28%;
  content: "";
  opacity: .85;
  background: var(--color-accent);
  transform: skewX(-8deg);
  transform-origin: bottom;
}

.emblem-frame::after {
  position: absolute;
  inset: 11%;
  content: "";
  border: 1px solid rgba(255, 255, 255, .11);
  clip-path: polygon(13% 0, 100% 0, 87% 100%, 0 100%);
}

.emblem-frame img {
  position: relative;
  z-index: 2;
  width: 61%;
  max-height: 72%;
  object-fit: contain;
  filter: invert(1) drop-shadow(0 22px 30px rgba(0, 0, 0, .55));
}

.emblem-corners {
  position: absolute;
  inset: 4%;
  z-index: 3;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  clip-path: polygon(0 0, 25% 0, 25% 2px, 0 2px, 0 100%, 25% 100%, 25% calc(100% - 2px), 0 calc(100% - 2px), 75% calc(100% - 2px), 75% 100%, 100% 100%, 100% 0, 75% 0, 75% 2px, 100% 2px, 100% 0);
}

.emblem-label {
  position: absolute;
  z-index: 4;
  color: var(--color-muted);
  font-family: var(--font-latin);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .25em;
  writing-mode: vertical-lr;
}

.emblem-label-top {
  top: 10%;
  left: 7%;
}

.emblem-label-bottom {
  right: 7%;
  bottom: 10%;
}

.coach-stamp {
  position: absolute;
  right: -25px;
  bottom: 37px;
  z-index: 5;
  min-width: 190px;
  padding: 17px 22px;
  border-right: 4px solid var(--red);
  background: var(--white);
  color: var(--black);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
}

.coach-stamp span {
  display: block;
  color: #6c6c6c;
  font-size: 10px;
}

.coach-stamp strong {
  display: block;
  margin-top: 3px;
  font-size: 18px;
  font-weight: 900;
}

.scroll-cue {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-muted);
  font-size: 9px;
  letter-spacing: .12em;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center;
}

.scroll-cue-line {
  position: relative;
  width: 38px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .15);
}

.scroll-cue-line::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--color-accent);
  animation: scroll-line 1.8s ease-in-out infinite;
}

.hero-enter {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-enter .8s var(--ease) forwards;
}

.enter-one { animation-delay: .18s; }
.enter-two { animation-delay: .34s; }
.enter-three { animation-delay: .5s; }
.enter-four { animation-delay: .66s; }
.enter-five { animation-delay: .82s; }

.ticker {
  position: relative;
  z-index: 10;
  overflow: hidden;
  contain: content;
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  background: var(--red);
  color: white;
  transform: rotate(-1deg) scale(1.02);
}

.ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: ticker-move 26s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: var(--space-4);
  padding: var(--space-2) 17px;
}

.ticker-group span {
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.ticker-group .ticker-mark {
  width: 8px;
  height: 1px;
  flex: none;
  font-size: 0;
  font-weight: 400;
  background: currentColor;
}

.section {
  position: relative;
  padding: clamp(96px, 11vw, 168px) 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.coach-section {
  overflow: hidden;
  background: var(--black);
}

.coach-section::before {
  position: absolute;
  top: 0;
  left: 8%;
  width: 1px;
  height: 100%;
  content: "";
  background: linear-gradient(transparent, rgba(255, 255, 255, .08), transparent);
}

.coach-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.coach-visual {
  position: relative;
  padding: 28px 0 35px 34px;
}

.coach-visual::before {
  position: absolute;
  top: 0;
  right: -28px;
  width: 80%;
  height: 90%;
  content: "";
  border: 1px solid rgba(229, 35, 42, .28);
  transform: skewY(-4deg);
}

.experience-card {
  position: relative;
  z-index: 2;
  min-height: 470px;
  overflow: hidden;
  padding: 54px 45px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    linear-gradient(145deg, rgba(229, 35, 42, .16), transparent 42%),
    var(--panel);
}

.experience-card::after {
  position: absolute;
  right: -28%;
  bottom: -34%;
  width: 400px;
  height: 400px;
  content: "";
  border: 70px solid rgba(255, 255, 255, .025);
  border-radius: 50%;
}

.experience-index {
  display: block;
  color: var(--red);
  font-size: clamp(100px, 13vw, 180px);
  font-weight: 900;
  line-height: .85;
  letter-spacing: -.08em;
}

.experience-copy {
  position: absolute;
  right: 45px;
  bottom: 45px;
  z-index: 2;
}

.experience-copy small {
  color: var(--color-muted);
  font-size: var(--text-latin);
}

.coach-name {
  margin-top: 8px;
  color: var(--white);
  font-size: 39px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.experience-copy p:not(.coach-name) {
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 13px;
}

.visual-wko {
  position: absolute;
  right: -10px;
  bottom: -5px;
  z-index: 3;
  color: var(--color-fg);
  font-family: var(--font-latin);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .3em;
}

.section-title {
  margin-top: 22px;
  font-size: var(--text-title);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.05em;
}

.section-lead {
  max-width: 600px;
  margin-top: var(--space-3);
  color: var(--color-muted);
  font-size: 15px;
  line-height: 2.15;
}

.credentials {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.credentials li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 13px;
  min-height: 65px;
  border-bottom: 1px solid var(--line);
  transition: color .25s ease, padding .3s var(--ease), border-color .3s ease;
}

.credentials li:hover {
  padding-right: 10px;
  border-color: rgba(229, 35, 42, .55);
  color: var(--red);
}

.credentials span {
  color: var(--color-accent);
  font-family: var(--font-latin);
  font-size: 10px;
  font-weight: 700;
}

.credentials p {
  font-size: 13px;
  font-weight: 700;
}

.classes-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255, 255, 255, .035) 50%, transparent 50.1%),
    var(--black-soft);
}

.section-heading {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-5);
}

.section-heading > p {
  max-width: 310px;
  padding-bottom: 10px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 2;
}

.class-list {
  display: grid;
  gap: 56px;
  margin-top: 72px;
}

.class-day-head {
  display: grid;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.class-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-muted);
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.class-kicker span {
  color: var(--color-accent);
  font-family: var(--font);
  letter-spacing: 0;
}

.class-day-head h3 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: -.04em;
}

.session-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.session-list li {
  display: grid;
  grid-template-columns: 150px 1fr 1.15fr;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
}

.session-list time {
  font-family: Arial, var(--font);
  font-size: 13px;
  font-weight: 700;
}

.session-sport {
  color: var(--color-muted);
  font-size: 13px;
}

.session-group {
  font-size: 14px;
  font-weight: 900;
}

.schedule-note {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  margin-top: var(--space-3);
  color: var(--color-muted-strong);
  font-size: 13px;
  font-weight: 700;
  transition: color var(--duration) ease;
}

.schedule-note b {
  color: var(--red);
}

.schedule-note:hover {
  color: white;
}

.advantages-section {
  background: var(--black);
}

.advantages-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 40px;
}

.advantages-intro .kicker {
  grid-column: 1 / -1;
}

.advantages-intro .section-lead {
  max-width: 430px;
  margin: 0 0 8px;
  justify-self: end;
}

.advantages-grid {
  display: grid;
  margin-top: 75px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.advantage {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 30px 25px;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  transition: background .35s ease, border-color .35s ease;
}

.advantage::after {
  position: absolute;
  right: -45px;
  bottom: -65px;
  width: 150px;
  height: 150px;
  content: "";
  border: 1px solid rgba(229, 35, 42, .25);
  border-radius: 50%;
  transition: transform .5s var(--ease), background .4s ease;
}

.advantage:hover {
  z-index: 2;
  background: rgba(255, 255, 255, .03);
}

.advantage:hover::after {
  background: rgba(229, 35, 42, .06);
}

.advantage .icon {
  color: var(--color-accent);
}

.advantage h3 {
  margin-top: var(--space-4);
  font-size: 17px;
  font-weight: 900;
}

.advantage p {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 2;
}

.location-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--black-soft);
}

.location-section::before {
  position: absolute;
  top: -230px;
  right: -230px;
  width: 560px;
  height: 560px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.location-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.location-content .section-title em {
  color: var(--red);
  font-style: normal;
}

.location-content address {
  max-width: 500px;
  margin-top: var(--space-3);
  color: var(--color-muted);
  font-size: 14px;
  line-height: 2.1;
}

.contact-list {
  margin-top: 35px;
  border-top: 1px solid var(--line);
}

.contact-group-label {
  margin: 0;
  padding: 18px 0 10px;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
}

.contact-list > a,
.contact-list .phone-row {
  display: grid;
  min-height: 73px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 44px 1fr 22px;
  gap: 14px;
  transition: padding .3s var(--ease), border-color .3s ease;
}

.contact-list > a.phone-row {
  grid-template-columns: 44px 1fr;
}

.phone-row {
  min-height: 86px;
  padding: 8px 12px 8px 0;
  background: linear-gradient(90deg, rgba(229, 35, 42, .16), transparent 70%);
}

.contact-list > a:hover,
.phone-row:hover {
  padding-right: 9px;
  border-color: rgba(229, 35, 42, .65);
}

.contact-icon {
  width: 38px;
  height: 42px;
  color: var(--red);
  background: rgba(255, 255, 255, .08);
  transition: color .3s ease, background .3s ease;
}

.contact-list > a:hover .contact-icon,
.phone-row:hover .contact-icon {
  color: white;
  background: var(--red);
}

.phone-row .contact-icon {
  color: white;
  background: var(--red);
}

.contact-list .icon-ext {
  color: var(--color-muted);
}

.contact-list small,
.contact-list strong {
  display: block;
}

.contact-list small {
  color: var(--color-muted);
  font-size: 10px;
}

.contact-list strong {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 900;
}

.phone-row strong {
  font-size: 22px;
  letter-spacing: .06em;
}

.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #171717;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-caption {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
}

.map-links,
.group-links {
  display: grid;
  margin-top: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.group-links {
  margin-top: 0;
  padding-bottom: 8px;
}

.map-links a,
.group-links a {
  display: flex;
  min-width: 0;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: var(--color-muted);
  font-size: var(--text-latin);
  font-weight: 700;
  transition: color var(--duration) ease, border-color var(--duration) ease, background var(--duration) ease;
}

.map-links a .icon-ext,
.group-links a .icon-ext {
  width: 14px;
  height: 14px;
  color: var(--red);
}

.map-links a:hover,
.group-links a:hover {
  border-color: var(--red);
  color: white;
  background: rgba(229, 35, 42, .08);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(var(--space-8), 9vw, 128px) 0;
  border-top: 1px solid var(--line);
  background: var(--color-bg);
}

.final-cta::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--color-accent);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta p {
  color: var(--color-muted-strong);
  font-size: var(--text-meta);
  font-weight: 900;
}

.final-cta h2 {
  margin-top: 10px;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.055em;
}

.site-footer {
  padding: var(--space-6) 0 0;
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-grid {
  display: grid;
  align-items: center;
  gap: 28px 40px;
  padding-bottom: 36px;
  grid-template-columns: 1.2fr 1fr auto;
}

.footer-contact {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.footer-contact .icon-frame {
  color: var(--red);
  background: rgba(229, 35, 42, .16);
}

.footer-contact small {
  display: block;
  color: var(--color-muted);
  font-size: var(--text-latin);
}

.footer-contact strong {
  display: block;
  margin-top: 3px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .04em;
}

.footer-contact:hover strong {
  color: var(--red);
}

.footer-social {
  display: grid;
  justify-items: end;
  gap: 8px;
  max-width: 420px;
}

.footer-social-label {
  margin: 0;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 400;
  transition: color var(--duration) ease;
}

.footer-social-links a + a::before {
  margin-inline: 10px;
  color: rgba(245, 244, 240, .28);
  content: "·";
}

.footer-social-links a:hover {
  color: var(--color-fg);
}

.footer-bar {
  border-top: 1px solid var(--line);
}

.footer-bar-inner {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer p {
  color: var(--color-muted);
  font-size: var(--text-meta);
}

.call-fab {
  display: none;
}

.error-page {
  min-height: 100svh;
}

.back-top {
  display: grid;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--color-muted);
  transition: color var(--duration) ease, border-color var(--duration) ease, transform var(--duration) var(--ease);
}

.back-top:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-4px);
}

@keyframes hero-enter {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes title-stroke {
  to { transform: skewX(-18deg) scaleX(1); }
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes ticker-move {
  to { transform: translateX(50%); }
}

@keyframes reveal-section {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@supports (animation-timeline: view()) {
  .reveal {
    opacity: 0;
    animation: reveal-section linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 34%;
  }
}

@media (max-width: 1040px) {
  .hero {
    min-height: auto;
  }

  .hero-layout {
    gap: 34px;
  }

  .emblem-frame {
    max-height: 510px;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-social {
    grid-column: 1 / -1;
    justify-items: start;
    max-width: none;
  }

  .footer-social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  :root {
    --header: 72px;
  }

  .site-header {
    height: var(--header);
  }

  .desktop-nav {
    display: none;
  }

  .button-call {
    min-height: 44px;
    padding: 0 12px;
    gap: 8px;
  }

  .button-call small {
    display: none;
  }

  .button-call strong {
    font-size: 13px;
  }

  .brand-mark {
    width: 44px;
    height: 49px;
  }

  .brand-mark img {
    width: 33px;
    height: 37px;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: flex;
    width: 46px;
    height: 46px;
    cursor: pointer;
    list-style: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 19px;
    height: 1px;
    background: white;
    transition: transform .25s ease, opacity .25s ease;
  }

  .mobile-menu[open] summary span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .mobile-menu[open] summary span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu[open] summary span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-menu nav {
    position: absolute;
    top: 57px;
    left: 0;
    width: min(300px, calc(100vw - 32px));
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(12, 12, 12, .98);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .55);
  }

  .mobile-menu nav a {
    display: block;
    padding: 13px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    color: var(--color-muted);
    font-size: var(--text-meta);
    font-weight: 700;
  }

  .mobile-menu nav a:hover {
    color: white;
    background: rgba(255, 255, 255, .04);
  }

  .hero {
    min-height: auto;
    padding: 48px 0 88px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 700px;
  }

  .hero-emblem {
    width: min(82%, 450px);
    margin: 25px auto 0;
  }

  .scroll-cue {
    display: none;
  }

  .coach-layout,
  .location-layout {
    grid-template-columns: 1fr;
  }

  .coach-visual {
    order: 2;
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .coach-content {
    order: 1;
  }

  .location-content {
    max-width: 600px;
  }

  .site-footer {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .call-fab {
    position: fixed;
    left: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    z-index: 95;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    color: white;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .45);
  }

  .call-fab .icon {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-title {
    font-size: clamp(46px, 15vw, 68px);
    line-height: 1.12;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    min-width: 0;
    min-height: 56px;
    padding-inline: 16px;
    font-size: 13px;
  }

  .hero-stats > div {
    padding: 16px 12px;
  }

  .hero-stats dt {
    font-size: 16px;
  }

  .hero-stats dd {
    font-size: 11px;
  }

  .hero-emblem {
    width: 100%;
  }

  .coach-stamp {
    right: -5px;
    bottom: 22px;
    min-width: 160px;
    padding: 13px 17px;
  }

  .coach-stamp strong {
    font-size: 15px;
  }

  .ticker-group {
    gap: 24px;
    padding-block: 13px;
  }

  .section {
    padding: 96px 0;
  }

  .experience-card {
    min-height: 400px;
    padding: 40px 30px;
  }

  .experience-copy {
    right: 30px;
    bottom: 35px;
  }

  .coach-name {
    font-size: 32px;
  }

  .coach-visual {
    padding-left: 16px;
  }

  .section-title {
    font-size: clamp(36px, 11vw, 50px);
  }

  .credentials li {
    grid-template-columns: 36px 1fr;
  }

  .section-heading,
  .advantages-intro {
    display: block;
  }

  .section-heading > p,
  .advantages-intro .section-lead {
    margin-top: 22px;
    padding: 0;
  }

  .class-list {
    margin-top: 50px;
    gap: 40px;
  }

  .class-day-head {
    padding-bottom: 14px;
  }

  .session-list li {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 0;
    padding: 14px 0;
  }

  .session-list time {
    font-size: 12px;
  }

  .schedule-note {
    display: flex;
    flex-wrap: wrap;
    text-align: right;
  }

  .advantages-grid {
    margin-top: 50px;
    grid-template-columns: 1fr;
  }

  .advantage {
    min-height: 255px;
  }

  .map-frame {
    max-height: 240px;
  }

  .map-links a,
  .group-links a {
    min-height: 38px;
    padding-inline: 10px;
    font-size: 10px;
  }

  .group-links {
    grid-template-columns: 1fr;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .button-inverse {
    width: 100%;
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-social {
    justify-items: start;
    max-width: none;
  }

  .footer-bar-inner {
    position: relative;
  }

  .site-footer p {
    max-width: 240px;
    line-height: 1.9;
  }

  .back-top {
    position: absolute;
    left: 0;
    top: 10px;
  }
}

@media (max-width: 380px) {
  .brand-copy {
    display: none;
  }

  .hero-title {
    font-size: 43px;
  }

  .hero-stats dd {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .hero-enter,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .ticker-track {
    animation: none !important;
    will-change: auto;
  }
}
