:root {
  --bg: #10100f;
  --bg-deep: #0b0b0b;
  --panel: #151515;
  --panel-soft: #191918;
  --line: rgba(255, 255, 255, 0.075);
  --line-strong: rgba(255, 255, 255, 0.12);
  --text: #eeeeea;
  --muted: #a9a39a;
  --faint: #6f6a63;
  --accent: #c49354;
  --accent-deep: #9e723d;
  --max: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 1;
    transform: none;
    transition:
      opacity 0.65s ease,
      transform 0.65s ease;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 88px));
  margin: 0 auto;
}

.site-header {
  height: 70px;
  border-bottom: 1px solid var(--line);
  background: #0d0d0c;
  position: relative;
  z-index: 10;
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 145px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  letter-spacing: 0;
}

.brand-title {
  font-size: 21px;
  line-height: 1;
  font-weight: 800;
  color: #f7f4ec;
}

.brand-subtitle {
  margin-top: 5px;
  font-size: 8px;
  line-height: 1;
  font-weight: 700;
  color: #9a958d;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  white-space: nowrap;
}

.main-nav a {
  font-size: 9px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  color: #d8d5cf;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 28px;
  border: 1px solid var(--line-strong);
  color: #f5f2eb;
  background: transparent;
  text-transform: uppercase;
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(196, 147, 84, 0.8);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.btn-primary {
  background: linear-gradient(180deg, #d4a15f, #b78041);
  border-color: #d2a060;
  color: #19140e;
}

.btn-outline {
  min-height: 43px;
  padding: 0 24px;
  border-color: var(--accent);
  color: #eee3d1;
}

.btn-ghost {
  background: rgba(16, 16, 15, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-small {
  min-height: 38px;
  padding: 0 25px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
}

.menu-toggle span {
  width: 17px;
  height: 1px;
  background: currentColor;
}

.hero {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #080808;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.98) 0%, rgba(9, 9, 9, 0.88) 26%, rgba(9, 9, 9, 0.2) 52%, rgba(9, 9, 9, 0.55) 100%),
    url("assets/hero.jpg") center right 36% / cover no-repeat;
  filter: saturate(0.78) contrast(1.12) brightness(0.73);
}

.hero-shade {
  background:
    radial-gradient(circle at 64% 26%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.65), transparent 27%, rgba(8, 8, 8, 0.18));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  min-height: 420px;
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
}

.hero-copy {
  padding: 8px 0 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 15px;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  max-width: 415px;
  text-transform: uppercase;
  font-size: clamp(38px, 4.05vw, 58px);
  line-height: 0.96;
  font-weight: 800;
}

.hero-text {
  width: 360px;
  margin: 22px 0 26px;
  color: #d1cdc6;
  font-size: 13px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-pagination {
  position: absolute;
  right: 6px;
  top: 90px;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: #bfa071;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
}

.hero-pagination .dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.hero-pagination .dot.active {
  width: 5px;
  height: 5px;
  border-color: var(--accent);
  background: var(--accent);
}

.band-section,
.section-split {
  border-bottom: 1px solid var(--line);
}

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

.about-panel,
.news-panel {
  min-height: 348px;
  padding: 30px 32px 29px 0;
}

.news-panel {
  padding: 30px 0 25px 32px;
  border-left: 1px solid var(--line);
}

.about-panel h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 700;
}

.lead {
  width: 440px;
  margin: 18px 0 27px;
  color: #c3beb7;
  font-size: 13px;
  line-height: 1.8;
}

.stats {
  display: flex;
  gap: 46px;
  margin-bottom: 30px;
}

.stat {
  min-width: 94px;
  display: grid;
  grid-template-columns: 33px auto;
  column-gap: 10px;
  row-gap: 4px;
  align-items: center;
}

.stat svg {
  grid-row: span 2;
  width: 31px;
  height: 31px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.stat strong {
  font-size: 22px;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.section-head .section-kicker {
  margin-bottom: 16px;
}

.section-head a {
  margin-top: 1px;
  color: #b8b2aa;
  text-transform: uppercase;
  font-size: 8px;
  line-height: 1;
  font-weight: 800;
}

.section-head a span {
  margin-left: 8px;
  color: var(--accent);
}

.news-list {
  display: grid;
  gap: 16px;
}

.news-item {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 18px;
  min-height: 86px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.news-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.news-item img {
  width: 155px;
  height: 83px;
  object-fit: cover;
  filter: saturate(0.62) contrast(1.08) brightness(0.75);
}

.news-item h3 {
  margin: 1px 0 4px;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
}

.news-item time {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 600;
}

.news-item p {
  margin: 0;
  color: #aba59c;
  font-size: 10px;
  line-height: 1.55;
}

.band-section {
  padding: 22px 0;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.gallery-row img,
.gallery-brand {
  height: 74px;
  object-fit: cover;
  background: #161513;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-row img {
  width: 100%;
  filter: saturate(0.7) contrast(1.06) brightness(0.72);
}

.gallery-brand {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: #efe7da;
}

.gallery-brand::before,
.gallery-brand::after,
.gallery-brand span::before,
.gallery-brand span::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: rotate(34deg);
  opacity: 0.7;
}

.gallery-brand::after,
.gallery-brand span::after {
  transform: rotate(-34deg);
}

.gallery-brand span::before,
.gallery-brand span::after {
  left: 27%;
  right: 27%;
  opacity: 0.45;
}

.gallery-brand strong {
  position: relative;
  font-size: 14px;
  font-weight: 800;
  z-index: 1;
}

.teacher-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.teacher-card {
  min-height: 172px;
  display: grid;
  grid-template-rows: 112px auto;
  align-items: stretch;
  gap: 0;
  padding: 0;
  background: var(--panel);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.045);
  transition:
    border-color 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease;
}

.teacher-card img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.72) contrast(1.08) brightness(0.74);
}

.teacher-card:nth-child(1) img {
  object-position: center 42%;
}

.teacher-card:nth-child(2) img {
  object-position: center 38%;
}

.teacher-card:nth-child(3) img {
  object-position: center 42%;
}

.teacher-card h3 {
  margin: 0 0 7px;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
}

.teacher-card p,
.teacher-card span {
  display: block;
  margin: 0;
  color: #b8b2aa;
  font-size: 9px;
  line-height: 1.5;
}

.teacher-card div {
  padding: 14px 16px 16px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  position: relative;
  min-height: 112px;
  padding: 19px 58px 16px 24px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.045);
  transition:
    border-color 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease;
}

.review-card p {
  margin: 0 0 16px;
  color: #cbc5bb;
  font-size: 10px;
  line-height: 1.7;
}

.review-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.review-card strong {
  font-size: 9px;
}

.review-card span {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 2px;
}

.review-card b {
  position: absolute;
  right: 20px;
  top: 10px;
  color: var(--accent);
  font-size: 40px;
  line-height: 1;
  opacity: 0.38;
  pointer-events: none;
}

.advantage-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 13px;
  text-align: center;
}

.advantage-row div {
  min-height: 68px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 13px;
}

.advantage-row svg {
  width: 29px;
  height: 29px;
  color: #e0d8cb;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
}

.advantage-row span {
  color: #c3beb6;
  font-size: 10px;
  line-height: 1.45;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 30px;
}

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

.faq-entry {
  border-bottom: 1px solid var(--line);
}

.faq-item {
  width: 100%;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  background: transparent;
  color: #d7d2cb;
  text-align: left;
  cursor: pointer;
}

.faq-item span {
  font-size: 11px;
  font-weight: 600;
}

.faq-item i {
  color: var(--accent);
  font-style: normal;
}

.faq-entry p {
  display: none;
  margin: -1px 0 0;
  padding: 0 38px 14px 0;
  color: #aaa49b;
  font-size: 10px;
  line-height: 1.65;
}

.faq-entry.active p {
  display: block;
}

.question-card {
  min-height: 136px;
  display: grid;
  grid-template-columns: 118px 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px 26px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.045);
}

