/* ============================================================
   Timur Gasanov (Abu Hanifa) — custom styles over Tailwind CDN
   ============================================================ */

:root {
  --ink:      #0b0b10;
  --panel:    #16161d;
  --panelHi:  #1e1e28;
  --gold:     #d4a449;
  --gold-2:   #e8c372;
  --line:     #2a2a35;
  --text:     #f5f5f7;
  --text-mute:#9a9aa5;
}

* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }
body {
  background-color: var(--ink);
  background-image:
    radial-gradient(1200px 600px at 85% -10%, rgba(212,164,73,.10), transparent 60%),
    radial-gradient(1000px 500px at -10% 40%, rgba(212,164,73,.05), transparent 55%);
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  background: linear-gradient(to bottom, rgba(11,11,16,.86), rgba(11,11,16,.35) 80%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
#site-header.is-scrolled {
  background: rgba(11,11,16,.92);
  border-bottom: 1px solid var(--line);
}
.header-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,164,73,.25) 20%, rgba(212,164,73,.25) 80%, transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
#site-header.is-scrolled .header-divider { opacity: 1; }

.nav-link {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-mute);
  transition: color .2s ease;
  padding: 4px 0;
  white-space: nowrap;
}
.nav-link:hover { color: var(--text); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width .25s ease;
}
.nav-link:hover::after { width: 100%; }

.soc-btn {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  color: var(--text-mute);
  border: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.soc-btn i { width: 18px; height: 18px; }
.soc-btn:hover {
  color: var(--gold);
  border-color: rgba(212,164,73,.35);
  background: rgba(212,164,73,.06);
}

/* Brand logo */
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(212,164,73,.18));
}
.brand-logo--footer { height: 46px; }

@media (max-width: 399px) {
  .brand-logo,
  .brand-logo--footer { height: 40px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .18s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn-ic { width: 16px; height: 16px; transition: transform .25s ease; }
.btn:hover .btn-ic { transform: translateX(3px); }

.btn-gold {
  color: #1a1408;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 12px 30px -12px rgba(212,164,73,.55), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px -12px rgba(212,164,73,.65), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn-outline {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(22,22,29,.6);
}
.btn-outline:hover {
  border-color: rgba(212,164,73,.5);
  color: var(--gold-2);
  background: rgba(30,30,40,.75);
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 60;
  background: rgba(11,11,16,.98);
  backdrop-filter: blur(14px);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform .35s ease, opacity .3s ease;
  pointer-events: none;
}
.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__inner {
  padding: 24px 24px 40px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.mobile-menu__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--text);
}
.mobile-link {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--text);
  letter-spacing: .02em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}
.mobile-link:hover { color: var(--gold-2); }

