:root {
  --bg: #faf9f7;
  --bg-card: #ffffff;
  --bg-accent: #eaeae6;
  --accent-bg-soft: #fff8e6;
  --text: #1f2328;
  --text-muted: #5b6470;
  --accent: #7a5a1a;
  --accent-soft: #b8924a;
  --border: #e3ddd0;
  --border-soft: #efebe2;
  --warn-bg: #fff7e8;
  --warn-border: #e6d6a8;
  --warn-text: #6b5217;
  --radius: 14px;
  --radius-sm: 10px;
  --space: 80px;
  --gap: 26px;
  --card-pad: 34px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
}
body {
  font: 18px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 22px; }
.center { text-align: center; }
.site-header .wrap { max-width: 1280px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(250, 249, 247, 0.9);
  border-bottom: 1px solid rgba(227, 221, 208, 0.78);
  backdrop-filter: blur(16px);
}

@media (min-width: 1041px) {
  body {
    padding-top: 66px;
  }

  .site-header {
    position: fixed;
    left: 0;
    right: 0;
  }
}

@media (min-width: 1041px) and (max-width: 1180px) {
  .site-header .nav-link,
  .site-header .nav-button {
    padding-left: 5px;
    padding-right: 5px;
  }

  .site-header .nav-button {
    padding-right: 14px;
  }
}

@media (min-width: 1041px) and (max-width: 1180px) {
  .site-header .nav-link,
  .site-header .nav-button {
    font-size: 15px;
  }
}

.site-header__row {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 22px;
  line-height: 1.1;
  flex: 0 0 auto;
  transition: color 0.18s ease;
}
.brand span {
  color: #54463fb5;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  margin-top: 4px;
  transition: color 0.18s ease;
}
.brand:hover {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .brand:hover {
    color: var(--accent);
  }
  .brand:hover span {
    color: #7a5a1ab5;
  }
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--text);
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  justify-content: flex-end;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.nav-link,
.nav-button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--text-muted);
  font: 400 14px/1.2 inherit;
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover,
.nav-button:hover,
.nav-group:focus-within .nav-button,
.nav-group:hover .nav-button {
  color: var(--accent);
  background: transparent;
  text-decoration: none;
}
.nav-button::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 7px;
}
.nav-group {
  position: relative;
}
.nav-expand,
.nav-link--home {
  display: none;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-card);
  box-shadow: 0 22px 60px rgba(31, 35, 40, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s;
}
.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}
.nav-dropdown a:hover {
  background: #f4efe3;
  color: var(--accent);
  text-decoration: none;
}
.nav-link.is-active,
.nav-button.is-active {
  color: var(--accent);
  background: transparent;
}

.hero { padding: 96px 0 64px; }
.hero h1 { font-size: 60px; line-height: 1.05; margin: 0 0 24px; font-weight: 700; letter-spacing: 0; }
.hero .sub { font-size: 23px; color: var(--text-muted); margin: 0 0 24px; max-width: 760px; line-height: 1.5; }
.hero .tag { font-size: 19px; color: var(--accent); margin: 0 0 32px; max-width: 760px; }
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 52px;
  align-items: start;
}
.hero-main {
  max-width: 780px;
}
.hero-essence {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.7;
}
.hero-quote {
  margin: 14px 0 0;
  padding: 26px 28px;
  border-left: 4px solid var(--accent-soft);
  background: var(--bg-card);
  color: var(--text);
}
.hero-quote blockquote {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.65;
}
.hero-quote p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin-top: 22px; }
.announcement-card,
.quick-card,
.level-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 28px;
  color: inherit;
}
.announcement-card h3,
.quick-card h3,
.level-card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.25;
}
.announcement-card p,
.quick-card p,
.level-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}
.status {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
}
.level-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--accent-soft);
  font-weight: 700;
  font-size: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 17px;
  border: 1px solid var(--accent);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn:hover { background: #6a4d15; border-color: #6a4d15; text-decoration: none; color: #fff; }
.btn-ghost { background: transparent; color: var(--accent); }
.btn-ghost:hover { background: var(--accent); color: #fff; }

section { padding: var(--space) 0; }
section + section { border-top: 1px solid var(--border-soft); }
section.accent-bg { background: var(--bg-accent); border-top: 1px solid #deded8; border-bottom: 1px solid #deded8; }
section h2 { font-size: 38px; line-height: 1.15; margin: 0 0 30px; font-weight: 700; letter-spacing: 0; }
section h2 .num { color: var(--accent-soft); margin-right: 12px; font-size: 0.72em; vertical-align: 1px; }
.lead { font-size: 20px; color: var(--text-muted); max-width: 760px; margin: 0 0 34px; line-height: 1.7; }

.numbers { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); margin: 8px 0; }
.placeholder-note {
  background: #f0ece1;
  border-left: 4px solid var(--accent-soft);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-muted);
  border-radius: 8px;
  margin: 16px 0;
}

.reviews-hero .hero-quote {
  align-self: stretch;
}

.review-stats div,
.review-map-card,
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.review-filters {
  display: grid;
  gap: 20px;
  margin: 8px 0 18px;
}

.review-filters p {
  margin: 0 0 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 17px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pill {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-card);
  color: var(--text-muted);
  font: 600 14px/1.2 inherit;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.filter-pill:hover,
.filter-pill.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.review-count {
  margin: 0 0 22px;
  color: var(--text-muted);
  font-size: 15px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: var(--gap);
}

.review-card {
  display: flex;
  flex-direction: column;
  padding: 24px 26px 22px;
  min-height: 280px;
}

.review-card[hidden] {
  display: none;
}

.review-card blockquote {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.65;
}

.review-card blockquote::before {
  content: "\" ";
  color: var(--accent-soft);
}

.review-card blockquote::after {
  content: " \"";
  color: var(--accent-soft);
}

.review-card p {
  margin: auto 0 0;
  color: var(--text-muted);
  font-size: 15px;
}

.about-hero .hero-layout {
  grid-template-columns: minmax(0, 1fr) 380px;
}

.about-hero .hero-main {
  max-width: 800px;
}

.about-hero-text {
  max-width: 760px;
  position: relative;
  max-height: 500px;
  overflow: hidden;
}

.about-hero-text p {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.66;
}

.about-hero-text p:first-child {
  font-size: 16px;
  color: var(--text);
  line-height: 1.66;
}

.about-hero-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  background: linear-gradient(rgba(250, 249, 247, 0), var(--bg) 74%);
  pointer-events: none;
}

.about-hero-text.is-expanded {
  max-height: none;
}

.about-hero-text.is-expanded::after {
  display: none;
}

.text-toggle {
  min-height: 42px;
  margin-top: 4px;
  padding: 10px 18px;
  border: 1px solid var(--accent);
  border-radius: 10px;
  background: transparent;
  color: var(--accent);
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  cursor: pointer;
}

.text-toggle:hover {
  background: var(--accent);
  color: #ffffff;
}

.about-hero-aside {
  display: grid;
  gap: 18px;
  align-content: start;
  position: sticky;
  top: 94px;
}

.about-hero-photo {
  margin: 0;
}

.about-hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 3.95;
  object-fit: cover;
  object-position: center 8%;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.about-hero-photo figcaption {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.4;
}

.about-hero-aside .hero-quote {
  margin: 0;
}

.method-timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin: 34px 0 0;
}

