/* ============================================================
   styles.css — Adonesse Academy
   Sovereign · Precise · Transformative
   Display: Cinzel  ·  Body: Jost
   ============================================================ */

/* ── Custom easing & tokens ── */
:root {
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out:    cubic-bezier(0.45, 0, 0.55, 1);

  /* Gold Accents Only */
  --gold:          #C5A880;
  --gold-light:    #D4B896;
  --gold-lighter:  #E2C6A6;
  --gold-dark:     #A68B6B;
  --gold-glow:     rgba(197,168,128,.08);
  --gold-glow-mid: rgba(197,168,128,.15);
  --gold-glow-str: rgba(197,168,128,.25);

  /* Deep Anthracite Background */
  --bg0:   #0B0F19;
  --bg1:   #0F1421;
  --bg2:   #131926;
  --bg3:   #1A2235;
  --bg4:   #202D45;
  --bghov: #252F3F;

  /* Borders - Gold accents only, very subtle */
  --border:     rgba(197,168,128,.2);
  --border-hov: rgba(197,168,128,.4);
  --border-act: rgba(197,168,128,.6);

  /* Text - Platinum white/ivory for readability */
  --t1: #E2E8F0;
  --t2: #CBD5E1;
  --t3: #94A3B8;

  /* Radius — max 16px on cards */
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 32px;

  /* Transitions */
  --tr:  .22s var(--ease-out-quart);
  --tr2: .38s var(--ease-out-quart);

  --nav-h: 70px;
  --max-w: 1240px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Jost', system-ui, sans-serif;
  background: var(--bg0);
  color: var(--t1);
  line-height: 1.72;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Cinzel', Georgia, serif;
  line-height: 1.3;
  font-weight: 600;
  text-wrap: balance;
  letter-spacing: -0.01em;
  color: var(--t1);
}
/* Light text on dark needs breathing room */
h1 { font-size: clamp(1.9rem, 4.2vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.45rem, 2.7vw, 2.2rem); }
h3 { font-size: clamp(1.05rem, 1.7vw, 1.35rem); }
p  { color: var(--t1); line-height: 1.78; max-width: 68ch; }

/* ── Layout helpers ── */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 56px 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.gold { color: var(--gold); }

/* ── Ornamental divider ── */
.divider {
  width: 44px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 16px auto;
}

/* ── Badge — used sparingly as a named system, not on every section ── */
.badge {
  display: inline-block;
  padding: 4px 15px;
  border: 1px solid var(--border-hov);
  border-radius: 40px;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-glow);
  margin-bottom: 14px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}

/* ── Section header ── */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { color: var(--t1); }
.section-header p  { max-width: 56ch; margin: 13px auto 0; color: var(--t2); font-size: 1.02rem; }

/* ── Card ── */
.card {
  background: var(--bg2);
  border: 1px solid rgba(197,168,128,.2);
  border-radius: var(--r-md);
  padding: 30px;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr), backdrop-filter var(--tr);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
/* Subtle gold wash on hover — using ::before, no wide outer shadow */
.card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(197,168,128,.08) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--tr2);
  pointer-events: none;
}
.card:hover {
  border-color: rgba(197,168,128,.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(0,0,0,.4);
}
.card:hover::before { opacity: 1; }

/* ── Tag / pill ── */
.tag {
  display: inline-block;
  padding: 2px 11px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
  font-family: 'Jost', sans-serif;
}

/* ════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--r-sm);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: var(--tr);
  cursor: pointer;
  border: none;
  font-family: 'Jost', sans-serif;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 55%, var(--gold-light) 100%);
  color: #000;
  /* Small shadow only — no wide decorative glow paired with border */
  box-shadow: 0 2px 8px rgba(212,168,67,.22);
}
.btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 14px rgba(212,168,67,.32);
  transform: translateY(-1px);
}
.btn-primary:active  { transform: translateY(0); filter: brightness(.97); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--t1);
}
.btn-outline:hover {
  background: rgba(197,168,128,.12);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(197,168,128,.2);
}

.btn-ghost {
  background: var(--bg3);
  color: var(--t2);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg4); color: var(--t1); border-color: var(--border-hov); }

.btn-sm  { padding: 7px 16px; font-size: .74rem; }
.btn-lg  { padding: 15px 40px; font-size: .88rem; letter-spacing: .08em; }
.btn-full{ width: 100%; justify-content: center; }

.btn-stripe {
  background: #5b54f5;
  color: #fff;
  box-shadow: 0 2px 10px rgba(91,84,245,.22);
  text-transform: none;
  letter-spacing: .02em;
}
.btn-stripe:hover { filter: brightness(1.1); box-shadow: 0 4px 18px rgba(91,84,245,.4); transform: translateY(-1px); }

.btn-lava {
  background: linear-gradient(135deg, #c8411a, #de5c30);
  color: #fff;
  box-shadow: 0 2px 10px rgba(200,65,26,.22);
  text-transform: none;
  letter-spacing: .02em;
}
.btn-lava:hover { filter: brightness(1.08); box-shadow: 0 4px 18px rgba(200,65,26,.38); transform: translateY(-1px); }

.btn-publishing {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--r-sm);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
  transition: var(--tr);
  white-space: nowrap;
}
.btn-publishing:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(212,168,67,.22); }