/* ============================================================
   EYEBROWS / HEADINGS
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.eyebrow--center {
  display: flex;
  justify-content: center;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(212,164,73,.7);
}

.h2 {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 52px);
  letter-spacing: .04em;
  color: var(--text);
}
.h2-ornament {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section { padding: 88px 0; }
@media (min-width: 768px) { .section { padding: 110px 0; } }
.section--tight { padding-bottom: 40px; }
@media (min-width: 768px) { .section--tight { padding-bottom: 56px; } }

.h2--block { display: block; margin-top: 18px; }

.section-lead {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--text-mute);
  font-size: 15.5px;
  line-height: 1.7;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: 65% center;
  z-index: 0;
  filter: saturate(.95);
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(92deg, rgba(11,11,16,.98) 0%, rgba(11,11,16,.95) 28%, rgba(11,11,16,.78) 46%, rgba(11,11,16,.28) 70%, rgba(11,11,16,.05) 100%),
    linear-gradient(180deg, rgba(11,11,16,.55) 0%, transparent 22%, transparent 60%, rgba(11,11,16,.92) 100%);
  z-index: 1;
}
.hero__content { z-index: 2; }
@media (max-width: 767px){
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(11,11,16,.65) 0%, rgba(11,11,16,.75) 55%, rgba(11,11,16,.98) 100%);
  }
  .hero__bg { background-position: 70% 20%; }
}

.hero__title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(52px, 9vw, 110px);
  line-height: .92;
  letter-spacing: .01em;
  margin-top: 22px;
}
.hero__title .text-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold) 70%, #b88735);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(212,164,73,.15);
}
.hero__role {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  color: var(--gold-2);
}
.hero__role-line {
  height: 1px;
  flex: 0 0 36px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero__role-text {
  font-size: clamp(14px, 1.6vw, 17px);
  letter-spacing: .04em;
  font-weight: 500;
  line-height: 1.4;
}
.hero__desc {
  max-width: 480px;
  margin-top: 28px;
  color: var(--text-mute);
  font-size: 15.5px;
  line-height: 1.7;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero__chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px 22px;
  margin-top: 46px;
  max-width: 560px;
}
@media (min-width: 640px) { .hero__chips { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.hero__chips > li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.chip-ic {
  flex: 0 0 38px;
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--gold-2);
  background: rgba(22,22,29,.8);
  border: 1px solid rgba(212,164,73,.25);
}
.chip-ic i { width: 18px; height: 18px; }
.chip-text {
  font-size: 12.5px;
  color: var(--text-mute);
  letter-spacing: .03em;
  line-height: 1.35;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.srv-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.srv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,164,73,.45);
  background: var(--panelHi);
  box-shadow: 0 24px 40px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(212,164,73,.08);
}
.srv-card__media {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.srv-card__media::after {
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,11,16,.7));
}
.srv-card__body { padding: 22px 24px 26px; }
.srv-card__title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .01em;
}
.srv-card__text {
  margin-top: 10px;
  color: var(--text-mute);
  font-size: 14.5px;
  line-height: 1.6;
}
.srv-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  padding: 10px 14px;
  border: 1px solid rgba(212,164,73,.35);
  border-radius: 8px;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.srv-card__link i { width: 14px; height: 14px; transition: transform .25s ease; }
.srv-card__link:hover {
  background: rgba(212,164,73,.12);
  border-color: var(--gold);
  color: var(--gold-2);
}
.srv-card__link:hover i { transform: translateX(3px); }

/* ============================================================
   УСЛУГИ (помощь) — help cards
   ============================================================ */
.help-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.help-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 340px;
  max-width: 100%;
  padding: 30px 26px 26px;
  background:
    linear-gradient(180deg, rgba(30,30,40,.7), rgba(22,22,29,.85));
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.help-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold), transparent);
  opacity: .6;
  border-radius: 16px 16px 0 0;
  transform: scaleX(.4);
  transform-origin: left;
  transition: transform .4s ease, opacity .3s ease;
}
.help-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,164,73,.45);
  background: linear-gradient(180deg, rgba(34,34,44,.85), rgba(24,24,32,.92));
  box-shadow: 0 28px 50px -24px rgba(0,0,0,.7), 0 0 0 1px rgba(212,164,73,.08);
}
.help-card:hover::before { transform: scaleX(1); opacity: 1; }

.help-card__ic {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  border-radius: 14px;
  color: var(--gold-2);
  background: linear-gradient(140deg, rgba(212,164,73,.18), rgba(11,11,16,.6));
  border: 1px solid rgba(212,164,73,.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 8px 20px -12px rgba(212,164,73,.5);
}
.help-card__ic i { width: 26px; height: 26px; }

.help-card__title {
  font-family: "Playfair Display", serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: .005em;
}
.help-card__text {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-mute);
  flex: 1 1 auto;
}
.help-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  align-self: flex-start;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,164,73,.08);
  border: 1px solid rgba(212,164,73,.4);
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
}
.help-card__cta i { width: 14px; height: 14px; transition: transform .25s ease; }
.help-card__cta:hover {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #1a1408;
  border-color: var(--gold);
}
.help-card__cta:hover i { transform: translateX(3px); }