.question-card svg {
  width: 90px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.question-card h3 {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.2;
}

.question-card p {
  margin: 0 0 17px;
  color: #b8b2aa;
  font-size: 10px;
  line-height: 1.6;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.format-card {
  min-height: 88px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  column-gap: 18px;
  padding: 17px 22px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.045);
  transition:
    border-color 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease;
}

.format-card svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  grid-row: span 2;
  margin-top: 3px;
}

.format-card h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 800;
}

.format-card a {
  color: #c2bbb1;
  font-size: 9px;
}

.format-card a span {
  color: var(--accent);
  margin-left: 6px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.schedule-section {
  background: #0f0f0e;
}

.schedule-head h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.15;
}

.schedule-toolbar {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 18px;
  padding: 9px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.schedule-toolbar strong {
  margin: 0 auto 0 8px;
  color: #f0ece4;
  text-transform: uppercase;
  font-size: 13px;
}

.schedule-toolbar select,
.admin-card select,
.admin-card input,
.admin-card textarea,
.booking-panel input,
.booking-panel textarea {
  min-height: 38px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #10100f;
  color: #eee8df;
  padding: 0 12px;
  outline: none;
}

.admin-card textarea,
.booking-panel textarea {
  min-height: 78px;
  padding-top: 11px;
  resize: vertical;
}

.schedule-icon,
.booking-close,
.admin-remove {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: #eee8df;
  cursor: pointer;
}

.schedule-shell {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 18px;
  align-items: start;
}

.schedule-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(130px, 1fr));
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.schedule-day {
  min-width: 130px;
  min-height: 642px;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 48px
    ),
    #131312;
  border: 1px solid var(--line);
}