.method-timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 30px;
  width: 2px;
  background: linear-gradient(180deg, rgba(145, 104, 28, 0.18), rgba(145, 104, 28, 0.72), rgba(145, 104, 28, 0.18));
}

.method-level {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 24px;
  padding: 0 0 28px;
}

.method-level:last-child {
  padding-bottom: 0;
}

.method-marker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-top: 28px;
  color: #ffffff;
  background: var(--accent);
  border: 7px solid var(--bg-accent);
  border-radius: 999px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
}

.method-marker span {
  display: block;
  line-height: 1;
  transform: translateY(-1px);
}

.method-marker--person span {
  position: relative;
  width: 18px;
  height: 22px;
  transform: translateY(1px);
}

.method-marker--person span::before,
.method-marker--person span::after {
  content: "";
  position: absolute;
  left: 50%;
  background: currentColor;
  transform: translateX(-50%);
}

.method-marker--person span::before {
  top: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.method-marker--person span::after {
  bottom: 0;
  width: 18px;
  height: 12px;
  border-radius: 10px 10px 4px 4px;
}

.method-marker--heart span {
  font-size: 27px;
  transform: translateY(-1px);
}

.method-marker--spark span {
  font-size: 21px;
  transform: translateY(-1px);
}

.method-marker--flow span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  transform: translateY(-2px);
}

.method-content {
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 30px;
}

.method-content span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.method-content h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 26px;
  line-height: 1.25;
}

.method-content p {
  margin: 0;
  color: #344053;
  font-size: 17px;
  line-height: 1.68;
}

.method-content .method-products-title {
  margin-top: 26px;
  padding-top: 16px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-soft);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.method-products {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 6px;
}

.method-products a {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 28px;
  padding: 0 0 2px;
  color: rgba(52, 64, 83, 0.78);
  background: transparent;
  border: 0;
  border-bottom: 1px dashed rgba(143, 104, 25, 0.26);
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.method-products a:hover {
  color: var(--accent);
  background: transparent;
  border-color: var(--accent);
}

.about-author-card,
.path-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.about-author-card h3,
.path-step h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 23px;
  line-height: 1.25;
}

.about-authors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
  margin-top: 28px;
}

.about-author-card {
  padding: 26px 28px 28px;
}

.about-author-photo-frame {
  width: 100%;
  aspect-ratio: 4 / 3.35;
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-accent);
}

.about-author-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-author-photo--ivan {
  object-position: center 14%;
}

.about-author-photo--valeria {
  object-fit: contain;
  object-position: center bottom;
  transform: scale(0.98);
  transform-origin: center bottom;
}

.about-author-tag {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-author-role {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.about-author-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.32;
}

.about-author-card p {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.64;
}

.about-author-card p:last-child {
  margin-bottom: 0;
}

.authors-note {
  position: relative;
  max-width: 920px;
  margin: 30px auto 0;
  padding: 26px 30px 28px;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
}

.authors-note::before {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 0 auto 18px;
  background: var(--accent-soft);
  border-radius: 999px;
}

.authors-note span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.authors-note p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.58;
}

.path-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  margin-top: 40px;
  padding-top: 10px;
}

.path-map::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(184, 146, 74, 0.16), rgba(122, 90, 26, 0.42));
  border-radius: 999px;
}

.path-map::after {
  content: "";
  position: absolute;
  top: 23px;
  right: 7.4%;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid rgba(122, 90, 26, 0.58);
}

.path-stop {
  position: relative;
  display: block;
  min-width: 0;
  text-align: center;
  color: inherit;
  text-decoration: none;
}

.path-stop::after {
  display: none;
}

.path-stop:hover {
  text-decoration: none;
}

.path-stop__point {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  color: var(--accent);
  background: var(--bg-card);
  border: 2px solid rgba(122, 90, 26, 0.42);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.path-stop__label {
  display: block;
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.path-stop h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.28;
  font-weight: 700;
  transition: color 0.2s ease;
}

.path-stop p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.58;
}

