@font-face{
  font-family:'Tilda Sans';
  src:url('assets/fonts/TildaSans-Regular.woff2') format('woff2');
  font-weight:500;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:'Tilda Sans';
  src:url('assets/fonts/TildaSans-Bold.woff2') format('woff2');
  font-weight:700;
  font-style:normal;
  font-display:swap;
}

:root{
  --coral:#ff5065;
  --ember:#ff7a59;
  --persimmon:#ff5c35;
  --mist:#ffe9eb;
  --ink:#0e0f10;
  --graphite:#2f3133;
  --slate:#7a7b7c;
  --smoke:#666666;
  --fog:#f4f4f8;
  --white:#ffffff;
  --line:rgba(14,15,16,.12);
  --shadow:0 5px 25px rgba(38,42,62,.06);
  --max:1200px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  color:var(--ink);
  background:var(--white);
  font-family:'Tilda Sans',ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  font-size:18px;
  font-weight:500;
  line-height:1.56;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none;}
button,input{font:inherit;}
.wrap{width:min(var(--max), calc(100% - 80px));margin:0 auto;}
.page-shell{position:relative;overflow:hidden;background:var(--white);}

.topbar{
  position:sticky;
  top:0;
  z-index:20;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:32px;
  width:100%;
  margin:0;
  padding:18px max(40px, calc((100vw - var(--max))/2));
  background:rgba(255,255,255,.94);
  border-bottom:1px solid rgba(14,15,16,.06);
  backdrop-filter:blur(14px);
}
.brand{display:inline-flex;align-items:center;color:var(--ink);}
.brand__logo{
  display:block;
  width:min(248px,28vw);
  height:auto;
}
.nav{display:flex;justify-content:center;gap:34px;font-size:16px;color:var(--ink);}
.nav a{position:relative;transition:color .18s ease;}
.nav a:hover{color:var(--coral);}
.topbar__cta{
  justify-self:end;
  padding:12px 24px;
  border-radius:100px;
  color:#fff;
  background:var(--coral);
  font-weight:700;
  box-shadow:var(--shadow);
}

.section-pad{padding:88px 0;position:relative;}
.hero{
  min-height:calc(100vh - 77px);
  display:flex;
  align-items:center;
  padding-top:70px;
  background:
    radial-gradient(640px 360px at 78% 18%, rgba(255,80,101,.10), transparent 72%),
    linear-gradient(180deg,#fff 0%,#fff 74%,#f4f4f8 100%);
}
.hero__grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(430px,.92fr);align-items:center;gap:64px;position:relative;z-index:2;}
.badge{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:24px;
  padding:9px 16px;
  border-radius:100px;
  color:var(--coral);
  background:var(--mist);
  font-size:14px;
  font-weight:700;
}
.badge span{width:8px;height:8px;border-radius:50%;background:var(--coral);}
h1,h2,h3,p{margin-top:0;}
h1{
  max-width:760px;
  margin-bottom:26px;
  color:var(--ink);
  font-size:clamp(56px,6.2vw,92px);
  line-height:.88;
  font-weight:700;
  letter-spacing:0;
}
h1 span{color:var(--coral);}
.date-chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 22px;
  padding:11px 18px 11px 14px;
  border-radius:100px;
  color:var(--ink);
  background:var(--mist);
  border:1px solid rgba(255,80,101,.18);
  font-size:16px;
  font-weight:700;
}
.date-chip::before{
  content:"";
  width:18px;
  height:18px;
  flex:0 0 18px;
  background:var(--coral);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M16 2v4'/%3E%3Crect width='18' height='18' x='3' y='4' rx='2'/%3E%3Cpath d='M3 10h18'/%3E%3C/svg%3E") center / contain no-repeat;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M16 2v4'/%3E%3Crect width='18' height='18' x='3' y='4' rx='2'/%3E%3Cpath d='M3 10h18'/%3E%3C/svg%3E") center / contain no-repeat;
}
.hero__lead{max-width:680px;margin-bottom:34px;color:var(--ink);font-size:20px;line-height:1.6;}
.hero__actions{display:flex;flex-wrap:wrap;gap:16px;}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-width:210px;
  border-radius:100px;
  padding:14px 26px;
  font-size:16px;
  font-weight:700;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover{transform:translateY(-2px);}