/* Focus — visible and branded */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ════════════════════════════════════════════════
   HEADER / NAV
   ════════════════════════════════════════════════ */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(3,16,27,.88);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--border);
  transition: background var(--tr), border-color var(--tr), box-shadow var(--tr);
}
#header.scrolled {
  background: rgba(3,16,27,.97);
  border-color: var(--border-hov);
  box-shadow: 0 1px 20px rgba(0,0,0,.55);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  cursor: pointer;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
  letter-spacing: 0;
}
.nav-brand-text { line-height: 1.2; }
.nav-brand-name {
  font-family: 'Cinzel', serif;
  font-size: .84rem;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: .04em;
}
.nav-brand-sub {
  font-size: .58rem;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 1px;
  align-items: center;
  flex: 1;
}
.nav-links a {
  padding: 6px 12px;
  border-radius: var(--r-sm);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--t3);
  transition: color var(--tr), background var(--tr);
  white-space: nowrap;
  font-family: 'Jost', sans-serif;
}
.nav-links a:hover { color: var(--t2); }
.nav-links a.active { color: var(--gold); }
.nav-therapy-link {
  padding: 6px 13px;
  border-radius: var(--r-sm);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gold) !important;
  transition: color var(--tr), background var(--tr);
  white-space: nowrap;
  font-family: 'Jost', sans-serif;
  border: 1px solid var(--border);
}
.nav-therapy-link:hover { background: var(--gold-glow); border-color: var(--border-hov); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  align-items: center;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.lang-btn {
  padding: 5px 10px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .09em;
  color: var(--t3);
  transition: color var(--tr), background var(--tr);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
}
.lang-btn.active {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
}
.lang-btn:hover:not(.active) { color: var(--t1); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  padding: 7px;
  cursor: pointer;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color var(--tr);
}
.hamburger span {
  display: block; height: 1.5px;
  background: var(--gold); border-radius: 2px;
  transition: transform var(--tr), opacity var(--tr);
}
.hamburger:hover { border-color: var(--border-hov); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(3,16,27,.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  padding: 28px 20px;
  gap: 4px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--t3);
  border: 1px solid transparent;
  transition: var(--tr);
  font-family: 'Jost', sans-serif;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--gold);
  background: var(--gold-glow);
  border-color: var(--border);
}
.mobile-nav-footer {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 85% 65% at 50% -8%, rgba(212,168,67,.13) 0%, transparent 62%),
    radial-gradient(ellipse 45% 55% at 88% 52%, rgba(212,168,67,.05) 0%, transparent 52%),
    radial-gradient(ellipse 65% 55% at 4% 88%, rgba(7,23,38,.95) 0%, transparent 60%),
    linear-gradient(170deg, var(--bg0) 0%, var(--bg1) 55%, var(--bg2) 100%);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,168,67,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,67,.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 72% 65% at 50% 38%, black 15%, transparent 88%);
  -webkit-mask-image: radial-gradient(ellipse 72% 65% at 50% 38%, black 15%, transparent 88%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  background: var(--gold-glow);
  border: 1px solid var(--border-hov);
  border-radius: 40px;
  font-size: .68rem;
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}
.hero-badge::before { content: '✦'; font-size: .55rem; }

/* FIX: Removed banned gradient-text (background-clip: text). Solid color only. */
.hero-title {
  color: var(--t1);
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--gold);
  font-style: italic;
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: .01em;
}

.hero-desc {
  font-size: clamp(.95rem, 1.5vw, 1.08rem);
  color: var(--t2);
  max-width: 54ch;
  margin-bottom: 42px;
  line-height: 1.85;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--t3); font-size: .68rem; letter-spacing: .12em;
  animation: scrollBob 2.6s var(--ease-in-out) infinite;
}
.hero-scroll-arrow {
  width: 16px; height: 16px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
  opacity: .45;
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ════════════════════════════════════════════════
   STATS
   ════════════════════════════════════════════════ */
.stats-section {
  padding: 52px 0;
  background: var(--bg1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  text-align: center;
  padding: 26px 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: .76rem;
  color: var(--t3);
  letter-spacing: .05em;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
}

/* ════════════════════════════════════════════════
   ABOUT / FEATURES
   ════════════════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}
.about-text .badge { margin-bottom: 12px; }
.about-text h2 { margin-bottom: 16px; }
.about-text p  { font-size: 1rem; line-height: 1.85; max-width: 52ch; }

.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-item {
  display: flex;
  gap: 16px;
  padding: 16px 18px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--tr), background var(--tr);
}
.feature-item:hover { border-color: var(--border-hov); background: var(--bg3); }
.feature-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  color: #000;
  flex-shrink: 0;
}
.feature-body h4 {
  color: var(--t1);
  font-family: 'Jost', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: .01em;
}
.feature-body p { font-size: .85rem; color: var(--t3); line-height: 1.6; max-width: none; }

/* ════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════ */
.testimonials-section { background: var(--bg1); }
.testimonial-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 30px;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
  position: relative;
}
/* Decorative opening quote */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 22px;
  font-family: 'Cinzel', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: .1;
  pointer-events: none;
}
.testimonial-card:hover {
  border-color: var(--border-hov);
  transform: translateY(-3px);
  box-shadow: 0 8px 10px rgba(0,0,0,.42);
}
.testimonial-text {
  font-style: italic;
  color: var(--t2);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: .93rem;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: .95rem; font-weight: 700; color: #000; flex-shrink: 0;
}
.testimonial-name { font-weight: 600; color: var(--t1); font-size: .88rem; }
.testimonial-role { font-size: .76rem; color: var(--gold); margin-top: 1px; }