/* ============================================================
   НАПРАВЛЕНИЯ — icon feature cards
   ============================================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0,1fr));
  gap: 18px;
}
@media (min-width: 640px) { .feat-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; } }
@media (min-width: 1024px){ .feat-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }

.feat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.feat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,164,73,.45);
  background: var(--panelHi);
  box-shadow: 0 24px 40px -22px rgba(0,0,0,.6);
}
.feat-card__ic {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 12px;
  margin-bottom: 18px;
  color: var(--gold-2);
  background: rgba(11,11,16,.55);
  border: 1px solid rgba(212,164,73,.3);
}
.feat-card__ic i { width: 24px; height: 24px; }
.feat-card__ic--img { background: rgba(11,11,16,.35); }
.feat-card__ic--img img { width: 38px; height: 38px; object-fit: contain; }
.feat-card__title {
  font-family: "Playfair Display", serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--text);
}
.feat-card__text {
  margin-top: 10px;
  color: var(--text-mute);
  font-size: 14px;
  line-height: 1.6;
  flex: 1 1 auto;
}
.feat-card__more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.feat-card__more i { width: 14px; height: 14px; transition: transform .25s ease; }
.feat-card:hover .feat-card__more i { transform: translateX(3px); }
.feat-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-2);
  background: rgba(212,164,73,.12);
  border: 1px solid rgba(212,164,73,.4);
  border-radius: 999px;
}
.feat-card--soon { border-style: dashed; }

/* ============================================================
   ПАРФЮМЕРИЯ ТГ
   ============================================================ */
