/* ============================================================
   TARABRIN.CLUB — Design System
   Palette: Tibet + Inter
   Mobile-first: 60% smartphone audience
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
  /* Palette */
  --sky:       #F4F7F9;
  --slate:     #2A3038;
  --turquoise: #1A7B7B;
  --azure:     #4AABB5;
  --rock:      #8494A0;
  --gold:      #B8963E;
  --mist:      #6B7B85;

  /* Functional */
  --bg:          var(--sky);
  --text:        var(--slate);
  --text-muted:  var(--mist);
  --text-light:  var(--rock);
  --accent:      var(--turquoise);
  --accent-light: var(--azure);
  --highlight:   var(--gold);

  /* Surfaces */
  --card-bg:     #FFFFFF;
  --card-border: rgba(42, 48, 56, 0.05);
  --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  --hero-border: rgba(26, 123, 123, 0.12);

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;

  /* Layout */
  --content-padding: 24px;
  --content-max: 1200px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
}

@media (min-width: 768px) {
  :root {
    --content-padding: 64px;
  }
}

/* ── RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 15px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html { font-size: 16px; }
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
a:hover { opacity: 0.8; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text);
  line-height: 1.2;
}

h1 {
  font-weight: 700;
  font-size: 2.0rem;
}
@media (min-width: 768px) {
  h1 { font-size: 3.25rem; }
}

h2 {
  font-weight: 400;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  h2 { font-size: 1.375rem; }
}

h3 {
  font-weight: 700;
  font-size: 1.133rem;
}
@media (min-width: 768px) {
  h3 { font-size: 1.125rem; }
}

.text-muted {
  color: var(--text-muted);
}
.text-light {
  color: var(--text-light);
}
.text-accent {
  color: var(--accent);
}

/* ── LAYOUT ── */
.site-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

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

.section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}
@media (min-width: 768px) {
  .section {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
  }
}

/* The legacy .top-strip / .top-strip-close styles were removed 2026-05-20.
 * Replaced by .global-pin (see ANNOUNCEMENTS section at the bottom of this
 * file) — the CRM-driven announcements system (Phase 4) owns the polosa now.
 */

/* ── NAVIGATION ── */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--content-padding);
  border-bottom: 1px solid rgba(42, 48, 56, 0.06);

  /* Sticky always-visible on desktop with Apple-style blur background.
     Mobile — non-sticky (fullscreen overlay menu handles нав via toggle). */
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(244, 247, 249, 0.85); /* var(--bg) with alpha for blur to show through */
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px); /* Safari */
}

/* Front-page hero overlay variant — absolute over hero photo, not sticky.
   Scrolls away with hero; на inner pages используется обычный sticky nav. */
.site-nav--transparent {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
}

/* Mobile — not sticky (mobile menu handles нав). */
@media (max-width: 600px) {
  .site-nav {
    position: relative;
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* Logo — Variant 2 (выбор Vladimir 2026-05-19):
   Playfair Display Regular 400, прямой (не italic), 20px desktop.
   Classical, solid, читается мгновенно, сохраняет гармонию с body Playfair. */
.nav-logo {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: normal;
  font-size: 1.25rem;  /* 20px — Variant 2 spec (Vladimir's pick from logo-mockups) */
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.005em;
  transition: color 0.2s ease;
}
@media (min-width: 768px) {
  .nav-logo { font-size: 1.25rem; }
}
.nav-logo:hover {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem; /* 14px mobile */
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
@media (min-width: 768px) {
  .nav-menu a { font-size: 0.9375rem; } /* 15px desktop — readable for 55+ audience share */
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
  color: var(--accent);
}

.site-nav--transparent .nav-menu a {
  color: rgba(255, 255, 255, 0.65);
}
.site-nav--transparent .nav-menu a:hover {
  color: rgba(255, 255, 255, 0.95);
  opacity: 1;
}

/* Mobile menu toggle — hamburger that morphs into X when open */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 250; /* above fullscreen menu */
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 6px;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: top 0.3s ease, transform 0.3s ease, opacity 0.2s ease, background 0.2s ease;
}
.nav-toggle span:nth-child(1) { top: 10px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 20px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}

.site-nav--transparent .nav-toggle span {
  background: rgba(255, 255, 255, 0.9);
}
/* When menu is open over transparent nav — restore dark text for visibility on white overlay */
.site-nav--transparent .nav-toggle[aria-expanded="true"] span {
  background: var(--text);
}

@media (max-width: 600px) {
  .nav-toggle { display: block; }

  /* Mobile menu = fullscreen overlay (replaces dropdown) */
  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 0;
    padding: 96px var(--content-padding) var(--space-2xl);

    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 200;

    /* hidden by default */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0s 0.3s linear;
  }
  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s ease, visibility 0s 0s linear;
  }

  /* Big typography for fullscreen menu items */
  .nav-menu li { list-style: none; }
  .nav-menu a {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.75rem; /* 28px */
    color: var(--text);
    letter-spacing: 0;
    padding: 8px 24px;
  }
  .nav-menu a:hover,
  .nav-menu .current-menu-item a {
    color: var(--accent);
  }

  /* On front-page transparent variant, overlay menu is light-bg too (mobile UX consistency) */
  .site-nav--transparent .nav-menu {
    background: var(--bg);
  }
}

/* Body scroll-lock when fullscreen menu is open */
body.menu-open {
  overflow: hidden;
}

/* ── PAGE: 404 NOT FOUND ──
   Тибетский минимализм. Centerered viewport, символ бесконечного узла
   в золоте, поэтический заголовок, тихая ссылка обратно. 60%+ whitespace.
   См. docs/architecture_homepage.md §404. */
.page-404 {
  min-height: calc(100vh - 240px); /* viewport minus header + footer approx */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px var(--content-padding);
  max-width: var(--content-max);
  margin: 0 auto;
  text-align: center;
}

.page-404-inner {
  max-width: 480px;
}

.page-404-symbol {
  width: 120px;
  height: 120px;
  margin: 0 auto 48px;
  color: var(--gold);
  opacity: 0.75;
}
@media (min-width: 768px) {
  .page-404-symbol { width: 160px; height: 160px; }
}
.page-404-symbol svg {
  width: 100%;
  height: 100%;
  display: block;
}

.page-404-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 16px;
  letter-spacing: -0.005em;
}
@media (min-width: 768px) {
  .page-404-title { font-size: 2.5rem; }
}

.page-404-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 36px;
}

.page-404-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: gap 0.2s ease;
}
.page-404-link:hover {
  gap: 12px;
}
.page-404-link .arrow { transition: transform 0.2s ease; }
.page-404-link:hover .arrow { transform: translateX(3px); }

/* ── COOKIE CONSENT BANNER ──
   Появляется снизу при первом визите если localStorage не имеет ответа.
   Сдержанные цвета — не пугать пользователя. Accept primary, Decline equal weight
   (GDPR требование — отказ должен быть НЕ менее заметен чем согласие). */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 300; /* above sticky nav (100), above mobile menu (200) */
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(42, 48, 56, 0.12);
  padding: 20px 24px;
  max-width: 560px;
  margin: 0 auto;
  font-family: var(--font-body);
}
.cookie-banner[hidden] { display: none; }

