/* ============================================================
   Людмила Владимировна · главная — премиум-минимализм
   Палитра: white + dark + красный акцент
   ============================================================ */

:root {
  /* === Палитра === */
  --bg:        #FFFFFF;
  --bg-soft:   #F5F5F5;
  --ink:       #1A1A1A;
  --ink-soft:  #6B6B6B;
  --ink-mute:  #A0A0A0;
  --line:      #E5E5E5;

  --dark:      #0A0A0A;
  --dark-soft: #161616;

  --accent:        #C41E3A;   /* кардинал */
  --accent-dark:   #8B0000;   /* тёмно-красный */
  --accent-soft:   rgba(196, 30, 58, 0.08);

  /* === Радиусы / тени === */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 12px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow:    0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);

  /* === Типографика === */
  --font-head: 'Montserrat', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* === Отступы === */
  --max: 1200px;
  --pad: 80px;
  --section-gap: 120px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 0;
}

p { margin: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 80px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}

.site-header.scrolled .brand,
.site-header.scrolled .nav a { color: var(--ink); }
.site-header.scrolled .trainer-link { color: var(--ink-soft); border-color: var(--line); }

.header-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  transition: color .3s ease;
}
.brand span {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0 5px;
  margin-left: 1px;
  border-radius: 2px;
}

.nav {
  margin: 0 auto;
  display: flex;
  gap: 32px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  padding: 6px 0;
  position: relative;
  transition: color .3s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav a:hover,
.nav a.active { color: var(--accent); }
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }

.trainer-link {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  transition: all .3s ease;
}
.trainer-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

/* Бургер */
.burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  position: relative;
}
.burger span {
  position: absolute;
  left: 8px; right: 8px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease, top .3s ease, background .3s ease;
}
.burger span:nth-child(1) { top: 13px; }
.burger span:nth-child(2) { top: 19.5px; }
.burger span:nth-child(3) { top: 26px; }
.burger.open span:nth-child(1) { top: 19.5px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 19.5px; transform: rotate(-45deg); }
.site-header.scrolled .burger span { background: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--dark);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(196, 30, 58, 0.08), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px var(--pad);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-line {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 40px;
}

.hero-title {
  font-size: 72px;
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  margin: 0 0 24px;
}
.hero-title-row {
  display: block;
}

.hero-sub-wrap {
  position: relative;
  display: inline-block;
  margin: 20px 0 30px;
  padding: 12px 18px;
}
.hero-subtitle-frame {
  position: absolute;
  inset: 0;
  border: 2px solid var(--accent);
  pointer-events: none;
}
.hero-subtitle {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 400;
  color: var(--accent);
  margin: 0;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 460px;
  margin: 0 0 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 15px 40px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all .3s ease;
  user-select: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}
.btn-primary:active { transform: scale(.98); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}
.btn-lg {
  padding: 20px 60px;
  font-size: 16px;
}

/* Hero photo */
.hero-photo {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.hero-photo-img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #1a1a1a;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
}
.hero-photo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-photo::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -20px -20px 20px 20px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  pointer-events: none;
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 300;
  color: var(--ink);
  margin: 0;
  max-width: 800px;
  letter-spacing: 0.01em;
}

/* ============================================================
   О СЕБЕ
   ============================================================ */
.about {
  padding: var(--section-gap) 0;
  background: var(--bg);
}

/* Большая цитата-вступление */
.about-hero {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 100px;
}
.about-hero-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.15;
  font-weight: 300;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin: 0 0 32px;
}
.about-hero-title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
}
.about-hero-name {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  margin: 0;
}
.about-hero-name::before,
.about-hero-name::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* Базовый блок с чередующейся компоновкой */
.about-block {
  display: grid;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}
.about-block:last-of-type { margin-bottom: 0; }