.parfume__visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  width: 100%;
  max-width: 520px;
  margin-right: auto;
  border: 1px solid rgba(212,164,73,.28);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(212,164,73,.16), transparent 60%),
    linear-gradient(180deg, #1a1622 0%, #11101a 60%, #0c0b12 100%);
  box-shadow: 0 40px 70px -34px rgba(0,0,0,.75);
}
.parfume__visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(212,164,73,.10) 1px, transparent 1.4px);
  background-size: 22px 22px;
  opacity: .5;
  mask-image: radial-gradient(80% 70% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(80% 70% at 50% 40%, #000 30%, transparent 75%);
}
.parfume__visual-inner {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
}
.parfume__logo {
  width: 46%;
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 0 36px rgba(212,164,73,.35));
}
.parfume__logo--full {
  width: 82%;
  max-width: 360px;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.45)) drop-shadow(0 0 40px rgba(212,164,73,.22));
}
.parfume__brand-sub {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.parfume__features {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.parfume__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 14.5px;
}
.parfume__features i {
  flex: 0 0 26px;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  padding: 5px;
  border-radius: 7px;
  color: var(--gold-2);
  background: rgba(212,164,73,.1);
  border: 1px solid rgba(212,164,73,.3);
}

/* ============================================================
   АКАДЕМИЯ
   ============================================================ */
.academy {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 50% -10%, rgba(212,164,73,.10), transparent 60%),
    linear-gradient(180deg, #0e0d15 0%, #0b0b10 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.academy__pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(212,164,73,.08) 1px, transparent 1.4px);
  background-size: 26px 26px;
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 20%, transparent 80%);
  pointer-events: none;
}
.badge-soon {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-2);
  background: rgba(212,164,73,.08);
  border: 1px solid rgba(212,164,73,.4);
}
.badge-soon__dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(212,164,73,.6);
  animation: soonPulse 2s ease-out infinite;
}
@keyframes soonPulse {
  0%   { box-shadow: 0 0 0 0 rgba(212,164,73,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(212,164,73,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,164,73,0); }
}
.academy__groups {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.academy__group-label {
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}
.academy__tags {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 768px;
}
.academy__tags li {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 240px;
  max-width: 100%;
  height: 52px;
  padding: 0 14px;
  white-space: nowrap;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gold-2);
  background:
    linear-gradient(135deg, rgba(212,164,73,.16), rgba(22,22,29,.85) 46%, rgba(212,164,73,.12));
  border: 1px solid rgba(212,164,73,.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 6px 18px -12px rgba(212,164,73,.5);
  transition: border-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
/* переливающийся золотой блик */
.academy__tags li::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(247,239,138,.45) 50%, transparent 100%);
  transform: translateX(-180%) skewX(-12deg);
  animation: chipShine 5.5s ease-in-out infinite;
  pointer-events: none;
}
.academy__tags li:nth-child(2)::before { animation-delay: .5s; }
.academy__tags li:nth-child(3)::before { animation-delay: 1s; }
.academy__tags li:nth-child(4)::before { animation-delay: 1.5s; }
.academy__tags li:nth-child(5)::before { animation-delay: 2s; }
.academy__tags li:nth-child(6)::before { animation-delay: 2.5s; }
.academy__tags li:nth-child(7)::before { animation-delay: 3s; }
.academy__tags li:nth-child(8)::before { animation-delay: 3.5s; }
@keyframes chipShine {
  0%   { transform: translateX(-180%) skewX(-12deg); }
  18%  { transform: translateX(260%) skewX(-12deg); }
  100% { transform: translateX(260%) skewX(-12deg); }
}
.academy__tags li:hover {
  border-color: rgba(232,195,114,.85);
  color: #1a1408;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(212,164,73,.7), inset 0 1px 0 rgba(255,255,255,.3);
}
.academy__tags li:hover i { color: #1a1408; }
.academy__tags li:hover .tag-ar { color: #1a1408; }
.academy__tags i {
  position: relative;
  width: 16px; height: 16px;
  color: var(--gold);
  transition: color .25s ease;
}
.tag-ar {
  position: relative;
  font-family: "Amiri", "Geeza Pro", "Arial", serif;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0;
  transition: color .25s ease;
}

@media (prefers-reduced-motion: reduce) {
  .academy__tags li::before { animation: none; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .badge-soon__dot { animation: none; }
}

/* ============================================================
   ПОДХОД
   ============================================================ */
.approach-sec { position: relative; overflow: hidden; }
.approach-sec__glow {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 480px;
  background: radial-gradient(closest-side, rgba(212,164,73,.10), transparent 70%);
  pointer-events: none;
}

/* 3 спheres */
.approach-spheres {
  display: grid;
  grid-template-columns: repeat(1, minmax(0,1fr));
  gap: 18px;
}
@media (min-width: 768px) { .approach-spheres { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; } }
.sphere {
  text-align: center;
  padding: 30px 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.sphere:hover {
  transform: translateY(-3px);
  border-color: rgba(212,164,73,.4);
  background: var(--panelHi);
}
.sphere__ic {
  display: inline-grid; place-items: center;
  width: 56px; height: 56px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--gold-2);
  background: rgba(11,11,16,.5);
  border: 1px solid rgba(212,164,73,.35);
}
.sphere__ic i { width: 26px; height: 26px; }
.sphere__title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}
.sphere__text {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mute);
}

/* Этапы */
.approach-steps {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0,1fr));
  gap: 16px;
}
@media (min-width: 640px) { .approach-steps { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px){ .approach-steps { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; } }
.step {
  position: relative;
  padding: 26px 22px 24px;
  background: linear-gradient(180deg, rgba(30,30,40,.5), rgba(22,22,29,.5));
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.step::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.step:hover::before { transform: scaleX(1); }
.step__num {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
  opacity: .85;
  margin-bottom: 14px;
}
.step__title {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}
.step__text {
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-mute);
}

/* Главная цель — акцент */
.approach-goal {
  position: relative;
  margin-top: 28px;
  padding: 36px 32px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid rgba(212,164,73,.32);
  background: linear-gradient(180deg, rgba(212,164,73,.08), rgba(22,22,29,.45));
}
.approach-goal__ic {
  display: inline-grid; place-items: center;
  width: 46px; height: 46px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--gold);
  background: var(--ink);
  border: 1px solid rgba(212,164,73,.4);
}
.approach-goal__ic i { width: 22px; height: 22px; }
.approach-goal__text {
  max-width: 760px;
  margin: 0 auto;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  color: var(--text);
}