.btn--primary{color:#fff;background:var(--coral);box-shadow:var(--shadow);}
.btn--pastel{color:var(--ink);background:#fff;border-color:var(--ink);}
.btn--submit{width:100%;}

.hero__sketch{display:none;}
.hero-photo{
  position:relative;
  margin:0;
  min-height:570px;
  padding:18px;
  border-radius:40px;
  background:#fff;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.hero-photo::before{
  content:"";
  position:absolute;
  inset:-70px -80px auto auto;
  width:220px;
  height:220px;
  border-radius:50%;
  background:var(--mist);
  pointer-events:none;
}
.hero-photo img{
  position:relative;
  z-index:1;
  display:block;
  width:100%;
  min-height:520px;
  height:100%;
  border-radius:28px;
  object-fit:cover;
  object-position:center;
  background:var(--fog);
}
.hero-photo img,
.timeline-item__photo img,
.photo-gallery__item img,
.testimonial-photo-card img{cursor:zoom-in;}
.hero-photo img:focus-visible,
.timeline-item__photo img:focus-visible,
.photo-gallery__item img:focus-visible,
.testimonial-photo-card img:focus-visible{
  outline:3px solid var(--coral);
  outline-offset:4px;
}
.split{display:grid;grid-template-columns:.82fr 1.18fr;gap:48px;align-items:start;}
.section-head{max-width:650px;}
.section-head--center{max-width:880px;text-align:center;margin:0 auto 48px;}
.kicker{margin-bottom:14px;color:var(--coral);font-size:14px;font-weight:700;text-transform:uppercase;}
h2{font-size:clamp(40px,4.2vw,56px);line-height:1.08;font-weight:700;letter-spacing:0;}
h3{font-size:24px;line-height:1.25;font-weight:700;}

.note-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;}
.note-card{
  min-height:208px;
  padding:24px;
  border-radius:24px;
  background:#fff;
  box-shadow:var(--shadow);
}
.note-card__num{margin-bottom:36px;color:var(--coral);font-size:14px;font-weight:700;}
.note-card p{margin:0;color:var(--ink);}

.practice{padding-top:64px;background:#fff;}
.practice-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px;}
.practice-card{
  min-height:230px;
  padding:24px;
  border-radius:24px;
  background:#fff;
  box-shadow:var(--shadow);
}
.practice-card__check{
  display:grid;
  place-items:center;
  width:52px;
  height:52px;
  margin-bottom:24px;
  border-radius:100px;
  color:#fff;
  background:var(--coral);
  font-weight:700;
}
.practice-card p{margin:0;color:var(--ink);}

.landscape{background:var(--fog);}
.landscape__grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:24px;align-items:stretch;}
.principle-card{
  padding:32px;
  border-radius:40px;
  color:#fff;
  background:var(--ink);
  box-shadow:var(--shadow);
}
.principle-card .kicker{color:var(--coral);}
.principle-card h2{font-size:clamp(36px,3.8vw,56px);margin-bottom:24px;color:#fff;}
.principle-card p{margin:0;color:rgba(255,255,255,.82);font-size:18px;}
.reason-list{padding:32px;border-radius:40px;background:#fff;box-shadow:var(--shadow);}
.reason-list h3{margin-bottom:22px;color:var(--ink);}
.reason-list ul{display:grid;grid-template-columns:1fr 1fr;gap:14px 20px;margin:0;padding:0;list-style:none;}
.reason-list li{position:relative;padding-left:22px;color:var(--smoke);font-size:16px;}
.reason-list li::before{content:"";position:absolute;left:0;top:.68em;width:8px;height:8px;border-radius:50%;background:var(--coral);}

.questions{padding-top:80px;background:#fff;}
.section-head--center p:not(.kicker){max-width:850px;margin:18px auto 0;color:var(--smoke);font-size:20px;}
.question-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;margin-top:44px;}
.question-card{
  min-height:194px;
  padding:24px;
  border-radius:24px;
  background:#fff;
  box-shadow:var(--shadow);
}
.question-card span{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  margin-bottom:20px;
  border-radius:100px;
  color:#fff;
  background:var(--coral);
  font-size:14px;
  font-weight:700;
}
.question-card p{margin:0;color:var(--ink);}
.theory-strip{display:flex;flex-wrap:wrap;gap:10px;margin-top:26px;}
.theory-strip span{padding:11px 16px;border-radius:100px;background:var(--mist);color:var(--ink);font-size:15px;}

.program{background:var(--fog);}
.timeline{display:flex;flex-direction:column;gap:18px;margin-top:44px;}
.timeline-item{
  display:grid;
  grid-template-columns:150px 240px 1fr;
  gap:24px;
  align-items:stretch;
  padding:24px;
  border-radius:24px;
  background:#fff;
  box-shadow:var(--shadow);
}
.timeline-item__day{color:var(--coral);font-weight:700;}
.timeline-item__photo{
  margin:0;
  min-height:180px;
  border-radius:20px;
  overflow:hidden;
  background:var(--fog);
}
.timeline-item__photo img{
  display:block;
  width:100%;
  height:100%;
  min-height:180px;
  object-fit:cover;
  object-position:center;
}
.timeline-item h3{margin-bottom:12px;color:var(--ink);}
.timeline-item ul{margin:0;padding-left:20px;color:var(--smoke);}
.timeline-item li+li{margin-top:8px;}

.testimonials{background:#fff;}
.photo-gallery{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  grid-auto-flow:dense;
  gap:16px;
  margin:0 0 72px;
}
.photo-gallery__item{
  position:relative;
  min-height:240px;
  margin:0;
  border-radius:28px;
  overflow:hidden;
  background:var(--fog);
  box-shadow:var(--shadow);
}
.photo-gallery__item::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(14,15,16,0) 55%,rgba(14,15,16,.16) 100%);
  pointer-events:none;
}
.photo-gallery__item img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transform:scale(1.01);
  transition:transform .35s ease;
}
.photo-gallery__item:hover img{transform:scale(1.05);}
.photo-gallery__item--1{
  grid-column:span 2;
  grid-row:span 2;
  min-height:496px;
}
.photo-gallery__item--2,
.photo-gallery__item--6{grid-column:span 2;}
.photo-gallery__item--3,
.photo-gallery__item--4,
.photo-gallery__item--5,
.photo-gallery__item--7,
.photo-gallery__item--8,
.photo-gallery__item--9{aspect-ratio:1 / 1.18;}
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.testimonial-card{
  min-height:280px;
  display:flex;
  flex-direction:column;
  padding:24px;
  border-radius:24px;
  background:#fff;
  box-shadow:var(--shadow);
}
.testimonial-card__stars{
  margin-bottom:18px;
  color:var(--coral);
  font-size:18px;
  letter-spacing:2px;
}
.testimonial-card__text{
  margin:0 0 22px;
  color:var(--ink);
  font-size:16px;
  line-height:1.5;
}
.testimonial-card__author{
  margin-top:auto;
  padding-top:18px;
  border-top:1px solid rgba(14,15,16,.08);
  color:var(--ink);
  font-size:14px;
  font-weight:700;
}
.testimonial-photo-card{
  position:relative;
  min-height:280px;
  border-radius:24px;
  overflow:hidden;
  background:var(--fog);
  box-shadow:var(--shadow);
}
.testimonial-photo-card img{
  display:block;
  width:100%;
  height:100%;
  min-height:280px;
  object-fit:cover;
  object-position:center;
}
.testimonial-photo-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(14,15,16,0) 42%,rgba(14,15,16,.68) 100%);
  pointer-events:none;
}
.testimonial-photo-card__caption{
  position:absolute;
  z-index:1;
  left:22px;
  right:22px;
  bottom:22px;
  color:#fff;
}
.testimonial-photo-card__caption span{
  display:inline-flex;
  margin-bottom:8px;
  padding:7px 10px;
  border-radius:100px;
  background:rgba(255,255,255,.18);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  backdrop-filter:blur(8px);
}
.testimonial-photo-card__caption b{
  display:block;
  max-width:320px;
  font-size:18px;
  line-height:1.25;
}

