/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --cream:      #FDF6EC;
  --cream-dark: #F5E8D0;
  --gold:       #C8962A;
  --gold-light: #E8B84B;
  --gold-pale:  #F5D98A;
  --sky:        #A8CEDE;
  --sky-dark:   #5E9BB5;
  --brown:      #5C3D1E;
  --white:      #FFFFFF;
  --text:       #3E2A10;
  --text-muted: #8B6B4A;

  --ff-display: 'Cormorant Garamond', serif;
  --ff-body:    'Montserrat', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(253,246,236,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,150,42,0.15);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(92,61,30,0.08); }

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: var(--ff-display); font-size: 22px; font-weight: 600; color: var(--gold); letter-spacing: 0.04em; }
.logo-sub { font-family: var(--ff-display); font-size: 11px; font-style: italic; color: var(--text-muted); letter-spacing: 0.08em; display: block; }

/* Nav */
.main-nav { display: flex; gap: 32px; list-style: none; }
.main-nav a {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text); font-weight: 500;
  position: relative; transition: color 0.2s;
}
.main-nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s var(--ease-out);
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { width: 100%; }

/* Header Right */
.header-right { display: flex; align-items: center; gap: 16px; }

/* Lang Switcher */
.lang-switcher { display: flex; gap: 4px; }
.lang-btn {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  padding: 4px 8px; border-radius: 3px; color: var(--text-muted);
  transition: all 0.2s; cursor: pointer;
}
.lang-btn.active { color: var(--gold); border-bottom: 1px solid var(--gold); }
.lang-btn:hover { color: var(--gold); }

/* Social icons */
.header-socials,
.footer-socials {
  display: flex; align-items: center; gap: 12px;
}
.header-socials a,
.footer-socials a {
  width: 32px; height: 32px; display: flex;
  align-items: center; justify-content: center;
  border: none; background: none; border-radius: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.header-socials a:hover,
.footer-socials a:hover {
  background: none; border: none; opacity: 0.8; transform: translateY(-1px);
}
.social-icon {
  width: 32px; height: 32px; display: block; object-fit: contain;
}

/* Burger */
.burger-btn {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; align-items: center; justify-content: center;
}
.burger-btn span {
  display: block; width: 22px; height: 1.5px;
  background: var(--gold); transition: all 0.3s var(--ease-out);
}
.burger-btn.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(253,246,236,0.98); backdrop-filter: blur(20px);
  padding: 32px 48px 40px;
  border-bottom: 1px solid rgba(200,150,42,0.2);
  z-index: 999; transform: translateY(-10px); opacity: 0;
  transition: all 0.3s var(--ease-out);
}
.mobile-menu.open { opacity: 1; transform: translateY(0); display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.mobile-menu ul a { font-size: 18px; font-family: var(--ff-display); font-weight: 500; color: var(--text); }
.mobile-menu ul a:hover { color: var(--gold); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-swiper { width: 100%; height: 100vh; min-height: 600px; }
.swiper-slide.hero-slide {
  position: relative; display: flex; align-items: center;
  overflow: hidden;
}
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.slide-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(92,61,30,0.55) 0%, rgba(92,61,30,0.1) 60%, transparent 100%);
}
.slide-1 .slide-bg { background-image: url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=1600&q=80'); }
.slide-2 .slide-bg { background-image: url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?w=1600&q=80'); }
.slide-3 .slide-bg { background-image: url('https://images.unsplash.com/photo-1599901860904-17e6ed7083a0?w=1600&q=80'); }

.slide-content {
  position: relative; z-index: 2;
  max-width: 640px; padding: 0 48px;
  margin-top: 72px;
}
.slide-eyebrow {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-pale); font-weight: 600; margin-bottom: 20px; display: block;
}
.slide-title {
  font-family: var(--ff-display); font-size: clamp(52px, 7vw, 96px);
  font-weight: 300; color: var(--white); line-height: 1;
  letter-spacing: -0.01em; margin-bottom: 8px;
}
.slide-title em { font-style: italic; color: var(--gold-pale); }
.slide-heart { color: var(--gold-pale); font-size: 0.6em; display: inline; }
.slide-sub {
  font-family: var(--ff-display); font-size: clamp(16px, 2vw, 22px);
  font-style: italic; color: rgba(255,255,255,0.8); letter-spacing: 0.05em;
  margin-bottom: 32px; text-transform: uppercase; font-weight: 300;
}
.slide-body {
  font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.8;
  max-width: 380px; margin-bottom: 36px;
}
.slide-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* SVG Sun — Hero decoration */
.hero-sun {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  z-index: 2; opacity: 0.85; width: clamp(160px, 22vw, 320px);
  pointer-events: none;
}
.hero-mandala {
  position: absolute; right: 2%; bottom: 5%;
  z-index: 2; opacity: 0.3; width: 200px; pointer-events: none;
}
.circle-badge {
  position: absolute; right: 6%; top: 20%; z-index: 3;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(200,150,42,0.9); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center; padding: 16px;
}
.circle-badge p {
  font-size: 11px; line-height: 1.4; color: white;
  font-family: var(--ff-display); font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Swiper custom */
.swiper-pagination-bullet { background: white; opacity: 0.5; }
.swiper-pagination-bullet-active { background: var(--gold); opacity: 1; }
.swiper-button-next, .swiper-button-prev {
  color: rgba(255,255,255,0.7); transition: color 0.2s;
}
.swiper-button-next:hover, .swiper-button-prev:hover { color: var(--gold-pale); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 20px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 40px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  transition: all 0.3s var(--ease-out); cursor: pointer;
}
.btn-gold { background: var(--gold); color: white; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,150,42,0.4); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.6); color: white; }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-outline-dark { border: 1.5px solid var(--gold); color: var(--gold); }
.btn-outline-dark:hover { background: var(--gold); color: white; }
.btn svg { width: 14px; height: 14px; }

/* ============================================================
   WAVE DIVIDER
   ============================================================ */
.wave-divider { width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* ============================================================
   ICONS STRIP
   ============================================================ */
.icons-strip {
  background: var(--cream); padding: 56px 48px 40px;
}
.icons-strip-inner {
  display: flex; justify-content: center; align-items: flex-start;
  gap: 0; flex-wrap: wrap; max-width: 1000px; margin: 0 auto;
}
.icon-item {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  flex: 1; min-width: 120px; text-align: center;
  padding: 0 16px;
  position: relative;
}
.icon-item::after {
  content: '·'; position: absolute; right: 0; top: 20px;
  font-size: 24px; color: var(--gold); opacity: 0.5;
}
.icon-item:last-child::after { display: none; }
.icon-item svg { width: 48px; height: 48px; stroke: var(--gold); fill: none; stroke-width: 1; }
.icon-label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600; line-height: 1.5;
}

/* ============================================================
   QUOTE BAND
   ============================================================ */
.quote-band {
  background: linear-gradient(135deg, var(--sky-dark) 0%, var(--sky) 100%);
  padding: 64px 48px; position: relative; overflow: hidden;
  text-align: center;
}
.quote-band-mandala {
  position: absolute; left: -60px; top: -60px; opacity: 0.1;
  width: 300px; pointer-events: none;
}
.quote-band-mandala2 {
  position: absolute; right: -60px; bottom: -60px; opacity: 0.1;
  width: 300px; transform: rotate(180deg); pointer-events: none;
}
.quote-text {
  font-family: var(--ff-display); font-size: clamp(24px, 4vw, 48px);
  font-style: italic; font-weight: 300; color: white;
  line-height: 1.4; max-width: 700px; margin: 0 auto 12px;
}
.quote-sub {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-top: 16px;
}