/* ════════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════════ */
.cta-section {
  background: var(--bg1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 84px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 48% 68% at 50% 110%, rgba(212,168,67,.07) 0%, transparent 68%),
    radial-gradient(ellipse 75% 35% at 50% -5%, rgba(212,168,67,.04) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: 12px; }
.cta-section p  { max-width: 50ch; margin: 0 auto 34px; font-size: 1rem; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════════
   COURSES PAGE
   ════════════════════════════════════════════════ */
.course-card {
  display: flex;
  flex-direction: column;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.course-card:hover {
  border-color: var(--border-hov);
  transform: translateY(-3px);
  box-shadow: 0 10px 10px rgba(0,0,0,.42);
}

.course-header {
  padding: 22px 24px 16px;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
}
.course-emoji { font-size: 1.9rem; margin-bottom: 9px; line-height: 1; }
.course-tag-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.course-title {
  font-size: 1rem;
  color: var(--t1);
  font-family: 'Cinzel', serif;
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: -0.01em;
}
.course-desc {
  font-size: .86rem;
  color: var(--t3);
  line-height: 1.7;
  padding: 0 24px;
  margin: 16px 0;
  flex: 1;
  max-width: none;
}
.course-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.course-meta-item { background: var(--bg2); padding: 11px 12px; text-align: center; }
.course-meta-label { font-size: .62rem; color: var(--t3); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 2px; }
.course-meta-value { font-size: .82rem; color: var(--t1); font-weight: 500; }
.course-footer {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.course-price {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.course-btns { display: flex; gap: 7px; flex-wrap: wrap; }

/* ════════════════════════════════════════════════
   CONSULTATIONS PAGE
   ════════════════════════════════════════════════ */
.cons-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 30px;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cons-card:hover {
  border-color: var(--border-hov);
  transform: translateY(-3px);
  box-shadow: 0 10px 10px rgba(0,0,0,.42);
}
.cons-icon-wrap {
  width: 50px; height: 50px;
  border-radius: var(--r-md);
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.cons-title { font-size: 1.06rem; color: var(--t1); font-family: 'Cinzel', serif; font-weight: 600; letter-spacing: -0.01em; }
.cons-desc  { color: var(--t2); font-size: .9rem; line-height: 1.75; max-width: none; }
.cons-features { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.cons-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .84rem;
  color: var(--t2);
}
.cons-features li::before { content: '✦'; color: var(--gold); font-size: .55rem; flex-shrink: 0; }
.cons-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.cons-price-block { display: flex; flex-direction: column; gap: 2px; }
.cons-duration { font-size: .74rem; color: var(--t3); font-family: 'Jost', sans-serif; }
.cons-price { font-family: 'Cinzel', serif; font-size: 1.35rem; font-weight: 700; color: var(--gold); letter-spacing: -0.01em; }
.cons-btns { display: flex; gap: 7px; flex-wrap: wrap; }

/* ════════════════════════════════════════════════
   ASSOCIATION PAGE
   ════════════════════════════════════════════════ */
.assoc-about { margin-bottom: 80px; }
.assoc-about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.assoc-values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.value-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 20px;
  transition: border-color var(--tr);
}
.value-card:hover { border-color: var(--border-hov); }
.value-icon { font-size: 1.4rem; margin-bottom: 7px; }
.value-title { font-size: .88rem; font-weight: 600; color: var(--t1); margin-bottom: 4px; }
.value-text  { font-size: .82rem; color: var(--t3); line-height: 1.6; max-width: none; }

/* Membership plans */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 30px;
  display: flex; flex-direction: column; gap: 16px;
  transition: var(--tr); position: relative;
}
.plan-card.highlighted { border-color: var(--border-hov); background: var(--bg3); }
.plan-popular {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000; font-size: .62rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 3px 14px; border-radius: 40px;
  white-space: nowrap; font-family: 'Jost', sans-serif;
}
.plan-name { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); font-family: 'Jost', sans-serif; }
.plan-price { font-family: 'Cinzel', serif; font-size: 1.9rem; font-weight: 700; color: var(--t1); line-height: 1; }
.plan-period { font-size: .8rem; color: var(--t3); }
.plan-features { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.plan-features li { display: flex; align-items: flex-start; gap: 8px; font-size: .86rem; color: var(--t2); }
.plan-features li::before { content: '✦'; color: var(--gold); font-size: .52rem; flex-shrink: 0; margin-top: 4px; }

/* Events */
.events-list { display: flex; flex-direction: column; gap: 10px; }
.event-item {
  display: grid; grid-template-columns: auto 1fr auto; gap: 16px;
  align-items: center; background: var(--bg2);
  border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 16px 20px; transition: var(--tr);
}
.event-item:hover { border-color: var(--border-hov); transform: translateX(3px); }
.event-date { font-family: 'Cinzel', serif; font-size: .84rem; color: var(--gold); white-space: nowrap; min-width: 100px; }
.event-title { font-weight: 500; color: var(--t1); font-size: .88rem; }
.event-format { font-size: .75rem; color: var(--t3); margin-top: 2px; }
.event-tag { flex-shrink: 0; }

/* ════════════════════════════════════════════════
   GUIDES PAGE
   ════════════════════════════════════════════════ */
.publishing-banner {
  background: var(--bg2);
  border: 1px solid var(--border-hov);
  border-radius: var(--r-lg);
  padding: 44px;
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  overflow: hidden;
}
.publishing-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 48% 78% at 50% 110%, rgba(212,168,67,.07) 0%, transparent 62%),
    radial-gradient(ellipse 76% 32% at 50% -5%, rgba(212,168,67,.04) 0%, transparent 60%);
  pointer-events: none;
}
.publishing-banner .container { position: relative; z-index: 1; }
.publishing-banner h3 { color: var(--t1); margin-bottom: 7px; }
.publishing-banner p  { color: var(--t2); margin-bottom: 22px; max-width: 48ch; margin-left: auto; margin-right: auto; }

.book-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
  display: flex; flex-direction: column;
}
.book-card:hover {
  border-color: var(--border-hov);
  transform: translateY(-3px);
  box-shadow: 0 10px 10px rgba(0,0,0,.42);
}
.book-cover {
  height: 140px; background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.2rem; border-bottom: 1px solid var(--border); position: relative;
}
.book-cover-tag { position: absolute; top: 10px; right: 10px; }
.book-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 7px; }
.book-title { font-size: .93rem; color: var(--t1); font-family: 'Cinzel', serif; font-weight: 600; line-height: 1.38; }
.book-author { font-size: .76rem; color: var(--gold); font-family: 'Jost', sans-serif; }
.book-desc { font-size: .84rem; color: var(--t3); line-height: 1.65; flex: 1; max-width: none; }
.book-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 13px 20px; border-top: 1px solid var(--border); flex-wrap: wrap;
}
.book-price { font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 700; color: var(--gold); }
.book-btns { display: flex; gap: 6px; }

