:root {
  --container: 1280px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 8px 28px rgba(12, 68, 35, 0.12);
  --transition: all ease-in-out 0.3s;
  --background: #050505;
  --foreground: #ffffff;
  --accent: #ff5e00;
  --accent-hover: #ff7b33;
  --secondary: #1a1a1a;
  --gray: #888888;
  --gray-muted: #666666;
  --border: rgba(255, 255, 255, 0.1);
  --header-height: 80px; }

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

html,
body {
  margin: 0;
  padding: 0; }

html {
  scroll-behavior: smooth; }

body {
  background: var(--background);
  color: var(--foreground);
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  overflow-x: hidden; }

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em; }

p {
  margin: 0; }

button {
  font: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto; }

@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px; } }
.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--background);
  color: var(--foreground); }

.site__main {
  flex-grow: 1; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  transition: var(--transition);
  user-select: none; }

.btn--accent {
  background: var(--accent);
  color: #000;
  border-color: var(--accent); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3); }

.section-head {
  margin-bottom: 64px; }

.section-head--center {
  text-align: center; }

.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px; }

.section-head__eyebrow,
.page-head__eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em; }

.section-head__title,
.page-head__title {
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase; }

.section-head__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  white-space: nowrap; }

.page {
  padding-top: 120px;
  padding-bottom: 64px;
  min-height: 100vh; }

.page-head {
  margin-bottom: 64px; }

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: border-color 0.3s ease, color 0.3s ease; }

.social-btn--lg {
  width: 56px;
  height: 56px; }

@media (hover: hover) and (pointer: fine) {
  a.social-btn:hover {
    border-color: var(--accent);
    color: var(--accent); } }
.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  user-select: none; }

.chip--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000; }

.preview__more {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  color: var(--accent);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  color: var(--gray);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em; }

@media (max-width: 1024px) {
  .section-head__title,
  .page-head__title {
    font-size: 48px; } }
@media (max-width: 768px) {
  .section-head {
    margin-bottom: 40px; }

  .section-head--split {
    flex-direction: column;
    align-items: flex-start; }

  .section-head__title,
  .page-head__title {
    font-size: 36px; }

  .section-head__more {
    display: none; }

  .preview__more {
    display: inline-flex; }

  .page {
    padding-top: 104px;
    padding-bottom: 48px; }

  .page-head {
    margin-bottom: 40px; } }
@media (max-width: 550px) {
  .section-head__title,
  .page-head__title {
    font-size: 28px; }

  .page {
    padding-top: 96px; } }
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease; }

.reveal.is-visible {
  opacity: 1;
  transform: none; }

.reveal--scale {
  transform: scale(0.92); }

.reveal--scale.is-visible {
  transform: none; }

.reveal--left {
  transform: translateX(-24px); }

.reveal--left.is-visible {
  transform: none; }

.reveal--right {
  transform: translateX(24px); }

.reveal--right.is-visible {
  transform: none; }

@media (prefers-reduced-motion: reduce) {
  .header,
  .hero__eyebrow,
  .hero__title,
  .hero__text,
  .hero__actions,
  .hero__scroll {
    animation: none; }

  .reveal,
  .reveal--scale,
  .reveal--left,
  .reveal--right {
    opacity: 1;
    transform: none;
    transition: none; } }
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 0;
  background: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid var(--border);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  animation: header-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) both; }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px; }

.header__logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.05em;
  white-space: nowrap; }

.header__logo-accent {
  color: var(--accent); }

.header__toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0); }

.header__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff; }

.header__burger-close {
  display: none; }

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px; }

.header__link {
  position: relative;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em; }

.header__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease; }

.header__link:hover,
.header__link--current {
  color: var(--accent); }

.header__link:hover::after,
.header__link--current::after {
  width: 100%; }

.header__cta {
  flex-shrink: 0;
  padding: 8px 24px; }

.header__cta--menu {
  display: none; }

@media (max-width: 1230px) {
  .header__nav {
    gap: 20px; }

  .header__link {
    font-size: 13px; } }
