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

  /* 다신샵 dshop.dietshin.com — base.css: body #383838, brand #d12268, coral #fe6b6b / #fd555d */
  --text: #383838;
  --text-dark: #232323;

  --bg: #f4f4f4;
  --card: rgba(255,255,255,.55);
  --card-strong: rgba(255,255,255,.72);

  --red: #d12268;
  --red-dark: #b01d56;

  --accent-coral: #fe6b6b;
  --accent-line: #fd555d;
  --accent-yellow: #ffde00;

  --gold-1: #ff8a9a;
  --gold-2: #f96767;
  --gold-3: #d12268;

  --shadow-soft: 0 10px 22px rgba(0,0,0,.08);
  --shadow-pill: 0 6px 14px rgba(209,34,104,.22);
  --shadow-btn: 0 8px 18px rgba(209,34,104,.28);

  --hero-radius: 18px;
  --hero-timer-surface: rgba(255,255,255,.48);
  --hero-timer-ring: rgba(255,255,255,.72);
  --hero-timer-shadow: 0 14px 40px rgba(209,34,104,.14), 0 6px 20px rgba(0,0,0,.08);
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color: var(--text);
  font-family: "Pretendard Variable", "Pretendard", -apple-system, "Noto Sans KR", sans-serif;
  background:
    url("./img/bg/texture.jpg") center top / cover no-repeat,
    var(--bg);
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
}

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,.92);
  border-top: 10px solid var(--accent-line);
}
.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(#fe6b6b, #d12268);
  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(#fe6b6b, #d12268);
  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 (base — overridden below by updated block) */
.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,182,193,.92), rgba(209,34,104,.88));
  box-shadow: 0 14px 24px rgba(209,34,104,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 6px solid rgba(254,107,107,.45);
}
.price-badge__value{
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
  color: #d12268;
  text-shadow: 0 2px 0 rgba(255,255,255,.5);
}
.price-badge__unit{
  font-size: 14px;
  font-weight: 800;
  color: #d12268;
  margin-top: 22px;
}

/* 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(#fe6b6b, #e8306a 50%, #d12268);
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  box-shadow:
    0 10px 18px rgba(209,34,104,.35),
    inset 0 2px 0 rgba(255,255,255,.35),
    inset 0 -3px 0 rgba(120,10,60,.25);
}
.btn--ghost{
  width: 100%;
  background: linear-gradient(#fe6b6b, #e8306a 50%, #d12268);
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  height: 44px;
  box-shadow:
    0 10px 16px rgba(209,34,104,.3),
    inset 0 2px 0 rgba(255,255,255,.35),
    inset 0 -3px 0 rgba(120,10,60,.22);
}
.btn--center{ margin: 0 auto; display:flex; max-width: 320px; }

.btn--mini{
  height: 34px;
  padding: 0 16px;
  font-size: 13px;
  background: linear-gradient(#fe6b6b, #d12268);
  color: #fff;
  border: 2px solid rgba(255,255,255,.35);
  box-shadow:
    0 8px 14px rgba(209,34,104,.28),
    inset 0 2px 0 rgba(255,255,255,.3),
    inset 0 -3px 0 rgba(120,10,60,.2);
}

/* 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(#fe6b6b, #d12268);
  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(209,34,104,.12);
  color: #d12268;
  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: #232323;
}
.program-card__old{
  font-size: 12px;
  color: rgba(56,56,56,.48);
  text-decoration: line-through;
}
.program-card__meta{
  display:flex;
  align-items:center;
  gap: 8px;
  margin: 10px 0 12px;
  color: rgba(110,110,125,.85);
  font-size: 12px;
}
.program-card__dot{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(209,34,104,.75);
  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(56,56,56,.72);
  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(35,35,35,.9);
}
.feature__text{
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  color: rgba(56,56,56,.65);
}

/* 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: #d12268;
}
.reviews__subtitle{
  margin: 8px 0 10px;
  text-align:center;
  font-size: 18px;
  font-weight: 700;
  color: rgba(56,56,56,.68);
}
.reviews__desc{
  margin: 0 0 14px;
  text-align:center;
  font-size: 14px;
  color: rgba(110,110,125,.75);
}
.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(35,35,35,.82);
}
.review__muted{ color: rgba(110,110,125,.65); 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(56,56,56,.64);
}

/* CTA */
.cta{
  padding: 18px 0 26px;
  background: url("./img/sections/cta-bg.jpg") center / cover no-repeat;
  overflow-x: clip;
}
.cta__title{
  margin: 0 0 18px;
  text-align:center;
  font-size: 44px;
  font-weight: 900;
  color: #d12268;
  text-shadow: 0 2px 0 rgba(0,0,0,.04);
}
.cta__sheet{
  width: 100%;
  margin: 0;
  position: relative;
  border-radius: 18px;
  background: rgba(255,255,255,.35);
  box-shadow: 0 16px 28px rgba(0,0,0,.16);
  border: solid rgba(255,255,255,.22);
  border-width: 1px 0;
  padding: 22px 0 18px;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  box-sizing: border-box;
}
.cta__sheet-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 220px;
}
.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(56,56,56,.72);
}