.cookie-banner-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  margin: 0 0 8px;
}
.cookie-banner-text {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 8px;
}
.cookie-banner-policy {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.cookie-banner-policy a,
.cookie-banner-text a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.cookie-banner-policy a:hover,
.cookie-banner-text a:hover { color: var(--text); }

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner-btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--card-border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  min-height: 40px; /* a11y tap target */
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
/* Accept и Decline — visually equal weight (GDPR-strict, no dark patterns).
   Обе outline; hover различается только border-цветом для очевидности.
   См. panel review 2026-05-13-cookie-banner-panel.md §3. */
.cookie-banner-btn--accept {
  border-color: var(--accent);
  color: var(--accent);
}
.cookie-banner-btn--accept:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.cookie-banner-btn--decline:hover {
  border-color: var(--text-muted);
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .cookie-banner {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 18px 18px 16px;
  }
}

/* ═══════════════════════════════════════════════
   HOMEPAGE v3 — "Два крыла, тихий hero" (2026-05-19)
   Hero без фото и без CTA. Двухколоночный grid из v2 оставлен
   ниже на случай возврата к фото-hero после Тибета 09.2026.
   ═══════════════════════════════════════════════ */

/* ── HERO v3 overrides ─────────────────────────── */
.hero--v3 {
  display: block;
  min-height: auto;
  background: var(--bg);
  padding: 96px 0 64px;
}
.hero--v3 .hero-main {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  grid-column: auto;
  grid-row: auto;
}
@media (min-width: 900px) {
  .hero--v3 {
    padding: 140px 0 96px;
  }
  .hero--v3 .hero-main {
    padding: 0 var(--content-padding);
  }
}
.hero--v3 .hero-title {
  max-width: 820px;
}
.hero--v3 .hero-byline {
  margin-bottom: 0;
}

/* ── HERO v2 (legacy, для возможного возврата) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--bg);
  overflow: hidden;
}
@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr minmax(320px, 40vw);
    grid-template-rows: auto 1fr auto;
    min-height: 780px;
    max-height: 92vh;
  }
}

.hero-photo-col {
  grid-column: 1 / -1;
  grid-row: 2 / 3;
  height: 260px;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  position: relative;
  order: -1;
}
.hero-photo-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, transparent 60%, var(--bg) 100%);
  pointer-events: none;
}
@media (min-width: 900px) {
  .hero-photo-col {
    grid-column: 2;
    grid-row: 1 / -1;
    height: auto;
    min-height: 780px;
    max-height: 92vh;
    order: 0;
  }
  .hero-photo-col::after {
    background:
      linear-gradient(to right, var(--bg) 0%, transparent 14%, transparent 100%),
      linear-gradient(to bottom, transparent 65%, rgba(244, 247, 249, 0.3) 100%);
  }
}

.hero-main {
  grid-column: 1 / -1;
  grid-row: 3 / 4;
  padding: 36px var(--content-padding) 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .hero-main {
    grid-column: 1;
    grid-row: 1 / -1;
    padding: 120px 56px 80px var(--content-padding);
  }
}

.hero-kicker {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-light);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-kicker::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--highlight);
}
@media (min-width: 768px) {
  .hero-kicker { font-size: 0.75rem; margin-bottom: 36px; }
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 32px;
  font-size: clamp(2.25rem, 6.5vw, 4.25rem);
}
@media (min-width: 900px) {
  .hero-title {
    font-size: clamp(3rem, 5vw, 4.75rem);
    margin-bottom: 44px;
  }
}
.hero-title .line {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
  flex-wrap: wrap;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero-title em.gold { color: var(--highlight); }
.hero-title .reg {
  font-style: normal;
  font-weight: 400;
  color: var(--text);
}

.hero-byline {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 28px;
  border-left: 1px solid rgba(184, 150, 62, 0.3);
  padding: 2px 0 2px 16px;
}
.hero-byline .name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: 0.01em;
}
.hero-byline .role {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 420px;
}

.hero-tagline-short {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 32px;
}
.hero-tagline-short .sep {
  color: var(--highlight);
  margin: 0 10px;
  opacity: 0.6;
}

.hero-cta-row {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-cta-primary {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid currentColor;
}
.hero-cta-primary .arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.hero-cta-primary:hover { opacity: 1; }
.hero-cta-primary:hover .arrow { transform: translateX(4px); }
.hero-cta-secondary {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 10px 0;
}
.hero-cta-secondary:hover { color: var(--accent); opacity: 1; }

/* ── TOUR BANNER ─────────────────────────────── */
.tour-banner {
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 18px var(--content-padding);
}
.tour-banner-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}
@media (max-width: 720px) {
  .tour-banner-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: left;
  }
}
.tour-banner-thumb {
  width: 88px;
  height: 56px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .tour-banner-thumb { width: 100%; height: 120px; }
}
.tour-banner-body { min-width: 0; }
.tour-banner-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--highlight);
  margin-bottom: 4px;
}
.tour-banner-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--text);
}
.tour-banner-title em {
  font-style: italic;
  color: var(--accent);
}
.tour-banner-meta {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.tour-banner-meta .dot { color: var(--accent-light); margin: 0 6px; }
.tour-banner-cta {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--accent);
  white-space: nowrap;
  padding: 8px 0;
}

/* ── SECTION DIVIDER (lotus) ─────────────────── */
.section-divider {
  display: flex;
  justify-content: center;
  padding: 56px 0;
  max-width: var(--content-max);
  margin: 0 auto;
}
.section-divider img,
.section-divider svg {
  width: 120px;
  height: auto;
  opacity: 0.7;
}
@media (min-width: 768px) {
  .section-divider { padding: 80px 0; }
  .section-divider img,
  .section-divider svg { width: 160px; }
}

/* ── PATHS ───────────────────────────────────── */
.paths-section {
  padding: 48px var(--content-padding) 72px;
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}
@media (min-width: 768px) {
  .paths-section { padding: 88px var(--content-padding) 112px; }
}
.paths-header {
  max-width: var(--content-max);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 900px) {
  .paths-header {
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: baseline;
    margin-bottom: 64px;
  }
}
.paths-kicker {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 14px;
}
.paths-kicker::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--highlight);
}
.paths-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 0;
}
.paths-title em {
  font-style: italic;
  color: var(--accent);
}

.paths-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .paths-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
  }
}

/* Paths — Variant B "Colored zones" + baseline icons (Vladimir pick 2026-05-20).
 * Каждая карточка несёт свой brand-tint gradient — energy приходит из фона,
 * иконки остаются медитативно-тихими (baseline thin-line SVG).
 * Symmetry: все 3 карточки структурно одинаковы (не «тихая» вариация). */
.path-item {
  position: relative;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.3s;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.path-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(42, 48, 56, 0.06);
}

/* Per-card colored zones */
.path-item--practice {
  background: linear-gradient(155deg, rgba(26, 123, 123, 0.10) 0%, rgba(26, 123, 123, 0.04) 100%);
  border-color: rgba(26, 123, 123, 0.18);
}
.path-item--practice:hover { border-color: rgba(26, 123, 123, 0.36); }