@media (max-width: 1024px) {
  .header__nav {
    gap: 16px; } }
@media (max-width: 768px) {
  .header__inner {
    flex-wrap: wrap; }

  .header__burger {
    display: flex;
    margin-left: auto; }

  .header__cta--bar {
    display: none; }

  .header__nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border); }

  .header__link {
    font-size: 18px; }

  .header__link::after {
    display: none; }

  .header__cta--menu {
    display: inline-flex;
    width: 100%;
    margin-top: 8px;
    padding: 12px 24px; }

  .header__toggle:checked ~ .header__nav {
    display: flex; }

  .header__toggle:checked ~ .header__burger .header__burger-open {
    display: none; }

  .header__toggle:checked ~ .header__burger .header__burger-close {
    display: block; } }
@keyframes header-in {
  from {
    transform: translateY(-100%); }
  to {
    transform: none; } }
.footer {
  background: var(--secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px; }

.footer__logo {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.05em; }

.footer__logo-accent {
  color: var(--accent); }

.footer__text {
  margin-bottom: 24px;
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.7; }

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px; }

.footer__title {
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em; }

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px; }

.footer__link,
.footer__muted,
.footer__contact {
  color: #9ca3af;
  font-size: 14px; }

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 16px; }

.footer__contact {
  display: flex;
  align-items: flex-start;
  gap: 12px; }

.footer__contact-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border); }

.footer__copy,
.footer__legal {
  color: #6b7280;
  font-size: 12px; }

.footer__legal {
  display: flex;
  gap: 24px; }

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px; } }
@media (max-width: 768px) {
  .footer {
    padding: 48px 0; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px; }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start; }

  .footer__legal {
    flex-direction: column;
    gap: 8px; } }
.cursor {
  display: none; }

@media (hover: hover) and (pointer: fine) {
  html.has-cursor,
  html.has-cursor * {
    cursor: none !important; }

  .cursor {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 20px;
    height: 20px;
    margin: 0;
    border: 2px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    mix-blend-mode: difference;
    will-change: transform;
    opacity: 0; }

  .cursor.is-ready {
    opacity: 1; }

  .cursor.is-hover {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 94, 0, 0.3); } }
.teacher-card__link {
  display: block;
  color: inherit; }

.teacher-card__media {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--secondary);
  height: 0;
  padding-bottom: 133.333%; }

.teacher-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease; }

.teacher-card:hover .teacher-card__image {
  transform: scale(1.1); }

.teacher-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.5s ease; }

.teacher-card:hover .teacher-card__overlay {
  opacity: 1; }

.teacher-card__play {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease; }

.teacher-card__play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #000;
  transform: translate(-50%, -50%); }

.teacher-card:hover .teacher-card__play {
  opacity: 1; }

.teacher-card__socials {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.5s ease; }

.teacher-card:hover .teacher-card__socials {
  opacity: 1; }

.teacher-card__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #000; }

.teacher-card__name {
  margin-bottom: 8px;
  font-size: 24px;
  transition: color 0.3s ease; }

.teacher-card:hover .teacher-card__name {
  color: var(--accent); }

.teacher-card__specialty {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em; }

.teacher-card__bio {
  color: #9ca3af;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden; }

.teacher-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px; }

@media (max-width: 768px) {
  .teacher-card__name {
    font-size: 20px; }

  .article-card__title {
    font-size: 18px; } }
@media (max-width: 550px) {
  .teacher-card__meta {
    flex-wrap: wrap; }

  .article-card__meta {
    flex-wrap: wrap;
    gap: 8px; } }
.teacher-card__exp {
  color: #6b7280;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em; }

.teacher-card__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-size: 14px; }

.article-card__media {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  background: rgba(0, 0, 0, 0.5);
  height: 0;
  padding-bottom: 56.25%; }

.article-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease; }

.article-card:hover .article-card__image {
  transform: scale(1.1); }

.article-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent); }

.article-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  color: #9ca3af;
  font-size: 12px; }

.article-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px; }