/* 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(0,0,0,.08);
  margin: 8px 0 0;
}
.footer__title{
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 900;
  color: rgba(35,35,35,.78);
  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(56,56,56,.62);
}
.footer__muted{ color: rgba(110,110,125,.55); }
.footer__buttons{
  display:flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.footer__links{
  margin: 0;
  padding-left: 18px;
  list-style: disc;
  color: rgba(56,56,56,.62);
}
.footer__links li{ margin: 8px 0; }
.footer__links a{ color: rgba(56,56,56,.62); }
.footer__links a:hover{ color: #d12268; }

.footer__bottom{
  margin-top: 18px;
  text-align:center;
  color: rgba(110,110,125,.65);
  font-size: 13px;
  line-height: 1.5;
}

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

  .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__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__sheet{ padding: 18px 0; min-height: 240px; }
  .cta__sheet-inner{ padding: 0 16px; }
  .cta__clock{ display:none; }

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


/* HERO (полоса + заголовок на градиенте, читабельный текст) */
.hero{
  position: relative;
  padding: 20px 0 28px;
  background: url("./img/bg/2.jpg") center top / cover no-repeat;
  overflow: hidden;
}

/* ПК: колонка модели — мягкая маска, без перегруза центра */
.hero__koreanka-wrap{
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: clamp(88px, 17vw, 300px);
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  /* справа + мягкое растворение снизу (туловище не обрывается линией) */
  -webkit-mask-image:
    linear-gradient(to bottom, #000 0%, #000 52%, rgba(0,0,0,.55) 78%, transparent 100%),
    linear-gradient(to right, #000 72%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, #000 0%, #000 52%, rgba(0,0,0,.55) 78%, transparent 100%),
    linear-gradient(to right, #000 72%, transparent 100%);
  mask-composite: intersect;
}
.hero__koreanka{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: left center;
}

/* ПК: заголовок + лид без лишней вложенности в потоке */
.hero__lead{
  display: contents;
}
.hero__lead-gutter{
  display: none;
}
.hero__lead-text{
  display: contents;
}

/* ПК: градиентная полоса под фото (clamp — плавнее после узкого десктопа) */
.hero::before{
  content:"";
  position:absolute;
  left:0; right:0;
  top: 12px;
  height: clamp(168px, 19vw, 216px);
  background: linear-gradient(180deg, #fe6b6b 0%, #e8367a 45%, #d12268 100%);
  opacity: 0.97;
  z-index: 0;
}

.hero__inner{
  position: relative;
  z-index: 2;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(20px, 2.6vw, 36px);
  /* Не центрируем колонки — иначе заголовок оказывается на стыке полосы и белого фона */
  align-items: start;
}

/* Левая колонка: старт сверху, в зоне полосы */
.hero__content{
  padding: 22px 0 0;
  max-width: 420px;
}

.hero__title{
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,.22);
}

.hero__title-accent{
  color: #ffe14d;
  text-shadow: 0 1px 4px rgba(0,0,0,.35);
}

/* Подзаголовок на градиенте — светлый текст с тенью */
.hero__text{
  margin: 0 0 18px;
  max-width: 360px;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255,255,255,.94);
  text-shadow: 0 1px 3px rgba(0,0,0,.2);
}

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

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

/* Широкий десктоп: воздух у текста; фото модели без обрезки по cover */
@media (min-width: 1201px){
  .hero__koreanka-wrap{
    width: clamp(200px, 28vw, 460px);
    -webkit-mask-image:
      linear-gradient(to bottom, #000 0%, #000 50%, rgba(0,0,0,.5) 76%, transparent 100%),
      linear-gradient(
        to right,
        #000 0%,
        #000 82%,
        rgba(0,0,0,.55) 92%,
        transparent 100%
      );
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to bottom, #000 0%, #000 50%, rgba(0,0,0,.5) 76%, transparent 100%),
      linear-gradient(
        to right,
        #000 0%,
        #000 82%,
        rgba(0,0,0,.55) 92%,
        transparent 100%
      );
    mask-composite: intersect;
  }
  .hero__koreanka{
    object-fit: contain;
    object-position: left center;
  }
  .hero__content{
    padding-top: 22px;
    padding-left: clamp(28px, 4vw, 64px);
    padding-right: 0;
    padding-bottom: 0;
  }
  .hero__timer-wrap{
    max-width: min(400px, 100%);
    position: relative;
    z-index: 3;
  }
}

.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(56,56,56,.72);
  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(209,34,104,.15));
  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(35,35,35,.88);
}

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

.timer__sep{
  font-weight: 900;
  color: rgba(110,110,125,.4);
  margin-top: -10px;
}

/* RESPONSIVE для hero — смартфоны */
@media (max-width: 760px){
  .hero{
    --hero-stripe-top: 8px;
    /* Полоса под весь лид (h1 + подзаголовок); 200px обрезали белый текст на светлом фоне */
    --hero-stripe-h: clamp(248px, 62vw, 320px);
    /* узкая колонка под фото слева — текст не заезжает под картинку */
    --hero-koreanka-w-mobile: clamp(108px, 34vw, 175px);
    /* Абсолютное блюдо + price-badge выступают вниз — hidden обрезал овал «990원» */
    overflow: visible;
    padding-bottom: 40px;
  }
  /* Мобайл: градиент на всю ширину полосы; фото только слева, выше градиента, ниже текста */
  .hero::before{
    top: var(--hero-stripe-top);
    height: var(--hero-stripe-h);
    z-index: 0;
    opacity: 0.97;
  }
  /* Обрезка строго по высоте полосы — фото не вылезает вверх/вниз */
  .hero__koreanka-wrap{
    top: var(--hero-stripe-top);
    bottom: auto;
    height: var(--hero-stripe-h);
    width: var(--hero-koreanka-w-mobile);
    -webkit-mask-image:
      linear-gradient(to bottom, #000 0%, #000 48%, rgba(0,0,0,.5) 72%, transparent 100%),
      linear-gradient(to right, #000 0%, #000 82%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to bottom, #000 0%, #000 48%, rgba(0,0,0,.5) 72%, transparent 100%),
      linear-gradient(to right, #000 0%, #000 82%, transparent 100%);
    mask-composite: intersect;
  }
  .hero__koreanka{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 18%;
  }
  /* Отступ под колонку фото только у заголовка/лида; кнопка и таймер на всю ширину */
  .hero__lead{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }
  .hero__lead-gutter{
    display: block;
    flex: 0 0 var(--hero-koreanka-w-mobile);
    width: var(--hero-koreanka-w-mobile);
    min-width: 0;
    min-height: 1px;
    flex-shrink: 0;
  }
  .hero__lead-text{
    display: block;
    flex: 1;
    min-width: 0;
  }
  .hero__inner{
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 28px;
  }
  .hero__content{
    max-width: none;
    padding-top: calc(var(--hero-stripe-top) + 6px);
    padding-left: 0;
    padding-bottom: 4px;
    box-sizing: border-box;
  }
  .hero__title,
  .hero__text{
    text-align: left;
  }
  .hero__title{
    font-size: clamp(26px, 7.2vw, 32px);
    line-height: 1.14;
    text-shadow:
      0 1px 2px rgba(0,0,0,.45),
      0 2px 14px rgba(0,0,0,.35);
  }
  .hero__title-accent{
    text-shadow:
      0 1px 3px rgba(0,0,0,.5),
      0 2px 12px rgba(0,0,0,.4);
  }
  .hero__text{
    margin-left: 0;
    margin-bottom: 14px;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.5;
    text-shadow:
      0 1px 2px rgba(0,0,0,.4),
      0 2px 10px rgba(0,0,0,.3);
  }
  /* CTA и таймер на мобиле */
  .hero__content > .btn{
    width: 100%;
    max-width: min(420px, 100%);
    height: 52px;
    margin-left: auto;
    margin-right: auto;
    box-shadow:
      0 12px 26px rgba(209,34,104,.3),
      inset 0 2px 0 rgba(255,255,255,.35);
  }
  .hero__timer-wrap{
    margin-top: 18px;
    width: 100%;
    max-width: min(440px, 100%);
    margin-left: auto;
    margin-right: auto;
  }
  .hero__timer-wrap .timer{
    width: 100%;
    max-width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    padding: 12px 10px;
  }
  .hero__timer-label{
    justify-content: center;
    text-align: center;
    margin-bottom: 8px;
  }
  .hero__visual{
    /* Блюдо position:absolute не растягивает ряд — запас по высоте, чтобы не резало тень/бейдж */
    min-height: clamp(260px, 72vw, 360px);
    align-self: start;
    margin-top: clamp(12px, 3vw, 20px);
    overflow: visible;
  }
  .hero__visual .hero__dish-img{
    border-radius: clamp(10px, 2.5vw, 16px);
  }
  
  .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;
  }
}

/* 761–1200px: одна колонка, таймер → блюдо; ровные отступы и акцент на еде */
@media (min-width: 761px) and (max-width: 1200px){
  .hero{
    overflow: visible;
    padding: 22px 0 40px;
    --hero-stripe-top: 8px;
    --hero-stripe-h: clamp(236px, 36vw, 304px);
    --hero-koreanka-w-mobile: clamp(98px, 22vw, 180px);
  }
  .hero::before{
    top: var(--hero-stripe-top);
    height: var(--hero-stripe-h);
    z-index: 0;
    opacity: 0.97;
    border-radius: 0 0 28px 28px;
  }
  .hero__koreanka-wrap{
    top: var(--hero-stripe-top);
    bottom: auto;
    height: var(--hero-stripe-h);
    width: var(--hero-koreanka-w-mobile);
    border-radius: 0 0 0 20px;
    -webkit-mask-image:
      linear-gradient(to bottom, #000 0%, #000 48%, rgba(0,0,0,.5) 72%, transparent 100%),
      linear-gradient(to right, #000 0%, #000 82%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to bottom, #000 0%, #000 48%, rgba(0,0,0,.5) 72%, transparent 100%),
      linear-gradient(to right, #000 0%, #000 82%, transparent 100%);
    mask-composite: intersect;
  }
  .hero__koreanka{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 22%;
  }
  .hero__lead{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
  }
  .hero__lead-gutter{
    display: block;
    flex: 0 0 var(--hero-koreanka-w-mobile);
    width: var(--hero-koreanka-w-mobile);
    min-width: 0;
    min-height: 1px;
    flex-shrink: 0;
  }
  .hero__lead-text{
    display: block;
    flex: 1;
    min-width: 0;
  }
  .hero__inner{
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding-bottom: clamp(24px, 4vw, 36px);
    align-items: stretch;
  }
  .hero__content{
    max-width: min(560px, 100%);
    margin-left: auto;
    margin-right: auto;
    padding-top: calc(var(--hero-stripe-top) + 10px);
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 8px;
    box-sizing: border-box;
  }
  .hero__title{
    margin: 0 0 10px;
    font-size: clamp(27px, 3.4vw, 34px);
    line-height: 1.13;
    text-align: left;
    letter-spacing: -0.02em;
    text-shadow:
      0 1px 2px rgba(0,0,0,.38),
      0 2px 14px rgba(0,0,0,.3);
  }
  .hero__title-accent{
    text-shadow:
      0 1px 3px rgba(0,0,0,.48),
      0 2px 12px rgba(0,0,0,.34);
  }
  .hero__text{
    margin: 0 0 18px;
    max-width: 42ch;
    font-size: clamp(15px, 1.65vw, 17px);
    line-height: 1.5;
    text-align: left;
    text-shadow:
      0 1px 2px rgba(0,0,0,.34),
      0 2px 10px rgba(0,0,0,.24);
  }
  .hero__content > .btn{
    display: flex;
    width: 100%;
    max-width: 400px;
    height: 52px;
    margin-left: auto;
    margin-right: auto;
    box-shadow:
      0 12px 28px rgba(209,34,104,.32),
      inset 0 2px 0 rgba(255,255,255,.38);
  }
  .hero__timer-wrap{
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    position: relative;
    z-index: 3;
  }
  .hero__timer-label{
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
    font-size: 15px;
    color: rgba(56,56,56,.82);
  }
  .hero__timer-wrap .timer{
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 12px 16px;
    border-radius: 14px;
  }
  .hero__visual{
    width: 100%;
    max-width: min(640px, 100%);
    margin-left: auto;
    margin-right: auto;
    margin-top: clamp(28px, 5vw, 44px);
    padding: clamp(12px, 2vw, 20px) clamp(8px, 2vw, 16px) 0;
    min-height: clamp(220px, 40vw, 340px);
    align-self: center;
    overflow: visible;
    position: relative;
    border-radius: var(--hero-radius);
    background: linear-gradient(180deg, rgba(255,255,255,.5) 0%, rgba(255,255,255,.15) 100%);
    border: 1px solid rgba(255,255,255,.55);
    box-shadow: 0 16px 48px rgba(0,0,0,.07);
  }
  .hero__dish{
    position: relative;
    right: auto;
    top: auto;
    left: auto;
    width: 100%;
    max-width: min(520px, 92vw);
    margin: 0 auto;
  }
  .hero__visual .hero__dish-img{
    border-radius: clamp(12px, 2vw, 18px);
    filter: drop-shadow(0 12px 28px rgba(0,0,0,.14));
  }
  .hero__price{
    left: clamp(20px, 7vw, 72px);
    top: clamp(68px, 12vw, 118px);
    transform: scale(0.88);
    transform-origin: left top;
  }
  .note{
    display: none;
  }

  .programs__splide{
    padding: 0 clamp(36px, 6vw, 48px) 38px;
  }
  .promo-banner{
    padding: 24px 0 12px;
  }
  .promo-banner__card{
    padding: 28px 28px;
    border-radius: var(--hero-radius);
  }
  .promo-banner__title{
    font-size: clamp(22px, 2.8vw, 26px);
  }
}

@media (max-width: 640px){
  .hero{
    padding: 18px 0 44px;
    --hero-koreanka-w-mobile: clamp(92px, 30vw, 148px);
    --hero-stripe-h: clamp(260px, 78vw, 336px);
  }
  .hero__koreanka{
    object-position: 48% 18%;
  }
  .hero__timer-wrap .timer__num{
    font-size: 17px;
  }
  .hero__timer-wrap .timer__item{
    min-width: 40px;
  }
  .hero__visual{
    min-height: clamp(248px, 78vw, 340px);
  }
  .hero__dish{
    max-width: 88vw;
  }
}


.programs__splide{
  margin-top: 18px;
  padding: 0 52px 40px;
}

.programs__splide .splide__slide{
  display: flex;
  height: auto;
  min-width: 0;
}

.programs__splide .splide__slide .program-card{
  width: 100%;
  min-width: 0;
}

.programs__splide .splide__arrow{
  background: rgba(255,255,255,.92);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  border: 1px solid rgba(209,34,104,.12);
  opacity: 1;
}

.programs__splide .splide__arrow:hover:not(:disabled){
  background: #fff;
  box-shadow: 0 10px 24px rgba(209,34,104,.2);
}

.programs__splide .splide__arrow svg{
  fill: #d12268;
}

.programs__splide .splide__pagination{
  bottom: 6px;
  padding: 0;
}

.programs__splide .splide__pagination__page{
  background: rgba(56,56,56,.22);
  opacity: 1;
  width: 9px;
  height: 9px;
  margin: 4px;
}

.programs__splide .splide__pagination__page.is-active{
  background: #d12268;
  transform: scale(1.25);
}

/* если Splide не подключился — карточки в колонку */
.splide--fallback .splide__list{
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.splide--fallback .splide__slide{
  width: 100% !important;
  margin: 0 !important;
}

@media (max-width: 720px){
  .programs__splide{
    padding: 0 0 36px;
  }
}


/* ============ PROMO BANNER ============ */
.promo-banner{
  padding: 28px 0 10px;
}
.promo-banner__card{
  text-align: center;
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 12px 36px rgba(0,0,0,.07);
  border: 1px solid rgba(209,34,104,.08);
  word-break: keep-all;
  overflow-wrap: break-word;
}
.promo-banner__title{
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
}
.promo-banner__title strong{
  color: var(--red);
}
.promo-banner__sub{
  margin: 0 0 20px;
  font-size: 16px;
  color: rgba(56,56,56,.68);
  line-height: 1.5;
}
.promo-banner__sub em{
  font-style: normal;
  font-weight: 700;
  color: var(--red);
}

/* ============ PLAN INTRO (полноширинный лист; контент в .container) ============ */
.plan-intro{
  padding: clamp(24px, 4vw, 44px) 0 clamp(32px, 5.5vw, 52px);
  background: transparent;
  overflow-x: clip;
}
.plan-intro__sheet{
  width: 100%;
  margin: 0;
  padding: clamp(26px, 4vw, 42px) 0;
  background: rgba(255,255,255,.82);
  border-radius: 22px;
  border: solid rgba(209,34,104,.1);
  border-width: 1px 0;
  box-shadow:
    0 2px 4px rgba(0,0,0,.03),
    0 16px 48px rgba(0,0,0,.06),
    0 0 0 1px rgba(255,255,255,.8) inset;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-sizing: border-box;
}
.plan-intro__sheet-inner.container{
  max-width: 1000px;
}
.plan-intro__text{
  text-align: center;
  margin: 0 auto;
  margin-bottom: clamp(24px, 4vw, 36px);
  padding: 0 clamp(4px, 1.5vw, 12px) clamp(20px, 3vw, 28px);
  max-width: 40rem;
  border-bottom: 1px solid rgba(209,34,104,.08);
}
.plan-intro__title{
  margin: 0 auto 18px;
  max-width: 22em;
  font-size: clamp(21px, 2.75vw, 27px);
  font-weight: 800;
  line-height: 1.5;
  color: var(--text-dark);
  letter-spacing: -0.025em;
}
.plan-intro__title::after{
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-coral), var(--red));
  opacity: 0.9;
}
.plan-intro__para{
  margin: 0 auto 14px;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  color: rgba(56,56,56,.76);
  max-width: 48ch;
}
.plan-intro__para:first-of-type{
  margin-top: 6px;
}
.plan-intro__para:last-child{
  margin-bottom: 0;
}
.plan-intro__grid{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2.2vw, 20px);
  align-items: stretch;
}
.plan-intro__cell{
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 4px 14px rgba(0,0,0,.07);
  background: rgba(248,248,248,.9);
  aspect-ratio: 4 / 5;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.plan-intro__cell:hover{
  border-color: rgba(209,34,104,.18);
  box-shadow:
    0 6px 20px rgba(209,34,104,.12),
    0 4px 12px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.plan-intro__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .4s ease;
}
.plan-intro__cell:hover .plan-intro__img{
  transform: scale(1.03);
}
@media (max-width: 900px){
  .plan-intro__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px){
  .plan-intro{
    padding: 18px 0 28px;
  }
  .plan-intro__sheet{
    padding: 22px 0 24px;
    border-radius: 0;
  }
  .plan-intro__text{
    padding-bottom: 18px;
    margin-bottom: 20px;
  }
  .plan-intro__grid{
    gap: 10px;
  }
  .plan-intro__cell{
    border-radius: 12px;
  }
}

/* ============ HERO TIMER (new layout) ============ */
.hero__timer-wrap{
  margin-top: 22px;
}

/* Таймер на белом фоне — плотнее заливка, чёткая обводка */
.hero__timer-wrap .timer{
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

/* ≤1200px: блок таймера как аккуратная «плашка» над светлым фоном */
@media (max-width: 1200px){
  .hero__timer-wrap{
    margin-top: clamp(18px, 3vw, 24px);
    padding: 16px 14px 18px;
    border-radius: var(--hero-radius);
    background: var(--hero-timer-surface);
    border: 1px solid var(--hero-timer-ring);
    box-shadow: var(--hero-timer-shadow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .hero__timer-wrap .timer{
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(209,34,104,.1);
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
  }
}

.hero__timer-label{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.hero__timer-clock{
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.12));
}

/* ============ REVIEW RATING ROW ============ */
.review__rating{
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 2px;
}

/* ============ CTA DATE ACCENT ============ */
.cta__date{
  color: var(--red);
  font-weight: 800;
}

/* ============ BTN SM (smaller CTA variant) ============ */
.btn--sm{
  height: 44px;
  padding: 0 28px;
  font-size: 15px;
}

/* ============ TRANSITIONS & HOVER ============ */
.btn{
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  cursor: pointer;
}
.btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.btn:active{
  transform: translateY(0);
}

.feature{
  transition: transform .22s ease, box-shadow .22s ease;
}
.feature:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,.12);
}

.review{
  transition: transform .22s ease, box-shadow .22s ease;
}
.review:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,.12);
}

.program-card{
  transition: transform .22s ease, box-shadow .22s ease;
}
.program-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,.1);
}

.footer__links a{
  transition: color .15s ease;
}

/* ============ COOKIE BANNER ============ */
.cookie-banner{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 -8px 28px rgba(0,0,0,.1);
  padding: 18px 24px;
  display: none;
  transition: opacity .3s ease, transform .3s ease;
}
.cookie-banner.show{
  display: block;
  animation: slideUp .35s ease both;
}
@keyframes slideUp{
  from{ transform: translateY(100%); opacity: 0; }
  to{ transform: translateY(0); opacity: 1; }
}
.cookie-banner__content{
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner p{
  font-size: 14px;
  line-height: 1.55;
  color: rgba(56,56,56,.8);
  margin: 0;
}
.cookie-banner a{
  color: var(--red);
  text-decoration: underline;
}
.cookie-banner__actions{
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-banner__btn{
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease;
}
.cookie-banner__btn:hover{
  transform: translateY(-1px);
}
.cookie-banner__btn--accept{
  background: var(--red);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(209,34,104,.3);
}
@media (max-width: 640px){
  .cookie-banner__content{
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner__actions{
    width: 100%;
    justify-content: flex-end;
  }

  .promo-banner__title{ font-size: 22px; }
  .promo-banner__card{ padding: 24px 16px; }

  .hero__timer-label{ font-size: 14px; }
  .hero__timer-clock{ width: 34px; height: 34px; }
}

/* ============ PRICE-BADGE UNIT SIZE FIX ============ */
.price-badge__unit{
  font-size: 36px;
  margin-top: 18px;
}