.path-item--travel {
  background: linear-gradient(155deg, rgba(184, 150, 62, 0.13) 0%, rgba(184, 150, 62, 0.04) 100%);
  border-color: rgba(184, 150, 62, 0.20);
}
.path-item--travel:hover { border-color: rgba(184, 150, 62, 0.42); }

.path-item--coaching {
  background: linear-gradient(155deg, rgba(132, 148, 160, 0.14) 0%, rgba(132, 148, 160, 0.04) 100%);
  border-color: rgba(132, 148, 160, 0.20);
}
.path-item--coaching:hover { border-color: rgba(132, 148, 160, 0.42); }

.path-icon {
  width: 36px; height: 36px;
  margin-bottom: 18px;
  opacity: 0.9;
}
.path-icon svg { width: 100%; height: 100%; }

.path-item h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--text);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.path-item:hover h3 { color: var(--accent); }

.path-item .path-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 34ch;
}

.path-arrow {
  margin-top: auto;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s;
}
.path-item:hover .path-arrow { transform: translateX(4px); }

/* ── PRESENCE ────────────────────────────────── */
.presence-section {
  padding: 48px var(--content-padding) 72px;
  max-width: var(--content-max);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .presence-section { padding: 88px var(--content-padding) 112px; }
}
.presence-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 40px;
}
@media (min-width: 900px) {
  .presence-header {
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: baseline;
    margin-bottom: 56px;
  }
}
.presence-kicker {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 14px;
}
.presence-kicker::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--highlight);
}
.presence-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 0;
}
.presence-title em {
  font-style: italic;
  color: var(--accent);
}

.presence-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .presence-body {
    grid-template-columns: 1.3fr 1fr;
    gap: 72px;
    align-items: start;
  }
}

.video-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background: var(--slate);
  box-shadow: 0 6px 30px rgba(42, 48, 56, 0.1);
  cursor: pointer;
  display: block;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.video-thumb:hover img { transform: scale(1.03); opacity: 1; }
.video-thumb:hover { opacity: 1; }
.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 48, 56, 0.55) 0%, transparent 50%);
  pointer-events: none;
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  padding-left: 5px;
  transition: background 0.3s, transform 0.3s;
  z-index: 2;
}
.video-thumb:hover .play-btn {
  background: rgba(255, 255, 255, 0.28);
  transform: translate(-50%, -50%) scale(1.06);
}
.video-caption {
  position: absolute;
  left: 20px; right: 20px; bottom: 16px;
  z-index: 2;
  color: #fff;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.3;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.presence-content { min-width: 0; }
.presence-heading {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.35;
}
.presence-heading strong {
  font-style: normal;
  font-weight: 700;
  color: var(--accent);
}

/* Stats — inline (без social-proof панели) */
.presence-stats {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  padding: 16px 0;
  border-top: 1px solid rgba(42, 48, 56, 0.08);
  border-bottom: 1px solid rgba(42, 48, 56, 0.08);
}

.presence-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 42ch;
}

.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 8px 16px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  transition: all 0.2s;
  text-decoration: none;
}
.social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(26, 123, 123, 0.04);
  opacity: 1;
}
.social-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── SUBSCRIBE ──────────────────────────────── */
.subscribe-section {
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  padding: 72px var(--content-padding) 88px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .subscribe-section { padding: 112px var(--content-padding) 128px; }
}
.subscribe-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.subscribe-ornament {
  display: block;
  width: 48px;
  height: auto;
  opacity: 0.5;
  margin: 0 auto 28px;
}
.subscribe-kicker {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-light);
  margin-bottom: 20px;
}
.subscribe-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.subscribe-title em {
  font-style: italic;
  color: var(--accent);
}
.subscribe-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 48ch;
  margin: 0 auto 36px;
}
.subscribe-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 20px;
  align-items: stretch;
}
@media (max-width: 520px) {
  .subscribe-form { flex-direction: column; }
}
.subscribe-input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border: 1px solid rgba(42, 48, 56, 0.14);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s;
}
.subscribe-input:focus {
  outline: none;
  border-color: var(--accent);
}
.subscribe-input::placeholder { color: var(--text-light); }
.subscribe-btn {
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
}
.subscribe-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.subscribe-btn:disabled { opacity: 0.6; cursor: wait; }
.subscribe-btn--done { background: var(--highlight); }
.subscribe-promise {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--text-light);
  font-style: italic;
}
.subscribe-promise .dot { color: var(--highlight); margin: 0 8px; }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 12px var(--content-padding) 0;
  font-size: 0.733rem;
  color: var(--text-light);
}
@media (min-width: 768px) {
  .breadcrumb { padding-top: var(--space-md); font-size: 0.75rem; }
}
.breadcrumb a {
  color: var(--text-light);
}
.breadcrumb .current {
  color: var(--text);
}

/* ── PAGE HEADER ── */
.page-header {
  padding: var(--space-xl) var(--content-padding) 28px;
}
@media (min-width: 768px) {
  .page-header { padding-top: 48px; padding-bottom: 36px; }
}

.page-header h1 {
  margin-bottom: 10px;
}

.page-header .lead {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 440px;
}
@media (min-width: 768px) {
  .page-header .lead { max-width: 520px; }
}

/* ── SECTION LABEL ── */
.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.733rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  padding: 0 var(--content-padding);
}
@media (min-width: 768px) {
  .section-label { font-size: 0.75rem; }
}

/* ── ENTRY CARDS ── */
.entries {
  padding: 0 var(--content-padding) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .entries {
    flex-direction: row;
    gap: 20px;
    padding-bottom: 28px;
  }
}

.entry-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ── TAGS ── */
.tag {
  display: inline-block;
  font-size: 0.666rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
  align-self: flex-start;
}
.tag--free {
  background: rgba(74, 171, 181, 0.1);
  color: var(--accent);
}
.tag--live {
  background: rgba(42, 48, 56, 0.06);
  color: var(--text);
}
.tag--deep {
  background: rgba(184, 150, 62, 0.12);
  color: #96790E;
}

/* ── CARD CONTENT ── */
.entry-card h3 {
  margin-bottom: 6px;
}