/* ============================================================
   PRACTICES SECTION
   ============================================================ */
.section { padding: 80px 48px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 12px; display: block;
}
.section-title {
  font-family: var(--ff-display); font-size: clamp(36px, 5vw, 64px);
  font-weight: 400; color: var(--text); letter-spacing: 0.02em;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-heart {
  display: block; text-align: center; color: var(--gold);
  font-size: 20px; margin-top: 12px; opacity: 0.7;
}

.practices-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.practice-card {
  background: white; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(92,61,30,0.06);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.practice-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(92,61,30,0.12); }
.practice-card-visual {
  display: block; position: relative; height: 210px; overflow: hidden;
}
.practice-card-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(253,246,236,0.04) 30%, rgba(253,246,236,0.28) 100%);
  pointer-events: none;
}
.practice-card-img {
  width: 100%; height: 100%; object-fit: cover;
  background: var(--cream-dark);
  transition: transform 0.55s var(--ease-out);
}
.practice-card:hover .practice-card-img { transform: scale(1.06); }
.practice-card-img-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--cream-dark), var(--sky));
  display: flex; align-items: center; justify-content: center;
}
.practice-card-body { padding: 20px 24px 24px; }
.practice-icon { color: var(--gold); font-size: 18px; margin-bottom: 8px; }
.practice-title {
  font-family: var(--ff-display); font-size: 20px; font-weight: 500;
  color: var(--text); margin-bottom: 6px; letter-spacing: 0.02em;
}
.practice-desc { font-size: 12px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.practice-btn {
  display: inline-block; font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); font-weight: 600;
  border: 1px solid rgba(200,150,42,0.4); padding: 8px 18px; border-radius: 20px;
  transition: all 0.2s;
}
.practice-btn:hover { background: var(--gold); color: white; border-color: var(--gold); }

/* ============================================================
   ADVANTAGES
   ============================================================ */
.advantages { background: var(--cream-dark); }
.advantages-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; max-width: 1100px; margin: 0 auto; align-items: center;
}
.advantages-img {
  border-radius: 32px; overflow: hidden; position: relative;
  box-shadow: 0 16px 48px rgba(92,61,30,0.1);
}
.advantages-img img {
  width: 100%; height: 520px; object-fit: cover; object-position: center 18%;
  display: block;
}
.advantages-img-placeholder {
  height: 520px;
  background: linear-gradient(160deg, var(--sky) 0%, var(--sky-dark) 100%);
  border-radius: 32px; display: flex; align-items: center; justify-content: center;
}
.adv-list { display: flex; flex-direction: column; gap: 28px; }
.adv-item { display: flex; gap: 20px; align-items: flex-start; }
.adv-num {
  font-family: var(--ff-display); font-size: 48px; font-weight: 300;
  color: var(--gold-pale); line-height: 1; min-width: 48px;
}
.adv-content-title {
  font-family: var(--ff-display); font-size: 20px; font-weight: 500;
  color: var(--text); margin-bottom: 4px;
}
.adv-content-desc { font-size: 12px; color: var(--text-muted); line-height: 1.8; }

/* ============================================================
   COURSES SECTION
   ============================================================ */
.courses-section { background: white; }

/* Filter */
.courses-filters {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 22px; border-radius: 30px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  border: 1.5px solid rgba(200,150,42,0.3); color: var(--text-muted);
  transition: all 0.25s var(--ease-out); cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold); color: white; border-color: var(--gold);
}

.courses-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px; max-width: 1200px; margin: 0 auto;
}
.course-card {
  border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(200,150,42,0.12);
  transition: all 0.3s var(--ease-out);
}
.course-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(92,61,30,0.10); }
.course-card-header {
  padding: 32px 28px 24px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative; overflow: hidden;
}
.course-card-header-mandala {
  position: absolute; right: -30px; top: -30px; opacity: 0.15; width: 140px;
}
.course-tag {
  display: inline-block; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--gold); color: white; padding: 4px 12px; border-radius: 12px;
  font-weight: 600; margin-bottom: 16px;
}
.course-title {
  font-family: var(--ff-display); font-size: 26px; font-weight: 500;
  color: var(--text); line-height: 1.2; letter-spacing: 0.01em;
}
.course-card-body { padding: 24px 28px 28px; }
.course-desc { font-size: 12px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.course-meta { display: flex; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.course-meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--text-muted); font-weight: 500;
}
.course-meta-item svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.course-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid rgba(200,150,42,0.12);
}
.course-price {
  font-family: var(--ff-display); font-size: 28px; font-weight: 500; color: var(--gold);
}
.course-price span { font-size: 13px; font-family: var(--ff-body); color: var(--text-muted); font-weight: 400; }

/* Hidden card state */
.course-card.hidden { display: none; }

/* ============================================================
   NEWS / BLOG (страница /news/)
   ============================================================ */
.news-card { display: block; text-decoration: none; background: white; }
.news-card-image {
  position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden;
  background: var(--cream-dark, #F5E9D3);
}
.news-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s var(--ease-out); }
.news-card:hover .news-card-image img { transform: scale(1.05); }
.news-card-image .ph-mark { font-size: 40px; }
.news-card-date {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  background: rgba(255,255,255,0.92); color: var(--text);
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em;
  padding: 5px 12px; border-radius: 20px;
}
.news-read-more {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); transition: gap 0.2s;
}
.news-card:hover .news-read-more { color: var(--gold-light); }

.news-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.news-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 10px; border-radius: 50%;
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  border: 1.5px solid rgba(200,150,42,0.25); transition: all 0.2s;
}
.news-pagination .page-numbers.current,
.news-pagination .page-numbers:hover { background: var(--gold); color: white; border-color: var(--gold); }
.news-pagination .page-numbers.dots { border: none; }

/* ============================================================
   INSTAGRAM STORIES
   ============================================================ */
.stories-section { background: var(--cream); }
.stories-row {
  display: flex; gap: 16px; overflow-x: auto; padding-bottom: 12px;
  max-width: 1100px; margin: 0 auto;
  scrollbar-width: thin; scrollbar-color: var(--gold-pale) transparent;
}
.story-bubble {
  flex-shrink: 0; display: flex; flex-direction: column;
  align-items: center; gap: 8px; cursor: pointer;
}
.story-ring {
  width: 80px; height: 80px; border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--sky) 100%);
  transition: transform 0.2s; position: relative;
}
.story-ring:hover { transform: scale(1.05); }
.story-ring-inner {
  width: 100%; height: 100%; border-radius: 50%; overflow: hidden;
  border: 2.5px solid var(--cream); background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
}
.story-ring-inner img { width: 100%; height: 100%; object-fit: cover; }
.story-label { font-size: 11px; color: var(--text-muted); font-weight: 500; text-align: center; max-width: 80px; }