/* Адаптация под уровень */
.approach-levels {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0,1fr));
  gap: 16px;
}
@media (min-width: 768px) { .approach-levels { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; } }
.level {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .3s ease, background .3s ease;
}
.level:hover { border-color: rgba(212,164,73,.35); background: var(--panelHi); }
.level__ic {
  flex: 0 0 44px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 10px;
  color: var(--gold-2);
  background: rgba(11,11,16,.5);
  border: 1px solid rgba(212,164,73,.3);
}
.level__ic i { width: 20px; height: 20px; }
.level__title {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
}
.level__text {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mute);
}

/* ============================================================
   КАК ПРОХОДИТ РАБОТА — timeline
   ============================================================ */
.process-sec { position: relative; }
.process-timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.process-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 0;
}
.process-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 70px;
  bottom: -10px;
  width: 2px;
  background: linear-gradient(180deg, rgba(212,164,73,.55), rgba(212,164,73,.08));
}
.process-step__num {
  position: relative;
  z-index: 1;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-weight: 600;
  color: #1a1408;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  border-radius: 50%;
  box-shadow: 0 6px 20px -8px rgba(212,164,73,.6), inset 0 1px 0 rgba(255,255,255,.3);
}
.process-step__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(17px, 1.6vw, 19px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  letter-spacing: .005em;
}
.process-step:hover .process-step__num {
  box-shadow: 0 10px 26px -8px rgba(212,164,73,.75), inset 0 1px 0 rgba(255,255,255,.35);
  transform: scale(1.04);
}
.process-step__num { transition: transform .25s ease, box-shadow .25s ease; }

.process-note {
  margin: 40px auto 0;
  max-width: 640px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  text-align: left;
  border: 1px solid rgba(212,164,73,.32);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(212,164,73,.07), rgba(22,22,29,.5));
}
.process-note__ic {
  flex: 0 0 38px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: var(--ink);
  border: 1px solid rgba(212,164,73,.4);
}
.process-note__ic i { width: 18px; height: 18px; }
.process-note p {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.5;
  color: var(--text);
}

@media (max-width: 520px) {
  .process-step { gap: 16px; }
  .process-step__num { flex-basis: 48px; width: 48px; height: 48px; font-size: 17px; }
  .process-step:not(:last-child)::before { left: 23px; top: 62px; }
}

/* ============================================================
   AYA
   ============================================================ */