.price{background:#fff;}
.price__grid{display:grid;grid-template-columns:1.47fr 1.12fr; gap:24px;align-items:stretch;}
.price-card{
  padding:32px;
  border-radius:40px;
  color:#fff;
  background:var(--coral);
  box-shadow:var(--shadow);
}
.price-card .kicker{color:#fff;}
.price-card__old{font-size:28px;text-decoration:line-through;text-decoration-thickness:2px;margin:14px 0 0;color:rgba(255,255,255,.72);}
.price-card__main{font-size:clamp(56px,6vw,82px);line-height:1;margin-bottom:20px;font-weight:700;}
.price-card p{color:rgba(255,255,255,.92);}
.saving-list{display:flex;flex-direction:column;gap:10px;margin-top:22px;padding-top:20px;border-top:1px solid rgba(255,255,255,.3);}
.saving-list span{padding:12px 14px;border-radius:16px;background:rgba(255,255,255,.14);}
.included{padding:32px;border-radius:40px;background:#fff;box-shadow:var(--shadow);}
.included h3{margin-bottom:18px;color:var(--ink);}
.included ul{margin:0;padding-left:20px;color:var(--smoke);}
.included li+li{margin-top:9px;}
.not-included-note{margin:24px 0 0;padding-top:18px;border-top:1px solid rgba(14,15,16,.08);font-size:16px;color:var(--slate);}
.included__cta{width:100%;margin-top:34px;}

.apply{padding-bottom:120px;background:var(--fog);}
.apply__grid{display:grid;grid-template-columns:.94fr minmax(360px,.8fr);gap:40px;align-items:start;}
.apply__copy p:not(.kicker){max-width:650px;color:var(--smoke);font-size:20px;}
.apply-form{padding:32px;border-radius:40px;background:#fff;box-shadow:var(--shadow);}
.apply-form__fields{display:flex;flex-direction:column;gap:14px;}
.apply-form h3{font-size:28px;margin-bottom:4px;color:var(--ink);}
.apply-form input[type="text"],.apply-form input[type="tel"],.apply-form input[type="email"]{width:100%;border:1px solid rgba(14,15,16,.12);border-radius:16px;background:#fff;color:var(--ink);padding:16px;outline:none;}
.apply-form input:focus{border-color:var(--coral);box-shadow:0 0 0 4px rgba(255,80,101,.12);}
.policy{display:flex;gap:9px;align-items:flex-start;font-size:13px;line-height:1.45;color:var(--slate);}
.policy input{margin-top:2px;accent-color:var(--coral);}
.policy a{color:var(--ink);text-decoration:underline;text-underline-offset:3px;}
.form-error{min-height:20px;color:var(--persimmon);font-weight:700;font-size:14px;}
.form-success{display:none;text-align:center;padding:32px 16px;}
.form-success.is-visible{display:block;}
.form-success__icon{display:grid;place-items:center;width:64px;height:64px;margin:0 auto 18px;border-radius:100px;background:var(--coral);color:#fff;font-size:34px;font-weight:700;}
.form-success p{margin:0;color:var(--smoke);}

.webinar-widget{
  display:none;
  position:fixed;
  left:24px;
  bottom:24px;
  z-index:30;
  width:min(320px, calc(100vw - 48px));
  padding:16px;
  border-radius:16px;
  background:#fff;
  box-shadow:var(--shadow);
}
.webinar-widget__label{margin-bottom:10px;color:var(--slate);font-size:14px;font-weight:700;}
.webinar-widget__title{margin:0 0 14px;color:var(--ink);font-size:16px;line-height:1.35;font-weight:700;}
.webinar-widget .btn{width:100%;min-width:0;padding:12px 18px;}

.identity-footer{
  display:grid;
  grid-template-columns:minmax(220px,300px) 1fr;
  gap:34px;
  align-items:center;
  width:min(var(--max), calc(100% - 80px));
  margin:0 auto;
  padding:34px 0 40px;
  border-top:1px solid rgba(14,15,16,.08);
  background:#fff;
}
.identity-footer-logo{display:inline-flex;align-items:center;}
.identity-footer-logo img{
  display:block;
  width:min(270px,100%);
  height:auto;
}
.identity-footer-copy{
  color:var(--slate);
  font-size:13px;
  line-height:1.65;
}
.identity-footer-copy a{
  color:var(--ink);
  font-weight:700;
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:3px;
}

body.is-lightbox-open{overflow:hidden;}
.lightbox{
  position:fixed;
  inset:0;
  z-index:100;
  display:grid;
  grid-template-columns:88px minmax(0,1fr) 88px;
  align-items:center;
  gap:18px;
  padding:34px;
  background:rgba(14,15,16,.88);
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease;
}
.lightbox.is-open{
  opacity:1;
  pointer-events:auto;
}
.lightbox__figure{
  grid-column:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-width:0;
  margin:0;
}
.lightbox__image{
  display:block;
  max-width:100%;
  max-height:calc(100vh - 132px);
  border-radius:24px;
  background:#fff;
  box-shadow:0 24px 80px rgba(0,0,0,.34);
  object-fit:contain;
}
.lightbox__caption{
  min-height:22px;
  margin-top:14px;
  color:rgba(255,255,255,.82);
  font-size:14px;
  line-height:1.4;
  text-align:center;
}
.lightbox__close,
.lightbox__nav{
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.28);
  border-radius:100px;
  color:#fff;
  background:rgba(255,255,255,.12);
  cursor:pointer;
  backdrop-filter:blur(10px);
  transition:background .18s ease, transform .18s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover{background:rgba(255,255,255,.22);transform:translateY(-1px);}
.lightbox__close{
  position:absolute;
  top:24px;
  right:24px;
  width:48px;
  height:48px;
  font-size:32px;
  line-height:1;
}
.lightbox__nav{
  width:56px;
  height:56px;
  justify-self:center;
  font-size:42px;
  line-height:1;
}
.lightbox__nav--prev{grid-column:1;}
.lightbox__nav--next{grid-column:3;}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important;transition-duration:.01ms!important;}
}
@media(max-width:980px){
  .wrap{width:min(var(--max), calc(100% - 44px));}
  .topbar{grid-template-columns:1fr auto;padding:14px 22px;}
  .nav{display:none;}
  .hero{min-height:auto;}
  .hero__grid,.split,.landscape__grid,.price__grid,.apply__grid{grid-template-columns:1fr;}
  .hero-photo{min-height:430px;border-radius:32px;}
  .hero-photo img{min-height:390px;border-radius:24px;}
  .practice-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .question-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .photo-gallery{grid-template-columns:repeat(2,minmax(0,1fr));}
  .photo-gallery__item,
  .photo-gallery__item--1{min-height:320px;}
  .testimonial-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .reason-list ul{grid-template-columns:1fr;}
  .timeline-item{grid-template-columns:130px minmax(220px,.55fr) 1fr;}
}
@media(max-height:960px){
  .webinar-widget{display:none;}
}
@media(max-width:680px){
  body{font-size:16px;}
  .wrap{width:min(100% - 32px, var(--max));}
  .section-pad{padding:64px 0;}
  .brand__logo{width:min(210px,54vw);}
  .topbar__cta{padding:10px 16px;}
  .hero{padding-top:42px;}
  h1{font-size:clamp(44px,13vw,64px);}
  .hero__lead,.apply__copy p:not(.kicker){font-size:17px;}
  .hero__actions{flex-direction:column;align-items:stretch;}
  .btn{width:100%;min-width:0;}
  .hero-photo{min-height:350px;padding:10px;border-radius:24px;}
  .hero-photo img{min-height:330px;border-radius:18px;}
  .note-list,.practice-grid,.question-grid,.testimonial-grid{grid-template-columns:1fr;}
  .photo-gallery{grid-template-columns:1fr;gap:14px;margin-bottom:56px;}
  .photo-gallery__item,
  .photo-gallery__item--1,
  .photo-gallery__item--2,
  .photo-gallery__item--6{
    grid-column:auto;
    grid-row:auto;
    min-height:0;
    aspect-ratio:4 / 5;
    border-radius:22px;
  }
  .photo-gallery__item--1{aspect-ratio:16 / 11;}
  .note-card{min-height:170px;}
  .question-card{min-height:145px;}
  .timeline-item{grid-template-columns:1fr;gap:14px;padding:24px;}
  .timeline-item__photo{min-height:0;aspect-ratio:16 / 10;border-radius:18px;}
  .timeline-item__photo img{min-height:0;}
  .price-card,.included,.apply-form,.principle-card,.reason-list{padding:24px;border-radius:28px;}
  .webinar-widget{display:none;}
  .identity-footer{
    grid-template-columns:1fr;
    width:min(100% - 32px, var(--max));
    gap:18px;
    padding:30px 0 34px;
  }
  .identity-footer-logo img{width:min(250px,100%);}
  .identity-footer-copy{font-size:12px;}
  .lightbox{
    grid-template-columns:1fr 1fr;
    grid-template-rows:1fr auto;
    gap:14px;
    padding:18px;
  }
  .lightbox__figure{grid-column:1 / -1;}
  .lightbox__image{max-height:calc(100vh - 150px);border-radius:18px;}
  .lightbox__nav{
    grid-row:2;
    width:100%;
    height:52px;
    font-size:36px;
  }
  .lightbox__nav--prev{grid-column:1;}
  .lightbox__nav--next{grid-column:2;}
  .lightbox__close{top:14px;right:14px;width:44px;height:44px;font-size:30px;}
}