/* Stories Viewer */
.stories-viewer {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
}
.stories-viewer.open { display: flex; }
.stories-viewer-inner {
  position: relative; width: 360px; max-width: 95vw;
  height: 640px; max-height: 90vh; border-radius: 20px; overflow: hidden;
}
.story-frame {
  display: none; position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--sky-dark), var(--cream-dark));
  align-items: center; justify-content: center;
}
.story-frame.active { display: flex; }
.story-frame-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.story-frame-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
}
.story-frame-content {
  position: absolute; bottom: 40px; left: 24px; right: 24px; z-index: 2;
}
.story-frame-text {
  font-family: var(--ff-display); font-size: 28px; font-style: italic;
  color: white; font-weight: 300; line-height: 1.3; text-align: center;
}
.story-progress {
  position: absolute; top: 16px; left: 12px; right: 12px; z-index: 3;
  display: flex; gap: 4px;
}
.story-progress-bar {
  flex: 1; height: 2px; background: rgba(255,255,255,0.3); border-radius: 1px; overflow: hidden;
}
.story-progress-fill {
  height: 100%; background: white; width: 0%;
  transition: width linear;
}
.story-progress-fill.done { width: 100%; transition: none; }
.story-close {
  position: absolute; top: 24px; right: 16px; z-index: 4;
  color: white; font-size: 24px; opacity: 0.8; cursor: pointer;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
}
.story-nav-area {
  position: absolute; top: 0; bottom: 0; width: 50%; z-index: 5;
}
.story-nav-prev { left: 0; }
.story-nav-next { right: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(160deg, var(--sky-dark) 0%, var(--sky) 100%);
  padding: 56px 48px 32px; position: relative; overflow: hidden;
}
.footer-mandala {
  position: absolute; right: -80px; bottom: -80px; opacity: 0.08;
  width: 400px; pointer-events: none;
}
.footer-quote {
  font-family: var(--ff-display); font-size: clamp(16px, 2.5vw, 24px);
  font-style: italic; color: white; margin-bottom: 40px; opacity: 0.9;
  max-width: 500px;
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15);
}
.footer-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-intro .footer-socials { margin-top: 20px; }
.footer-right {
  font-family: var(--ff-display); font-style: italic;
  font-size: 14px; color: rgba(255,255,255,0.5);
}
.footer-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(260px, 1.6fr) 1fr 1fr;
  gap: clamp(28px, 6vw, 96px); max-width: 1280px; margin: 0 auto;
}
.footer-brand {
  display: inline-block; margin-bottom: 20px;
  color: var(--gold-pale); font-family: var(--ff-display);
  font-size: 22px; font-weight: 600; letter-spacing: .12em;
}
.footer-description {
  max-width: 390px; color: rgba(255,255,255,.72);
  font-size: 12px; line-height: 1.8;
}
.footer-nav { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-nav h2 {
  margin-bottom: 5px; color: var(--gold-pale);
  font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
}
.footer-nav a {
  color: rgba(255,255,255,.82); font-size: 12px; line-height: 1.5;
  transition: color .2s ease, transform .2s ease;
}
.footer-nav a:hover { color: white; transform: translateX(3px); }
.footer-bottom {
  position: relative; z-index: 1; max-width: 1280px; margin: 42px auto 0;
  gap: 16px;
}
.footer-copyright { color: rgba(255,255,255,.58); font-size: 11px; line-height: 1.5; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .site-header { padding: 16px 24px; }
  .main-nav { display: none; }
  .burger-btn { display: flex; }
  .slide-content { padding: 0 24px; }
  .hero-sun { display: none; }
  .circle-badge { display: none; }
  .section { padding: 56px 24px; }
  .icons-strip { padding: 40px 24px; }
  .advantages-inner { grid-template-columns: 1fr; }
  .advantages-img img { height: 360px; }
  .footer-bottom { flex-direction: column; gap: 20px; align-items: flex-start; }
  .quote-band { padding: 48px 24px; }
  .site-footer { padding: 48px 24px 32px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .hero-mandala { display: none; }
  .practices-grid { grid-template-columns: 1fr 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .stories-viewer-inner { width: 100vw; height: 100vh; border-radius: 0; max-height: 100vh; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .footer-intro { grid-column: 1 / -1; }
  .footer-quote { margin-bottom: 16px; }
  .footer-bottom { margin-top: 32px; padding-top: 24px; }
  .footer-right { font-size: 15px; }
}
@media (max-width: 400px) {
  .practices-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GSAP hidden state helpers
   ============================================================ */
.reveal { opacity: 0; }

/* ============================================================
   PLACEHOLDER MARKS (for user's own photos/icons)
   ============================================================ */
.ph-mark {
  display: flex; align-items: center; justify-content: center;
  border: 1.5px dashed rgba(200,150,42,0.45);
  color: var(--gold); font-family: var(--ff-display);
  background: rgba(200,150,42,0.06);
}
.ph-mark span { line-height: 1; }
.ph-story-avatar { width: 100%; height: 100%; border-radius: 50%; font-size: 26px; }
.ph-story-frame { width: 100%; height: 100%; font-size: 64px; position: relative; }
.ph-story-frame-label {
  position: absolute; bottom: 16px; left: 0; right: 0; text-align: center;
  font-family: var(--ff-body); font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(200,150,42,0.6);
}

/* Mono line-icon utility (practice icons) */
.practice-icon-mono {
  width: 26px; height: 26px; stroke: var(--gold); fill: none;
  stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round;
  margin-bottom: 4px;
}

/* Mono star rating */
.stars-mono { display: inline-flex; gap: 2px; vertical-align: middle; }
.stars-mono svg { width: 12px; height: 12px; fill: var(--gold); stroke: var(--gold); stroke-width: 1; }

/* ============================================================
   SINGLE COURSE TEMPLATE (LEARNPRESS)
   ============================================================ */
:root {
  --terracotta: #B5674A;
}

.page-wrap {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 32px; max-width: 1280px; margin: 0 auto;
  padding: 40px 48px 80px;
}

/* Hero & Title */
.course-hero { position: relative; margin-bottom: 28px; }
.hero-mandala-deco { position: absolute; top: -30px; right: -10px; width: 220px; opacity: 0.12; pointer-events: none; z-index: -1; }
.course-title { font-family: var(--ff-display); font-weight: 400; color: var(--text); font-size: clamp(30px, 3.4vw, 42px); line-height: 1.15; }
.course-title em { display: block; font-style: italic; color: var(--terracotta); font-weight: 500; font-size: 1.05em; }

/* Video & Lock Block */
.video-block { margin-top: 24px; border-radius: 24px; overflow: hidden; box-shadow: 0 12px 48px rgba(92,61,30,0.10); background: var(--brown); }
.video-frame { position: relative; width: 100%; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.video-frame .ph-mark { width: 100%; height: 100%; border-radius: 0; border: none; font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; display:flex; align-items:center; justify-content:center; text-align:center; padding: 20px;}

/* Lesson Header */
.lesson-header-row { display: flex; align-items: flex-start; justify-content: space-between; margin-top: 32px; gap: 20px; }
.lesson-title-group { display: flex; align-items: center; gap: 10px; }
.lesson-title { font-family: var(--ff-display); font-size: 30px; font-weight: 500; color: var(--text); }
.lesson-desc { margin-top: 8px; font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: 520px; }

/* Full Width Sections */
.section-block { margin-top: 72px; }
.section-block-header { margin-bottom: 28px; }
.section-eyebrow { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px; display: block; }
.section-block-title { font-family: var(--ff-display); font-size: clamp(26px, 3vw, 36px); font-weight: 400; color: var(--text); }
.about-course-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.about-course-text { font-size: 14px; line-height: 1.95; color: var(--text); opacity: 0.85; }
.about-course-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { background: white; border-radius: 18px; padding: 22px 20px; box-shadow: 0 4px 20px rgba(92,61,30,0.05); text-align: center; }
.stat-num { font-family: var(--ff-display); font-size: 32px; color: var(--gold); font-weight: 500; }
.stat-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* Final CTA & LearnPress Buy Button */
.final-cta { margin-top: 56px; margin-bottom: 40px; text-align: center; padding: 48px 32px; background: linear-gradient(135deg, var(--cream-dark) 0%, #F0E2C0 100%); border-radius: 28px; position: relative; overflow: hidden; }
.final-cta-mandala { position: absolute; right: -60px; top: -60px; width: 220px; opacity: 0.15; }
.final-cta-title { font-family: var(--ff-display); font-size: 28px; margin-bottom: 10px; }
.final-cta-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 26px; font-weight:600;}

/* Стилизация стандартной кнопки покупки LearnPress под ваш дизайн */
.lp-buy-wrapper form button, .lp-buy-wrapper .lp-button {
  background: var(--gold) !important; color: white !important;
  padding: 14px 30px !important; border-radius: 40px !important;
  font-size: 11.5px !important; font-weight: 600 !important; letter-spacing: 0.12em !important; text-transform: uppercase !important;
  border: none !important; cursor: pointer !important; transition: all 0.25s !important; display: inline-block;
}
.lp-buy-wrapper form button:hover, .lp-buy-wrapper .lp-button:hover { background: var(--gold-light) !important; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,150,42,0.35); }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.progress-card { background: white; border-radius: 22px; padding: 28px 26px; box-shadow: 0 4px 24px rgba(92,61,30,0.06); position: relative; overflow: hidden; }
.progress-donut-row { display: flex; align-items: center; gap: 20px; }
.progress-donut { position: relative; width: 96px; height: 96px; flex-shrink: 0; }
.progress-donut svg { transform: rotate(-90deg); }
.progress-donut-track { stroke: rgba(200,150,42,0.12); }
.progress-donut-fill { stroke: var(--gold); stroke-linecap: round; }
.progress-donut-text { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.progress-pct { font-family: var(--ff-display); font-size: 22px; font-weight: 600; color: var(--text); line-height: 1; }
.progress-pct-label { font-size: 8.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-top: 2px; }

.lessons-card { background: white; border-radius: 22px; padding: 24px 0 12px; box-shadow: 0 4px 24px rgba(92,61,30,0.06); }
.lessons-header { display: flex; align-items: center; justify-content: space-between; padding: 0 24px 16px; border-bottom: 1px solid rgba(200,150,42,0.08); }
.lessons-header-title { font-family: var(--ff-display); font-size: 17px; font-weight: 500; }
.lessons-list { max-height: 560px; overflow-y: auto; list-style: none; padding:0; margin:0;}
.lesson-item { display: flex; align-items: center; gap: 12px; padding: 12px 24px; cursor: pointer; transition: background 0.2s; border-left: 3px solid transparent; }
.lesson-item:hover { background: rgba(200,150,42,0.04); }
.lesson-item.current { background: linear-gradient(90deg, rgba(232,184,75,0.14), rgba(232,184,75,0.03)); border-left-color: var(--gold); }
.lesson-thumb { width: 52px; height: 40px; border-radius: 8px; overflow: hidden; flex-shrink: 0; position: relative; }
.lesson-thumb .ph-mark { width: 100%; height: 100%; border-radius: 8px; font-size: 10px; }
.lesson-item-info { flex: 1; min-width: 0; }
.lesson-item-title { font-size: 12.5px; font-weight: 500; color: var(--text); line-height: 1.4; }
.lesson-item.locked .lesson-item-title { color: var(--text-muted); }
.lesson-status { width: 20px; height: 20px; flex-shrink: 0; display: grid; place-items: center; }
.lesson-status svg { width: 18px; height: 18px; stroke-width: 1.5; fill: none; }
.status-done svg { stroke: var(--sky-dark); fill: var(--sky-dark); }
.status-available svg { stroke: rgba(200,150,42,0.4); }
.status-locked svg { stroke: var(--text-muted); opacity: 0.5; }

@media (max-width: 1100px) {
  .page-wrap { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
}
@media (max-width: 760px) {
  .about-course-grid { grid-template-columns: 1fr; }
}

:root {
  --cream:      #FDF6EC;
  --cream-dark: #F5E8D0;
  --gold:       #C8962A;
  --gold-light: #E8B84B;
  --gold-pale:  #F5D98A;
  --sky:        #A8CEDE;
  --sky-dark:   #5E9BB5;
  --brown:      #5C3D1E;
  --terracotta: #B5674A;
  --white:      #FFFFFF;
  --text:       #3E2A10;
  --text-muted: #8B6B4A;

  --ff-display: 'Cormorant Garamond', serif;
  --ff-body:    'Montserrat', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: linear-gradient(180deg, #FBF3E4 0%, var(--cream) 300px);
  color: var(--text);
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ============ HEADER ============ */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: rgba(253,246,236,0.7);
  backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(200,150,42,0.1);
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: var(--ff-display); font-size: 20px; font-weight: 600; color: var(--gold); letter-spacing: 0.04em; }
.logo-sub { font-family: var(--ff-display); font-size: 10px; font-style: italic; color: var(--text-muted); letter-spacing: 0.06em; display: block; }

.main-nav { display: flex; gap: 30px; }
.main-nav a {
  font-size: 12px; letter-spacing: 0.06em; color: var(--text); font-weight: 500;
  position: relative; transition: color 0.2s;
}
.main-nav a.active { color: var(--gold); }
.main-nav a::after {
  content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 1.5px;
  background: var(--gold); transition: width 0.25s var(--ease-out);
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-right { display: flex; align-items: center; gap: 16px; }
.user-chip { display: flex; align-items: center; gap: 10px; }
.user-avatar {
  width: 38px; height: 38px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--gold-pale);
}
.user-avatar .ph-mark { width: 100%; height: 100%; border-radius: 50%; font-size: 14px; }
.user-greet { font-size: 13px; color: var(--text); font-weight: 500; }
.bell-btn {
  position: relative; width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; transition: background 0.2s;
}
.bell-btn:hover { background: rgba(200,150,42,0.08); }
.bell-btn svg { width: 18px; height: 18px; stroke: var(--brown); fill: none; stroke-width: 1.5; }
.bell-dot { position: absolute; top: 7px; right: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-light); }

/* ============ PAGE LAYOUT ============ */
.page-wrap {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 32px; max-width: 1280px; margin: 0 auto;
  padding: 40px 48px 0;
}

/* ============ MAIN COLUMN ============ */
.course-hero { position: relative; margin-bottom: 28px; }
.hero-birds { position: absolute; top: -6px; right: 60px; width: 90px; opacity: 0.35; pointer-events: none; }
.hero-mandala-deco { position: absolute; top: -30px; right: -10px; width: 220px; opacity: 0.12; pointer-events: none; z-index: -1; }

.course-title {
  font-family: var(--ff-display); font-weight: 400; color: var(--text);
  font-size: clamp(30px, 3.4vw, 42px); line-height: 1.15;
}
.course-title em {
  display: block; font-style: italic; color: var(--terracotta);
  font-weight: 500; font-size: 1.05em;
}
.course-title .heart { color: var(--gold); font-size: 0.75em; }

.breadcrumb-chip {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; padding: 9px 18px;
  background: white; border-radius: 24px;
  box-shadow: 0 2px 12px rgba(92,61,30,0.06);
  font-size: 12px; color: var(--text-muted); font-weight: 500;
  cursor: pointer;
}
.breadcrumb-chip .sep { color: var(--gold); opacity: 0.6; }
.breadcrumb-chip svg { width: 12px; height: 12px; stroke: var(--text-muted); fill: none; stroke-width: 1.5; margin-left: 2px; }

/* Video block */
.video-block {
  margin-top: 24px; border-radius: 24px; overflow: hidden;
  box-shadow: 0 12px 48px rgba(92,61,30,0.10);
  position: relative; background: var(--brown);
}
.video-frame {
  position: relative; width: 100%; aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.video-frame .ph-mark {
  width: 100%; height: 100%; border-radius: 0; border: none;
  background: linear-gradient(160deg, #C9A876 0%, #7D97A6 55%, #4E7086 100%);
  font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(255,255,255,0.25); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s var(--ease-out), background 0.2s;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.play-btn:hover { transform: translate(-50%,-50%) scale(1.08); background: rgba(255,255,255,0.35); }
.play-btn svg { width: 22px; height: 22px; fill: white; margin-left: 3px; }

.video-controls {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px; background: rgba(30,20,10,0.55); backdrop-filter: blur(6px);
}
.vc-btn { width: 28px; height: 28px; display: grid; place-items: center; flex-shrink: 0; }
.vc-btn svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 1.6; }
.vc-btn.play-icon svg { fill: white; stroke: none; }
.progress-track {
  flex: 1; height: 4px; background: rgba(255,255,255,0.25); border-radius: 2px; position: relative; cursor: pointer;
}
.progress-fill { position: absolute; left: 0; top: 0; height: 100%; width: 11%; background: var(--gold-light); border-radius: 2px; }
.progress-fill::after {
  content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%);
  width: 11px; height: 11px; border-radius: 50%; background: white;
}
.vc-time { font-size: 11px; color: rgba(255,255,255,0.85); white-space: nowrap; font-variant-numeric: tabular-nums; }

/* Lesson header row */
.lesson-header-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-top: 32px; gap: 20px;
}
.lesson-title-group { display: flex; align-items: center; gap: 10px; }
.lesson-title {
  font-family: var(--ff-display); font-size: 30px; font-weight: 500; color: var(--text);
}
.lesson-title-icon { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.3; }
.lesson-desc { margin-top: 8px; font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: 520px; }

.lesson-actions { display: flex; gap: 10px; flex-shrink: 0; }
.icon-round-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid rgba(200,150,42,0.35);
  display: grid; place-items: center; transition: all 0.2s;
  color: var(--gold);
}
.icon-round-btn:hover { background: var(--gold); color: white; border-color: var(--gold); }
.icon-round-btn svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.icon-round-btn.liked svg { fill: currentColor; }

/* About lesson box */
.about-box {
  margin-top: 28px; display: grid; grid-template-columns: 1fr 200px;
  gap: 24px; align-items: center;
  background: linear-gradient(135deg, #EAF2F6 0%, #E4EEF2 100%);
  border-radius: 22px; padding: 32px 36px;
}
.about-box-title {
  font-family: var(--ff-display); font-size: 20px; font-weight: 500;
  color: var(--sky-dark); margin-bottom: 14px;
}
.about-box p { font-size: 13px; line-height: 1.9; color: var(--text); opacity: 0.85; }
.about-box-deco { display: flex; align-items: center; justify-content: center; }

/* Benefits row */
.benefits-block { margin-top: 40px; }
.benefits-title {
  font-family: var(--ff-display); font-size: 20px; font-weight: 500; color: var(--text);
  margin-bottom: 24px;
}
.benefits-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.benefit-item { text-align: center; }
.benefit-icon-wrap {
  width: 68px; height: 68px; margin: 0 auto 12px;
  border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle, rgba(232,184,75,0.14) 0%, rgba(232,184,75,0.02) 70%);
}
.benefit-icon-wrap svg { width: 30px; height: 30px; stroke: var(--gold); fill: none; stroke-width: 1.2; }
.benefit-label { font-size: 11.5px; color: var(--text-muted); line-height: 1.5; font-weight: 500; }

/* Om wave divider */
.om-divider {
  margin-top: 44px; position: relative; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.om-divider svg.wave-line {
  position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%);
  width: 100%; height: 16px; stroke: rgba(200,150,42,0.3); fill: none; stroke-width: 1;
}
.om-symbol {
  position: relative; z-index: 2; background: var(--cream);
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid rgba(200,150,42,0.25);
}
.om-symbol svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.3; }

/* ============ ABOUT COURSE (full width sections below) ============ */
.full-width-sections { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.section-block { margin-top: 72px; }
.section-block-header { margin-bottom: 28px; }
.section-eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 10px; display: block;
}
.section-block-title {
  font-family: var(--ff-display); font-size: clamp(26px, 3vw, 36px); font-weight: 400; color: var(--text);
}
.section-block-title em { font-style: italic; color: var(--terracotta); }

.about-course-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start;
}
.about-course-text p { font-size: 14px; line-height: 1.95; color: var(--text); opacity: 0.85; margin-bottom: 16px; }
.about-course-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px;
}
.stat-card {
  background: white; border-radius: 18px; padding: 22px 20px;
  box-shadow: 0 4px 20px rgba(92,61,30,0.05);
  text-align: center;
}
.stat-num { font-family: var(--ff-display); font-size: 32px; color: var(--gold); font-weight: 500; }
.stat-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* For whom */
.audience-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.audience-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: white; border-radius: 18px; padding: 22px 24px;
  box-shadow: 0 4px 20px rgba(92,61,30,0.05);
}
.audience-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: rgba(232,184,75,0.14); display: grid; place-items: center;
}
.audience-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.3; }
.audience-item-title { font-family: var(--ff-display); font-size: 17px; font-weight: 500; margin-bottom: 4px; }
.audience-item-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.7; }

