/* style.css */
:root{
  --container: 860px;

  --text: #6a4a3f;
  --text-dark: #4b2f26;

  --bg: #efe6e3;
  --card: rgba(255,255,255,.45);
  --card-strong: rgba(255,255,255,.55);

  --red: #c96358;
  --red-dark: #b45349;

  --gold-1: #ffdf7a;
  --gold-2: #f0b33f;
  --gold-3: #d99222;

  --shadow-soft: 0 10px 22px rgba(0,0,0,.12);
  --shadow-pill: 0 6px 14px rgba(0,0,0,.18);
  --shadow-btn: 0 8px 18px rgba(0,0,0,.20);
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color: var(--text);
  font-family: "Montserrat", "Arial", sans-serif;
  background:
    url("./img/bg/texture.jpg") center top / cover no-repeat,
    var(--bg);
}

a{ color: inherit; text-decoration: none; }
img{ max-width:100%; display:block; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* TOPBAR */
.topbar{
  /* height: 56px; */
  background: rgba(255,255,255,.70);
  border-top: 10px solid #d86255;
}
.topbar__inner{
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topbar__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(#d86255, #c45549);
  color: #fff;
  font-weight: 700;
  letter-spacing: .2px;
  font-size: 14px;
  box-shadow: 0 6px 12px rgba(0,0,0,.18);
}

/* SECTION PILL */
.section-pill{
  width: 240px;
  margin: 0 auto 14px;
  text-align: center;
  padding: 12px 26px;
  border-radius: 999px;
  background: linear-gradient(#d86255, #c45549);
  color:#fff;
  font-weight: 800;
  font-size: 28px;
  box-shadow: var(--shadow-pill);
  position: relative;
}
.section-pill::after{
  content:"";
  position:absolute;
  inset:-14px -18px;
  background: url("./img/decor/sparkles.png") center / contain no-repeat;
  opacity: .65;
  pointer-events:none;
}
.section-pill--wide{
  width: 100%;
  max-width: 720px;
  font-size: 22px;
  padding: 12px 28px;
}

/* HERO */
.hero{
  padding: 26px 0 26px;
  background:
    url("./img/hero/hero-bg.jpg") center top / cover no-repeat;
    margin-top: 10px;
}
.hero__inner{
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
  align-items: center;
}
.hero__content{ padding: 18px 0 0; }
.hero__title{
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.10;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 2px 0 rgba(0,0,0,.06);
}
.hero__title-accent{ color:#ffe8a2; }
.hero__text{
  margin: 0 0 18px;
  max-width: 360px;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(69,44,36,.70);
}
.hero__visual{
  position: relative;
  min-height: 360px;
  background: url("./img/hero/hero-plate.png") right center / contain no-repeat;
}
.price-badge{
  position: absolute;
  left: -78px;
  top: -96px;
  width: 190px;
  height: 140px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,.95), rgba(255,255,255,0) 55%),
    radial-gradient(circle at 60% 60%, rgba(255,238,165,.95), rgba(236,160,40,.9));
  box-shadow: 0 14px 24px rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 6px solid rgba(255,223,122,.55);
}
.price-badge__value{
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
  color: #d15b3f;
  text-shadow: 0 2px 0 rgba(255,255,255,.5);
}
.price-badge__unit{
  font-size: 14px;
  font-weight: 800;
  color: #d15b3f;
  margin-top: 22px;
}

.note{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-top: 14px;
  color: rgba(93,60,52,.70);
  font-size: 14px;
}
.note__icon{
  width: 100px;
  height: 100px;
  background: url("./img/clock.png") center / contain no-repeat;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.18));
}