.card-desc {
  font-weight: 300;
  font-size: 0.866rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.card-cred {
  font-weight: 300;
  font-size: 0.733rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 10px;
}

.card-meta {
  font-size: 0.733rem;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.card-meta .dot { color: var(--accent-light); }

.card-price {
  font-weight: 500;
  font-size: 0.933rem;
  color: var(--text);
  margin-bottom: 10px;
}
.card-price .muted {
  color: var(--text-light);
  font-weight: 300;
  font-size: 0.8rem;
}

.card-link {
  font-weight: 400;
  font-size: 0.866rem;
  color: var(--accent);
  text-decoration: none;
}

.card-cta-bottom {
  margin-top: auto;
  padding-top: 6px;
}

/* ── ENTRY ADDON (Marathon inside AAM) ── */
.entry-addon {
  margin-top: auto;
  background: rgba(74, 171, 181, 0.04);
  margin: var(--space-md) -20px -20px;
  padding: 14px 20px 16px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.addon-label {
  font-weight: 500;
  font-size: 0.6rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.addon-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.866rem;
  color: var(--text);
  margin-bottom: 3px;
}

.addon-desc {
  font-weight: 300;
  font-size: 0.733rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.addon-price {
  font-size: 0.733rem;
  color: var(--text-light);
}
.addon-price strong {
  color: var(--text);
  font-weight: 500;
}

/* ── HERO CARD (Meditation 1.0) ── */
.hero-card {
  margin: 0 var(--content-padding) var(--space-lg);
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 28px var(--space-lg);
  border: 2px solid var(--hero-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
@media (min-width: 768px) {
  .hero-card {
    padding: 36px 40px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }
}

.hero-card-content {
  flex: 1;
  min-width: 0;
}

.hero-card-stats {
  flex-shrink: 0;
}

.hero-card h3 {
  font-size: 1.6rem;
  margin-bottom: var(--space-sm);
}
@media (min-width: 768px) {
  .hero-card h3 { font-size: 1.875rem; }
}

.hero-card .card-desc {
  font-size: 1rem;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: var(--space-md);
}

.stat-number {
  font-weight: 500;
  font-size: 1.466rem;
  color: var(--text);
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .stat-number { font-size: 1.625rem; }
}

.stat-label {
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.hero-card .card-price {
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

.hero-card .card-note {
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: var(--space-md);
}

/* ── BOTTOM CTA ── */
.bottom-cta {
  margin: 0 var(--content-padding) var(--space-lg);
  padding: var(--space-lg) 20px;
  background: rgba(74, 171, 181, 0.05);
  border-radius: var(--radius-lg);
}
@media (min-width: 768px) {
  .bottom-cta { padding: 28px 36px; margin-bottom: var(--space-xl); }
}

.bottom-cta h3 {
  font-weight: 400;
  font-size: 1.133rem;
  margin-bottom: 6px;
}

.bottom-cta p {
  font-weight: 300;
  font-size: 0.866rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

/* ── FOOTER (Footer 3.2) ──
   Минималистский typographic footer: 2 типографических блока (каналы +
   контакты) + thin legal strip. Один характер — «где меня найти + legal».
   Не дублирует nav, не имитирует sitemap. См. strategic-roadmap §10. */
.site-footer {
  padding: 80px var(--content-padding) 40px;
  border-top: 1px solid rgba(42, 48, 56, 0.06);
  max-width: var(--content-max);
  margin: 0 auto;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 56px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: center;
    gap: 96px;
    text-align: left;
  }
}

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

.footer-heading {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem; /* 12px — small label */
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0;
}

.footer-channels,
.footer-contacts {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .footer-channels,
  .footer-contacts {
    justify-content: flex-start;
  }
}

.footer-channels a,
.footer-contacts a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-channels a:hover,
.footer-contacts a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.footer-legal {
  padding-top: 28px;
  border-top: 1px solid rgba(42, 48, 56, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem; /* 13px — discreet but readable */
  color: var(--text-muted);
}

.footer-requisites {
  margin: 0;
}

.footer-bottom-links {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-bottom-links a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.footer-bottom-links .copyright,
.footer-requisites .dot,
.footer-channels .dot,
.footer-contacts .dot,
.footer-bottom-links .dot {
  color: var(--text-light);
  user-select: none;
}

/* ── PAGE BOUNDS (centering wrapper, no padding) ── */
.page-bounds {
  max-width: var(--content-max);
  margin: 0 auto;
}

/* Self-centering for homepage sections (full-width parent) */
.hero-text,
.paths-section,
.presence {
  max-width: var(--content-max);
}
.presence {
  margin-left: auto;
  margin-right: auto;
}

/* ── PAGE CONTENT (generic WP content) ── */
.page-content {
  font-size: 1rem;
  line-height: 1.8;
}

.page-content p {
  margin-bottom: 1.5em;
}

.page-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  margin-top: 2em;
  margin-bottom: 0.6em;
}

.page-content h3 {
  margin-top: 1.6em;
  margin-bottom: 0.4em;
}

.page-content ul,
.page-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}

.page-content li {
  margin-bottom: 0.4em;
}

.page-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-content a:hover {
  opacity: 0.8;
}

.page-content img {
  border-radius: var(--radius-md);
  margin: 1.5em 0;
}

.page-content blockquote {
  border-left: 3px solid var(--accent-light);
  padding-left: var(--space-md);
  color: var(--text-muted);
  font-style: italic;
  margin: 1.5em 0;
}

/* ── NOTIFY FORM (closed enrollment state) ── */
.notify-form {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.notify-input {
  flex: 1;
  min-width: 0;
  padding: 7px 12px;
  border: 1px solid rgba(42, 48, 56, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-family: var(--font-body);
  background: var(--card-bg);
  color: var(--text);
}
.notify-input:focus {
  outline: none;
  border-color: var(--accent);
}

.notify-btn {
  padding: 7px 14px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  font-size: 0.733rem;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.notify-btn:hover {
  opacity: 0.85;
}

/* ── POST CARD (blog index) ── */
.post-card {
  padding-bottom: var(--space-lg);
  margin-bottom: var(--space-lg);
  border-bottom: 1px solid var(--card-border);
}
.post-card:last-child {
  border-bottom: none;
}
.post-card h3 {
  margin-bottom: 4px;
}
.post-card h3 a {
  color: var(--text);
  text-decoration: none;
}
.post-card h3 a:hover {
  color: var(--accent);
}

/* ── UTILITY ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ============================================================
   COURSE LANDING — /courses/meditation/ (Медитация 1.0)
   Evergreen lander. GetCourse widgets load on-demand in popups.
   Architecture: hero → narrative → steps → tariffs → teacher → faq → cta
   ============================================================ */

/* ── TOKENS (extension) ── */
:root {
  --course-container: 880px;       /* comfortable reading width */
  --course-container-wide: 1120px; /* for hero + tariffs */
  --course-rhythm: 96px;           /* vertical rhythm between sections */
  --course-rhythm-sm: 56px;
}
@media (max-width: 768px) {
  :root {
    --course-rhythm: 56px;
    --course-rhythm-sm: 40px;
  }
}

/* ── PAGE WRAPPER ── */
.course-page {
  display: block;
  color: var(--text);
  font-family: var(--font-body);
}

.course-breadcrumb {
  max-width: var(--course-container-wide);
  margin: 0 auto;
  padding: var(--space-md) var(--content-padding) 0;
  font-size: 0.733rem;
  color: var(--text-light);
}
@media (min-width: 768px) {
  .course-breadcrumb { padding-top: var(--space-lg); font-size: 0.75rem; }
}
.course-breadcrumb a { color: var(--text-light); }
.course-breadcrumb .current { color: var(--text); }

/* ── SECTION (generic) ── */
.course-section {
  max-width: var(--course-container);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  margin-bottom: var(--course-rhythm);
}

.course-section--narrow { max-width: 720px; }
.course-section--tariffs { max-width: var(--course-container-wide); }
.course-section--cta { max-width: var(--course-container-wide); }

.course-section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 28px;
  position: relative;
  padding-left: 36px;
}
.course-section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.course-section-lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: var(--space-xl);
}
@media (min-width: 768px) {
  .course-section-lead { font-size: 1.066rem; }
}

/* ═══════════ 1. HERO ═══════════ */
.course-hero {
  max-width: var(--course-container-wide);
  margin: 0 auto;
  padding: 48px var(--content-padding) var(--course-rhythm);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .course-hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 80px;
    padding-top: 72px;
  }
}
@media (min-width: 1200px) {
  .course-hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    padding-top: 96px;
  }
}

/* Typographic hero — без личного фото, с лотос-divider'ом.
   Используется на продуктовых страницах серии (Медитация 1.0 → 2.0 → 3.0).
   См. design-discipline-checklist v1.2 Red flags — лицо Vladimir'а
   не в hero продуктов. */
.course-hero--typographic {
  grid-template-columns: 1fr;
  max-width: 920px;
}
@media (min-width: 900px) {
  .course-hero--typographic {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}
@media (min-width: 1200px) {
  .course-hero--typographic {
    grid-template-columns: 1fr;
  }
}
.course-hero-ornament {
  margin-top: 8px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  opacity: 0.5;
}
.course-hero-ornament svg {
  width: 220px;
  height: auto;
  color: var(--accent);
}

.course-hero-text { min-width: 0; }

.course-hero-kicker {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
}

.course-hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .course-hero-title { font-size: 4rem; }
}
@media (min-width: 1200px) {
  .course-hero-title { font-size: 4.75rem; }
}

.course-hero-version {
  color: var(--highlight);
  font-weight: 400;
  font-style: italic;
}

.course-hero-tagline {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--accent);
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .course-hero-tagline { font-size: 1.6rem; margin-bottom: 36px; }
}

.course-hero-lead {
  font-weight: 300;
  font-size: 1.066rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .course-hero-lead { font-size: 1.133rem; }
}

.course-hero-meta {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .course-hero-meta { margin-bottom: 40px; }
}

.course-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.933rem;
  color: var(--accent);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--accent);
  transition: gap 0.25s ease, opacity 0.2s ease;
}
.course-hero-cta .arrow { transition: transform 0.25s ease; }
.course-hero-cta:hover { gap: 14px; opacity: 1; }
.course-hero-cta:hover .arrow { transform: translateY(3px); }

.course-hero-media {
  min-width: 0;
}

.course-hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, rgba(74,171,181,0.08) 0%, rgba(26,123,123,0.14) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid rgba(184, 150, 62, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.course-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
@media (min-width: 900px) {
  .course-hero-photo { aspect-ratio: 3 / 4; }
}

.photo-placeholder {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.5;
}

/* ═══════════ 2. PROSE (narrative) ═══════════ */
.course-prose { max-width: 640px; }
.course-prose p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.066rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}
@media (min-width: 768px) {
  .course-prose p { font-size: 1.133rem; }
}

.course-prose-emphasis {
  font-weight: 400 !important;
  color: var(--text) !important;
  font-style: italic;
}

/* ═══════════ 3. STEPS (программа как восхождение) ═══════════ */
.course-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  position: relative;
}

.course-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--card-border);
}
.course-step:first-child { border-top: none; padding-top: 0; }
.course-step:last-child { padding-bottom: 0; }

/* Asymmetric step shift (desktop only) */
@media (min-width: 900px) {
  .course-step--01 { margin-left: 0; }
  .course-step--02 { margin-left: 48px; }
  .course-step--03 { margin-left: 96px; }
  .course-step { gap: 40px; padding: 36px 0; }
}

.course-step-num {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--highlight);
  line-height: 1;
  font-feature-settings: "lnum";
  padding-top: 4px;
}
@media (min-width: 768px) {
  .course-step-num { font-size: 1.875rem; }
}