.schedule-day-head {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 62px;
  padding: 12px;
  background: #171716;
  border-bottom: 1px solid var(--line);
}

.schedule-day-head strong {
  display: block;
  color: #f4efe7;
  text-transform: uppercase;
  font-size: 11px;
}

.schedule-day-head span {
  color: var(--muted);
  font-size: 10px;
}

.slot-list {
  display: grid;
  gap: 7px;
  padding: 9px;
}

.schedule-slot {
  min-height: 94px;
  position: relative;
  padding: 11px 11px 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-left: 3px solid var(--accent);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    #181817;
  color: #ece7df;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.schedule-slot:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 147, 84, 0.55);
  background:
    linear-gradient(180deg, rgba(196, 147, 84, 0.12), transparent),
    #1a1918;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.schedule-slot.is-booked {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    #141413;
  color: #8d867c;
  cursor: default;
  opacity: 0.75;
}

.schedule-slot.teacher-alexander {
  border-left-color: #c49354;
}

.schedule-slot.teacher-leonid {
  border-left-color: #8ea66a;
}

.schedule-slot.teacher-benny {
  border-left-color: #5d83c7;
}

.schedule-slot strong,
.schedule-slot span,
.schedule-slot em {
  display: block;
}

.schedule-slot strong {
  font-size: 11px;
  line-height: 1.25;
  text-transform: uppercase;
  color: #f3eee6;
}

.schedule-slot span {
  margin: 6px 0 4px;
  font-size: 10px;
  font-weight: 700;
  color: #d5cfc6;
}

.schedule-slot em {
  font-style: normal;
  font-size: 9px;
  color: #9d968d;
  line-height: 1.45;
}

.slot-empty {
  padding: 18px 10px;
  color: #756f66;
  font-size: 10px;
}

.booking-panel,
.admin-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
}

.booking-panel {
  min-height: 360px;
  padding: 24px;
}

.booking-close {
  position: absolute;
  right: 14px;
  top: 14px;
}

.booking-panel h3,
.admin-card h3 {
  margin: 0 0 12px;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.25;
}

.booking-panel p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.booking-panel form,
.admin-card {
  display: grid;
  gap: 12px;
}

.booking-panel.is-empty form {
  display: none;
}

.admin-panel {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 310px 1fr 1fr;
  gap: 16px;
}

.admin-page {
  background: #0d0d0c;
}

.admin-surface {
  min-height: calc(100vh - 70px);
  padding-top: 42px;
}

.admin-surface h1 {
  margin: 0;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1.1;
}

.admin-schedule-shell {
  grid-template-columns: 1fr 320px;
}

.admin-lists {
  grid-template-columns: 1fr 1fr;
  margin-top: 18px;
}

.admin-card {
  padding: 20px;
}

.admin-card label {
  display: grid;
  gap: 7px;
  color: #c9c1b6;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
}

.admin-list {
  display: grid;
  gap: 10px;
  max-height: 420px;
  overflow: auto;
}

