:root{
  --bg: #fbf7f1;
  --paper: #ffffff;
  --tint: #f6efe6;
  --ink: #1f1f1f;
  --muted: rgba(31,31,31,.68);

  --gold: #c9a46a;
  --gold2:#dfc28a;
  --line: rgba(201,164,106,.35);

  --shadow: 0 18px 50px rgba(31,31,31,.10);
  --radius: 18px;

  --serif: "Forum", "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;

  /* height of sticky header (used for mobile drawer + anchor offsets) */
  --header-h: 76px;
}

/* ШРИФТЫ КАК В ПРЕМИУМ-ВАЙБЕ */
@import url('https://fonts.googleapis.com/css2?family=Forum&family=Manrope:wght@400;500;600;700&display=swap');

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(201,164,106,.10), transparent 55%),
    radial-gradient(700px 460px at 85% 20%, rgba(201,164,106,.08), transparent 60%),
    linear-gradient(180deg, var(--bg), #fff 45%, var(--bg));
}

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

.container{
  width:min(1160px, calc(100% - 40px));
  margin:0 auto;
}

.no-scroll{ overflow:hidden; }

/* Header / Navigation */
.header{
  position: sticky;
  top:0;
  z-index:999;
  background: rgba(251,247,241,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  min-height: var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding: 10px 0;
}

.brand__logo{
  width: 168px;
  height:auto;
  filter: drop-shadow(0 6px 18px rgba(31,31,31,.08));
}

/* Desktop menu: one horizontal line */
.nav{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:nowrap;
}
.nav a{
  text-decoration:none;
  color: rgba(31,31,31,.78);
  font-size: 14px;
  letter-spacing:.2px;
  padding:10px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav a:hover{
  color: rgba(31,31,31,.95);
  border-bottom-color: var(--line);
}

.nav__cta{
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(201,164,106,.35);
  background: rgba(255,255,255,.65);
  box-shadow: 0 10px 30px rgba(31,31,31,.06);
}
.nav__cta:hover{ background: rgba(255,255,255,.85); }

/* Mobile burger */
.navToggle{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(201,164,106,.25);
  background: rgba(255,255,255,.70);
  align-items:center;
  justify-content:center;
  gap: 6px;
  padding: 10px;
}
.navToggle span{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(31,31,31,.75);
  border-radius: 99px;
}

.navOverlay{ display:none; }

/* Sticky header offsets for in-page anchors */
section[id]{ scroll-margin-top: calc(var(--header-h) + 18px); }

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  min-height: clamp(640px, 78vh, 860px);
  background: radial-gradient(900px 520px at 20% 10%, rgba(201,164,106,.16), transparent 60%);
  border-bottom: 1px solid rgba(201,164,106,.22);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(90deg,
    rgba(251,247,241,.95) 0%,
    rgba(251,247,241,.88) 40%,
    rgba(251,247,241,.55) 60%,
    rgba(251,247,241,0) 78%);
  z-index: 1;
}
.hero__media{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: 75% 10%;
}
.hero__content{
  position:relative;
  z-index:2;
  padding: clamp(38px, 6vw, 74px) 0;
  min-height: inherit;
  display:flex;
  flex-direction:column;
  justify-content:center;
  max-width: 660px;
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing: .32em;
  font-size: 12px;
  color: rgba(201,164,106,.95);
  margin-bottom: 18px;
}
.h1{
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: .01em;
  font-size: clamp(46px, 5.4vw, 78px);
  line-height: 1.02;
  margin: 0 0 18px 0;
  text-shadow: 0 10px 35px rgba(31,31,31,.08);
}
.lead{
  margin: 0 0 18px 0;
  font-size: 18px;
  line-height: 1.58;
  color: rgba(31,31,31,.78);
  max-width: 58ch;
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 12px 0 18px 0;
}
.chip{
  padding: 10px 12px;
  border: 1px solid rgba(201,164,106,.35);
  background: rgba(255,255,255,.65);
  border-radius: 999px;
  font-size: 13px;
  color: rgba(31,31,31,.75);
  box-shadow: 0 10px 30px rgba(31,31,31,.06);
}

.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 8px;
}
.hero__note{
  margin-top: 16px;
  font-size: 13px;
  color: rgba(31,31,31,.62);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration:none;
  font-weight: 600;
  letter-spacing:.2px;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #1b1b1b;
  box-shadow: 0 18px 45px rgba(201,164,106,.30);
  border-color: rgba(201,164,106,.30);
}
.btn--ghost{
  background: rgba(255,255,255,.70);
  color: rgba(31,31,31,.82);
  border-color: rgba(201,164,106,.30);
  box-shadow: 0 14px 40px rgba(31,31,31,.08);
}