.course-step-body { min-width: 0; }

.course-step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.266rem;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .course-step-title { font-size: 1.466rem; }
}

.course-step-desc {
  font-weight: 300;
  font-size: 0.966rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 12px;
  max-width: 640px;
}
@media (min-width: 768px) {
  .course-step-desc { font-size: 1rem; }
}

.course-step-meta {
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: baseline;
}
.course-step-meta .sep { color: var(--accent-light); }

.course-step-bonus {
  margin-top: 8px;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--highlight);
  font-style: italic;
  letter-spacing: 0.01em;
}

/* ═══════════ 4. TARIFFS (2×2 grid + CTA button) ═══════════ */
.course-section--tariffs { scroll-margin-top: 24px; }

.course-tariffs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) {
  .course-tariffs {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1100px) {
  .course-tariffs { gap: 24px; }
}

.course-tariff {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
@media (min-width: 768px) {
  .course-tariff { padding: 36px 32px 32px; }
}

.course-tariff:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(42, 48, 56, 0.06);
}

.course-tariff--featured {
  border-color: rgba(26, 123, 123, 0.3);
  box-shadow: 0 4px 24px rgba(26, 123, 123, 0.08);
}

.course-tariff-badge {
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.633rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 3px;
}
@media (min-width: 768px) {
  .course-tariff-badge { left: 32px; }
}

.course-tariff-head { margin-bottom: 20px; }

.course-tariff-kind {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.666rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.course-tariff-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.333rem;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .course-tariff-title { font-size: 1.466rem; }
}

.course-tariff-sub {
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

.course-tariff-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.course-tariff-features li {
  position: relative;
  padding-left: 20px;
  font-weight: 300;
  font-size: 0.866rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.course-tariff-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 1px;
  background: var(--accent-light);
}

.course-tariff-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.price-old {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: line-through;
  text-decoration-color: rgba(132, 148, 160, 0.5);
}

.price-now {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .price-now { font-size: 1.75rem; }
}

/* Tariff CTA button (opens popup) */
.course-tariff-cta {
  margin-top: auto;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.933rem;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 13px 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s ease, color 0.2s ease, gap 0.2s ease;
}
.course-tariff-cta .arrow { transition: transform 0.2s ease; }
.course-tariff-cta:hover {
  background: var(--accent);
  color: #fff;
  gap: 14px;
}
.course-tariff-cta:hover .arrow { transform: translateX(3px); }
.course-tariff-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.course-tariff-cta--primary {
  background: var(--accent);
  color: #fff;
}
.course-tariff-cta--primary:hover {
  background: var(--slate);
  border-color: var(--slate);
}

.course-tariffs-note {
  margin-top: var(--space-xl);
  font-weight: 300;
  font-size: 0.866rem;
  color: var(--text-light);
  font-style: italic;
  max-width: 560px;
}

/* ═══════════ 5. TEACHER ═══════════ */
.course-teacher {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
@media (min-width: 768px) {
  .course-teacher {
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
    gap: 48px;
  }
}
@media (min-width: 1024px) {
  .course-teacher {
    grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
    gap: 64px;
  }
}

.course-teacher-portrait {
  width: 180px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, rgba(74,171,181,0.08) 0%, rgba(26,123,123,0.14) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid rgba(184, 150, 62, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.course-teacher-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
@media (min-width: 768px) {
  .course-teacher-portrait { width: 100%; }
}

.course-teacher-body { min-width: 0; }

.course-teacher-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.466rem;
  color: var(--text);
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .course-teacher-name { font-size: 1.75rem; }
}

.course-teacher-role {
  font-weight: 300;
  font-size: 0.966rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 620px;
}

.course-teacher-quote {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 1.133rem;
  line-height: 1.5;
  color: var(--accent);
  padding-left: 20px;
  border-left: 2px solid var(--highlight);
  margin: 0 0 28px 0;
  max-width: 560px;
}
@media (min-width: 768px) {
  .course-teacher-quote { font-size: 1.266rem; padding-left: 24px; }
}

.course-teacher-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.course-teacher-facts li {
  position: relative;
  padding-left: 20px;
  font-weight: 300;
  font-size: 0.866rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.course-teacher-facts li::before {
  content: '·';
  position: absolute;
  left: 6px;
  top: -2px;
  color: var(--highlight);
  font-weight: 700;
  font-size: 1.4rem;
}

.course-teacher-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.866rem;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.course-teacher-link .arrow { transition: transform 0.2s ease; }
.course-teacher-link:hover { gap: 12px; }
.course-teacher-link:hover .arrow { transform: translateX(3px); }

/* ═══════════ 6. FAQ (no borders, air rhythm) ═══════════ */
.course-faq {
  max-width: 720px;
  display: flex;
  flex-direction: column;
}

.course-faq-item {
  padding: 0;
}
.course-faq-item + .course-faq-item {
  margin-top: 4px;
}

.course-faq-q {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.066rem;
  line-height: 1.4;
  color: var(--text);
  cursor: pointer;
  padding: 18px 44px 18px 0;
  list-style: none;
  position: relative;
  transition: color 0.2s ease;
}
@media (min-width: 768px) {
  .course-faq-q { font-size: 1.133rem; padding: 22px 48px 22px 0; }
}

.course-faq-q::-webkit-details-marker { display: none; }
.course-faq-q::marker { display: none; content: ''; }

.course-faq-q::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.466rem;
  color: var(--highlight);
  transition: transform 0.25s ease, content 0.2s ease;
  line-height: 1;
}
.course-faq-item[open] .course-faq-q::after {
  content: '−';
}

.course-faq-q:hover { color: var(--accent); }

.course-faq-a {
  padding: 0 40px 24px 0;
  font-weight: 300;
  font-size: 0.966rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 640px;
}
@media (min-width: 768px) {
  .course-faq-a { font-size: 1rem; padding-bottom: 28px; }
}

/* ═══════════ 7. BOTTOM CTA (тихий) ═══════════ */
.course-bottom-cta {
  max-width: var(--course-container-wide);
  padding: 48px 32px;
  background: linear-gradient(135deg, rgba(74,171,181,0.05) 0%, rgba(26,123,123,0.07) 100%);
  border-radius: var(--radius-lg);
  text-align: center;
}
@media (min-width: 768px) {
  .course-bottom-cta { padding: 64px 48px; }
}

.course-bottom-cta h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.333rem;
  color: var(--text);
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .course-bottom-cta h3 { font-size: 1.6rem; }
}

.course-bottom-cta p {
  font-weight: 300;
  font-size: 0.966rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 auto 20px;
  max-width: 460px;
}

.course-bottom-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.933rem;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.course-bottom-cta-link .arrow { transition: transform 0.2s ease; }
.course-bottom-cta-link:hover { gap: 14px; }
.course-bottom-cta-link:hover .arrow { transform: translateX(3px); }

/* dual bottom-CTA removed 2026-05-08 — Vladimir decision after v3 review:
   cross-sell на tripwire оставлен как primary value-add, Telegram-блок
   убран как избыточный (Telegram доступен через top-strip, nav, footer
   и @tarabrinom). Один блок = один фокус. */

/* ═══════════ GETCOURSE POPUPS ═══════════ */
.gc-popups {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

.gc-popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
}
@media (min-width: 768px) {
  .gc-popup { padding: 40px; }
}

.gc-popup.is-open {
  display: flex;
  pointer-events: auto;
  animation: gcFadeIn 0.25s ease forwards;
}

@keyframes gcFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gc-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 48, 56, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.gc-popup-card {
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  animation: gcSlideUp 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@media (min-width: 768px) {
  .gc-popup-card { max-height: calc(100vh - 80px); }
}

@keyframes gcSlideUp {
  from { transform: translateY(16px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.gc-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  border-radius: 50%;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 2;
}
.gc-popup-close:hover {
  background: rgba(42, 48, 56, 0.06);
  color: var(--text);
}

.gc-popup-head {
  padding: 32px 56px 20px 32px;
  border-bottom: 1px solid var(--card-border);
}
@media (min-width: 768px) {
  .gc-popup-head { padding: 40px 64px 24px 40px; }
}

.gc-popup-kicker {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.666rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.gc-popup-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.266rem;
  line-height: 1.3;
  color: var(--text);
  margin: 0;
}
@media (min-width: 768px) {
  .gc-popup-title { font-size: 1.4rem; }
}

.gc-popup-body {
  padding: 0;
}

/* Iframe slot — GC скрипт вставит iframe внутрь */
.gc-popup-slot { display: block; }
.gc-popup-slot iframe {
  display: block;
  width: 100% !important;
  border: none !important;
  background: transparent;
  min-height: 560px;
}

/* Body lock when popup open */
body.gc-popup-lock {
  overflow: hidden;
  touch-action: none;
}

/* ── Mobile: bottom sheet feel ── */
@media (max-width: 640px) {
  .gc-popup { padding: 0; align-items: flex-end; }
  .gc-popup-card {
    max-width: 100%;
    max-height: 92vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  @keyframes gcSlideUp {
    from { transform: translateY(100%); opacity: 0.8; }
    to { transform: translateY(0); opacity: 1; }
  }
}

/* ═══════════════════════════════════════════════
   TRIPWIRE LANDING /try/ — "Просто попробуй"
   ═══════════════════════════════════════════════ */

/* ── Days flow (4 дня + бонус) ── */
.course-section--days {
  max-width: var(--course-container);
}

.course-days {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  counter-reset: day;
}

.course-day {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: baseline;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--card-border);
}

.course-day:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.course-day-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding-top: 2px;
}

.course-day-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.course-day-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--slate);
  margin: 0;
  letter-spacing: -0.005em;
}

.course-day-desc {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--mist);
  margin: 0;
  max-width: 60ch;
}

.course-day-meta {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--rock);
  margin: 6px 0 0;
  font-feature-settings: "tnum";
}

/* Bonus day — gold accent on everything */
.course-day--bonus .course-day-num {
  color: var(--gold);
}

.course-day--bonus .course-day-title {
  color: var(--turquoise);
}

/* Mobile: stack num + body */
@media (max-width: 640px) {
  .course-day {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .course-day-num {
    font-size: 1.125rem;
    padding-top: 0;
  }
  .course-day-title {
    font-size: 1.375rem;
  }
}

/* ── Single tariff variant ── */
.course-section--single-tariff {
  max-width: var(--course-container);
}

.course-tariffs--single {
  display: flex;
  justify-content: center;
  grid-template-columns: unset;
}

.course-tariff--single {
  max-width: 480px;
  width: 100%;
  padding: 36px 32px 32px;
}

.course-tariff--single .course-tariff-title {
  font-size: 2rem;
}

.course-tariff--single .course-tariff-price {
  margin: 28px 0 24px;
}

.course-tariff--single .course-tariff-price .price-now {
  font-size: 2.25rem;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .course-tariff--single {
    padding: 28px 20px 24px;
  }
  .course-tariff--single .course-tariff-title {
    font-size: 1.75rem;
  }
  .course-tariff--single .course-tariff-price .price-now {
    font-size: 2rem;
  }
}

/* ── Tripwire body adjustments (shorter hero title, less dense) ── */
.course-page--tripwire .course-hero-title {
  line-height: 1.02;
}

.course-page--tripwire .course-hero-title br {
  display: inline;
}

@media (max-width: 640px) {
  .course-page--tripwire .course-hero-title {
    font-size: 3rem;
  }
}

/* ═══════════════════════════════════════════════
   AAM LANDING /courses/aam/ — "Anywhere Anytime Meditation"
   Concept: «Дыхание» — 6 sections, maximum air.
   ═══════════════════════════════════════════════ */

/* ── 1. HERO ── */
.aam-hero {
  max-width: var(--course-container-wide);
  margin: 0 auto;
  padding: 48px var(--content-padding) var(--course-rhythm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.aam-hero-kicker {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: var(--space-lg);
}

.aam-hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.08;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}
.aam-hero-title span {
  display: block;
}
@media (min-width: 640px) {
  .aam-hero-title {
    font-size: 5rem;
  }
}
@media (min-width: 900px) {
  .aam-hero-title {
    font-size: 6rem;
  }
}

.aam-hero-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  letter-spacing: 0.01em;
}
@media (min-width: 640px) {
  .aam-hero-subtitle {
    font-size: 1.375rem;
  }
}

.aam-hero-lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: var(--space-lg);
}
@media (min-width: 640px) {
  .aam-hero-lead {
    font-size: 1.133rem;
  }
}

.aam-hero-meta {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-sm);
}