/* ════════════════════════════════════════════════
   CONTACTS PAGE
   ════════════════════════════════════════════════ */
.contacts-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 52px; align-items: start; }
.contact-form {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 34px;
}
.contact-form h3 { color: var(--t1); margin-bottom: 24px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: .72rem; color: var(--t2);
  margin-bottom: 5px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  font-family: 'Jost', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 10px 14px; color: var(--t1);
  font-size: .9rem; transition: border-color var(--tr), background var(--tr); outline: none;
  font-family: 'Jost', sans-serif;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--t3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--border-hov); background: var(--bg4); }
.form-group select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4a843' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; padding-right: 36px;
}
.form-group textarea { resize: vertical; min-height: 108px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.form-message { display: none; padding: 11px 15px; border-radius: var(--r-sm); font-size: .86rem; margin-top: 11px; }
.form-message.success { display: block; background: rgba(52,211,153,.07); border: 1px solid rgba(52,211,153,.22); color: #34d399; }
.form-message.error   { display: block; background: rgba(248,113,113,.07); border: 1px solid rgba(248,113,113,.22); color: #f87171; }

.contact-info-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.contact-info-item {
  display: flex; gap: 13px; padding: 16px 18px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-md); transition: border-color var(--tr);
}
.contact-info-item:hover { border-color: var(--border-hov); }
.contact-info-icon {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  background: var(--gold-glow); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; flex-shrink: 0;
}
.contact-info-label { font-size: .68rem; color: var(--t3); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 2px; font-family: 'Jost', sans-serif; }
.contact-info-value { font-size: .9rem; color: var(--t1); white-space: pre-line; line-height: 1.6; }

.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.social-btn {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  padding: 10px; background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r-sm); font-size: .76rem; font-weight: 600;
  color: var(--t3); transition: var(--tr); cursor: pointer;
  font-family: 'Jost', sans-serif;
}
.social-btn:hover { background: var(--gold-glow); border-color: var(--border-hov); color: var(--gold); transform: translateY(-2px); }
.social-icon { width: 19px; height: 19px; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: .62rem; font-weight: 700; flex-shrink: 0; }
.social-icon.tg { background: #2ca5e0; color: #fff; }
.social-icon.ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.social-icon.fb { background: #1877f2; color: #fff; }
.social-icon.yt { background: #ff0000; color: #fff; }

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
#footer {
  background: var(--bg1);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
}
.footer-brand-name {
  font-family: 'Cinzel', serif;
  font-size: 1.12rem; font-weight: 700;
  color: var(--t1); letter-spacing: .03em; margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: .6rem; color: var(--gold);
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 13px; font-family: 'Jost', sans-serif;
}
.footer-desc { font-size: .84rem; color: var(--t3); line-height: 1.75; max-width: 250px; }
.footer-col-title {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .15em;
  color: var(--gold); margin-bottom: 14px; font-weight: 700;
  font-family: 'Jost', sans-serif;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .85rem; color: var(--t3); transition: color var(--tr); font-family: 'Jost', sans-serif; }
.footer-links a:hover { color: var(--t1); }
.footer-contact-list { display: flex; flex-direction: column; gap: 7px; }
.footer-contact-item { font-size: .83rem; color: var(--t3); }

.footer-publishing { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r-md); padding: 18px; }
.footer-publishing p { font-size: .81rem; color: var(--t3); margin-bottom: 11px; line-height: 1.65; max-width: none; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom-left { font-size: .76rem; color: var(--t3); font-family: 'Jost', sans-serif; }
.footer-bottom-right { display: flex; gap: 16px; }
.footer-bottom-right a { font-size: .76rem; color: var(--t3); transition: color var(--tr); font-family: 'Jost', sans-serif; }
.footer-bottom-right a:hover { color: var(--gold); }

/* ════════════════════════════════════════════════
   PAYMENT MODAL
   ════════════════════════════════════════════════ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.68); backdrop-filter: blur(10px);
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--bg2); border: 1px solid var(--border-hov);
  border-radius: var(--r-lg); padding: 38px; max-width: 450px; width: 100%;
  position: relative;
  /* Single shadow only — no paired border+wide-shadow */
  box-shadow: 0 24px 60px rgba(0,0,0,.72);
  animation: modalIn .26s var(--ease-out-expo);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.93) translateY(14px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute; top: 13px; right: 13px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: var(--t3); cursor: pointer; transition: var(--tr);
}
.modal-close:hover { background: var(--bg4); color: var(--t1); border-color: var(--border-hov); }
.modal-title { font-family: 'Cinzel', serif; font-size: 1.28rem; color: var(--t1); margin-bottom: 4px; font-weight: 600; }
.modal-subtitle { font-size: .84rem; color: var(--t3); margin-bottom: 22px; }
.modal-item {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 12px 16px; margin-bottom: 18px;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.modal-item-name { font-size: .86rem; color: var(--t1); }
.modal-item-price { font-family: 'Cinzel', serif; font-size: 1.15rem; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.modal-divider {
  text-align: center; font-size: .67rem; color: var(--t3);
  letter-spacing: .12em; text-transform: uppercase;
  margin: 16px 0; position: relative; font-family: 'Jost', sans-serif;
}
.modal-divider::before, .modal-divider::after {
  content: ''; position: absolute; top: 50%;
  width: calc(50% - 34px); height: 1px; background: var(--border);
}
.modal-divider::before { left: 0; }
.modal-divider::after  { right: 0; }
.modal-pay-btns { display: flex; flex-direction: column; gap: 9px; }
.modal-pay-btn {
  display: flex; align-items: center; gap: 11px;
  padding: 13px 16px; border-radius: var(--r-sm);
  font-size: .9rem; font-weight: 600;
  cursor: pointer; transition: var(--tr); border: none;
  width: 100%; text-align: left; font-family: 'Jost', sans-serif;
}
.modal-pay-btn .pay-icon { font-size: 1.2rem; flex-shrink: 0; }
.modal-pay-btn .pay-text { flex: 1; }
.modal-pay-btn .pay-desc { font-size: .72rem; font-weight: 400; opacity: .68; display: block; margin-top: 1px; }

/* ════════════════════════════════════════════════
   SCROLL TO TOP
   ════════════════════════════════════════════════ */
#scroll-top {
  display: none; position: fixed; bottom: 26px; right: 26px; z-index: 900;
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%; align-items: center; justify-content: center;
  cursor: pointer; border: none;
  box-shadow: 0 3px 12px rgba(212,168,67,.2);
  transition: var(--tr); font-size: .82rem; color: #000; font-weight: 700;
}
#scroll-top.visible { display: flex; }
#scroll-top:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 5px 16px rgba(212,168,67,.3); }

/* ════════════════════════════════════════════════
   ANIMATIONS — Page transition + staggered entrance
   ════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page-content { animation: fadeUp .32s var(--ease-out-expo); }

/* Staggered card entrance — timing relative to page fade (.32s) */
.grid-3 > *, .grid-2 > * {
  animation: cardIn .48s var(--ease-out-expo) both;
}
.grid-3 > *:nth-child(1),  .grid-2 > *:nth-child(1)  { animation-delay: .22s; }
.grid-3 > *:nth-child(2),  .grid-2 > *:nth-child(2)  { animation-delay: .28s; }
.grid-3 > *:nth-child(3),  .grid-2 > *:nth-child(3)  { animation-delay: .34s; }
.grid-3 > *:nth-child(4),  .grid-2 > *:nth-child(4)  { animation-delay: .40s; }
.grid-3 > *:nth-child(5),  .grid-2 > *:nth-child(5)  { animation-delay: .46s; }
.grid-3 > *:nth-child(6),  .grid-2 > *:nth-child(6)  { animation-delay: .52s; }
.grid-3 > *:nth-child(7)   { animation-delay: .58s; }
.grid-3 > *:nth-child(8)   { animation-delay: .64s; }
.grid-3 > *:nth-child(9)   { animation-delay: .70s; }
.grid-3 > *:nth-child(10)  { animation-delay: .76s; }
.grid-3 > *:nth-child(11)  { animation-delay: .82s; }
.grid-3 > *:nth-child(12)  { animation-delay: .88s; }
.grid-3 > *:nth-child(13)  { animation-delay: .94s; }
.grid-3 > *:nth-child(14)  { animation-delay: 1.00s; }
.grid-3 > *:nth-child(15)  { animation-delay: 1.06s; }

/* Reduced motion — all animations collapse to instant */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ════════════════════════════════════════════════
   PAGE HERO BANNER (inner pages)
   ════════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 52px) 0 48px;
  background: var(--bg1);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 85% at 50% 115%, rgba(212,168,67,.06) 0%, transparent 62%),
    radial-gradient(ellipse 75% 28% at 50% -2%, rgba(212,168,67,.03) 0%, transparent 58%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 9px; }
.page-hero p  { font-size: 1.04rem; max-width: 54ch; }

/* ════════════════════════════════════════════════
   FOUNDER CARD (specialists page)
   ════════════════════════════════════════════════ */
.founder-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 44px;
  background: var(--bg2);
  border: 1px solid var(--border-hov);
  border-radius: var(--r-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.founder-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 56% 76% at 0% 50%, rgba(212,168,67,.055) 0%, transparent 58%);
  pointer-events: none;
}
.founder-avatar {
  width: 116px; height: 116px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-size: 2.6rem; font-weight: 700; color: #000;
  flex-shrink: 0; align-self: flex-start;
  box-shadow: 0 0 36px rgba(212,168,67,.16);
  position: relative; z-index: 1;
}
.founder-body { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 11px; }
.founder-badge-label {
  font-size: .66rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Jost', sans-serif;
}
.founder-badge-label::before { content: '✦'; font-size: .5rem; }
.founder-name    { font-size: clamp(1.4rem, 2.8vw, 2rem); color: var(--t1); line-height: 1.2; }
.founder-location{ font-size: .82rem; color: var(--t3); font-family: 'Jost', sans-serif; }
.founder-specialty{ font-size: .85rem; color: var(--gold-light); font-weight: 500; font-family: 'Jost', sans-serif; }
.founder-bio     { color: var(--t2); font-size: .96rem; line-height: 1.85; max-width: none; }
.founder-credentials { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.credential-tag {
  display: inline-block; padding: 3px 11px; font-size: .7rem; font-weight: 500;
  border-radius: 40px; background: var(--bg3); border: 1px solid var(--border);
  color: var(--t3); transition: var(--tr); font-family: 'Jost', sans-serif;
}
.credential-tag:hover { border-color: var(--border-hov); color: var(--gold); }

/* Specialist cards */
.specialist-card { display: flex; flex-direction: column; gap: 10px; }
.specialist-header { display: flex; align-items: center; gap: 11px; margin-bottom: 2px; }
.specialist-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700; color: #000; flex-shrink: 0;
}
.specialist-name     { font-size: .96rem; color: var(--t1); font-family: 'Cinzel', serif; font-weight: 600; }
.specialist-location { font-size: .74rem; color: var(--t3); margin-top: 1px; font-family: 'Jost', sans-serif; }
.specialist-specialty{ font-size: .8rem; color: var(--gold-light); font-weight: 500; font-family: 'Jost', sans-serif; }
.specialist-bio      { font-size: .86rem; color: var(--t2); line-height: 1.75; flex: 1; max-width: none; }
.specialist-credentials { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 2px; }