/* Health disclaimer */
.disclaimer-box {
  display: flex; gap: 20px; align-items: flex-start;
  background: #FCF1E7; border: 1.5px solid rgba(181,103,74,0.3);
  border-radius: 20px; padding: 28px 32px;
  position: relative; overflow: hidden;
}
.disclaimer-box::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--terracotta);
}
.disclaimer-icon {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: rgba(181,103,74,0.12); display: grid; place-items: center;
}
.disclaimer-icon svg { width: 22px; height: 22px; stroke: var(--terracotta); fill: none; stroke-width: 1.5; }
.disclaimer-title {
  font-family: var(--ff-display); font-size: 19px; font-weight: 600;
  color: var(--terracotta); margin-bottom: 8px;
}
.disclaimer-text { font-size: 12.5px; line-height: 1.85; color: var(--text); opacity: 0.9; }
.disclaimer-text strong { color: var(--terracotta); font-weight: 600; }
.disclaimer-list { margin-top: 10px; padding-left: 18px; }
.disclaimer-list li { font-size: 12.5px; line-height: 1.8; color: var(--text); opacity: 0.9; list-style: disc; }

/* Final CTA */
.final-cta {
  margin-top: 56px; margin-bottom: 80px;
  text-align: center; padding: 48px 32px;
  background: linear-gradient(135deg, var(--cream-dark) 0%, #F0E2C0 100%);
  border-radius: 28px; position: relative; overflow: hidden;
}
.final-cta-mandala { position: absolute; right: -60px; top: -60px; width: 220px; opacity: 0.15; }
.final-cta-title { font-family: var(--ff-display); font-size: 28px; margin-bottom: 10px; }
.final-cta-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 26px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 40px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  transition: all 0.25s var(--ease-out);
}
.btn-gold { background: var(--gold); color: white; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,150,42,0.35); }