.aam-hero-dates {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--highlight);
  margin-bottom: var(--space-xl);
}

.aam-hero-ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

/* ── CTA button (reusable across AAM sections) ── */
.aam-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.aam-cta--primary {
  background: var(--accent);
  color: #fff;
}
.aam-cta--primary:hover {
  background: #166a6a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 123, 123, 0.2);
}
.aam-cta--primary .arrow {
  transition: transform 0.2s ease;
}
.aam-cta--primary:hover .arrow {
  transform: translateX(3px);
}
.aam-cta--large {
  font-size: 1rem;
  padding: 16px 40px;
}

/* ── 2. ОДНА МЫСЛЬ ── */
.aam-section {
  max-width: var(--course-container);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  margin-bottom: var(--course-rhythm);
}

.aam-section--idea {
  max-width: 760px;
}

.aam-section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 28px;
  position: relative;
  padding-left: 36px;
}
.aam-section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.aam-section-lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: var(--space-xl);
}

.aam-idea {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.aam-idea-line {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0;
}
@media (min-width: 640px) {
  .aam-idea-line {
    font-size: 1.133rem;
  }
}

.aam-idea-line--emphasis {
  color: var(--text);
  font-weight: 400;
  border-left: 2px solid var(--highlight);
  padding-left: 20px;
}

/* ── 3. ПУТЬ (5 недель) ── */
.aam-section--path {
  max-width: var(--course-container);
}

.aam-weeks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: aam-week;
}