/* ════════════════════════════════════════════════
   FOUNDER QUOTE (home)
   ════════════════════════════════════════════════ */
.founder-quote-section {
  padding: 92px 0;
  background: var(--bg1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.founder-quote-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 56% 76% at 28% 50%, rgba(212,168,67,.04) 0%, transparent 62%);
  pointer-events: none;
}
.founder-quote-card {
  display: grid; grid-template-columns: auto 1fr; gap: 52px;
  align-items: center; max-width: 960px; margin: 0 auto;
  position: relative; z-index: 1;
}
.founder-quote-avatar {
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-size: 2.1rem; font-weight: 700; color: #000; flex-shrink: 0;
  box-shadow: 0 0 32px rgba(212,168,67,.16);
}
.founder-quote-body { display: flex; flex-direction: column; gap: 11px; }
.founder-quote-text {
  font-family: 'Cinzel', serif;
  font-size: clamp(.92rem, 1.5vw, 1.16rem);
  font-style: italic; color: var(--t1); line-height: 1.88;
  position: relative; padding-left: 24px; font-weight: 400;
}
.founder-quote-text::before {
  content: '\201C';
  position: absolute; left: 0; top: -7px;
  font-size: 3.2rem; color: var(--gold); opacity: .28; line-height: 1;
}
.founder-quote-name { font-size: .92rem; font-weight: 600; color: var(--t1); font-family: 'Jost', sans-serif; }
.founder-quote-role { font-size: .8rem; color: var(--gold); font-family: 'Jost', sans-serif; }
.founder-quote-loc  { font-size: .76rem; color: var(--t3); font-family: 'Jost', sans-serif; }