.article-card__title {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.25;
  transition: color 0.3s ease; }

.article-card:hover .article-card__title {
  color: var(--accent); }

.article-card__excerpt {
  margin-bottom: 16px;
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden; }

.article-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em; }

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; }

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3), var(--background)); }

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("/hero.webp") center/cover no-repeat;
  opacity: 0.6; }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  padding: 0 24px;
  text-align: center; }

.hero__eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  animation: fade-up 0.8s 0.2s both; }

.hero__title {
  margin-bottom: 24px;
  font-size: 100px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  animation: fade-up 0.8s 0.4s both; }

.hero__title-accent {
  color: var(--accent); }

.hero__text {
  max-width: 640px;
  margin: 0 auto 40px;
  color: #9ca3af;
  font-size: 20px;
  animation: fade-up 0.8s 0.6s both; }

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  animation: fade-up 0.8s 0.8s both; }

.hero__scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 40px;
  color: rgba(255, 255, 255, 0.5);
  transform: translateX(-50%);
  animation: fade-in 0.8s 1.5s both, scroll-bounce 1.5s 2.3s ease-in-out infinite; }

.features {
  padding: 96px 0;
  background: var(--secondary); }

.features__intro {
  display: flex;
  flex-direction: column;
  padding: 8px 16px 8px 28px;
  border-left: 2px solid var(--accent); }

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

.features__claims li {
  margin: 0 0 12px;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.55; }

.features__claims li:last-child {
  margin-bottom: 0; }

.features__join {
  margin: 20px 0 0;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase; }

.features__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: stretch; }

.features__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px; }

.feature {
  padding: 32px;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease; }

.feature:hover {
  border-color: var(--accent); }

.feature__icon {
  margin-bottom: 24px;
  color: var(--accent); }

.feature__title {
  margin-bottom: 16px;
  font-size: 20px; }

.feature__text {
  color: #9ca3af;
  line-height: 1.7; }

.styles {
  margin-top: 96px; }

.styles__head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center; }

.styles__title {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase; }

.styles__lead {
  margin-bottom: 16px;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.04em; }

.styles__text {
  color: #9ca3af;
  font-size: 16px;
  line-height: 1.7; }

.styles__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch; }

.style-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border);
  text-align: left;
  transition: border-color 0.3s ease, transform 0.3s ease; }

.style-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease; }

@media (hover: hover) and (pointer: fine) {
  .style-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px); }

  .style-card:hover::before {
    opacity: 1; } }
.style-card__index {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.06em;
  pointer-events: none; }

.style-card__tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 24px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 94, 0, 0.4);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase; }

.style-card__name {
  margin-bottom: 8px;
  color: #9ca3af;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase; }

.style-card__title {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.03em; }

.style-card__desc {
  flex-grow: 1;
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.7; }

.styles-kids {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  margin-top: 32px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border); }

.styles-kids__tag {
  display: inline-flex;
  padding: 6px 12px;
  border: 1px solid rgba(255, 94, 0, 0.4);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase; }

.styles-kids__title {
  margin: 16px 0;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-transform: uppercase; }

.styles-kids__lead {
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.6; }

.styles-kids__note {
  margin-top: 24px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase; }

.styles-kids__claims {
  margin: 0;
  padding: 4px 0 4px 28px;
  border-left: 2px solid var(--accent);
  list-style: none; }

.styles-kids__claims li {
  margin: 0 0 16px;
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.65; }

.styles-kids__claims li:last-child {
  margin-bottom: 0; }

.preview {
  padding: 96px 0; }

.preview--alt {
  background: var(--secondary); }

.preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px; }

@media (max-width: 1230px) {
  .hero__title {
    font-size: 72px; } }
@media (max-width: 1024px) {
  .preview__grid {
    grid-template-columns: 1fr 1fr; }

  .features__grid {
    gap: 32px; }

  .features__claims li {
    font-size: 16px; }

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

  .styles__lead {
    font-size: 32px; }

  .hero__title {
    font-size: 64px; }

  .features,
  .preview {
    padding: 72px 0; }

  .styles {
    margin-top: 72px; } }