/* Pricing buttons (extra modifiers used in HTML) */
.btn--standard{ /* uses .btn--primary styles */ }

.btn--premium{
  background: linear-gradient(180deg, rgba(223,194,138,.98), rgba(201,164,106,.90));
  color: #1b1b1b;
  border-color: rgba(201,164,106,.38);
  box-shadow: 0 18px 45px rgba(201,164,106,.28);
}
.btn--premium:hover{
  box-shadow: 0 22px 55px rgba(201,164,106,.34);
  transform: translateY(-1px);
}

/* Sections */
.section{ padding: clamp(52px, 6vw, 82px) 0; }
.section--airy{
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(201,164,106,.10), transparent 60%),
    radial-gradient(760px 420px at 85% 0%, rgba(201,164,106,.08), transparent 62%),
    linear-gradient(180deg, rgba(246,239,230,.55), rgba(255,255,255,.0));
}
.section--tint{
  background: linear-gradient(180deg, rgba(246,239,230,.75), rgba(255,255,255,.0));
  border-top: 1px solid rgba(201,164,106,.22);
  border-bottom: 1px solid rgba(201,164,106,.22);
}

.center{ text-align:center; }

.h2{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.1;
  margin: 0 0 12px 0;
}
.h3{
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  margin: 0 0 10px 0;
}
.p{
  margin: 0 0 12px 0;
  line-height: 1.65;
  color: rgba(31,31,31,.78);
}
.muted{ color: var(--muted); }
.fine{
  color: rgba(31,31,31,.60);
  font-size: 13px;
  line-height: 1.55;
}
.mini{
  color: rgba(31,31,31,.66);
  font-size: 14px;
  line-height: 1.6;
}