/* ============ SIDEBAR ============ */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.progress-card {
  background: white; border-radius: 22px; padding: 28px 26px;
  box-shadow: 0 4px 24px rgba(92,61,30,0.06);
  position: relative; overflow: hidden;
}
.progress-card-mandala { position: absolute; right: -30px; top: -20px; width: 140px; opacity: 0.08; }
.progress-card-title { font-family: var(--ff-display); font-size: 18px; font-weight: 500; margin-bottom: 20px; }
.progress-donut-row { display: flex; align-items: center; gap: 20px; }
.progress-donut { position: relative; width: 96px; height: 96px; flex-shrink: 0; }
.progress-donut svg { transform: rotate(-90deg); }
.progress-donut-track { stroke: rgba(200,150,42,0.12); }
.progress-donut-fill { stroke: var(--gold); stroke-linecap: round; transition: stroke-dashoffset 0.6s var(--ease-out); }
.progress-donut-text {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.progress-pct { font-family: var(--ff-display); font-size: 22px; font-weight: 600; color: var(--text); line-height: 1; }
.progress-pct-label { font-size: 8.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-top: 2px; }
.progress-info-title { font-size: 13px; font-weight: 500; line-height: 1.5; margin-bottom: 10px; }
.progress-line-item { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }
.progress-bar-mini {
  height: 4px; background: rgba(200,150,42,0.12); border-radius: 2px; margin-top: 4px; overflow: hidden;
}
.progress-bar-mini-fill { height: 100%; background: var(--gold-light); border-radius: 2px; }

/* Lessons list */
.lessons-card {
  background: white; border-radius: 22px; padding: 24px 0 12px;
  box-shadow: 0 4px 24px rgba(92,61,30,0.06);
}
.lessons-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px 16px; border-bottom: 1px solid rgba(200,150,42,0.08);
}
.lessons-header-title { font-family: var(--ff-display); font-size: 17px; font-weight: 500; }
.lessons-header svg { width: 16px; height: 16px; stroke: var(--text-muted); fill: none; stroke-width: 1.6; transition: transform 0.25s; }
.lessons-list { max-height: 560px; overflow-y: auto; }
.lesson-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 24px; cursor: pointer; transition: background 0.2s;
  border-left: 3px solid transparent;
}
.lesson-item:hover { background: rgba(200,150,42,0.04); }
.lesson-item.current {
  background: linear-gradient(90deg, rgba(232,184,75,0.14), rgba(232,184,75,0.03));
  border-left-color: var(--gold);
}
.lesson-thumb {
  width: 52px; height: 40px; border-radius: 8px; overflow: hidden; flex-shrink: 0; position: relative;
}
.lesson-thumb .ph-mark { width: 100%; height: 100%; border-radius: 8px; font-size: 10px; }
.lesson-thumb-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.25);
}
.lesson-thumb-play svg { width: 14px; height: 14px; fill: white; }
.lesson-item-info { flex: 1; min-width: 0; }
.lesson-item-title { font-size: 12.5px; font-weight: 500; color: var(--text); line-height: 1.4; }
.lesson-item.locked .lesson-item-title { color: var(--text-muted); }
.lesson-item-time { font-size: 10.5px; color: var(--text-muted); margin-top: 2px; }
.lesson-status { width: 20px; height: 20px; flex-shrink: 0; display: grid; place-items: center; }
.lesson-status svg { width: 18px; height: 18px; stroke-width: 1.5; fill: none; }
.status-done svg { stroke: var(--sky-dark); fill: var(--sky-dark); }
.status-done { color: var(--sky-dark); }
.status-current svg { stroke: none; fill: var(--gold); }
.status-available svg { stroke: rgba(200,150,42,0.4); }
.status-locked svg { stroke: var(--text-muted); opacity: 0.5; }