@media (max-width: 992px) {
  .features__grid {
    grid-template-columns: 1fr;
    gap: 40px; }

  .styles__grid {
    gap: 16px; }

  .style-card {
    padding: 24px; }

  .style-card__index {
    font-size: 44px; }

  .style-card__title {
    font-size: 20px; }

  .styles-kids {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px; } }
@media (max-width: 768px) {
  .features__grid,
  .preview__grid {
    grid-template-columns: 1fr; }

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

  .styles__lead {
    font-size: 28px; }

  .style-card {
    padding: 24px; }

  .styles-kids {
    margin-top: 24px;
    padding: 24px; }

  .styles-kids__title {
    font-size: 24px; }

  .hero__title {
    font-size: 48px; }

  .hero__text {
    font-size: 16px; }

  .features,
  .preview {
    padding: 56px 0; }

  .styles {
    margin-top: 56px; }

  .feature {
    padding: 24px; }

  .features__intro {
    padding-left: 20px; }

  .features__claims li {
    font-size: 16px; } }
@media (max-width: 550px) {
  .styles__grid {
    grid-template-columns: 1fr; }

  .styles__lead {
    font-size: 24px; }

  .features__intro {
    padding-left: 16px; }

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

  .hero__title {
    font-size: 36px; }

  .hero__eyebrow {
    font-size: 14px; }

  .hero__actions {
    flex-direction: column;
    align-items: center; }

  .hero__actions .btn {
    width: 100%;
    max-width: 320px; }

  .hero__scroll {
    bottom: 24px; } }
@media (max-width: 400px) {
  .hero__title {
    font-size: 32px; } }
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(50px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes scroll-bounce {
  0%,
	100% {
    transform: translateX(-50%) translateY(0); }
  50% {
    transform: translateX(-50%) translateY(10px); } }
.schedule-filters {
  display: flex;
  gap: 24px;
  margin-bottom: 48px; }

.schedule-filters__group {
  flex: 1; }

.schedule-filters__label {
  margin-bottom: 12px;
  color: #9ca3af;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em; }

.schedule-filters__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px; }

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 16px; }

.schedule-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  background: var(--secondary);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease; }

.schedule-item:hover {
  border-color: var(--accent); }

.schedule-item__when {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 280px; }

.schedule-item__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0; }

.schedule-item__time {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 20px;
  font-weight: 700; }

.schedule-item__day-name {
  font-size: 18px;
  font-weight: 700; }

.schedule-item__room,
.schedule-item__level,
.schedule-item__teacher-label {
  color: #9ca3af;
  font-size: 14px; }

.schedule-item__style {
  flex: 1; }

.schedule-item__name {
  font-size: 24px;
  transition: color 0.3s ease; }

.schedule-item:hover .schedule-item__name {
  color: var(--accent); }

.schedule-item__teacher {
  display: flex;
  align-items: center;
  gap: 16px; }

.schedule-item__teacher-text {
  text-align: right; }

.schedule-item__teacher-name {
  font-weight: 600; }

.schedule-item__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #9ca3af; }

.schedule-count {
  margin-top: 32px;
  color: #9ca3af;
  font-size: 14px;
  text-align: center; }

.schedule-count span {
  color: var(--accent);
  font-weight: 700; }

@media (max-width: 1024px) {
  .schedule-filters {
    flex-direction: column; }

  .schedule-item {
    flex-wrap: wrap; }

  .schedule-item__when {
    min-width: 0; }

  .schedule-item__teacher-text {
    text-align: left; } }
@media (max-width: 768px) {
  .schedule-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px; }

  .schedule-item__divider {
    display: none; }

  .schedule-item__when,
  .schedule-item__style,
  .schedule-item__teacher {
    width: 100%; }

  .schedule-item__name {
    font-size: 20px; } }
@media (max-width: 550px) {
  .schedule-item__time {
    font-size: 18px; } }
.teachers-grid,
.articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px; }