/* ════════════════════════════════════════════════
   INDIVIDUAL TRAINING CARDS
   ════════════════════════════════════════════════ */
.individual-card { display: flex; flex-direction: column; gap: 13px; }
.individual-icon {
  width: 46px; height: 46px; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}

/* ════════════════════════════════════════════════
   HOME — HERO SUPERTITLE
   ════════════════════════════════════════════════ */
.hero-supertitle {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: .85;
}

/* ════════════════════════════════════════════════
   BLOCK 2 — MANIFESTO
   ════════════════════════════════════════════════ */
.manifesto-section {
  padding: 96px 0;
  background: var(--bg1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.manifesto-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 70% at 100% 50%, rgba(212,168,67,.05) 0%, transparent 60%);
  pointer-events: none;
}
.manifesto-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  align-items: start;
  position: relative; z-index: 1;
}
.manifesto-title {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  color: var(--t1);
  margin-bottom: 28px;
  line-height: 1.35;
  white-space: pre-line;
}
.manifesto-body { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.manifesto-body p { font-size: 1rem; color: var(--t2); line-height: 1.82; max-width: 66ch; }
.manifesto-publishing {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 22px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: .88rem;
  color: var(--t3);
}

.manifesto-founder {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: var(--bg2);
  border: 1px solid var(--border-hov);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.manifesto-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 2.2rem; font-weight: 700; color: #000;
  box-shadow: 0 0 32px rgba(212,168,67,.18);
  margin-bottom: 4px;
}
.manifesto-founder-name {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem; font-weight: 600; color: var(--t1);
}
.manifesto-founder-role {
  font-size: .76rem; color: var(--gold);
  font-family: 'Jost', sans-serif; font-weight: 500;
  line-height: 1.5;
}
.manifesto-credentials {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px;
  margin-top: 4px;
}
.manifesto-credentials span {
  padding: 3px 10px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 40px; font-size: .68rem; color: var(--t3);
  font-family: 'Jost', sans-serif; font-weight: 500;
}

/* ════════════════════════════════════════════════
   BLOCK 3 — PROGRAMS
   ════════════════════════════════════════════════ */
.home-programs-section {
  padding: 96px 0;
  background: var(--bg0);
}
.home-section-header {
  margin-bottom: 48px;
}
.home-section-header h2 { margin-bottom: 12px; }
.home-section-header p { font-size: 1rem; color: var(--t2); max-width: 62ch; }
.home-viewall {
  margin-top: 48px;
  text-align: center;
}

/* ════════════════════════════════════════════════
   BLOCK 4 — ASSOCIATION
   ════════════════════════════════════════════════ */
.home-assoc-section {
  padding: 96px 0;
  background: var(--bg1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.home-assoc-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}
.home-assoc-text h2 { margin-bottom: 16px; }
.home-assoc-text p  { font-size: 1rem; color: var(--t2); line-height: 1.8; max-width: 58ch; margin-bottom: 24px; }
.assoc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.assoc-tag {
  padding: 5px 14px;
  background: var(--bg3);
  border: 1px solid var(--border-hov);
  border-radius: 40px;
  font-size: .76rem;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--tr);
}
.assoc-tag:hover { background: var(--gold-glow); border-color: var(--border-act); }

.home-assoc-specialists {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home-specialist-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--tr);
}
.home-specialist-card:hover { border-color: var(--border-hov); }
.home-specialist-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-size: 1.05rem; font-weight: 700; color: #000;
}
.home-specialist-info { flex: 1; min-width: 0; }
.home-specialist-name { font-size: .92rem; color: var(--t1); font-weight: 600; font-family: 'Jost', sans-serif; }
.home-specialist-spec { font-size: .76rem; color: var(--t3); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.home-assoc-more {
  text-align: center;
  font-size: .82rem;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  cursor: pointer;
  padding: 12px;
  transition: opacity var(--tr);
}
.home-assoc-more:hover { opacity: .75; }

/* ════════════════════════════════════════════════
   BLOCK 5 — VIP / ELITE
   ════════════════════════════════════════════════ */
.home-vip-section {
  padding: 96px 0;
  background: var(--bg0);
  position: relative;
  overflow: hidden;
}
.home-vip-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 50%, rgba(212,168,67,.055) 0%, transparent 65%);
  pointer-events: none;
}
.home-vip-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 64px 56px;
  background: var(--bg2);
  border: 1px solid var(--border-hov);
  border-radius: var(--r-lg);
}
.home-vip-card::before {
  content: '';
  position: absolute; inset: 0; border-radius: var(--r-lg);
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(212,168,67,.06) 0%, transparent 60%);
  pointer-events: none;
}
.home-vip-label {
  font-family: 'Jost', sans-serif;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); opacity: .8;
}
.home-vip-title {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  color: var(--t1); line-height: 1.3; max-width: 620px;
}
.home-vip-text {
  font-size: .98rem; color: var(--t2);
  line-height: 1.82; max-width: 62ch; margin: 0 auto;
}
.home-vip-restriction {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 20px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: .84rem; color: var(--t3);
  text-align: left;
  max-width: 520px;
}
.home-vip-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ════════════════════════════════════════════════
   BLOCK 6 — TRUST / CASES
   ════════════════════════════════════════════════ */