.path-stop:hover h3 {
  color: var(--accent);
}

.work-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 28px;
}

.work-principles article {
  min-width: 0;
}

.work-principles h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.3;
}

.work-principles p {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.66;
}

.about-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 0;
}

.about-cta h2 {
  margin-bottom: 14px;
}

.about-cta .lead {
  font-size: 18px;
  line-height: 1.62;
  margin-bottom: 0;
}

.steps { display: grid; gap: 30px; grid-template-columns: 1fr 1fr 1fr; margin-top: 8px; }
.steps .step .n {
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  text-align: center;
  line-height: 38px;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 17px;
}
.steps .step h3 { font-size: 19px; margin: 6px 0 8px; }
.steps .step p { color: var(--text-muted); font-size: 16px; margin: 0 0 10px; line-height: 1.6; }
.steps .step a { font-weight: 600; }

.faq { display: grid; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.faq-item summary {
  padding: 18px 52px 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.45;
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 18px;
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
}
.faq-item[open] summary::after { content: "-"; }
.faq-item .faq-a { padding: 0 22px 20px; font-size: 17px; line-height: 1.65; color: var(--text); }

.session-page section + section {
  border-top: 0;
}

.session-hero {
  padding-bottom: 42px;
}

.session-hero .sub {
  margin-bottom: 0;
}

.session-content {
  padding: 58px 0 66px;
  background: var(--bg);
}

.session-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 26px;
  margin: 4px 0 20px;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.58;
}

.session-list li::marker {
  color: var(--accent-soft);
}

.session-prices {
  padding: 62px 0 70px;
  border-top: 0;
  border-bottom: 0;
}

.session-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.session-price-card {
  padding: 30px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.session-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 18px;
  margin-bottom: 18px;
}

.session-price strong {
  color: var(--accent);
  font-size: 36px;
  line-height: 1;
}

.session-price-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.42;
}

.session-booking {
  padding: 62px 0 72px;
  background: var(--bg);
}

.products-page section + section {
  border-top: 0;
}

.products-hero {
  padding-bottom: 38px;
}

.products-hero .sub {
  margin-bottom: 0;
}

.products-catalog {
  padding: 64px 0 72px;
  background: var(--bg);
  border-top: 0;
  border-bottom: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.products-level + .products-level {
  margin-top: 54px;
}

.products-level__head {
  max-width: 760px;
  margin: 0 0 24px;
  padding-top: 26px;
  border-top: 1px solid var(--border-soft);
}

.products-level:first-child .products-level__head {
  padding-top: 0;
  border-top: 0;
}

.products-level__head h2 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 30px;
  line-height: 1.14;
}

.products-level__head p:not(.eyebrow) {
  margin: 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.6;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.product-card:hover {
  text-decoration: none;
  transform: translateY(-2px);
  border-color: rgba(184, 146, 74, 0.58);
  box-shadow: 0 12px 28px rgba(31, 35, 40, 0.06);
}

.product-card__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  background: #f2efe8;
  border-bottom: 1px solid var(--border-soft);
}

.product-card__image::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(122, 90, 26, 0.16);
  border-radius: 12px;
}

.product-card__image span {
  position: relative;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  color: rgba(122, 90, 26, 0.78);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(184, 146, 74, 0.34);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.product-card__image--level-2 {
  background: #eef1ec;
}

.product-card__image--level-3 {
  background: #f0eee9;
}

.product-card__image--level-4 {
  background: #ecece6;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 20px 22px;
}

.product-card h2,
.product-card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 21px;
  font-weight: 750;
  line-height: 1.25;
}

.product-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.58;
}

.product-card__details {
  display: grid;
  gap: 7px;
  margin-top: auto;
  padding-top: 16px;
}

.product-card__details span {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.product-card__details b {
  color: var(--text);
  font-weight: 650;
}

.product-card__link {
  display: inline-flex;
  margin-top: 14px;
  color: rgba(122, 90, 26, 0.86);
  font-size: 14px;
  font-weight: 700;
}

.products-layer {
  padding: 66px 0 74px;
  border-top: 0;
  border-bottom: 0;
}

.products-layer--clubs {
  background: var(--bg-accent);
}

.products-layer--sessions {
  background: var(--bg);
}

.products-support {
  padding: 66px 0 74px;
  background: var(--bg);
  border-top: 0;
}

.products-section-head {
  max-width: 720px;
  margin: 0 0 30px;
}

.products-section-head h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 38px;
  line-height: 1.12;
}

.products-section-head p:not(.eyebrow) {
  margin: 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.62;
}

.products-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.products-support-grid--clubs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.product-card--support .product-card__image {
  aspect-ratio: 16 / 7;
}

.product-card--support .product-card__image span {
  width: 54px;
  height: 54px;
  font-size: 14px;
}
.products-support-grid--clubs .product-card {
  box-shadow: 0 10px 26px rgba(31, 35, 40, 0.035);
}

.products-support-grid--clubs .product-card__image {
  position: relative;
  flex: 0 0 28px;
  height: 28px;
  min-height: 28px;
  aspect-ratio: auto;
  overflow: hidden;
  border-bottom: 0;
}

.products-support-grid--clubs .product-card__image span {
  display: none;
}