.aya-wrap { padding: 30px 0 30px; }
.aya {
  position: relative;
  text-align: center;
  padding: 28px 32px;
  border: 1px solid rgba(212,164,73,.25);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(212,164,73,.05), rgba(22,22,29,.4));
}
.aya__quote {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  font-family: "Playfair Display", serif;
  font-size: 44px;
  line-height: 1;
  color: var(--gold);
  background: var(--ink);
  border: 1px solid rgba(212,164,73,.35);
  border-radius: 999px;
}
.aya__text {
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 2.1vw, 24px);
  font-style: italic;
  color: var(--text);
  line-height: 1.55;
}
.aya__src {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__title {
  margin-top: 14px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(36px, 4.6vw, 56px);
  color: var(--text);
}
.about__text {
  margin-top: 22px;
  color: var(--text-mute);
  font-size: 15.5px;
  line-height: 1.75;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about__photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}
.about__photo-inner {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.about__photo:hover .about__photo-inner { transform: scale(1.03); }
.about__photo-frame {
  position: absolute; inset: 0;
  pointer-events: none;
  border: 1px solid rgba(212,164,73,.25);
  border-radius: 14px;
  box-shadow: 0 40px 60px -30px rgba(0,0,0,.7);
}

/* STATS */
.stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, minmax(0,1fr)); padding: 32px; } }
.stat {
  text-align: center;
  padding: 22px 12px;
  border-radius: 10px;
  transition: background .25s ease;
}
.stat:hover { background: rgba(212,164,73,.04); }
.stat__ic {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px;
  margin-bottom: 10px;
  border-radius: 10px;
  color: var(--gold-2);
  background: rgba(11,11,16,.6);
  border: 1px solid rgba(212,164,73,.25);
}
.stat__ic i { width: 18px; height: 18px; }
.stat__num {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .02em;
}
.stat__lbl {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--text-mute);
  letter-spacing: .08em;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-slider {
  position: relative;
}
.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
@media (max-width: 900px) {
  .reviews-track {
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 6px;
  }
  .reviews-track::-webkit-scrollbar { display: none; }
  .review-card { scroll-snap-align: start; }
}
.review-card {
  position: relative;
  padding: 26px 26px 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}
.review-card:hover {
  border-color: rgba(212,164,73,.35);
  background: var(--panelHi);
}
.review-card__quote {
  position: absolute;
  top: 12px; left: 18px;
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 56px;
  line-height: 1;
  opacity: .55;
}
.review-card__text {
  margin-top: 28px;
  color: var(--text-mute);
  font-size: 14.5px;
  line-height: 1.65;
}
.review-card__meta {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.review-card__name {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: var(--text);
  font-weight: 600;
}
.review-card__city {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: .08em;
}
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}
.reviews-dots button {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--line);
  transition: background .2s ease, transform .2s ease, width .2s ease;
}
.reviews-dots button.is-active {
  width: 22px;
  background: var(--gold);
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  overflow: hidden;
}
.cta__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 55%;
}
.cta__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,16,.8) 0%, rgba(11,11,16,.55) 40%, rgba(11,11,16,.85) 100%);
}
.cta__title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  color: var(--text);
}
.cta__sub {
  margin-top: 16px;
  color: var(--text-mute);
  font-size: 15.5px;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #08080c;
  border-top: 1px solid var(--line);
}
.footer__desc {
  margin-top: 18px;
  color: var(--text-mute);
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}
.footer__heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__link {
  color: var(--text-mute);
  font-size: 14px;
  transition: color .2s ease;
}
.footer__link:hover { color: var(--gold-2); }

.footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mute);
  font-size: 14px;
  transition: color .2s ease;
}
.footer__contact:hover { color: var(--gold-2); }
.footer__contact-ic {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 8px;
  color: var(--gold);
  border: 1px solid rgba(212,164,73,.35);
  background: rgba(22,22,29,.8);
}
.footer__contact-ic i { width: 14px; height: 14px; }

.footer__bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text-mute);
  font-size: 12.5px;
  letter-spacing: .04em;
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--text-mute);
  font-size: 12.5px;
  letter-spacing: .06em;
}
.footer__meta li { position: relative; padding-right: 18px; }
.footer__meta li + li::before {
  content: "•";
  position: absolute; left: -14px; top: 0;
  color: var(--gold);
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0s);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   PLACEHOLDER (used when image is missing)
   ============================================================ */
.ph {
  position: relative;
  background: var(--panel);
  color: var(--text-mute);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 16px, rgba(212,164,73,.04) 16px 17px),
    radial-gradient(circle at 50% 50%, rgba(212,164,73,.07), transparent 60%);
}
.ph__label {
  position: relative;
  padding: 8px 14px;
  border: 1px dashed rgba(212,164,73,.35);
  border-radius: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: var(--gold-2);
  letter-spacing: .06em;
  background: rgba(11,11,16,.6);
}