.about-block--right {
  grid-template-columns: 1.1fr 0.9fr;
}
.about-block--left {
  grid-template-columns: 0.9fr 1.1fr;
}
.about-block--center {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-block-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}
.about-block-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.05);
  transition: filter .5s ease;
}
.about-block-photo:hover img {
  filter: grayscale(0%) contrast(1);
}

.about-h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 0 0 24px;
  position: relative;
}
.about-block--center .about-h3 {
  font-size: 32px;
  font-weight: 300;
}
.about-block--center .about-h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 20px auto 0;
}

.about-block-text p,
.about-block p {
  font-size: 17px;
  line-height: 1.75;
  color: #333333;
  margin: 0 0 18px;
}
.about-block-text p:last-child,
.about-block p:last-child { margin-bottom: 0; }

.about-lead {
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 28px !important;
}
.about-block--center .about-lead {
  font-size: 24px;
}

.about-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.about-list li {
  position: relative;
  padding-left: 28px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
}
.about-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 600;
}

/* Эмблема клуба */
.about-emblem {
  margin: 50px auto 0;
  text-align: center;
  max-width: 360px;
  position: relative;
  padding: 40px 20px 0;
}
.about-emblem::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 40px;
}
.about-emblem img {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto;
  display: block;
  opacity: 0.18;
  filter: grayscale(100%) contrast(1.05);
  transition: opacity .4s ease, transform .4s ease;
}
.about-emblem:hover img {
  opacity: 0.35;
  transform: scale(1.03);
}

/* CTA в конце секции */
.about-cta {
  text-align: center;
  max-width: 760px;
  margin: 100px auto 0;
  padding: 60px 40px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  position: relative;
}
.about-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--accent);
}
.about-cta-title {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 300;
  color: var(--ink);
  margin: 0 0 28px;
  letter-spacing: 0.01em;
}
.about-cta p {
  font-size: 17px;
  line-height: 1.7;
  color: #333333;
  margin: 0 0 18px;
}
.about-cta-strong {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 400;
  color: var(--accent) !important;
  margin-bottom: 36px !important;
}

/* Сетка фото в конце */
.about-photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 80px;
}
.about-photos-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(100%) contrast(1.05);
  transition: filter .4s ease, transform .3s ease;
  cursor: pointer;
}
.about-photos-grid img:hover {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.02);
}

/* ============================================================
   РАСПИСАНИЕ
   ============================================================ */
.schedule {
  padding: var(--section-gap) 0;
  background: var(--bg-soft);
}
.schedule .about-head { margin-bottom: 80px; }

.schedule-zones {
  display: grid;
  gap: 60px;
}

.schedule-zone {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 50px 50px 40px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease;
}
.schedule-zone:hover { box-shadow: var(--shadow); }

