/* «Части Тела» — страница «Акции» (akcii), префикс pr- */

/* -------- hero: хлебные крошки + заголовок -------- */

.pr-hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(130px, 18vh, 190px) var(--pad-x) clamp(40px, 6vw, 70px);
}

.pr-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(16, 49, 47, .55);
  margin-bottom: 26px;
}
.pr-crumbs a {
  color: rgba(16, 49, 47, .55);
  text-decoration: none;
  transition: color .25s ease;
}
.pr-crumbs a:hover { color: var(--teal); }
.pr-crumbs__here { color: var(--teal); }

.pr-hero__eyebrow {
  gap: 10px;
  margin-bottom: 22px;
}

.pr-hero__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.pr-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(42px, 6.4vw, 92px);
  line-height: 1.02;
  letter-spacing: -.015em;
  max-width: 14ch;
}
.pr-hero__title em {
  font-style: italic;
  color: var(--gold);
}
.pr-hero__lead {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(16, 49, 47, .75);
  max-width: 38ch;
}

/* -------- программа лояльности: два больших блока -------- */

.pr-loyal {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(50px, 7vw, 80px);
}
.pr-loyal__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
}
@media (max-width: 920px) {
  .pr-loyal__grid { grid-template-columns: 1fr; }
}

.pr-loyal__card {
  border-radius: 26px;
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 300px;
}
.pr-loyal__card--pine {
  background: var(--pine);
  color: var(--cream);
}
.pr-loyal__card--gold {
  background: var(--gold);
  color: var(--pine);
}

.pr-loyal__glow {
  position: absolute;
  border-radius: 50%;
}
.pr-loyal__glow--teal {
  top: -140px;
  right: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(closest-side, rgba(59, 150, 143, .3), rgba(59, 150, 143, 0));
}
.pr-loyal__glow--ivory {
  bottom: -120px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(closest-side, rgba(252, 250, 244, .28), rgba(252, 250, 244, 0));
}

.pr-loyal__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.pr-loyal__label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.pr-loyal__label--gold { color: var(--gold); }
.pr-loyal__label--dim { opacity: .7; }
.pr-loyal__sign {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 44px;
}
.pr-loyal__sign--gold { color: var(--gold); }

.pr-loyal__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.1;
  position: relative;
}

.pr-loyal__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  position: relative;
}
.pr-loyal__text--cream {
  color: var(--cream-75);
  max-width: 48ch;
}
.pr-loyal__text--pine {
  color: rgba(11, 50, 49, .8);
  max-width: 44ch;
}

.pr-loyal__stats {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  position: relative;
  margin-top: auto;
}
.pr-loyal__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pr-loyal__stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--gold);
}
.pr-loyal__stat-cap {
  font-size: 12px;
  color: var(--cream-60);
}

.pr-loyal__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pine);
  color: var(--cream);
  font-weight: 600;
  font-size: 14.5px;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  align-self: flex-start;
  margin-top: auto;
  transition: background .3s ease, color .3s ease;
}
.pr-loyal__cta:hover {
  background: var(--gold-soft);
  color: var(--pine);
}

/* -------- «Действуют сейчас» -------- */

.pr-now {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(70px, 9vw, 120px);
}
.pr-now__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 26px;
}
.pr-now__month {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
}
.pr-now__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.8vw, 48px);
}
.pr-now__rule {
  flex: 1;
  height: 1px;
  background: rgba(16, 60, 58, .14);
  align-self: center;
}

.pr-now__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 16px;
}

.pr-card {
  background: var(--ivory);
  border: 1px solid var(--line-12);
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pr-card--mist {
  background: var(--teal-mist);
  border: none;
}
.pr-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pr-card__when {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
}
.pr-card__deal {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  color: var(--teal);
}
.pr-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 23px;
}
.pr-card__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-70);
}
.pr-card__link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  margin-top: auto;
  transition: color .25s ease;
}
.pr-card__link:hover { color: var(--gold); }

.pr-now__note {
  margin: 26px 0 0;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: rgba(16, 49, 47, .5);
}

/* -------- тёмная CTA-секция -------- */

.pr-cta {
  background: var(--pine);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.pr-cta__glow {
  position: absolute;
  top: -220px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(59, 150, 143, .25), rgba(59, 150, 143, 0));
  pointer-events: none;
}
.pr-cta__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) var(--pad-x);
  text-align: center;
  position: relative;
}
.pr-cta__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.07;
}
.pr-cta__title em {
  font-style: italic;
  color: var(--gold);
}
.pr-cta__text {
  margin: 0 0 30px;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(247, 242, 233, .7);
}
.pr-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.pr-cta__vk {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--pine);
  font-weight: 600;
  font-size: 15.5px;
  padding: 17px 30px;
  border-radius: 999px;
  text-decoration: none;
  transition: background .3s ease;
}
.pr-cta__vk:hover { background: var(--gold-soft); }
.pr-cta__ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid rgba(247, 242, 233, .3);
  color: var(--cream);
  font-weight: 600;
  font-size: 15.5px;
  padding: 16px 29px;
  border-radius: 999px;
  text-decoration: none;
  transition: border-color .3s ease, color .3s ease;
}
.pr-cta__ghost:hover {
  border-color: rgba(185, 146, 79, .8);
  color: var(--gold);
}