.admin-row {
  display: grid;
  gap: 5px;
  padding: 12px;
  background: #10100f;
  border: 1px solid var(--line);
  color: #d8d0c6;
  font-size: 10px;
  line-height: 1.45;
}

.admin-row strong {
  color: #f2ede6;
  font-size: 11px;
  text-transform: uppercase;
}

.admin-remove {
  width: auto;
  min-height: 30px;
  height: auto;
  margin-top: 4px;
  padding: 0 11px;
  color: #e7c9a0;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 800;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.price-card {
  min-height: 150px;
  position: relative;
  padding: 22px 26px 20px;
  background: #131312;
  border: 1px solid rgba(196, 147, 84, 0.25);
  transition:
    border-color 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease;
}

.format-card:hover,
.teacher-card:hover,
.review-card:hover,
.price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 147, 84, 0.45);
  background: #181817;
}

.price-card.featured {
  border-color: rgba(196, 147, 84, 0.6);
}

.price-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.price-head h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

.price-head strong {
  white-space: nowrap;
  font-size: 21px;
  line-height: 1;
}

.price-head span {
  color: #b5ada2;
  font-size: 10px;
  font-weight: 600;
}

.price-card ul {
  margin: 0;
  padding: 0 0 0 13px;
  color: #d4cdc3;
  font-size: 10px;
  line-height: 1.7;
}

.price-card li::marker {
  color: var(--accent);
}

.price-card .btn {
  position: absolute;
  right: 26px;
  bottom: 20px;
}

.ribbon {
  position: absolute;
  right: -1px;
  top: -1px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: start end;
  padding: 8px 7px 0 0;
  overflow: hidden;
  color: #17120c;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 800;
}

.ribbon::before {
  content: "";
  position: absolute;
  inset: -23px -31px auto auto;
  width: 82px;
  height: 28px;
  background: linear-gradient(180deg, #d5a462, #b78140);
  transform: rotate(45deg);
  z-index: -1;
}

.contacts {
  min-height: 260px;
  border-bottom: 1px solid var(--line);
  background: #0e0e0d;
}

.contact-grid {
  display: grid;
  grid-template-columns: 410px 1fr;
  min-height: 250px;
}

.contact-info {
  padding: 29px 35px 28px 0;
}

.contact-info ul {
  display: grid;
  gap: 18px;
  margin: 24px 0 24px;
  padding: 0;
  list-style: none;
}

.contact-info li {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 14px;
  align-items: center;
  color: #d0c9bd;
  font-size: 11px;
  line-height: 1.45;
}

.contact-info svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
}

.socials {
  display: flex;
  gap: 20px;
}

.socials a {
  color: #d9d5ce;
  font-size: 9px;
  line-height: 1;
  width: 22px;
  height: 20px;
  display: grid;
  place-items: center;
  text-transform: lowercase;
}

.socials a::before {
  content: none;
}

.map {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 54% 47%, rgba(196, 147, 84, 0.14), transparent 6%),
    linear-gradient(18deg, transparent 0 42%, rgba(255, 255, 255, 0.06) 42.3% 43.1%, transparent 43.4% 100%),
    linear-gradient(151deg, transparent 0 33%, rgba(255, 255, 255, 0.06) 33.3% 34%, transparent 34.3% 100%),
    repeating-linear-gradient(169deg, transparent 0 72px, rgba(255, 255, 255, 0.045) 73px 75px, transparent 76px 142px),
    repeating-linear-gradient(27deg, transparent 0 85px, rgba(255, 255, 255, 0.04) 86px 89px, transparent 90px 170px),
    #151515;
  filter: saturate(0.5);
}

.real-map {
  background: #151515;
  filter: saturate(0.45) brightness(0.72) contrast(1.18);
}

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

.map-canvas {
  z-index: 1;
}

.map-fallback {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 18px;
  background: rgba(13, 13, 12, 0.82);
  border: 1px solid rgba(196, 147, 84, 0.45);
  color: #efe7da;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 800;
}

.real-map::before,
.real-map::after {
  content: none;
}