.home-trust-section {
  padding: 96px 0;
  background: var(--bg1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-case-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.trust-case-card:hover {
  border-color: var(--border-hov);
  transform: translateY(-3px);
  box-shadow: 0 10px 10px rgba(0,0,0,.42);
}
.trust-case-icon {
  font-size: 2rem; line-height: 1; margin-bottom: 4px;
}
.trust-case-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: .88rem;
  line-height: 1.65;
}
.trust-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
}
.trust-before .trust-label { color: var(--t3); }
.trust-before span:last-child { color: var(--t2); }
.trust-method .trust-label { color: var(--gold); opacity: .8; }
.trust-method span:last-child { color: var(--t2); font-style: italic; }
.trust-after .trust-label { color: #34d399; opacity: .9; }
.trust-after span:last-child { color: var(--t1); font-weight: 500; }
.trust-case-arrow {
  text-align: center;
  color: var(--border-hov);
  font-size: 1rem;
  line-height: 1;
}

/* ════════════════════════════════════════════════
   BLOCK 7 — FINAL CTA
   ════════════════════════════════════════════════ */
.home-final-cta {
  padding: 100px 0;
  text-align: center;
  background: var(--bg0);
  position: relative;
  overflow: hidden;
}
.home-final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 50% 100%, rgba(212,168,67,.08) 0%, transparent 65%),
    radial-gradient(ellipse 75% 35% at 50% 0%, rgba(212,168,67,.04) 0%, transparent 60%);
  pointer-events: none;
}
.home-final-cta h2 { margin-bottom: 14px; position: relative; z-index: 1; }
.home-final-cta p  {
  max-width: 56ch; margin: 0 auto 36px;
  font-size: 1rem; color: var(--t2);
  position: relative; z-index: 1;
}
.home-final-cta .btn { position: relative; z-index: 1; }