.schedule-zone--friday {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.schedule-zone--friday::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(196, 30, 58, 0.12), transparent 60%);
  pointer-events: none;
}
.schedule-zone--friday > * { position: relative; z-index: 1; }
.schedule-zone--friday .zone-title { color: #fff; }
.schedule-zone--friday .zone-num { color: var(--accent); }
.schedule-zone--friday .zone-subtitle { color: var(--ink-mute); }
.schedule-zone--friday .zone-subtitle a { color: #fff; }
.schedule-zone--friday .schedule-list { border-top-color: rgba(255, 255, 255, 0.12); }
.schedule-zone--friday .schedule-row { border-bottom-color: rgba(255, 255, 255, 0.12); }
.schedule-zone--friday .schedule-row:hover { background: rgba(255, 255, 255, 0.04); }
.schedule-zone--friday .schedule-day { color: var(--accent); }
.schedule-zone--friday .schedule-time { color: #fff; }
.schedule-zone--friday .schedule-name { color: #fff; }
.schedule-zone--friday .schedule-age { color: var(--ink-mute); }
.schedule-zone--friday .schedule-focus { color: var(--ink-mute); }

/* Заголовок зала */
.zone-header {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}

.zone-num {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.zone-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 0 0 16px;
}

.zone-address {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 8px 0;
  transition: color .25s ease;
}
.zone-address svg { width: 18px; height: 18px; flex-shrink: 0; }
.zone-address .zone-external { width: 13px; height: 13px; opacity: 0.5; transition: opacity .25s ease, transform .25s ease; }
.zone-address:hover { color: var(--accent); }
.zone-address:hover .zone-external { opacity: 1; transform: translate(2px, -2px); }

.zone-subtitle {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
}
.zone-subtitle a {
  color: var(--ink);
  border-bottom: 1px dashed currentColor;
  padding-bottom: 1px;
  transition: color .25s ease;
}
.zone-subtitle a:hover { color: var(--accent); }

.zone-map {
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  aspect-ratio: 16 / 9;
}
.zone-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* Список тренировок */
.schedule-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.schedule-row {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.5fr 0.9fr;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}
.schedule-row:hover { background: rgba(0, 0, 0, 0.02); }

.schedule-day {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.schedule-time {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.schedule-name {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
.schedule-age {
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 14px;
  margin-left: 6px;
}

.schedule-focus {
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-align: right;
}

/* ============================================================
   ДЛЯ РОДИТЕЛЕЙ
   ============================================================ */
.parents {
  padding: var(--section-gap) 0;
  background: var(--bg-soft);
}
.parents-inner {
  max-width: 760px;
  text-align: center;
}
.parents-text .hero-line {
  margin: 24px auto 0;
}
.parents-text .section-title { margin: 0 auto; }
.parents-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 32px auto 40px;
  max-width: 620px;
}

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

/* ============================================================
   CTA
   ============================================================ */
.cta {
  background: var(--dark);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(196, 30, 58, 0.12), transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-title {
  font-size: 48px;
  font-weight: 300;
  color: #FFFFFF;
  margin: 0 auto 24px;
  max-width: 800px;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.cta-sub {
  font-size: 20px;
  color: var(--ink-mute);
  margin: 0 0 50px;
  font-weight: 300;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-soft);
  color: var(--ink-mute);
  padding: 30px 0;
  font-size: 13px;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand { color: #fff; font-weight: 500; }
.footer-meta { margin: 0 auto; }
.footer-trainer {
  font-size: 12px;
  color: var(--ink-mute);
  text-transform: lowercase;
  border-bottom: 1px dashed var(--ink-mute);
  padding-bottom: 1px;
  transition: color .3s ease, border-color .3s ease;
}
.footer-trainer:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(0.22, 1, 0.36, 1),
              transform .8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   АДАПТИВНОСТЬ
   ============================================================ */

/* Планшет */
@media (max-width: 1024px) {
  :root { --pad: 40px; --section-gap: 90px; }
  .hero-title { font-size: 60px; }
  .section-title { font-size: 40px; }
  .cta-title { font-size: 40px; }
  .about-body { font-size: 17px; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card { padding: 40px 32px; }
  .about-photos { gap: 20px; }

  .about-block { gap: 40px; margin-bottom: 80px; }
  .about-block--right,
  .about-block--left { grid-template-columns: 1fr; }
  .about-block--left .about-block-photo { order: -1; }
  .about-block-photo { max-width: 480px; margin: 0 auto; }
  .about-hero { margin-bottom: 70px; }
  .about-photos-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* Мобильный */
@media (max-width: 768px) {
  :root {
    --pad: 20px;
    --section-gap: 70px;
  }
  body { font-size: 15px; }

  /* Навигация -> бургер */
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    z-index: 99;
  }
  .nav.open { max-height: 100vh; }
  .nav a {
    font-size: 22px;
    color: #fff;
  }
  .nav a::after { display: none; }
  .nav a.active { color: var(--accent); }

  .trainer-link { display: none; }
  .burger { display: block; z-index: 101; }
  .site-header { background: transparent; }
  .site-header.scrolled { background: rgba(10, 10, 10, 0.92); }
  .site-header.scrolled .brand { color: #fff; }
  body.nav-open { overflow: hidden; }

  /* Hero */
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px var(--pad);
  }
  .hero-photo { order: -1; max-width: 320px; margin: 0 auto; }
  .hero-photo::after { right: -10px; bottom: 10px; left: 10px; top: -10px; }
  .hero-photo-img { aspect-ratio: 3 / 4; font-size: 72px; box-shadow: 12px 12px 40px rgba(0, 0, 0, 0.5); }
  .hero-line { margin-bottom: 24px; }
  .hero-title { font-size: 48px; }
  .hero-subtitle { font-size: 20px; }
  .hero-desc { font-size: 15px; }
  .btn { width: 100%; padding: 16px 30px; }

  /* Sections */
  .section-title { font-size: 32px; }
  .about-head { margin-bottom: 40px; }
  .about-body { font-size: 16px; }
  .about-body p { margin-bottom: 22px; }
  .about-quote { font-size: 17px; padding-left: 22px; }
  .about-photos { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 40px; }
  .about-photos .about-photo:nth-child(3) { display: none; }

  /* О себе на мобильном */
  .about-hero { margin-bottom: 50px; }
  .about-hero-name { gap: 10px; }
  .about-hero-name::before,
  .about-hero-name::after { width: 24px; }
  .about-emblem { margin-top: 40px; padding-top: 24px; }
  .about-emblem::before { margin-bottom: 28px; }
  .about-block { gap: 32px; margin-bottom: 60px; }
  .about-block-photo { max-width: 100%; }
  .about-h3 { font-size: 24px; }
  .about-lead { font-size: 19px; margin-bottom: 20px !important; }
  .about-block p { font-size: 16px; }
  .about-cta { padding: 40px 24px; margin-top: 60px; }
  .about-cta-title { font-size: 26px; }
  .about-photos-grid { grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 50px; }

  .services .about-head { margin-bottom: 50px; }
  .service-card { padding: 36px 28px; }
  .service-num { margin-bottom: 18px; }
  .service-title { font-size: 22px; }

  /* Расписание на мобильном */
  .schedule .about-head { margin-bottom: 50px; }
  .schedule-zones { gap: 30px; }
  .schedule-zone { padding: 32px 24px 24px; }
  .zone-title { font-size: 22px; }
  .zone-address { font-size: 14px; }
  .zone-map { aspect-ratio: 4 / 3; }
  .schedule-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    padding: 18px 0;
  }
  .schedule-day { grid-column: 1; }
  .schedule-time { grid-column: 2; text-align: right; font-size: 17px; }
  .schedule-name { grid-column: 1 / -1; font-size: 16px; }
  .schedule-focus { grid-column: 1 / -1; text-align: left; }

  .cta { padding: 70px 0; }
  .cta-title { font-size: 32px; }
  .cta-sub { font-size: 17px; }
  .cta-buttons { flex-direction: column; gap: 12px; }
  .cta-buttons .btn { width: 100%; }

  .site-footer { padding: 24px 0; }
  .footer-inner { gap: 12px; font-size: 12px; }
  .footer-meta { margin: 0; width: 100%; order: 3; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 40px; }
  .section-title { font-size: 28px; }
  .cta-title { font-size: 28px; }
  .about-hero-name { gap: 8px; font-size: 11px; letter-spacing: 0.15em; }
  .about-hero-name::before,
  .about-hero-name::after {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
  }
}

/* ============================================================
   Кнопка «Выйти» — заметная, с иконкой
   ============================================================ */
.btn-logout {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--accent, #C41E3A);
  color: #fff;
  border: 0;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s ease, transform .1s ease;
}
.btn-logout:hover { background: var(--accent-dark, #8B0000); color: #fff; }
.btn-logout:active { transform: translateY(1px); }
.btn-logout svg { display: block; }
@media (max-width: 480px) {
  .btn-logout { padding: 8px 12px; font-size: 11px; }
}