.teacher-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center; }

.teacher-page__media {
  position: relative;
  overflow: hidden;
  background: var(--secondary);
  height: 0;
  padding-bottom: 133.333%; }

.teacher-page__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center; }

.teacher-page__name {
  margin-bottom: 24px;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.05em; }

.teacher-page__specialty {
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 20px; }

.teacher-page__bio {
  margin-bottom: 24px;
  color: #d1d5db;
  line-height: 1.7; }

.teacher-page__exp {
  margin-bottom: 32px;
  color: #9ca3af; }

.teacher-page__socials {
  display: flex;
  gap: 16px;
  margin-bottom: 32px; }

.teacher-page__cta {
  width: fit-content;
  padding: 16px 32px; }

@media (max-width: 1024px) {
  .teachers-grid,
  .articles-grid {
    grid-template-columns: 1fr 1fr; }

  .teacher-page {
    grid-template-columns: 1fr;
    gap: 32px; }

  .teacher-page__name {
    font-size: 40px; } }
@media (max-width: 768px) {
  .teachers-grid,
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 24px; }

  .teacher-page__name {
    font-size: 32px; }

  .teacher-page__cta {
    width: 100%; } }
@media (max-width: 550px) {
  .teacher-page__name {
    font-size: 28px; } }
.contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px; }

.contacts__subtitle {
  margin-bottom: 32px;
  font-size: 24px;
  text-transform: uppercase; }

.location-card {
  margin-bottom: 32px;
  padding: 24px;
  background: var(--secondary);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease; }

.location-card:hover {
  border-color: var(--accent); }

.location-card__name {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 20px; }

.location-card__list {
  display: flex;
  flex-direction: column;
  gap: 16px; }

.location-card__row {
  display: flex;
  align-items: flex-start;
  gap: 12px; }

.location-card__icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px; }

.location-card__muted {
  display: block;
  color: #9ca3af;
  font-size: 14px; }

.contacts__socials-block {
  margin-top: 48px; }

.contacts__socials-title {
  margin-bottom: 16px;
  font-size: 18px;
  text-transform: uppercase; }

.contacts__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px; }

.contacts-map {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--secondary);
  border: 1px solid var(--border); }

.contacts-map__bg {
  position: absolute;
  inset: 0;
  background: url("/hero.webp") center/cover no-repeat;
  opacity: 0.5; }

.contacts-map__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.5), transparent); }

.contacts-map__pin {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #000; }

.contacts-map__pin--one {
  top: 33%;
  left: 50%; }

.contacts-map__pin--two {
  right: 33%;
  bottom: 33%; }

.contacts-map__card {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border); }

.contacts-map__title {
  margin-bottom: 8px;
  font-size: 18px; }

.contacts-map__text {
  margin-bottom: 16px;
  color: #9ca3af;
  font-size: 14px; }

.contacts-cta {
  padding: 48px;
  background: var(--secondary);
  border: 1px solid var(--border);
  text-align: center; }

.contacts-cta__title {
  margin-bottom: 16px;
  font-size: 32px;
  text-transform: uppercase; }

.contacts-cta__text {
  max-width: 640px;
  margin: 0 auto 32px;
  color: #9ca3af; }

.contacts-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px; }

@media (max-width: 1024px) {
  .contacts {
    grid-template-columns: 1fr;
    gap: 32px; }

  .contacts-map {
    height: 420px; } }
@media (max-width: 768px) {
  .contacts-cta {
    padding: 32px 20px; }

  .contacts-cta__title {
    font-size: 24px; }

  .contacts-cta__actions {
    flex-direction: column;
    align-items: center; }

  .contacts-cta__actions .btn {
    width: 100%;
    max-width: 320px; }

  .contacts-map {
    height: 360px; }

  .contacts-map__card {
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 16px; } }
@media (max-width: 550px) {
  .contacts-map {
    height: 280px; }

  .social-btn--lg {
    width: 48px;
    height: 48px; } }

/*# sourceMappingURL=extra.css.map */