/* BUTTONS */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .2px;
  box-shadow: var(--shadow-btn);
  user-select:none;
  white-space: nowrap;
}
.btn__label{ font-size: 16px; }
.btn__icon{
  width: 26px;
  height: 26px;
  background: url("./img/icons/arrow-right.png") center / contain no-repeat;
}
.btn--primary{
  background: linear-gradient(#ffe08a, #f3b84b 55%, #dc9927);
  color: #c15a3e;
  border: 2px solid rgba(255,255,255,.35);
  box-shadow:
    0 10px 18px rgba(0,0,0,.20),
    inset 0 2px 0 rgba(255,255,255,.65),
    inset 0 -3px 0 rgba(160,92,20,.22);
}
.btn--ghost{
  width: 100%;
  background: linear-gradient(#ffe08a, #f3b84b 55%, #dc9927);
  color: #c15a3e;
  border: 2px solid rgba(255,255,255,.35);
  height: 44px;
  box-shadow:
    0 10px 16px rgba(0,0,0,.16),
    inset 0 2px 0 rgba(255,255,255,.65),
    inset 0 -3px 0 rgba(160,92,20,.20);
}
.btn--center{ margin: 0 auto; display:flex; max-width: 320px; }

.btn--mini{
  height: 34px;
  padding: 0 16px;
  font-size: 13px;
  background: linear-gradient(#ffe08a, #f3b84b 55%, #dc9927);
  color: #6a4a3f;
  border: 2px solid rgba(255,255,255,.35);
  box-shadow:
    0 8px 14px rgba(0,0,0,.16),
    inset 0 2px 0 rgba(255,255,255,.65),
    inset 0 -3px 0 rgba(160,92,20,.18);
}

/* PROGRAMS */
.programs{
  padding: 26px 0 22px;
  background:
    url("./img/sections/programs-bg.jpg") center / cover no-repeat;
}

.slider{
  margin-top: 16px;
  position: relative;
  padding: 6px 42px 0;
}
.slider__viewport{
  overflow: hidden;
}
.slider__track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((var(--container) - 48px - 24px) / 3);
  gap: 18px;
  transition: transform .35s ease;
  will-change: transform;
  padding: 6px 6px 0;
}
.slider__arrow{
  position:absolute;
  top: 140px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  box-shadow: 0 12px 22px rgba(0,0,0,.18);
  cursor: pointer;
}
.slider__arrow::before{
  content:"";
  position:absolute;
  inset: 0;
  margin:auto;
  width: 22px;
  height: 22px;
  background: url("./img/icons/chevron.png") center / contain no-repeat;
  opacity: .9;
}
.slider__arrow--prev{ left: 0; }
.slider__arrow--prev::before{ transform: rotate(180deg); }
.slider__arrow--next{ right: 0; }

.slider__dots{
  display:flex;
  justify-content:center;
  gap: 10px;
  margin-top: 14px;
}
.slider__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  cursor:pointer;
  background: rgba(255,255,255,.55);
  box-shadow: 0 6px 10px rgba(0,0,0,.12);
}
.slider__dot.is-active{
  background: rgba(255,255,255,.9);
}

.program-card{
  position: relative;
  border-radius: 14px;
  background: rgba(255,255,255,.32);
  /*box-shadow: 0 12px 22px rgba(0,0,0,.14);*/
  padding: 10px 12px 12px;
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(2px);
}
.program-card__head{
  height: 28px;
  display:flex;
  justify-content:center;
  align-items:flex-start;
  margin-top: 6px;
}
.program-card__title-pill{
  display:inline-flex;
  align-items:center;
  height: 26px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(#cf6e61, #c05a4f);
  color:#fff;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 8px 14px rgba(0,0,0,.16);
}
.program-card__media{
  margin-top: 10px;
  height: 300px;
  border-radius: 12px;
  background: url("./img/p1.png") center / contain no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}
.program-card__media--detox{ background-image: url("./img/p2.png"); }
.program-card__media--fit{ background-image: url("./img/p3.png"); }

.program-card__discount{
  position:absolute;
  right: 12px;
  top: 330px;
  width: 54px;
  height: 28px;
  border-radius: 10px;
  background: rgba(255,230,165,.85);
  color: #b05a43;
  font-weight: 900;
  font-size: 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 16px rgba(0,0,0,.14);
}
.program-card__discount--sm{ width: 50px; }

.program-card__prices{
  margin-top: 12px;
  display:flex;
  align-items: baseline;
  gap: 12px;
}
.program-card__price{
  font-weight: 900;
  font-size: 18px;
  color: #5d3b31;
}
.program-card__old{
  font-size: 12px;
  color: rgba(90,60,52,.50);
  text-decoration: line-through;
}
.program-card__meta{
  display:flex;
  align-items:center;
  gap: 8px;
  margin: 10px 0 12px;
  color: rgba(90,60,52,.65);
  font-size: 12px;
}
.program-card__dot{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(240,179,63,.85);
  box-shadow: 0 6px 10px rgba(0,0,0,.12);
}

/* ABOUT */
.about{
  padding: 22px 0 20px;
  background: url("./img/sections/about-bg.jpg") center / cover no-repeat;
}
.section-subtitle{
  margin: 10px 0 16px;
  text-align:center;
  font-size: 20px;
  color: rgba(75,47,38,.70);
  font-weight: 700;
}
.features{
  display:grid;
  
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature{
  border-radius: 14px;
  background: rgba(255,255,255,.34);
  box-shadow: 0 12px 22px rgba(0,0,0,.14);
  padding: 16px 16px 18px;
  text-align:center;
  border: 1px solid rgba(255,255,255,.22);
}
.feature__icon{
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
  background: url("./img/pic1.png") center / contain no-repeat;
  opacity: .9;
}
.feature__icon--list{ background-image: url("./img/pic2.png"); }
.feature__icon--heart{ background-image: url("./img/pic3.png"); }
.feature__title{
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 900;
  color: rgba(75,47,38,.85);
}
.feature__text{
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  color: rgba(75,47,38,.62);
}

/* REVIEWS */
.reviews{
  padding: 18px 0 24px;
  background: url("./img/sections/reviews-bg.jpg") center / cover no-repeat;
}
.reviews__title{
  margin: 0;
  text-align:center;
  font-size: 34px;
  font-weight: 900;
  color: rgba(120,68,55,.85);
}
.reviews__subtitle{
  margin: 8px 0 10px;
  text-align:center;
  font-size: 18px;
  font-weight: 700;
  color: rgba(75,47,38,.65);
}
.reviews__desc{
  margin: 0 0 14px;
  text-align:center;
  font-size: 14px;
  color: rgba(75,47,38,.55);
}
.review-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review{
  border-radius: 14px;
  background: rgba(255,255,255,.32);
  box-shadow: 0 12px 22px rgba(0,0,0,.14);
  padding: 14px;
  border: 1px solid rgba(255,255,255,.22);
}
.review__stars{
  height: 16px;
  width: 120px;
  background: url("./img/icons/stars.png") left center / contain no-repeat;
  opacity: .9;
}
.review__stars--bottom{ margin-top: 10px; }
.review__name{
  margin-top: 8px;
  font-weight: 800;
  color: rgba(75,47,38,.75);
}
.review__muted{ color: rgba(75,47,38,.45); font-weight: 700; }
.review__photo{
  margin-top: 10px;
  height: 200px;
  border-radius: 10px;
  background: url("./img/re1.png") center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
  position: relative;
}
.review__photo--b{ background-image: url("./img/re2.png"); }
.review__photo--c{ background-image: url("./img/re3.png"); }
.review__text{
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(75,47,38,.62);
}

/* CTA */
.cta{
  padding: 18px 0 26px;
  background: url("./img/sections/cta-bg.jpg") center / cover no-repeat;
}
.cta__title{
  margin: 0 0 12px;
  text-align:center;
  font-size: 44px;
  font-weight: 900;
  color:rgba(120, 68, 55, .85);
  text-shadow: 0 2px 0 rgba(0,0,0,.06);
}
.cta__panel{
  position: relative;
  border-radius: 18px;
  background: rgba(255,255,255,.35);
  box-shadow: 0 16px 28px rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.22);
  padding: 22px 24px 18px;
  min-height: 270px;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.cta__clock{
  position:absolute;
  left: 1px;
  top: 122px;
  width: 150px;
  height: 150px;
  background: url("./img/clock.png") center / contain no-repeat;
  filter: drop-shadow(0 14px 20px rgba(0,0,0,.20));
}
.cta__text{
  margin: 0;
  text-align:center;
  font-size: 25px;
  line-height: 1.35;
  color: rgba(75,47,38,.70);
}

/* FOOTER */
.footer{
  padding: 20px 0 26px;
  background: url("./img/sections/footer-bg.jpg") center / cover no-repeat;
}
.footer__inner{ padding-top: 10px; }
.footer__cols{
  display:grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 22px;
  align-items: start;
}
.footer__divider{
  width: 1px;
  height: 210px;
  background: rgba(90,60,52,.14);
  margin: 8px 0 0;
}
.footer__title{
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 900;
  color: rgba(75,47,38,.72);
  position: relative;
}
.footer__title::after{
  content:"";
  position:absolute;
  left: -10px;
  top: -14px;
  width: 190px;
  height: 64px;
  background: url("./img/decor/sparkles-small.png") left center / contain no-repeat;
  opacity: .55;
  pointer-events:none;
}
.footer__text{
  font-size: 14px;
  line-height: 1.55;
  color: rgba(75,47,38,.60);
}
.footer__muted{ color: rgba(75,47,38,.45); }
.footer__buttons{
  display:flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.footer__links{
  margin: 0;
  padding-left: 18px;
  list-style: disc;
  color: rgba(75,47,38,.62);
}
.footer__links li{ margin: 8px 0; }
.footer__links a{ color: rgba(75,47,38,.62); }
.footer__links a:hover{ color: rgba(75,47,38,.82); }

.footer__bottom{
  margin-top: 18px;
  text-align:center;
  color: rgba(75,47,38,.55);
  font-size: 13px;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 980px){
  :root{ --container: 860px; }

  .hero__inner{
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 12px;
  }
  .hero::before{
    height: 100px;
  }
  .hero__visual{
    min-height: 260px;
    background-position: center;
  }
  .hero__content{
    margin: 0 auto;
  }
  .price-badge{
    left: 18px;
    top: 70px;
    transform: scale(.92);
    transform-origin: left top;
  }

  .slider{
    padding: 6px 40px 0;
  }
  .slider__track{
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .features{ grid-template-columns: 1fr; gap: 14px; }
  .review-grid{ grid-template-columns: 1fr; gap: 14px; }

}

@media (max-width: 640px){
  .container{ padding: 0 16px; }

  .topbar{ height: 52px; }
  .topbar__inner{ height: 52px; }

  .hero{ padding: 18px 0 18px; }
  .hero__title{ font-size: 28px; }
  .hero__text{ font-size: 15px; }

  .section-pill{ font-size: 24px; width: 210px; }
  .section-pill--wide{ font-size: 18px; padding: 12px 18px; }

  .slider{ padding: 6px 0 0; }
  .slider__arrow{ display:none; }
  .slider__track{ grid-auto-columns: 100%; }

  .reviews__title{ font-size: 28px; }
  .cta__title{ font-size: 34px; }

  .cta__panel{ padding: 18px 16px; }
  .cta__clock{ display:none; }

  .footer__cols{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer__divider{ display:none; }
}


/* HERO (обновлено под PNG блюда + красная полоса) */
.hero{
  position: relative;
  padding: 26px 0 26px;
  background: url("./img/bg/2.jpg") center top / cover no-repeat;
  overflow: hidden;
}

/* красная полоса сзади (как на макете) */
.hero::before{
  content:"";
  position:absolute;
  left:0; right:0;
  top:27px;
  height: 125px;          /* высота полосы — как на скрине */
  background: linear-gradient(#e06a5c, #c95549);
  opacity: 0.95;
}

.hero__inner{
  position: relative;
  z-index: 1;
  min-height: 430px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: center;
}

.hero__content{ padding: 18px 0 0; }

.hero__title{
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.10;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 2px 0 rgba(0,0,0,.06);
}

.hero__title-accent{ color:#ffe8a2; }

.hero__text{
  margin: 0 0 18px;
  max-width: 360px;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(69,44,36,.70);
}

/* правый блок */
.hero__visual{
  position: relative;
  min-height: 360px;
}

/* место под блюдо */
.hero__dish{
  position: absolute;
  right: -200px;
  top:0px;
  width: 670px;      /* подгони под свой PNG */
  max-width: 58vw;
  pointer-events: none;
}

.hero__dish-img{
  width: 100%;
  height: auto;
  display: block;
  /* лёгкая тень как у фото на макете */
  filter: drop-shadow(0 16px 20px rgba(0,0,0,.18));
}

/* цена поверх блюда */
.hero__price{
  position: absolute;
  left: 10px;
  top: 160px;
  z-index: 2;
}

/* NOTE + таймер */
.note{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  margin-top: 14px;
  color: rgba(93,60,52,.70);
  font-size: 14px;
}

.note__icon{
  width: 100px;
  height: 100px;
  background: url("./img/clock.png") center / contain no-repeat;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.18));
  flex: 0 0 auto;
}

.note__body{ display:flex; flex-direction:column; gap: 8px; }
.note__text{ font-weight: 700; }

.timer{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.42);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 10px 18px rgba(0,0,0,.10);
  backdrop-filter: blur(2px);
}

.timer__item{
  display:flex;
  flex-direction:column;
  align-items:center;
  min-width: 44px;
}

.timer__num{
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  color: rgba(75,47,38,.80);
}

.timer__label{
  margin-top: 4px;
  font-size: 10px;
  line-height: 1;
  color: rgba(75,47,38,.55);
  font-weight: 700;
}

.timer__sep{
  font-weight: 900;
  color: rgba(75,47,38,.35);
  margin-top: -10px;
}

/* RESPONSIVE для hero */
@media (max-width: 980px){
  .hero__inner{
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 12px;
  }
  .hero::before{
    height: 100px;
  }
  .hero__visual{
    min-height: 300px;
  }
  
  .hero__dish{
    right: -10px;
    top: 0;
    width: 520px;
    max-width: 92vw;
  }

  .hero__price{
    left: 14px;
    top: 120px;
    transform: scale(.92);
    transform-origin: left top;
  }
  .note{
    display: none;
  }
}

@media (max-width: 640px){
  .hero{ padding:


.programs__splide{
  margin-top: 18px;
}

.splide__slide{
  display: flex;
  height: auto;
}

.splide__arrow{
  background: rgba(255,255,255,.55);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 12px 22px rgba(0,0,0,.18);
}

.splide__arrow svg{
  fill: #8a4a3f;
}

.splide__pagination{
  bottom: -26px;
}

.splide__pagination__page{
  background: rgba(255,255,255,.55);
  opacity: 1;
}

.splide__pagination__page.is-active{
  background: rgba(255,255,255,.95);
}