.aam-week {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--card-border);
}
.aam-week:first-child {
  padding-top: 0;
}
.aam-week:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.aam-week-num {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--highlight);
  letter-spacing: 0.01em;
  padding-top: 2px;
}

.aam-week-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.aam-week-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.25;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.005em;
}
@media (min-width: 640px) {
  .aam-week-title {
    font-size: 1.5rem;
  }
}

.aam-week-note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* Mobile: stack */
@media (max-width: 640px) {
  .aam-week {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }
  .aam-week-num {
    font-size: 1.25rem;
  }
  .aam-week-title {
    font-size: 1.25rem;
  }
}

/* ── 4. УЧИТЕЛЯ (50/50) ── */
.aam-section--teachers {
  max-width: var(--course-container-wide);
}

.aam-teachers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .aam-teachers {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

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

.aam-teacher-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, rgba(26, 123, 123, 0.06), rgba(184, 150, 62, 0.06));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 8px;
  border: 2px solid rgba(184, 150, 62, 0.15);
}
.aam-teacher-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.aam-teacher-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.3;
  color: var(--text);
  margin: 0;
}
@media (min-width: 768px) {
  .aam-teacher-name {
    font-size: 1.5rem;
  }
}

.aam-teacher-role {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

.aam-teacher-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin: 8px 0;
  padding-left: 16px;
  border-left: 2px solid var(--highlight);
}
@media (min-width: 768px) {
  .aam-teacher-quote {
    font-size: 1.066rem;
  }
}

.aam-teacher-fact {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--text-light);
  margin: 0;
}

/* ── 5. ВЫБОР (Pay What You Can) ── */
.aam-section--choice {
  max-width: 720px;
  text-align: center;
}

.aam-choice-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
@media (min-width: 640px) {
  .aam-choice-heading {
    font-size: 2.25rem;
  }
}

.aam-choice-sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.aam-tiers {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.aam-tier {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--card-border);
}
.aam-tier:first-child {
  padding-top: 0;
}
.aam-tier:last-child {
  border-bottom: none;
}

.aam-tier-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--text);
  white-space: nowrap;
  min-width: 100px;
  text-align: right;
}

.aam-tier-sep {
  font-size: 0.75rem;
  color: var(--accent-light);
  flex-shrink: 0;
}

.aam-tier-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  color: var(--text-muted);
  text-align: left;
}

.aam-tier--recommended {
  position: relative;
}
.aam-tier--recommended .aam-tier-price {
  color: var(--accent);
}

/* Bonus tier */
.aam-tier-bonus {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  padding-top: 20px;
  margin-top: 4px;
  border-top: 1px solid var(--card-border);
}

.aam-tier-bonus-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--highlight);
  white-space: nowrap;
  min-width: 100px;
  text-align: right;
}

.aam-tier-bonus-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: left;
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .aam-tier {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .aam-tier-price {
    text-align: center;
    min-width: unset;
  }
  .aam-tier-desc {
    text-align: center;
  }
  .aam-tier-sep {
    display: none;
  }
  .aam-tier-bonus {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .aam-tier-bonus-price {
    text-align: center;
    min-width: unset;
  }
  .aam-tier-bonus-desc {
    text-align: center;
  }
}

/* ── 6. BOTTOM CTA ── */
.aam-section--cta-bottom {
  max-width: var(--course-container-wide);
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 123, 123, 0.03) 100%);
  border-radius: var(--radius-lg);
  padding: 48px var(--content-padding);
}
@media (min-width: 640px) {
  .aam-section--cta-bottom {
    padding: 64px 48px;
  }
}