.lessons-show-all {
  display: block; text-align: center; padding: 14px; font-size: 11.5px;
  color: var(--gold); font-weight: 600; letter-spacing: 0.06em;
  border-top: 1px solid rgba(200,150,42,0.08); margin-top: 4px;
}
.lessons-show-all svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; margin-left: 4px; vertical-align: middle; }

/* Quote card */
.quote-card {
  border-radius: 22px; overflow: hidden; position: relative; height: 200px;
  background: linear-gradient(160deg, #7FA8BC, #C9A876);
}
.quote-card .ph-mark { width: 100%; height: 100%; border-radius: 0; border: none; background: transparent; }
.quote-card-text {
  position: absolute; left: 24px; bottom: 22px; z-index: 2;
  font-family: var(--ff-display); font-style: italic; font-size: 22px;
  color: white; line-height: 1.25;
}
.quote-card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.25), transparent 60%); }

/* Placeholder mark reused */
.ph-mark {
  display: flex; align-items: center; justify-content: center;
  border: 1.5px dashed rgba(200,150,42,0.45);
  color: var(--gold); font-family: var(--ff-display);
  background: rgba(200,150,42,0.06);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .page-wrap { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
  .lessons-list { max-height: none; }
}
@media (max-width: 760px) {
  .site-header { padding: 16px 20px; }
  .main-nav { display: none; }
  .page-wrap { padding: 28px 20px 0; }
  .full-width-sections { padding: 0 20px; }
  .about-box { grid-template-columns: 1fr; }
  .about-box-deco { display: none; }
  .benefits-row { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
  .about-course-grid { grid-template-columns: 1fr; }
  .audience-list { grid-template-columns: 1fr; }
  .lesson-header-row { flex-direction: column; }
  .disclaimer-box { flex-direction: column; }
}

/* ============================================================
   FIX: LearnPress добавляет body.course-item-popup для своего
   встроенного попап-плеера уроков (overflow-y: hidden в
   learnpress.css), из-за чего на нашем кастомном шаблоне урока
   пропадал скролл страницы и не было видно футер. Наш шаблон
   рендерит обычный поток документа, а не попап, поэтому явно
   возвращаем скролл.
   ============================================================ */
body.course-item-popup {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  height: auto !important;
}

/* ============================================================
   PURCHASE CARD (сайдбар, для тех кто ещё не купил курс)
   ============================================================ */
.purchase-card { text-align: center; }
.purchase-card-eyebrow {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 10px; display: block;
}
.purchase-card-price {
  font-family: var(--ff-display); font-size: 34px; font-weight: 500;
  color: var(--text); margin-bottom: 4px;
}
.purchase-card-price span { font-size: 12px; font-family: var(--ff-body); color: var(--text-muted); font-weight: 400; }
.purchase-card-desc { font-size: 12px; color: var(--text-muted); line-height: 1.7; margin: 10px 0 18px; }
.purchase-card .lp-buy-wrapper { display: flex; justify-content: center; }
.purchase-card .lp-buy-wrapper form,
.purchase-card .lp-buy-wrapper .lp-button { width: 100%; }
.purchase-card .lp-buy-wrapper form button,
.purchase-card .lp-buy-wrapper .lp-button { width: 100% !important; justify-content: center !important; }

/* Locked teaser row shown instead of the full lessons list */
.lessons-locked-teaser {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 24px; margin-top: 4px;
  border-top: 1px solid rgba(200,150,42,0.08);
}
.lessons-locked-teaser-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: rgba(200,150,42,0.1); display: grid; place-items: center;
}
.lessons-locked-teaser-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
.lessons-locked-teaser-text { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.lessons-locked-teaser-text strong { color: var(--text); font-weight: 600; }

/* ============================================================
   PRACTICE LANDING PAGES
   ============================================================ */
body.practice-landing { background: var(--cream); }
.practice-page { padding-top: 0; }
.practice-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.practice-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 28%;
}
.practice-hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(62,42,16,0.18) 0%, rgba(62,42,16,0.22) 38%, rgba(253,246,236,0.94) 100%);
}
.practice-hero-content {
  position: relative; z-index: 1; width: 100%; max-width: 760px;
  margin: 0 auto; padding: 120px 48px 56px; text-align: center;
}
.practice-hero-title {
  font-family: var(--ff-display); font-weight: 400; color: var(--text);
  font-size: clamp(40px, 6vw, 66px); line-height: 1.08;
}
.practice-hero-lead {
  font-size: 15px; line-height: 1.8; color: var(--text-muted);
  margin: 10px auto 28px; max-width: 560px;
}
.practice-intro {
  display: grid; grid-template-columns: 0.72fr 1.28fr;
  gap: 36px; align-items: center;
  max-width: 1360px; margin: 0 auto; padding: 96px 28px 80px;
}
.practice-section-title {
  font-family: var(--ff-display); font-weight: 400; color: var(--text);
  font-size: clamp(28px, 3vw, 40px); margin: 6px 0 20px;
}
.practice-body p {
  font-size: 14px; line-height: 1.85; color: var(--text-muted); margin-bottom: 16px;
}
.practice-intro-photo {
  position: relative;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
}
.practice-intro-photo img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  border-radius: 0;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-composite: intersect;
}
.practice-intro-photo::after {
  content: '';
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--cream) 0%, rgba(253,246,236,0) 14%, rgba(253,246,236,0) 86%, var(--cream) 100%),
    linear-gradient(180deg, var(--cream) 0%, rgba(253,246,236,0) 12%, rgba(253,246,236,0) 88%, var(--cream) 100%);
}
.practice-for, .practice-how, .practice-others {
  max-width: 1200px; margin: 0 auto; padding: 24px 48px 72px;
}
.practice-for-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.practice-for-card {
  background: white; border-radius: 20px; padding: 24px 26px;
  box-shadow: 0 4px 20px rgba(92,61,30,0.06);
  display: flex; gap: 14px; align-items: flex-start;
}
.practice-for-mark { color: var(--gold); font-size: 16px; line-height: 1.4; flex-shrink: 0; }
.practice-for-card p { font-size: 13px; line-height: 1.7; color: var(--text); }
.practice-quote-band {
  background: var(--cream-dark); text-align: center; padding: 72px 48px;
}
.practice-quote {
  font-family: var(--ff-display); font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 400; font-style: italic; color: var(--text);
  max-width: 740px; margin: 0 auto 16px; line-height: 1.4;
}
.practice-quote-author {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600;
}
.practice-how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.practice-how-card {
  background: white; border-radius: 20px; padding: 28px 24px 32px;
  box-shadow: 0 4px 20px rgba(92,61,30,0.06); text-align: center;
}
.practice-how-num {
  display: block; font-family: var(--ff-display); font-size: 28px; color: var(--gold); margin-bottom: 12px;
}
.practice-how-card p { font-size: 13px; line-height: 1.7; color: var(--text-muted); }
.practice-cta {
  text-align: center; padding: 72px 48px 80px;
  background: linear-gradient(180deg, var(--cream) 0%, #fff 55%, var(--cream) 100%);
}
.practice-cta-title {
  font-family: var(--ff-display); font-size: clamp(32px, 4vw, 48px);
  font-weight: 400; color: var(--text); margin: 8px 0 16px;
}
.practice-cta-sub {
  font-size: 14px; line-height: 1.8; color: var(--text-muted);
  max-width: 540px; margin: 0 auto 28px;
}
.practice-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.practice-others { padding-bottom: 96px; }
.practice-others-grid { grid-template-columns: repeat(3, 1fr); }
.practice-missing { padding: 160px 24px; text-align: center; color: var(--text-muted); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
body.about-landing { background: var(--cream); }
.about-page { padding-top: 0; }
.about-hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(480px, 1.18fr);
  grid-template-areas: "copy photo";
  min-height: 100vh;
  background: var(--cream);
  align-items: stretch;
  overflow: hidden;
}
.about-hero-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 128px 40px 72px 8vw;
  max-width: 620px;
  margin-right: auto;
}
.about-hero-copy .practice-hero-title {
  font-size: clamp(40px, 5vw, 64px);
  margin: 4px 0 8px;
}
.about-hero-copy .practice-hero-lead {
  margin: 10px 0 0;
  max-width: 460px;
  text-align: left;
}
.about-hero-copy .section-heart { margin: 4px 0 8px; }
.about-hero-photo {
  grid-area: photo;
  position: relative;
  min-height: 100vh;
}
.about-hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.about-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 22%;
  pointer-events: none;
  background: linear-gradient(90deg, var(--cream) 0%, rgba(253,246,236,0) 100%);
}
.about-story {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  gap: 48px; align-items: center;
  max-width: 1280px; margin: 0 auto; padding: 48px 32px 80px;
}
.about-lead {
  font-size: 15px; line-height: 1.85; color: var(--text-muted);
  max-width: 640px; margin: 0 auto 36px; text-align: center;
}
.about-train, .about-exp, .about-diplomas {
  max-width: 1100px; margin: 0 auto; padding: 24px 32px 80px;
}
.about-train-grid, .about-diplomas-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.about-train-card {
  background: white; border-radius: 20px; padding: 28px 24px 32px;
  box-shadow: 0 4px 20px rgba(92,61,30,0.06);
}
.about-train-card h3 {
  font-family: var(--ff-display); font-size: 22px; font-weight: 500;
  color: var(--text); margin: 0 0 12px;
}
.about-train-card p { font-size: 13px; line-height: 1.75; color: var(--text-muted); }
.about-exp-list { max-width: 720px; margin: 0 auto; }
.about-diploma {
  display: block; width: 100%; padding: 0; border: 0; background: #fff;
  border-radius: 16px; overflow: hidden; cursor: zoom-in;
  box-shadow: 0 8px 28px rgba(92,61,30,0.08); aspect-ratio: 4 / 3;
}
.about-diploma img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-diploma-placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  border: 1px solid rgba(200,150,42,0.28);
  border-radius: 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px; gap: 10px;
}
.about-diploma-placeholder span { color: var(--gold); font-size: 22px; }
.about-diploma-placeholder h3 {
  font-family: var(--ff-display); font-size: 20px; font-weight: 500; color: var(--text);
  margin: 0; max-width: 200px;
}
.about-lightbox {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(40,28,12,0.84);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 24px;
}
.about-lightbox[hidden] { display: none; }
.about-lightbox img {
  max-width: min(1100px, 92vw); max-height: 88vh;
  object-fit: contain; border-radius: 8px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.35);
}
.about-lightbox-close {
  position: absolute; top: 18px; right: 22px;
  width: 44px; height: 44px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff; font-size: 28px;
  line-height: 1; cursor: pointer;
}