.products-support-grid--clubs .product-card__image--level-2 {
  background:
    radial-gradient(ellipse 120px 56px at 6% 142%, transparent 46%, rgba(255, 255, 255, 0.38) 47% 48%, transparent 49%),
    radial-gradient(circle at 76% 28%, rgba(255, 255, 255, 0.72) 0 1.5px, transparent 2.2px),
    radial-gradient(circle at 82% 67%, rgba(255, 255, 255, 0.46) 0 1px, transparent 1.8px),
    radial-gradient(circle at 88% 42%, rgba(255, 255, 255, 0.56) 0 1.2px, transparent 2px),
    linear-gradient(90deg, #35cdb9 0%, #67dbc9 56%, #bceee5 100%);
}

.products-support-grid--clubs .product-card__image--level-4 {
  background:
    radial-gradient(ellipse 120px 56px at 6% 142%, transparent 46%, rgba(255, 255, 255, 0.4) 47% 48%, transparent 49%),
    radial-gradient(circle at 76% 28%, rgba(255, 255, 255, 0.72) 0 1.5px, transparent 2.2px),
    radial-gradient(circle at 82% 67%, rgba(255, 255, 255, 0.46) 0 1px, transparent 1.8px),
    radial-gradient(circle at 88% 42%, rgba(255, 255, 255, 0.56) 0 1.2px, transparent 2px),
    linear-gradient(90deg, #dea93a 0%, #edc55d 56%, #f5df9d 100%);
}

.products-support-grid--clubs .product-card__image::before {
  inset: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(90deg, transparent 0 70%, rgba(255, 255, 255, 0.34) 70% 70.25%, transparent 70.25% 100%);
}
/* Акценты карточек личных форматов. */
.products-support-grid--sessions .product-card {
  box-shadow: 0 10px 26px rgba(31, 35, 40, 0.028);
}

.products-support-grid--sessions .product-card__image {
  position: relative;
  flex: 0 0 12px;
  height: 12px;
  min-height: 12px;
  aspect-ratio: auto;
  overflow: hidden;
  border-bottom: 0;
}

.products-support-grid--sessions .product-card__image span {
  display: none;
}

.products-support-grid--sessions .product-card__image::before {
  inset: 0;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 32%);
}

body[data-page="products"] .site-footer {
  margin-top: 0;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.start-page section + section {
  border-top: 0;
}

.start-page section.accent-bg {
  border-top: 0;
  border-bottom: 0;
}

.start-page .eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.start-page .cta-row {
  margin-top: 12px;
}

.start-page .btn {
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
}

.start-video {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 20px 22px;
}

.blog-hero {
  padding-bottom: 16px;
  position: relative;
}
.blog-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 420px;
  background: radial-gradient(900px 420px at 50% -160px, #f5eddb, rgba(250, 249, 247, 0));
  pointer-events: none;
}
.blog-hero > * {
  position: relative;
}
.blog-page .blog-hero + section {
  border-top: 0;
  padding-top: 22px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
}
.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-card);
  color: inherit;
  box-shadow:
    0 1px 2px rgba(60, 42, 14, 0.05),
    0 14px 30px -22px rgba(60, 42, 14, 0.34);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  border-color: var(--accent-soft);
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow:
    0 2px 4px rgba(60, 42, 14, 0.06),
    0 24px 44px -24px rgba(60, 42, 14, 0.42);
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--border-soft);
}
.blog-card__body {
  padding: 20px 20px 22px;
}
.blog-card__date {
  display: block;
  margin: 0 0 10px;
  color: rgba(91, 100, 112, 0.58);
  font-size: 13px;
  font-weight: 500;
  text-align: right;
}
.blog-card h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.22;
}
.blog-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}
.article {
  padding: 64px 0 20px;
  background: radial-gradient(900px 420px at 50% -160px, #f5eddb, rgba(250, 249, 247, 0));
}
.article-top {
  width: min(1080px, calc(100% - 44px));
  margin: 0 auto;
}
.article-header h1 {
  max-width: 820px;
  margin: 14px 0 14px;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: 0;
}
.article-date {
  display: block;
  margin: 0 0 28px;
  color: rgba(91, 100, 112, 0.58);
  font-size: 14px;
  font-weight: 500;
}
.back-link {
  display: inline-flex;
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
}
.article-cover {
  width: min(1080px, calc(100% - 44px));
  max-height: 560px;
  margin: 0 auto 46px;
  border-radius: 18px;
  object-fit: cover;
}
.article-body {
  color: var(--text);
  font-size: 18px;
  line-height: 1.65;
}
.article-body p {
  margin: 0 0 22px;
}
.article-body blockquote {
  margin: 0 0 22px;
  padding: 22px 26px;
  border-left: 4px solid var(--accent-soft);
  background: var(--accent-bg-soft);
  color: var(--text);
  font-size: 19px;
  line-height: 1.7;
}
.article-next {
  width: min(1080px, calc(100% - 44px));
  margin: 30px auto 0;
  padding: 30px 32px 32px;
  border: 1px solid #e9e5da;
  border-radius: 20px;
  background: #faf7f1;
}
.article-after {
  width: min(1080px, calc(100% - 44px));
  margin-left: auto;
  margin-right: auto;
  margin-top: 72px;
}
.article-next__back {
  display: inline-flex;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 700;
}
.article-next__back:hover {
  color: var(--accent);
  text-decoration: none;
}
.article-next__words {
  max-width: 620px;
}
.article-next__text {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.65;
  text-wrap: balance;
}
.article-next__lead {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.65;
  text-wrap: balance;
}
.article-next__intro {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}
.article-next__intro img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  border: 0;
  box-shadow:
    0 0 0 3px #fffdf9,
    0 0 0 4px rgba(184, 146, 74, 0.34),
    0 10px 24px -14px rgba(60, 40, 16, 0.4);
}
.article-next__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.article-next__links a {
  display: block;
  min-height: 92px;
  padding: 18px 20px;
  border: 1px solid #eeeae1;
  border-radius: 14px;
  background: #fffdf9;
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  box-shadow: 0 8px 22px rgba(60, 40, 16, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.article-next__links a:hover {
  border-color: rgba(184, 146, 74, 0.45);
  box-shadow: 0 14px 30px rgba(60, 40, 16, 0.1);
  transform: translateY(-2px);
  text-decoration: none;
}
.article-next__links span {
  display: block;
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.article-next__links a::after {
  content: "\00a0→";
  display: inline-block;
  color: var(--accent);
  transition: transform 0.2s ease;
}
.article-next__links a:hover::after {
  transform: translateX(4px);
}
.article-next__support {
  width: min(1080px, calc(100% - 44px));
  margin: 24px auto 10px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}
.article-next__support a {
  color: var(--accent);
  font-weight: 700;
}
.article-page .site-footer {
  margin-top: 32px;
}

/* Страница "Остерегайтесь мошенников". */
.noscam-hero {
  padding-bottom: 18px;
  background: radial-gradient(900px 420px at 50% -160px, #f5eddb, rgba(250, 249, 247, 0));
}

.noscam-hero .hero-layout {
  grid-template-columns: minmax(0, 760px) minmax(220px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.noscam-hero .hero-main {
  max-width: 760px;
}

.noscam-hero-text {
  max-width: 720px;
}

.noscam-hero-text p {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.68;
}

.noscam-hero-text p:last-child {
  margin-bottom: 0;
}

.noscam-hero-visual {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  align-self: start;
}

.noscam-hero-visual .noscam-cover {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 450px;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.noscam-page section + section {
  border-top: 0 !important;
}

.noscam-content {
  padding: 16px 0 36px;
}

.noscam-page .site-footer {
  margin-top: 0;
}

.noscam-copy {
  max-width: 760px;
}

.noscam-copy h2 {
  margin: 48px 0 20px;
  color: var(--text);
  font-size: clamp(28px, 3.6vw, 38px);
  line-height: 1.18;
}

.noscam-copy h2:first-child {
  margin-top: 0;
}

.noscam-copy p {
  margin: 0 0 22px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.72;
}

.noscam-copy blockquote {
  margin: 26px 0 0;
  padding: 22px 26px;
  border-left: 4px solid var(--accent-soft);
  background: var(--accent-bg-soft);
  color: var(--text);
  font-size: 18px;
  line-height: 1.65;
}

.noscam-copy ul,
.noscam-copy ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 24px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.68;
}

.noscam-copy li::marker {
  color: var(--accent);
  font-weight: 700;
}

.noscam-copy ul + h2,
.noscam-copy ol + p {
  margin-top: 48px;
}

.noscam-copy p:last-child {
  margin-top: 46px;
  margin-bottom: 0;
}

.noscam-copy a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .noscam-hero {
    padding-bottom: 32px;
  }

  .noscam-hero .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .noscam-hero-text p,
  .noscam-copy p,
  .noscam-copy blockquote,
  .noscam-copy ul,
  .noscam-copy ol {
    font-size: 16px;
    line-height: 1.62;
  }

  .noscam-hero-visual {
    justify-content: center;
  }

  .noscam-hero-visual .noscam-cover {
    width: min(100%, 320px);
    max-height: none;
    border-radius: 12px;
  }

  .noscam-page section + section {
  border-top: 0 !important;
}

.noscam-content {
    padding: 20px 0 32px;
  }

  .noscam-copy h2 {
    margin-top: 38px;
    font-size: 26px;
  }

  .noscam-copy blockquote {
    padding: 20px;
  }
}
body[data-page="about"] .site-footer {
  margin-top: 0;
}
.site-footer {
  margin-top: 80px;
  padding: 38px 20px 54px;
  background:
    radial-gradient(circle at 18% 0%, rgba(184, 146, 74, 0.2), transparent 34%),
    #1e1410;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  box-shadow: 0 200px 0 0 #1e1410;
}
.site-footer * { box-sizing: border-box; }
.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 30px;
  align-items: stretch;
}
.footer-brand-block {
  min-width: 0;
}
.footer-brand-block,
.footer-legal-block,
.footer-actions {
  display: flex;
  flex-direction: column;
}
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
}
.footer-brand:hover { opacity: 0.85; }
.footer-logo {
  display: inline-block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 2px;
}
.footer-subtitle {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}
.footer-legal-block {
  min-width: 0;
}
.footer-legal {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.35;
}
.footer-documents,
.footer-actions {
  display: grid;
  gap: 14px;
  align-content: start;
  justify-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.site-footer a:hover {
  color: #ffffff;
  text-decoration: none;
}
.footer-documents a,
.footer-actions > a {
  width: fit-content;
  font-size: 14px;
  line-height: 1.15;
}
.footer-warning {
  margin-top: 14px;
}
.footer-socials {
  display: grid;
  grid-template-columns: repeat(4, 38px);
  justify-content: center;
  gap: 9px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.04);
}
.footer-socials a:hover {
  color: #1e1410;
  background: #f3ead2;
  opacity: 1;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.social-icon svg {
  display: block;
  fill: currentColor;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {

.session-content,
  .session-prices,
  .session-booking {
    padding: 48px 0 56px;
  }

  .session-stack,
  .session-price-grid {
    grid-template-columns: 1fr;
  }

  .session-block,
  .session-price-card {
    padding: 24px 20px;
  }

  .session-list {
    grid-template-columns: 1fr;
    font-size: 15px;
  }

  .session-price strong {
    font-size: 31px;
  }
}
@media (max-width: 1120px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .products-catalog {
    padding: 44px 0 52px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-card__image {
    aspect-ratio: 16 / 7;
  }

  .product-card__image::before {
    inset: 14px;
    border-radius: 10px;
  }

  .product-card__image span {
    width: 48px;
    height: 48px;
    font-size: 14px;
  }

  .product-card__body {
    padding: 18px 18px 20px;
  }

  .product-card h2,
  .product-card h3 {
    font-size: 20px;
  }
}
@media (max-width: 760px) {

.session-content,
  .session-prices,
  .session-booking {
    padding: 48px 0 56px;
  }

  .session-stack,
  .session-price-grid {
    grid-template-columns: 1fr;
  }

  .session-block,
  .session-price-card {
    padding: 24px 20px;
  }

  .session-list {
    grid-template-columns: 1fr;
    font-size: 15px;
  }

  .session-price strong {
    font-size: 31px;
  }
}
@media (max-width: 1120px) {
  .products-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .products-support {
    padding: 48px 0 56px;
  }

  .products-layer {
    padding: 48px 0 56px;
  }

  .products-section-head h2 {
    font-size: 29px;
  }

  .products-section-head p:not(.eyebrow) {
    font-size: 17px;
  }

  .products-support-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 1040px) {
  #site-header { min-height: 67px; }
  .site-header { position: sticky; }
  .site-header__row { align-items: center; flex-direction: row; flex-wrap: wrap; padding: 12px 22px; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .main-nav {
    display: none;
    width: 100%;
    justify-content: flex-start;
    align-items: stretch;
    padding: 10px;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 14px;
  }
  .main-nav.is-open { display: grid; grid-template-columns: 1fr 1fr; }
  .nav-group { display: grid; }
  .nav-link,
  .nav-button { width: 100%; justify-content: space-between; }
  .main-nav.is-open {
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
  }
  .nav-link--home {
    display: inline-flex;
  }
  .nav-dropdown {
    position: static;
    left: auto;
    right: auto;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    margin: 0 0 8px;
    min-width: 0;
    border-color: rgba(227, 221, 208, 0.72);
    background: rgba(255, 255, 255, 0.58);
  }
  .nav-group.is-open .nav-dropdown,
  .nav-group:hover .nav-dropdown,
  .nav-group:focus-within .nav-dropdown { display: none; }
  .nav-group.is-open .nav-dropdown { display: grid; }
  .nav-button { padding-right: 46px; }
  .nav-button::after { display: none; }
  .nav-expand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
  }
  .nav-expand::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    transition: transform 0.18s ease;
  }
  .nav-group.is-open .nav-expand::before { transform: rotate(180deg); }
  .nav-group.is-open .nav-expand { color: var(--accent); }
}

@media (min-width: 761px) and (max-width: 1040px) {
  .nav-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .nav-link,
  .nav-button {
    width: auto;
    justify-content: flex-start;
  }
  .nav-button { padding-right: 4px; }
  .nav-expand {
    position: static;
    width: 34px;
    height: 34px;
  }
  .nav-dropdown { flex: 0 0 100%; }
}
@media (max-width: 760px) {
  body { font-size: 17px; }
  .wrap,
  .wrap-narrow {
    padding: 0 18px;
  }
  .hero { padding: 56px 0 32px; }
  .hero h1 {
    font-size: clamp(34px, 11vw, 40px);
    hyphens: auto;
    overflow-wrap: anywhere;
  }
  .hero .sub { font-size: 19px; }
  .hero-layout,
  .path-choice {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-main,
  .about-hero .hero-main,
  .about-hero-text,
  .about-hero-aside {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .hero-essence {
    font-size: 17px;
  }
  .start-video {
    padding: 20px 18px 20px;
  }
  .hero-quote {
    padding: 20px 20px;
  }
  .cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cta-row .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .announcement-card,
  .quick-card,
  .level-card {
    padding: 22px 20px;
  }
  .review-filters {
    gap: 14px;
  }
  .filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .filter-pill {
    flex: 0 0 auto;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-stats div,
  .review-map-card,
  .review-card {
    padding: 22px 20px;
  }
  .review-card {
    min-height: 0;
  }
  .about-authors,
  .about-cta {
    grid-template-columns: 1fr;
  }
  .about-author-card {
    padding: 22px 20px;
  }
  .about-cta {
    padding: 0;
  }
  .about-author-photo-frame {
    aspect-ratio: 4 / 3.05;
  }
  .about-author-card h3 {
    font-size: 19px;
  }
  .authors-note {
    padding: 22px 20px 24px;
    text-align: left;
  }
  .authors-note::before {
    margin-left: 0;
  }
  .authors-note p {
    font-size: 17px;
    line-height: 1.62;
  }
  .path-map {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 30px;
    padding-top: 0;
  }
  .path-map::before {
    display: block;
    top: 20px;
    bottom: 20px;
    left: 22px;
    right: auto;
    width: 3px;
    height: auto;
    background: rgba(184, 146, 74, 0.32);
  }
  .path-map::after {
    top: auto;
    right: auto;
    bottom: 8px;
    left: 14px;
    border-top: 12px solid rgba(184, 146, 74, 0.46);
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 0;
  }
  .path-stop {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 14px;
    text-align: left;
  }
  .path-stop__point {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 44px;
    height: 44px;
    margin: 0;
    color: var(--accent);
    background: var(--bg-card);
    border-width: 2px;
    border-color: rgba(184, 146, 74, 0.42);
    font-size: 12px;
  }
  .path-stop__label {
    grid-column: 2;
    margin-top: 0;
    font-size: 12px;
  }
  .path-stop h3 {
    grid-column: 2;
    font-size: 20px;
  }
  .path-stop p {
    grid-column: 2;
  }
  .work-principles {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .work-principles h3 {
    font-size: 20px;
  }
  .work-principles p {
    font-size: 15px;
  }
  .method-timeline {
    margin-top: 28px;
  }
  .method-timeline::before {
    left: 17px;
  }
  .method-level {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 22px;
  }
  .method-marker {
    width: 34px;
    height: 34px;
    margin-top: 22px;
    border-width: 5px;
    font-size: 16px;
  }
  .method-marker--person span {
    width: 13px;
    height: 16px;
  }
  .method-marker--person span::before {
    width: 6px;
    height: 6px;
  }
  .method-marker--person span::after {
    width: 13px;
    height: 9px;
  }
  .method-marker--heart span {
    font-size: 19px;
  }
  .method-marker--spark span {
    font-size: 17px;
  }
  .method-marker--flow span {
    font-size: 21px;
    transform: translateY(-1px);
  }
  .method-content {
    padding: 22px 20px;
  }
  .method-content h3 {
    font-size: 21px;
  }
  .method-products {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .method-products a {
    max-width: 100%;
    min-height: 28px;
    padding: 0 0 2px;
    font-size: 13px;
  }
  .about-hero .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  .about-hero-aside {
    position: static;
  }
  .about-hero-text {
    max-height: 360px;
  }
  .about-hero-text p,
  .about-hero-text p:first-child {
    font-size: 16px;
    line-height: 1.62;
  }
  .about-hero-photo img {
    max-height: 360px;
    object-position: center 8%;
  }
  .about-cta {
    gap: 18px;
  }
  section { padding: 52px 0; }
  section h2 { font-size: 29px; }
  .lead { font-size: 17px; }
  .steps { grid-template-columns: 1fr; }
  .site-header__row { padding: 10px 18px; }
  .brand { font-size: 20px; }
  .brand span { max-width: 210px; }
  .main-nav.is-open { grid-template-columns: 1fr; }
  .nav-link,
  .nav-button { padding: 12px 46px 12px 12px; font-size: 16px; }
  .nav-dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    margin: 0 0 8px;
    min-width: 0;
    border-color: rgba(227, 221, 208, 0.72);
    background: rgba(255, 255, 255, 0.58);
  }
  .footer-brand-block,
  .footer-legal-block,
  .footer-documents,
  .footer-actions {
    padding: 0;
    align-items: flex-start;
    justify-items: start;
    text-align: left;
  }
  .site-footer {
    text-align: left;
    padding-left: 24px;
    padding-right: 24px;
  }
  .footer-documents a,
  .footer-actions > a,
  .footer-subtitle {
    font-size: 15px;
  }
  .footer-socials {
    justify-content: start;
  }
  .footer-socials a {
    width: 38px;
    height: 38px;
  }
  .blog-card__body {
    padding: 20px 20px 22px;
  }
  .blog-card h2 {
    font-size: 21px;
  }
  .article {
    padding-top: 42px;
  }
  .article-header h1 {
    font-size: 34px;
  }
  .article-top {
    width: calc(100% - 36px);
  }
  .article-cover {
    width: calc(100% - 36px);
    margin-bottom: 32px;
    border-radius: 14px;
  }
  .article-body {
    font-size: 18px;
    line-height: 1.72;
  }
  .article-page .site-footer {
    margin-top: 24px;
  }
  .article-next {
    width: calc(100% - 36px);
    margin-top: 26px;
    padding: 24px 20px 26px;
    border-radius: 16px;
  }
  .article-after {
    width: calc(100% - 36px);
    margin-top: 84px;
  }
  .article-next__support {
    width: calc(100% - 36px);
  }
  .article-next__links {
    grid-template-columns: 1fr;
  }
  .article-next__text {
    font-size: 18px;
  }
  .article-next__intro {
    display: block;
    margin-bottom: 18px;
  }
  .article-next__intro::after {
    content: "";
    display: block;
    clear: both;
  }
  .article-next__intro img {
    float: left;
    width: 76px;
    height: 76px;
    margin: 2px 14px 8px 0;
  }
  .article-next__words {
    max-width: none;
  }
  .article-next__text {
    font-size: 16px;
    line-height: 1.58;
    text-wrap: normal;
  }
  .article-next__lead {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.58;
    text-wrap: normal;
  }
  .article-next__links a {
    min-height: 0;
  }
}

@media (max-width: 430px) {
  .method-timeline {
    gap: 18px;
    padding-left: 0;
  }
  .method-timeline::before {
    display: none;
  }
  .method-level {
    display: block;
    padding-bottom: 0;
  }
  .method-marker {
    margin: 0 0 -12px 18px;
  }
  .method-content {
    padding-top: 28px;
  }
}

@media (min-width: 840px) {
  .site-footer {
    text-align: left;
    padding: 60px 40px 80px;
  }
  .footer-container {
    display: grid;
    grid-template-columns: minmax(210px, 0.9fr) minmax(260px, 1fr) minmax(220px, 0.8fr);
    gap: 54px;
    align-items: stretch;
  }
  .footer-brand-block,
  .footer-legal-block,
  .footer-documents,
  .footer-actions {
    justify-items: start;
    text-align: left;
  }
  .footer-brand-block,
  .footer-legal-block,
  .footer-actions {
    min-height: 172px;
  }
  .footer-legal-block,
  .footer-actions {
    padding-left: 38px;
  }
  .footer-actions {
    justify-content: flex-start;
  }
  .footer-socials {
    justify-content: flex-start;
    margin-top: auto;
  }
}

@media (min-width: 1120px) {
  .footer-container {
    grid-template-columns: 280px minmax(320px, 1fr) 260px;
    gap: 72px;
  }
}

.session-page section + section {
  border-top: 0;
}

.session-hero {
  padding-bottom: 42px;
}

.session-hero .sub {
  margin-bottom: 0;
}

.session-content,
.session-prices,
.session-booking {
  padding: 70px 0;
  border-top: 0;
  border-bottom: 0;
}

.session-content.accent-bg,
.session-prices.accent-bg {
  border-top: 0;
  border-bottom: 0;
}

.session-text {
  max-width: 820px;
}

.session-text--wide {
  max-width: 980px;
}

.session-text p {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.72;
}

.session-text p:last-child {
  margin-bottom: 0;
}

.session-list {
  columns: 2 320px;
  column-gap: 40px;
  margin: 4px 0 24px;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.62;
}

.session-list li {
  break-inside: avoid;
  margin: 0 0 9px;
}

.session-list li::marker {
  color: var(--accent-soft);
}

.session-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  max-width: 900px;
}

.session-price-card {
  min-width: 0;
  padding-left: 24px;
  border-left: 3px solid var(--accent-soft);
}

.session-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 18px;
  margin-bottom: 12px;
}

.session-price strong {
  color: var(--accent);
  font-size: 34px;
  line-height: 1;
}

.session-price-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 19px;
  line-height: 1.42;
}

.session-block,
.session-price-card {
  background: transparent;
  border-radius: 0;
}

@media (max-width: 760px) {

.session-content,
  .session-prices,
  .session-booking {
    padding: 52px 0;
  }

  .session-text p {
    font-size: 16px;
    line-height: 1.64;
  }

  .session-list {
    columns: 1;
    font-size: 15px;
  }

  .session-price-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .session-price-card {
    padding-left: 18px;
  }

  .session-price strong {
    font-size: 31px;
  }
}
.session-page .session-price-card {
  border: 0;
  border-left: 3px solid var(--accent-soft);
  box-shadow: none;
}
.session-page .session-price-grid {
  max-width: 980px;
}

.session-page .session-price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 30px 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: none;
}

.session-page .session-price-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.28;
}

.session-page .session-price-card p {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.58;
}

.session-page .session-price {
  margin: auto 0 20px;
}

.session-page .session-price strong {
  color: var(--text);
  font-size: 34px;
}

.session-order-btn {
  min-height: 46px;
  padding: 12px 20px;
  border-color: var(--accent);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .session-page .session-price-card {
    padding: 24px 20px;
  }

  .session-order-btn {
    width: 100%;
  }
}
.session-prices .session-text {
  margin-bottom: 34px;
}

.session-page .session-price-grid {
  max-width: 860px;
  gap: 38px;
}

.session-page .session-price-grid--single {
  grid-template-columns: minmax(0, 520px);
}

.session-page .session-price-card {
  padding: 24px 26px 26px;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(227, 221, 208, 0.82);
  border-radius: 12px;
}

.session-page .session-price-card h3 {
  margin-bottom: 6px;
  font-size: 20px;
  line-height: 1.3;
}

.session-page .session-price-card p {
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.55;
}

.session-page .session-price {
  margin: 8px 0 18px;
}

.session-page .session-price strong {
  font-size: 30px;
  font-weight: 750;
}

.session-page .session-order-btn {
  align-self: flex-start;
  min-height: 42px;
  padding: 10px 18px;
  font-size: 15px;
  background: transparent;
  border-color: rgba(122, 90, 26, 0.72);
}

.session-page .session-order-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 760px) {
  .session-prices .session-text {
    margin-bottom: 26px;
  }

  .session-page .session-price-grid {
    gap: 18px;
  }

  .session-page .session-price-card {
    padding: 22px 20px;
  }

  .session-page .session-order-btn {
    width: auto;
  }
}
.session-page .session-hero .sub {
  max-width: 760px;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .session-page .session-hero .sub {
    font-size: 17px;
    line-height: 1.62;
  }
}
.ip-page .session-booking.accent-bg {
  border-bottom: 0;
}

.ip-page .site-footer {
  margin-top: 0;
}

.ip-intro-card h3,
.ip-format-head h3,
.ip-format-card h4 {
  margin: 0 0 8px;
  color: var(--text);
  line-height: 1.25;
}

.ip-intro-card h3,
.ip-format-head h3 {
  font-size: 24px;
}

.ip-format-head {
  max-width: 700px;
  margin-bottom: 20px;
}

.ip-format-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 760px) {

  .ip-intro-card,
  .ip-format-grid {
    grid-template-columns: 1fr;
  }
}

.session-page .session-booking .about-cta .lead {
  max-width: 680px;
  margin-bottom: 12px;
}
.products-layer[id] {
  scroll-margin-top: 92px;
}
.session-person {
  padding: 56px 0 68px;
  background: var(--bg);
}

.session-person__grid {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.session-person__photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-accent);
}

.session-person__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center bottom;
}

.session-person__body {
  max-width: 680px;
}

.session-person__body h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 34px;
  line-height: 1.18;
}

.session-person__facts {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.62;
}

.session-person__facts li {
  position: relative;
  padding-left: 22px;
}

.session-person__facts li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-soft);
}

@media (max-width: 760px) {
  .session-person {
    padding: 44px 0 52px;
  }

  .session-person__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .session-person__photo {
    max-width: 230px;
  }

  .session-person__body h2 {
    font-size: 28px;
  }

  .session-person__facts {
    font-size: 16px;
    line-height: 1.58;
  }
}