.aam-cta-bottom-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 12px;
}
@media (min-width: 640px) {
  .aam-cta-bottom-title {
    font-size: 1.75rem;
  }
}

.aam-cta-bottom-lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 var(--space-xl);
}

/* ── WAITLIST POPUP (content inside gc-popup shell) ── */
.aam-waitlist-lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  padding: 24px 32px 0;
  margin: 0;
}
@media (min-width: 768px) {
  .aam-waitlist-lead {
    padding: 28px 40px 0;
  }
}

.aam-waitlist-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 32px 32px;
}
@media (min-width: 768px) {
  .aam-waitlist-actions {
    padding: 28px 40px 40px;
  }
}

.aam-waitlist-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.aam-waitlist-btn:hover {
  transform: translateY(-1px);
}

.aam-waitlist-btn--tg {
  background: rgba(26, 123, 123, 0.06);
  color: var(--accent);
}
.aam-waitlist-btn--tg:hover {
  background: rgba(26, 123, 123, 0.1);
}

.aam-waitlist-btn--email {
  background: rgba(184, 150, 62, 0.06);
  color: var(--highlight);
}
.aam-waitlist-btn--email:hover {
  background: rgba(184, 150, 62, 0.1);
}

.aam-waitlist-btn-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
}

.aam-waitlist-btn-handle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════
   NAVIGATION — mobile hamburger + dropdown + stacking
   ═══════════════════════════════════════════════ */

/* Position context for dropdown menu */
.site-nav {
  position: relative;
  z-index: 50;
}

/* Transparent nav: absolute overlay on hero photo */
.site-nav--transparent {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 200;
}

/* Touch target: 44×44 minimum per Apple HIG */
.nav-toggle {
  min-width: 44px;
  min-height: 44px;
  padding: 10px 12px;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  margin: 3px 0;
}

@media (max-width: 600px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════
   MEDITATION 1.0 v2 — новые секции
   ═══════════════════════════════════════════════ */

/* ── Результат (3 обещания) ── */
.course-section--result {
  max-width: var(--course-container-wide);
}

.course-results {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.course-result {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1px solid var(--card-border);
}
.course-result:first-child {
  padding-top: 0;
}
.course-result:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.course-result-num {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--highlight);
  letter-spacing: 0.01em;
}

.course-result-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.course-result-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.25;
  color: var(--text);
  margin: 0;
}
@media (min-width: 640px) {
  .course-result-title {
    font-size: 1.5rem;
  }
}

.course-result-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  max-width: 60ch;
}
@media (min-width: 640px) {
  .course-result-desc {
    font-size: 1.066rem;
  }
}

@media (max-width: 480px) {
  .course-result {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* ── Гарантия ── */
.course-section--guarantee {
  max-width: 720px;
}

.course-guarantee {
  background: rgba(184, 150, 62, 0.04);
  border: 1px solid rgba(184, 150, 62, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
}
@media (min-width: 640px) {
  .course-guarantee {
    padding: 40px 48px;
  }
}

.course-guarantee-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.3;
  color: var(--text);
  margin: 0 0 12px;
}
@media (min-width: 640px) {
  .course-guarantee-title {
    font-size: 1.5rem;
  }
}

.course-guarantee-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════
   ANNOUNCEMENTS — Phase 4 (2026-05-19)
   Spec §Theme integration / Approach C "Куратор"
   ═══════════════════════════════════════════════ */

/* ── Global pin (тонкая полоска поверх nav) ────── */
.global-pin {
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 11px 48px 11px 16px;
    font-size: 0.875rem;
    line-height: 1.4;
    position: relative;
    font-family: var(--font-body);
}
.global-pin.is-operational {
    background: var(--text);
}
.global-pin a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}
.global-pin a:hover { text-decoration: underline; }
.global-pin .gp-kicker {
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.78;
    margin-right: 10px;
}

/* ── Home board (Approach C: 1 featured + compact rows) ── */
.home-board {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 48px var(--content-padding) 56px;
}
.home-board-header {
    margin-bottom: 24px;
}
.home-board-kicker {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-light);
    margin-bottom: 8px;
}
.home-board-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--text);
    margin: 0;
}
.home-board-title em {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}

.home-board-featured {
    display: flex;
    gap: 24px;
    padding: 22px 24px;
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    margin-bottom: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.home-board-featured:hover {
    border-color: rgba(26, 123, 123, 0.4);
    box-shadow: 0 4px 12px rgba(42, 48, 56, 0.04);
}
.home-board-featured .hbf-thumb {
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: rgba(184, 150, 62, 0.08);
}
.home-board-featured .hbf-body { flex: 1; min-width: 0; }
.home-board-featured .hbf-kicker {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.home-board-featured .hbf-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 4px;
}
.home-board-featured .hbf-title em {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}
.home-board-featured .hbf-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
}
.home-board-featured .hbf-arrow {
    font-size: 1.25rem;
    color: var(--accent);
    align-self: center;
    transition: transform 0.2s;
}
.home-board-featured:hover .hbf-arrow { transform: translateX(4px); }

.home-board-compact-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(184, 150, 62, 0.18);
}
.home-board-compact-row {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(184, 150, 62, 0.18);
    text-decoration: none;
    color: var(--text);
}
.home-board-compact-row:hover { background: rgba(184, 150, 62, 0.03); }
.home-board-compact-row .hbc-kicker {
    flex-shrink: 0;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    min-width: 160px;
}
.home-board-compact-row .hbc-title {
    flex: 1;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1rem;
    color: var(--text);
}
.home-board-compact-row .hbc-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
}
.home-board-compact-row .hbc-arrow {
    font-size: 1rem;
    color: var(--accent);
    transition: transform 0.2s;
}
.home-board-compact-row:hover .hbc-arrow { transform: translateX(3px); }

/* ── Section strips (/travel, /courses) ────────── */
.section-strip {
    padding: 14px 20px;
    background: rgba(184, 150, 62, 0.08);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    text-decoration: none;
    color: var(--text);
}
.section-strip .ss-kicker {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    flex-shrink: 0;
}
.section-strip .ss-text { flex: 1; font-size: 0.9375rem; }
.section-strip .ss-arrow {
    font-size: 0.875rem;
    color: var(--accent);
    flex-shrink: 0;
}

/* ── DRAFT badge для admin preview ─────────────── */
.global-pin.is-draft,
.home-board-featured[data-draft="true"],
.home-board-compact-row[data-draft="true"],
.section-strip[data-draft="true"] {
    outline: 2px dashed var(--gold);
    position: relative;
}
.global-pin.is-draft::before,
.home-board-featured[data-draft="true"]::before,
.home-board-compact-row[data-draft="true"]::before,
.section-strip[data-draft="true"]::before {
    content: "DRAFT";
    position: absolute;
    top: 6px;
    right: 6px;
    background: var(--gold);
    color: #fff;
    padding: 2px 8px;
    font-size: 0.625rem;
    letter-spacing: 0.12em;
    border-radius: 3px;
    z-index: 1;
}