.advantages { scroll-margin-top: 96px; }
.advantages-more { margin-top: 36px; }

@media (max-width: 1024px) {
  .practice-intro { grid-template-columns: 1fr; gap: 32px; padding: 72px 24px 56px; }
  .practice-how-grid { grid-template-columns: 1fr; }
  .practice-others-grid { grid-template-columns: 1fr 1fr; }
  .practice-hero-content, .practice-for, .practice-how, .practice-others, .practice-cta, .practice-quote-band {
    padding-left: 32px; padding-right: 32px;
  }
  .about-hero {
    grid-template-columns: 1fr;
    grid-template-areas: "photo" "copy";
    min-height: 0;
  }
  .about-hero-photo { min-height: 68vh; }
  .about-hero-photo::after {
    width: 100%;
    height: 32%;
    inset: auto 0 0 0;
    background: linear-gradient(180deg, rgba(253,246,236,0) 0%, var(--cream) 100%);
  }
  .about-hero-copy {
    padding: 28px 32px 56px;
    max-width: none;
    text-align: center;
    margin: 0 auto;
  }
  .about-hero-copy .practice-hero-lead { margin: 10px auto 0; text-align: center; }
  .about-story { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 56px; }
  .about-train, .about-exp, .about-diplomas { padding: 16px 24px 64px; }
  .about-train-grid, .about-diplomas-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   MOBILE FIRST REFINEMENTS
   These overrides retain the desktop composition while making
   all public templates comfortable at 320–768px.
   ============================================================ */
html, body { max-width: 100%; overflow-x: hidden; }

@media (max-width: 768px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
    gap: 10px;
  }
  .logo { min-width: 0; gap: 7px; }
  .logo svg { width: 34px; height: 34px; flex: 0 0 auto; }
  .logo-text { font-size: 18px; white-space: nowrap; }
  .logo-sub { font-size: 9px; white-space: nowrap; }
  .header-right { gap: 5px; flex: 0 0 auto; }
  .header-socials { display: none; }
  .lang-switcher { gap: 1px; }
  .lang-btn { padding: 6px 5px; font-size: 9px; letter-spacing: 0.06em; }
  .burger-btn { width: 38px; height: 38px; }
  .mobile-menu { top: 68px; padding: 24px 20px 30px; }
  .mobile-menu ul { gap: 18px; }
  .mobile-menu ul a { font-size: 22px; }

  .hero-swiper { height: 100svh; min-height: 520px; }
  .slide-content { max-width: 100%; padding: 0 20px; margin-top: 36px; }
  .slide-title { font-size: clamp(42px, 14vw, 64px); line-height: .96; }
  .slide-eyebrow { margin-bottom: 14px; }
  .slide-sub { font-size: 15px; line-height: 1.35; margin-bottom: 20px; }
  .slide-body { font-size: 12.5px; line-height: 1.65; margin-bottom: 26px; }
  .slide-ctas { gap: 10px; }
  .swiper-button-next, .swiper-button-prev { display: none; }

  .section { padding: 48px 16px; }
  .section-header { margin-bottom: 28px; }
  .section-title { font-size: clamp(32px, 10vw, 44px); }
  .icons-strip { padding: 28px 16px; gap: 14px; }
  .icon-item { flex: 1 1 130px; }
  .icon-item::after { display: none; }
  .practices-grid, .courses-grid { grid-template-columns: 1fr; }
  .course-card-body { padding: 20px; }
  .quote-band, .site-footer { padding: 42px 20px; }

  .page-wrap { padding: 28px 16px 48px; gap: 24px; }
  .full-width-sections { padding: 0 16px; }
  .course-title { font-size: clamp(32px, 10vw, 40px); }
  .hero-mandala-deco, .hero-birds { display: none; }
  .lesson-header-row { margin-top: 24px; gap: 14px; }
  .lesson-title { font-size: clamp(28px, 9vw, 36px); }
  .lesson-desc { font-size: 12.5px; }
  .sidebar { order: 0; }
  .sidebar .lessons-list { max-height: 400px; }

  .about-course-grid, .audience-list, .about-box { grid-template-columns: 1fr; gap: 20px; }
  .about-course-stats { grid-template-columns: 1fr 1fr; gap: 10px; }

  .practice-page { padding-top: 0; }
  .practice-hero { min-height: 100svh; }
  .practice-hero-content { padding: 100px 20px 36px; }
  .practice-hero-lead { font-size: 13.5px; }
  .practice-intro {
    grid-template-columns: 1fr; padding: 64px 20px 48px; gap: 28px;
  }
  .practice-for, .practice-how, .practice-others {
    grid-template-columns: 1fr; padding: 12px 20px 48px; gap: 28px;
  }
  .practice-intro-photo img { min-height: 0; aspect-ratio: 4 / 3; }
  .practice-for-grid, .practice-how-grid, .practice-others-grid { grid-template-columns: 1fr; }
  .practice-quote-band { padding: 48px 20px; }
  .practice-cta { padding: 48px 20px 56px; }
  .practice-cta-actions { flex-direction: column; align-items: center; }
  .practice-cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .about-train-grid, .about-diplomas-grid { grid-template-columns: 1fr; }
  .about-story { padding: 32px 20px 48px; }
  .about-hero-photo { min-height: 58vh; }
  .about-hero-copy { padding: 20px 20px 48px; }
  .stat-card { padding: 16px 12px; }
  .benefits-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 12px; }
  .benefit-label { font-size: 11px; }
  .audience-item { padding: 18px; gap: 12px; }
  .disclaimer-box { padding: 22px 20px; gap: 14px; }
  .final-cta { padding: 36px 20px; margin: 40px 0 56px; }
  .final-cta-mandala { display: none; }
  .progress-card { padding: 22px 18px; }
  .progress-donut-row { gap: 14px; }
  .lessons-card { border-radius: 18px; }
  .lessons-header, .lesson-item, .lessons-locked-teaser { padding-left: 16px; padding-right: 16px; }
  .video-controls { flex-wrap: wrap; gap: 10px; padding: 12px 14px; }
  .video-controls .progress-track { order: 3; flex-basis: 100%; }
  .video-controls .vc-btn:last-child { display: none; }

  .custom-lesson-container { padding: 20px !important; border-radius: 18px !important; }
  .custom-lesson-container iframe { border-radius: 12px !important; margin-bottom: 18px !important; }
  .course-item-nav { flex-direction: column; gap: 16px; margin-top: 28px !important; }
  .course-item-nav a { display: block; padding: 12px 0; }
  .news-pagination { flex-wrap: wrap; margin-top: 32px; }
}

@media (max-width: 420px) {
  .logo-sub { display: none; }
  .hero-swiper { min-height: 480px; }
  .slide-title { font-size: clamp(39px, 13vw, 54px); }
  .slide-ctas .btn { width: 100%; justify-content: center; }
  .benefits-row, .about-course-stats { grid-template-columns: 1fr; }
  .progress-donut-row { align-items: flex-start; }
  .lesson-thumb { width: 46px; height: 36px; }
  .lesson-item { gap: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* The course stylesheet is loaded later in this file, so keep the
   definitive mobile header rules last to avoid selector conflicts. */
@media (max-width: 900px) {
  body { padding-top: 68px; }

  .site-header {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
  }

  .hero-swiper { height: calc(100svh - 68px); }

  .main-nav { display: none !important; }

  .burger-btn {
    display: flex !important;
    flex: 0 0 38px;
    border-radius: 50%;
    border: 1px solid rgba(200,150,42,0.32);
    background: rgba(255,255,255,0.52);
  }

  .mobile-menu {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    z-index: 999;
    max-height: calc(100svh - 68px);
    overflow-y: auto;
    box-shadow: 0 18px 30px rgba(92,61,30,0.12);
  }
}