/* ════════════════════════════════════════════════
   QUIZ MODAL
   ════════════════════════════════════════════════ */
.quiz-modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 2100;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.quiz-modal-overlay.open { display: flex; }
.quiz-modal-box {
  background: var(--bg2);
  border: 1px solid var(--border-hov);
  border-radius: var(--r-lg);
  padding: 44px;
  max-width: 540px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,.72);
  animation: modalIn .26s var(--ease-out-expo);
}
.quiz-header { margin-bottom: 28px; }
.quiz-title {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem; font-weight: 600; color: var(--t1);
  margin-bottom: 6px;
}
.quiz-subtitle { font-size: .86rem; color: var(--t3); }
.quiz-question {
  font-size: 1rem; font-weight: 600; color: var(--t1);
  margin-bottom: 18px; line-height: 1.5;
  font-family: 'Jost', sans-serif;
}
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-align: left;
  font-size: .92rem;
  color: var(--t2);
  cursor: pointer;
  transition: var(--tr);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1.55;
}
.quiz-option:hover { border-color: var(--border-hov); color: var(--t1); background: var(--bg4); }
.quiz-option-num {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-glow); border: 1px solid var(--border-hov);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; color: var(--gold);
  font-family: 'Cinzel', serif;
}

.quiz-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 8px 0;
}
.quiz-result-icon {
  font-size: 1.8rem; color: var(--gold);
  font-family: 'Cinzel', serif;
  margin-bottom: 4px;
}
.quiz-result-title {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem; font-weight: 600; color: var(--t1);
  line-height: 1.35;
}
.quiz-result-text {
  font-size: .94rem; color: var(--t2);
  line-height: 1.75; max-width: 40ch; margin: 0 auto;
}
.quiz-result-btns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-3         { grid-template-columns: repeat(2, 1fr); }
  .grid-4         { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-layout   { grid-template-columns: 1fr; gap: 44px; }
  .assoc-about-layout { grid-template-columns: 1fr; gap: 32px; }
  .plans-grid     { grid-template-columns: repeat(2, 1fr); }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .contacts-layout { grid-template-columns: 1fr; }
  .manifesto-layout { grid-template-columns: 1fr; gap: 48px; }
  .manifesto-founder { position: static; }
  .home-assoc-layout { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 900px) {
  .founder-card { grid-template-columns: 1fr; gap: 26px; padding: 30px 24px; }
  .founder-avatar { width: 80px; height: 80px; font-size: 1.9rem; }
  .founder-quote-card { grid-template-columns: 1fr; gap: 26px; }
  .founder-quote-avatar { width: 68px; height: 68px; font-size: 1.7rem; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links              { display: none; }
  .hamburger              { display: flex; }
  .btn-publishing.desktop { display: none; }

  .grid-3   { grid-template-columns: 1fr; }
  .grid-2   { grid-template-columns: 1fr; }
  .grid-4   { grid-template-columns: repeat(2, 1fr); }
  .plans-grid    { grid-template-columns: 1fr; }
  .assoc-values  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-right { flex-wrap: wrap; justify-content: center; }

  .hero-btns  { flex-direction: column; align-items: flex-start; }
  .cta-btns   { flex-direction: column; align-items: center; }
  .section    { padding: 64px 0; }
  .publishing-banner { padding: 32px 20px; }
  .form-row   { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-box  { padding: 26px 18px; }

  /* Home page sections */
  .manifesto-section  { padding: 64px 0; }
  .home-programs-section,
  .home-assoc-section,
  .home-vip-section,
  .home-trust-section,
  .home-final-cta     { padding: 64px 0; }
  .home-vip-card { padding: 40px 24px; }
  .quiz-modal-box { padding: 32px 20px; }
  .quiz-result-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .container    { padding: 0 14px; }
  .grid-4       { grid-template-columns: 1fr; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .stat-item    { border-right: 0; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .stat-item:nth-child(2) { border-right: 0; }
  .course-meta  { grid-template-columns: 1fr; }
  .home-vip-card { padding: 32px 16px; }
}