.card{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(201,164,106,.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.card--soft{ background: rgba(255,255,255,.62); }

.grid2{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.cards3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.list{ margin: 12px 0 0 18px; line-height: 1.7; }

.kv .kv__row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(31,31,31,.08);
}

.section__head{ margin-bottom: 18px; }

/* Goals */
.goals{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
  align-items: center;
}
.goals__kicker{
  letter-spacing:.22em;
  font-size: 12px;
  color: rgba(201,164,106,.95);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.steps{ margin-top: 18px; margin-bottom: 18px; display:flex; flex-direction:column; gap:14px; }
.step{
  display:grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(201,164,106,.22);
}
.step__num{
  width:52px;height:52px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  background: linear-gradient(180deg, rgba(223,194,138,.40), rgba(201,164,106,.18));
  border: 1px solid rgba(201,164,106,.25);
}
.step__title{ font-weight: 700; margin-bottom: 4px; }
.step__text{ color: rgba(31,31,31,.72); line-height: 1.6; }

.media-placeholder{
  height: 360px;
  border-radius: 18px;
  border: 1px dashed rgba(201,164,106,.55);
  background:
    radial-gradient(600px 260px at 30% 20%, rgba(201,164,106,.12), transparent 60%),
    rgba(255,255,255,.58);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  box-shadow: 0 18px 50px rgba(31,31,31,.08);
}
.media-placeholder__title{ font-family: var(--serif); font-size: 24px; margin-bottom: 6px; }
.media-placeholder__hint{ color: rgba(31,31,31,.60); font-size: 13px; }

/* Accordion */
.accordion{ display:flex; flex-direction:column; gap:12px; }
.acc{
  border-radius: 18px;
  border: 1px solid rgba(201,164,106,.25);
  background: rgba(255,255,255,.70);
  box-shadow: 0 18px 45px rgba(31,31,31,.08);
  overflow:hidden;
}
.acc__btn{
  width:100%;
  text-align:left;
  background: transparent;
  border:0;
  padding: 16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  cursor:pointer;
}
.acc__title{
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing:.01em;
}
.acc__icon{
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(31,31,31,.55);
  border-bottom: 2px solid rgba(31,31,31,.55);
  transform: rotate(45deg);
  transition: transform .18s ease;
}
.acc__btn[aria-expanded="true"] .acc__icon{ transform: rotate(-135deg); }
.acc__panel{
  border-top: 1px solid rgba(201,164,106,.22);
}
.acc__content{ padding: 16px 18px 18px 18px; }
.lesson{ padding: 12px 0; }
.lesson + .lesson{ border-top: 1px solid rgba(31,31,31,.08); }
.lesson__h{
  font-weight: 700;
  margin-bottom: 10px;
}
.label{
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(201,164,106,.95);
  margin-bottom: 6px;
}
.cols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Pricing */
.pricing{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.priceCard{
  border-radius: 22px;
  border: 1px solid rgba(201,164,106,.28);
  background: rgba(255,255,255,.78);
  box-shadow: 0 22px 70px rgba(31,31,31,.12);
  padding: 22px;
}
.priceCard--main{
  background:
    radial-gradient(700px 360px at 20% 0%, rgba(201,164,106,.14), transparent 55%),
    rgba(255,255,255,.84);
}
.priceCard__top{
  display:flex;
  align-items:center;
  gap:10px;
  justify-content:space-between;
  margin-bottom: 10px;
}
.priceCard__name{
  font-family: var(--serif);
  font-size: 28px;
}
.badge{
  font-size: 12px;
  letter-spacing:.18em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(201,164,106,.35);
  background: rgba(255,255,255,.62);
  color: rgba(31,31,31,.70);
}
.badge--dark{
  background: rgba(31,31,31,.08);
}
.priceCard__price{
  display:flex;
  align-items:baseline;
  gap: 12px;
  margin: 10px 0 12px 0;
}
.priceCard__price .now{
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
}
.priceCard__price .was{
  color: rgba(31,31,31,.55);
  text-decoration: line-through;
  font-size: 16px;
}
.priceCard__list{ margin-top: 8px; }

/* Reviews */
.reviews{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.review{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(201,164,106,.25);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(31,31,31,.08);
  padding: 12px;
}
.review__ph{
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(201,164,106,.18), rgba(255,255,255,.0)),
    rgba(246,239,230,.75);
  border: 1px dashed rgba(201,164,106,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(31,31,31,.55);
  font-size: 13px;
}

/* Host */
.host{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items:center;
  margin-top: 18px;
}
.host__name{ font-family: var(--serif); font-weight:400; font-size: 44px; }
.host__role{ color: rgba(31,31,31,.70); margin-bottom: 14px; }
.host__quote{
  padding: 14px 16px;
  border-left: 3px solid rgba(201,164,106,.75);
  background: rgba(255,255,255,.55);
  border-radius: 14px;
}
.host__stats{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0 16px 0;
}
.stat{
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(201,164,106,.22);
}
.stat__n{
  font-family: var(--serif);
  font-size: 26px;
  margin-bottom: 4px;
}
.stat__t{
  color: rgba(31,31,31,.68);
  font-size: 13px;
  line-height: 1.5;
}
.host__img{
  width:100%;
  max-width: 520px;
  margin-left:auto;
  border-radius: 18px;
  border: 1px solid rgba(201,164,106,.25);
  box-shadow: 0 22px 70px rgba(31,31,31,.12);
}

/* Apply block */
.apply{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items:start;
}
.apply__title{
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  text-align:center;
  margin-bottom: 16px;
}
.form{ display:flex; flex-direction:column; gap: 12px; }
.field{ display:flex; flex-direction:column; gap: 6px; }
.field__label{ font-weight: 600; }
.req{ color: #b21f2d; }
.field__input{
  height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(31,31,31,.14);
  background: rgba(255,255,255,.85);
  outline: none;
}
.field__input:focus{
  border-color: rgba(201,164,106,.70);
  box-shadow: 0 0 0 3px rgba(201,164,106,.18);
}
.check{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: rgba(31,31,31,.72);
  font-size: 13px;
  line-height: 1.5;
}
.check input{ margin-top: 3px; }

.applyAside{
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.applyAside__img{
  width:100%;
  aspect-ratio: 10/12;
  border-radius: 18px;
  border: 1px dashed rgba(201,164,106,.55);
  background:
    radial-gradient(600px 260px at 30% 20%, rgba(201,164,106,.12), transparent 60%),
    rgba(255,255,255,.58);
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(31,31,31,.55);
  font-size: 13px;
}
.applyAside__text{
  color: rgba(31,31,31,.78);
  line-height: 1.6;
}

/* Contacts */
.contacts{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:stretch;
}
.contact-actions{ display:flex; gap:12px; flex-wrap:wrap; margin: 14px 0; }

.qr__box{
  height: 280px;
  border-radius: 18px;
  border: 1px dashed rgba(201,164,106,.55);
  background:
    radial-gradient(600px 260px at 30% 20%, rgba(201,164,106,.12), transparent 60%),
    rgba(255,255,255,.58);
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(31,31,31,.55);
}

.footer{
  padding: 26px 0;
  border-top: 1px solid rgba(201,164,106,.22);
  background: rgba(251,247,241,.85);
}
.footer__inner{ display:flex; justify-content:space-between; gap:18px; }

/* Responsive */
@media (max-width: 1100px){
  .nav{ gap: 14px; }
  .nav a{ font-size: 13.5px; }
}

@media (max-width: 980px){
  .grid2{ grid-template-columns: 1fr; }
  .cards3{ grid-template-columns: 1fr; }
  .goals{ grid-template-columns: 1fr; }
  .cols{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .reviews{ grid-template-columns: 1fr 1fr; }
  .host{ grid-template-columns: 1fr; }
  .contacts{ grid-template-columns: 1fr; }
  .apply{ grid-template-columns: 1fr; }

  /* Mobile: burger + drawer */
  .navToggle{ display:inline-flex; }

  .nav{
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(86vw, 360px);
    transform: translateX(110%);
    transition: transform .28s ease;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: calc(var(--header-h) + 18px) 18px 18px;
    background: rgba(255,255,255,.98);
    border-left: 1px solid rgba(201,164,106,.22);
    box-shadow: 0 18px 40px rgba(17,24,39,.18);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav a{
    padding: 12px 12px;
    border-radius: 12px;
    border-bottom: 0;
  }
  .nav a:hover{ background: rgba(201,164,106,.10); }

  .nav__cta{
    margin-top: 6px;
    text-align: center;
  }

  .header.is-open .nav{ transform: translateX(0); }

  .navOverlay{
    display:block;
    position: fixed;
    inset: 0;
    background: rgba(17,24,39,.28);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 900;
  }

  .header.is-open + .navOverlay{
    opacity: 1;
    pointer-events: auto;
  }

  .hero__content{ max-width: 720px; }
  .hero__media img{ object-position: 70% 12%; }
}

@media (max-width: 520px){
  .container{ width: calc(100% - 28px); }
  .brand__logo{ width: 150px; }

  /* Hero: text visible on first screen + photo аккуратно */
  .hero{ min-height: 720px; }
  .hero::before{
    background: linear-gradient(180deg,
      rgba(252,249,244,.96) 0%,
      rgba(252,249,244,.90) 48%,
      rgba(252,249,244,.55) 70%,
      rgba(252,249,244,0) 100%);
  }
  .hero__media img{ object-position: 60% 12%; }
  .hero__content{ padding: 18px 0 40px; max-width: 100%; }
  .h1{ font-size: clamp(38px, 9.8vw, 54px); }
  .lead{ font-size: 16px; }

  .reviews{ grid-template-columns: 1fr; }
  .host__stats{ grid-template-columns: 1fr; }
}

/* Fluent Forms iframe */
.ff-embed{
  border-radius: 16px;
  border: 1px solid rgba(31,31,31,.10);
  background: rgba(255,255,255,.92);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(31,31,31,.06);
}

#fluentform{
  display:block;
  width:100%;
  border:0;
}

/* Apply aside cards + images */
.applyAside .asideCard{
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(201,164,106,.22);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.07);
}
.applyAside .asideCard + .asideCard{ margin-top: 14px; }

.applyAside .asideImg{
  width: 100%;
  height: auto;
  display:block;
  border-radius: 14px;
  margin-top: 12px;
  border: 1px solid rgba(0,0,0,.06);
}

/* QR: fit inside frame */
.qrFrame{
  margin-top: 12px;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  border: 1px solid rgba(201,164,106,.35);
  background: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 12px;
}
.qrImg{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display:block;
}

/* Student image block */
.student-image{
  width: 100%;
  max-width: 720px;
  margin: 40px auto;
}
.student-image img{
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