.map::before,
.map::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(70deg, transparent 0 20%, rgba(255, 255, 255, 0.055) 20.2% 20.8%, transparent 21% 100%),
    linear-gradient(115deg, transparent 0 56%, rgba(255, 255, 255, 0.05) 56.1% 56.7%, transparent 57% 100%),
    radial-gradient(circle at 78% 32%, rgba(255, 255, 255, 0.08), transparent 2px);
  opacity: 0.75;
}

.map::after {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.85), transparent 20%, transparent 78%, rgba(10, 10, 10, 0.8)),
    linear-gradient(0deg, rgba(10, 10, 10, 0.82), transparent 24%, transparent 76%, rgba(10, 10, 10, 0.85));
  opacity: 1;
}

.map.real-map::before,
.map.real-map::after {
  content: none;
}

.pin {
  position: absolute;
  left: 52%;
  top: 43%;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--accent);
  transform: rotate(-45deg);
  z-index: 2;
  box-shadow: 0 0 18px rgba(196, 147, 84, 0.35);
}

.pin::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16100b;
}

.footer {
  background: #111110;
}

.footer-inner {
  min-height: 138px;
  display: grid;
  grid-template-columns: 260px 1fr 1fr 245px;
  gap: 35px;
  align-items: center;
}

.footer-brand .brand-title {
  font-size: 25px;
}

.footer nav {
  display: grid;
  gap: 13px;
}

.footer nav a,
.copyright {
  color: #c4bdb2;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 700;
}

.copyright {
  display: grid;
  gap: 12px;
  text-transform: none;
}

.copyright a {
  color: #a39c92;
}

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

  .header-inner {
    grid-template-columns: 145px auto auto;
  }

  .main-nav {
    gap: 14px;
  }

  .main-nav a {
    font-size: 8px;
  }

  .lead {
    width: auto;
  }

  .stats {
    gap: 22px;
  }
}

@media (max-width: 880px) {
  .site-header {
    height: 64px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  body.nav-open .main-nav {
    position: fixed;
    inset: 64px 0 auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 18px 22px;
    background: #0d0d0c;
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 11px;
  }

  .hero,
  .hero-inner {
    min-height: 560px;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(9, 9, 9, 0.97) 0%, rgba(9, 9, 9, 0.85) 47%, rgba(9, 9, 9, 0.28) 100%),
      url("assets/hero.jpg") center / cover no-repeat;
  }

  .hero-inner,
  .split-grid,
  .faq-grid,
  .pricing-grid,
  .contact-grid,
  .schedule-shell,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .hero-pagination {
    display: none;
  }

  .hero-copy {
    width: min(430px, 100%);
  }

  .hero-text {
    width: auto;
  }

  .about-panel,
  .news-panel {
    min-height: auto;
    padding: 28px 0;
  }

  .news-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

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

  .reviews-grid,
  .advantage-row {
    grid-template-columns: 1fr;
  }

  .advantage-row {
    text-align: left;
  }

  .advantage-row div {
    grid-template-columns: 34px 1fr;
    justify-items: start;
    align-items: center;
    min-height: auto;
  }

  .contact-info {
    padding-right: 0;
  }

  .map {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    padding: 34px 0;
  }

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

  .schedule-toolbar strong {
    width: 100%;
    order: -1;
    margin: 0 0 4px;
  }

  .schedule-days {
    grid-template-columns: repeat(7, 150px);
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 28px);
  }

  .brand-title {
    font-size: 18px;
  }

  .hero,
  .hero-inner {
    min-height: 590px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .stats,
  .news-item,
  .question-card,
  .price-head {
    display: grid;
    grid-template-columns: 1fr;
  }

  .stats {
    gap: 18px;
  }

  .news-item img {
    width: 100%;
    height: 150px;
  }

  .gallery-row,
  .teacher-grid,
  .format-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .teacher-card {
    min-height: 150px;
    grid-template-columns: 96px 1fr;
  }

  .teacher-card img {
    width: 96px;
    height: 140px;
  }

  .question-card {
    gap: 12px;
  }

  .schedule-head {
    align-items: stretch;
    flex-direction: column;
  }

  .schedule-head h2 {
    font-size: 20px;
  }

  .schedule-toolbar select {
    width: 100%;
  }

  .booking-panel,
  .admin-card {
    padding: 16px;
  }

  .price-card .btn {
    position: static;
    margin-top: 22px;
    width: 100%;
  }
}
