/* ============================================================
   Premium — світла тема за макетом (крем + зелений + золото)
   ============================================================ */

:root {
  --pr-bg: #ffffff;
  --pr-bg-warm: #ffffff;
  --pr-bg-panel: #ffffff;
  --pr-bg-rgb: 255, 255, 255;
  --pr-bg-cream: #ebe3d4;
  --pr-bg-cream-rgb: 235, 227, 212;
  --pr-green: #0d2e24;
  --pr-green-soft: #143a2e;
  --pr-gold: #8f7348;
  --pr-gold-light: #a68958;
  --pr-text: #000000;
  --pr-text-muted: #000000;
  --pr-line: rgba(143, 115, 72, 0.42);
  --pr-container: min(100% - 2.5rem, 72rem);
  --pr-serif: "Alegreya", Georgia, serif;
  --pr-sans: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.page-premium {
  margin: 0;
  font-family: var(--pr-sans);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--pr-text);
  background: var(--pr-bg-warm);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(13, 46, 36, 0.12);
}

/* ---------- Декоративний орнамент: лінія — діамант — лінія ---------- */

.pr-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: min(100%, 11.5rem);
  margin-inline: auto;
  color: var(--pr-gold);
}

.pr-ornament--wide {
  width: min(100%, 14rem);
}

.pr-ornament__line {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

.pr-ornament__gem {
  flex-shrink: 0;
  width: 0.42rem;
  height: 0.42rem;
  display: flex;
  color: var(--pr-gold);
}

.pr-ornament__gem svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pr-ornament--light {
  color: var(--pr-gold-light);
}

/* Орнамент з крапками — як на макеті «Мои услуги» */
.pr-ornament--flourish {
  width: min(100%, 16rem);
  gap: 0.4rem;
}

.pr-ornament__side {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.pr-ornament__side--right {
  flex-direction: row-reverse;
}

.pr-ornament--flourish .pr-ornament__line {
  flex: 1;
  min-width: 0.5rem;
}

.pr-ornament__dot {
  flex-shrink: 0;
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.9;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pr-container {
  width: var(--pr-container);
  margin-inline: auto;
}

/* ---------- Кнопки ---------- */

.pr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1.35rem;
  border: none;
  border-radius: 2px;
  background: var(--pr-green);
  color: #fff;
  font-family: var(--pr-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.pr-btn:hover {
  background: var(--pr-green-soft);
}

.pr-btn--wide {
  min-width: 14rem;
  padding-inline: 2rem;
  gap: 0.55rem;
}

.pr-btn__gem {
  width: 0.55rem;
  height: 0.55rem;
  flex-shrink: 0;
}

/* ---------- Верхній екран: фон main.jpeg + шапка поверх ---------- */

.premium-hero-banner {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background-color: #ffffff;
  min-height: clamp(30rem, 88vh, 46rem);
}

.premium-hero-banner__photo {
  position: absolute;
  inset: 0;
  grid-row: 1 / -1;
  grid-column: 1;
  background-color: transparent;
  background-image: url("../images/main.jpeg");
  background-image: -webkit-image-set(
    url("../images/main.webp") type("image/webp"),
    url("../images/main.jpeg") type("image/jpeg")
  );
  background-image: image-set(
    url("../images/main.webp") type("image/webp"),
    url("../images/main.jpeg") type("image/jpeg")
  );
  background-repeat: no-repeat;
  background-position: 100% 5%;
  background-size: 90%;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(
    108deg,
    transparent 0%,
    transparent 30%,
    rgba(0, 0, 0, 0.28) 38%,
    rgba(0, 0, 0, 0.72) 46%,
    rgba(0, 0, 0, 0.95) 52%,
    #000 58%,
    #000 100%
  );
  mask-image: linear-gradient(
    108deg,
    transparent 0%,
    transparent 30%,
    rgba(0, 0, 0, 0.28) 38%,
    rgba(0, 0, 0, 0.72) 46%,
    rgba(0, 0, 0, 0.95) 52%,
    #000 58%,
    #000 100%
  );
}

.premium-hero__shade {
  position: absolute;
  inset: 0;
  grid-row: 1 / -1;
  grid-column: 1;
  z-index: 1;
  background: linear-gradient(
    108deg,
    rgba(255, 255, 255, 0.62) 0%,
    rgba(255, 255, 255, 0.38) 20%,
    rgba(255, 255, 255, 0.12) 34%,
    transparent 46%
  );
  pointer-events: none;
}

.premium-header--overlay {
  position: relative;
  grid-row: 1;
  grid-column: 1;
  z-index: 4;
  align-self: start;
  padding: clamp(1rem, 2.8vh, 2rem) 0 0.35rem;
  background: transparent !important;
  border-bottom: none !important;
  backdrop-filter: none !important;
}

.premium-header--overlay .premium-header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  padding: 0;
}

.premium-header--overlay .premium-logo {
  flex: 1 1 auto;
  min-width: 0;
  max-width: min(100%, 22rem);
}

.premium-header--overlay .premium-header__cta {
  flex: 0 0 auto;
  max-width: min(11.5rem, 42vw);
  margin-top: 0.35rem;
  line-height: 1.35;
}

.premium-header--overlay .premium-logo__mark {
  gap: 0.35rem;
}

.premium-header--overlay .premium-logo__diamond {
  width: 1.85rem;
  height: 2.3rem;
  filter: drop-shadow(0 2px 5px rgba(13, 46, 36, 0.28));
}

.premium-header--overlay .premium-logo__letters {
  font-size: clamp(3.15rem, 6vw, 4.25rem);
  letter-spacing: 0.1em;
}

.premium-header--overlay .premium-logo--left .premium-logo__name {
  margin-top: 0.6rem;
  font-size: clamp(0.9rem, 1.9vw, 1.12rem);
  letter-spacing: 0.28em;
  max-width: 15rem;
}

.premium-header--overlay .premium-logo__roles {
  margin-top: 0.55rem;
  font-size: clamp(0.56rem, 1.05vw, 0.64rem);
  letter-spacing: 0.11em;
}

.premium-logo--left {
  align-items: flex-start;
  text-align: left;
}

.premium-logo--left .premium-logo__name {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--pr-serif);
  font-size: clamp(0.72rem, 1.6vw, 0.92rem);
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--pr-gold);
  max-width: 11rem;
  line-height: 1.3;
}

.premium-logo__roles {
  display: block;
  margin: 0.4rem 0 0;
  font-family: var(--pr-sans);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pr-text);
  line-height: 1.65;
}

.premium-logo__dot {
  margin: 0 0.32rem;
  color: var(--pr-gold);
  font-weight: 400;
}

.premium-hero {
  position: relative;
  grid-row: 2;
  grid-column: 1;
  z-index: 2;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  padding: 0.35rem 0 2.5rem;
}

.premium-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.premium-hero__cta-mobile {
  display: none;
}

.premium-hero__content {
  max-width: min(34rem, 48vw);
  padding-top: 0.65rem;
  padding-left: clamp(1rem, 3vw, 2.75rem);
}

.premium-hero__title {
  margin: 0 0 1rem;
  font-family: var(--pr-serif);
  font-size: clamp(1.55rem, 3.8vw, 2.15rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pr-green);
}

.premium-hero__lead {
  margin: 0 0 0.85rem;
  max-width: 30rem;
  color: var(--pr-text);
  font-size: 0.9rem;
  line-height: 1.7;
}

.premium-hero__lead--second {
  margin-bottom: 1.35rem;
}

.premium-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

@media screen and (max-width: 767px) {
  .pr-container {
    width: min(100% - 1.5rem, 72rem);
  }

  /* Hero mobile: фото на весь блок, лого поверх зверху (трохи нижче), текст зліва, кнопка під фото */
  .premium-hero-banner {
    --mobile-hero-photo-h: clamp(30rem, 72vh, 36rem);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: var(--mobile-hero-photo-h) auto;
    min-height: 0;
    overflow: visible;
  }

  .premium-header--overlay {
    grid-row: 1;
    grid-column: 1;
    position: relative;
    z-index: 5;
    align-self: start;
    width: 100%;
    padding:
      max(1.35rem, calc(env(safe-area-inset-top, 0px) + 0.9rem))
      0.75rem
      1.85rem;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.9) 42%,
      rgba(255, 255, 255, 0.45) 72%,
      transparent 100%
    ) !important;
    border-bottom: none !important;
    box-shadow: none;
  }

  .premium-header--overlay .premium-header__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
    padding: 0;
  }

  .premium-header--overlay .premium-logo,
  .premium-header--overlay .premium-logo--left {
    align-items: center;
    text-align: center;
    max-width: min(100%, 17rem);
    margin-inline: auto;
  }

  .premium-header--overlay .premium-logo__mark {
    align-items: center;
    gap: 0.08rem;
  }

  .premium-header--overlay .premium-logo__letters {
    font-size: clamp(2rem, 7.5vw, 2.5rem);
    color: var(--pr-green);
    line-height: 1;
    text-shadow:
      0 0 10px rgba(255, 255, 255, 0.95),
      0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .premium-header--overlay .premium-logo__diamond {
    width: 1.4rem;
    height: 1.75rem;
    filter: drop-shadow(0 1px 3px rgba(13, 46, 36, 0.18));
  }

  .premium-header--overlay .premium-logo--left .premium-logo__name {
    font-size: clamp(0.65rem, 3.2vw, 0.82rem);
    max-width: none;
    letter-spacing: 0.22em;
    margin-top: 0.2rem;
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.95),
      0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .premium-header--overlay .premium-logo__roles {
    font-size: clamp(0.48rem, 2.3vw, 0.56rem);
    line-height: 1.35;
    max-width: none;
    margin-inline: auto;
    margin-top: 0.2rem;
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.95),
      0 1px 0 rgba(255, 255, 255, 0.85);
  }

  .premium-header--overlay .premium-header__cta {
    display: none !important;
  }

  /* Фото, shade, header і текст — один ряд; лого поверх фото */
  .premium-hero-banner__photo {
    grid-row: 1;
    grid-column: 1;
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    margin: 0;
    background-size: auto 118%;
    background-position: 45% 22%;
    background-repeat: no-repeat;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .premium-hero__shade {
    grid-row: 1;
    grid-column: 1;
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: 100%;
    height: 100%;
    margin: 0;
    pointer-events: none;
    background:
      linear-gradient(
        to right,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.78) 28%,
        rgba(255, 255, 255, 0.28) 38%,
        transparent 46%
      ),
      linear-gradient(
        to top,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.15) 12%,
        transparent 22%
      );
  }

  .premium-hero {
    grid-row: 1;
    grid-column: 1;
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 2;
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    padding: 7.5rem 0 1.1rem;
    display: flex;
    align-items: flex-end;
    box-sizing: border-box;
    background: transparent;
  }

  .premium-hero__inner {
    width: 100%;
  }

  .premium-hero__content {
    max-width: min(11.75rem, 40vw);
    padding: 0;
    padding-left: 1.1rem;
    margin-left: 0;
    text-align: left;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .premium-hero__title {
    font-size: clamp(0.95rem, 4.2vw, 1.12rem);
    line-height: 1.28;
    text-align: left;
    letter-spacing: 0.03em;
    margin-bottom: 0.45rem;
    text-shadow:
      0 0 12px rgba(255, 255, 255, 0.95),
      0 1px 2px rgba(255, 255, 255, 0.9);
  }

  .premium-hero__lead {
    font-size: 0.71rem;
    line-height: 1.52;
    text-align: left;
    margin-inline: 0;
    max-width: 11.5rem;
    text-shadow:
      0 0 10px rgba(255, 255, 255, 0.9),
      0 1px 2px rgba(255, 255, 255, 0.85);
  }

  .premium-hero__lead--second {
    margin-bottom: 0.7rem;
  }

  .premium-hero__badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0;
  }

  .premium-badge {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 0.45rem;
    max-width: 100%;
  }

  .premium-badge__icon {
    width: 2.1rem;
    height: 2.1rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.95);
  }

  .premium-badge__icon svg {
    width: 1rem;
    height: 1rem;
  }

  .premium-badge__text {
    font-size: 0.54rem;
    line-height: 1.26;
  }

  .premium-hero__cta-mobile {
    grid-row: 2;
    grid-column: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 3;
    padding: 1rem 0.75rem max(1.15rem, env(safe-area-inset-bottom, 0px));
    background: #ffffff;
  }

  .premium-hero__cta-btn {
    width: 100%;
    max-width: 22rem;
    min-height: 2.85rem;
    font-size: 0.58rem;
    padding: 0.75rem 1rem;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 14px rgba(13, 46, 36, 0.18);
  }

  .premium-services {
    padding: 2.25rem 0 2.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
  }

  .premium-services__container {
    width: min(100% - 1.25rem, 78rem);
  }

  .premium-services__head {
    margin-bottom: 1.65rem;
  }

  .premium-services__head .pr-ornament {
    margin-top: 0.85rem;
  }

  .premium-section-title--services {
    font-size: clamp(1.1rem, 4.8vw, 1.35rem);
    letter-spacing: 0.14em;
  }

  .premium-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .premium-services__grid .premium-service:last-child {
    grid-column: 1 / -1;
    width: 100%;
    max-width: calc((100% - 0.65rem) / 2);
    justify-self: center;
  }

  .premium-service {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    min-width: 0;
    padding: 0.85rem 0.65rem 0.95rem;
    border: 1px solid rgba(143, 115, 72, 0.22);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 3px 18px rgba(13, 46, 36, 0.05);
  }

  .premium-service__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.4rem;
    width: 100%;
  }

  .premium-service__icon {
    --icon-size: 2rem;
    width: 2.35rem;
    height: 2.35rem;
    margin: 0;
    padding: 0.25rem;
    border: 1px solid rgba(143, 115, 72, 0.32);
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 1px 6px rgba(13, 46, 36, 0.04);
    flex-shrink: 0;
  }

  .premium-service__title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    min-height: 2.4em;
    margin: 0;
    padding: 0;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    line-height: 1.25;
    text-align: center;
  }

  .premium-service__list {
    max-width: none;
    width: 100%;
    margin: 0.55rem 0 0;
    padding: 0;
    border-top: none;
    font-size: 0.68rem;
    line-height: 1.45;
    text-align: left;
  }

  .premium-service__list li {
    gap: 0.4rem;
  }

  .premium-service__list li + li {
    margin-top: 0.2rem;
  }

  .premium-service__list li::before {
    flex-basis: 0.28rem;
    width: 0.28rem;
    height: 0.28rem;
    margin-top: 0.5em;
  }

  .premium-panel {
    padding: 1.75rem 1rem 2rem;
  }

  .premium-panel__title {
    font-size: clamp(1rem, 4.2vw, 1.15rem);
    margin-bottom: 1.25rem;
  }

  .premium-panel--approach {
    border-radius: 8px;
    margin-top: 0.35rem;
  }

  .premium-step {
    gap: 0.7rem;
  }

  .premium-step__num {
    width: 2.65rem;
    height: 2.65rem;
    line-height: 2.65rem;
  }

  .premium-step__text {
    font-size: 0.8rem;
  }

  .premium-approach__item {
    font-size: 0.8rem;
  }

  .premium-benefits li {
    font-size: 0.82rem;
  }

  .premium-quote {
    padding: 1.15rem 1rem 1rem;
  }

  .premium-cta {
    padding: 1.75rem 0 2.25rem;
  }

  .premium-cta__body {
    max-width: 100%;
  }

  .premium-cta .pr-btn--wide {
    width: 100%;
    max-width: none;
    min-height: 2.95rem;
  }

  .premium-lower::before,
  .premium-lower::after {
    width: min(42vw, 11rem);
    height: min(32vh, 11rem);
    opacity: 0.55;
  }

  .premium-footer {
    padding: 2rem 0 1.75rem;
  }

  .premium-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem 0.85rem;
  }

  .premium-footer__copy {
    font-size: 0.7rem;
    line-height: 1.5;
    padding-inline: 0.25rem;
  }

  .premium-contact {
    min-height: 2.75rem;
    grid-template-columns: 2rem 1fr;
    gap: 0.55rem;
  }

  .premium-contact__icon {
    width: 2rem;
    height: 2rem;
  }

  .premium-contact__icon svg {
    width: 1rem;
    height: 1rem;
  }

  .premium-contact__label {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .premium-contact a {
    word-break: break-word;
    font-size: 0.72rem;
    line-height: 1.35;
  }
}

@media screen and (max-width: 400px) {
  .premium-hero-banner {
    --mobile-hero-photo-h: clamp(28rem, 70vh, 34rem);
  }

  .premium-hero-banner__photo {
    background-size: auto 122%;
    background-position: 42% 20%;
  }

  .premium-header--overlay {
    padding-top: max(1.15rem, calc(env(safe-area-inset-top, 0px) + 0.7rem));
    padding-bottom: 1.55rem;
  }

  .premium-hero {
    padding-top: 7rem;
  }

  .premium-hero__content {
    max-width: min(10.75rem, 38vw);
    padding-left: 1rem;
  }
}

@media screen and (max-width: 767px) and (orientation: landscape) {
  .premium-hero-banner {
    --mobile-hero-photo-h: clamp(18rem, 88vh, 24rem);
  }

  .premium-hero-banner__photo {
    background-size: auto 128%;
    background-position: 40% 24%;
  }

  .premium-header--overlay {
    padding-top: max(0.55rem, env(safe-area-inset-top, 0px));
    padding-bottom: 0.85rem;
  }

  .premium-hero {
    align-items: center;
    padding-top: 4.5rem;
    padding-bottom: 0.75rem;
  }

  .premium-hero__content {
    max-width: min(13rem, 40vw);
  }

  .premium-hero__badges {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .premium-header--overlay .premium-logo {
    max-width: min(100%, 19rem);
  }

  .premium-header--overlay .premium-logo__letters {
    font-size: clamp(2.35rem, 4.8vw, 3.15rem);
  }

  .premium-header--overlay .premium-logo--left .premium-logo__name {
    font-size: 0.82rem;
    max-width: 13rem;
  }

  .premium-header--overlay .premium-header__cta {
    max-width: 10rem;
    font-size: 0.58rem;
    padding: 0.58rem 0.7rem;
    letter-spacing: 0.06em;
  }

  .premium-hero__content {
    max-width: min(32rem, 46vw);
    padding-top: 0.5rem;
  }

  .premium-hero-banner__photo {
    background-size: 94%;
    background-position: 100% 6%;
  }

  .premium-services__grid {
    gap: 1.5rem 1.25rem;
  }

  .premium-panel {
    padding: 2rem 1.35rem;
  }
}

@media screen and (min-width: 768px) {
  .premium-logo--left .premium-logo__name {
    font-size: 0.88rem;
    letter-spacing: 0.28em;
  }

  .premium-logo__roles {
    font-size: 0.5rem;
    letter-spacing: 0.11em;
  }

  .premium-hero {
    padding-bottom: 3rem;
  }

  .premium-hero__content {
    max-width: min(38rem, 50vw);
    padding-top: 0.5rem;
    padding-left: clamp(1.25rem, 4vw, 3.25rem);
  }
}

@media screen and (min-width: 1100px) {
  .premium-hero-banner__photo {
    background-position: 100% 4%;
    background-size: 86%;
    -webkit-mask-image: linear-gradient(
      106deg,
      transparent 0%,
      transparent 28%,
      rgba(0, 0, 0, 0.22) 36%,
      rgba(0, 0, 0, 0.68) 44%,
      rgba(0, 0, 0, 0.94) 50%,
      #000 56%,
      #000 100%
    );
    mask-image: linear-gradient(
      106deg,
      transparent 0%,
      transparent 28%,
      rgba(0, 0, 0, 0.22) 36%,
      rgba(0, 0, 0, 0.68) 44%,
      rgba(0, 0, 0, 0.94) 50%,
      #000 56%,
      #000 100%
    );
  }

  .premium-hero__shade {
    background: linear-gradient(
      106deg,
      rgba(255, 255, 255, 0.58) 0%,
      rgba(255, 255, 255, 0.34) 22%,
      rgba(255, 255, 255, 0.1) 36%,
      transparent 44%
    );
  }

  .premium-hero__content {
    max-width: min(42rem, 46vw);
    padding-left: 3.5rem;
  }
}

/* ---------- Логотип і кнопка (базові стилі) ---------- */

.premium-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 0.85rem;
}

.premium-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--pr-gold);
}

.premium-logo__mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.premium-logo__diamond {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--pr-green);
}

.premium-logo__letters {
  font-family: var(--pr-serif);
  font-size: 2.35rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
}

.premium-logo__name {
  margin-top: 0.35rem;
  font-family: var(--pr-serif);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.premium-header__cta {
  flex-shrink: 0;
}

/* ---------- Бейджі hero ---------- */

.premium-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  max-width: 11rem;
}

.premium-badge__icon {
  flex: 0 0 2.75rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--pr-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pr-gold);
}

.premium-badge__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.premium-badge__text {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pr-text);
}

/* ---------- Послуги (за макетом) ---------- */

.premium-services {
  padding: 2.75rem 0 2.5rem;
  background: var(--pr-bg-warm);
  border-top: 1px solid var(--pr-line);
}

.premium-services__divider {
  display: none;
}

.premium-services__container {
  width: min(100% - 2rem, 78rem);
}

.premium-section-title--services {
  margin: 0;
  padding-top: 0.25rem;
  font-family: var(--pr-serif);
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
  color: var(--pr-green);
}

.premium-services__head {
  margin-bottom: 2.35rem;
}

.premium-services__head .pr-ornament {
  margin-top: 1rem;
}

.premium-services__grid {
  display: grid;
  gap: 2.25rem 1.25rem;
}

.premium-service {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  justify-items: center;
  text-align: center;
}

.premium-service__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.premium-service__icon {
  --icon-size: 3.35rem;
  width: var(--icon-size);
  height: var(--icon-size);
  margin: 0 0 0.95rem;
  padding: 0;
  color: var(--pr-gold);
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.premium-service__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.premium-service__title {
  margin: 0 0 0.9rem;
  min-height: 2.7rem;
  max-width: 11.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-family: var(--pr-serif);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--pr-green);
}

.premium-service__list {
  width: 100%;
  max-width: 12.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  font-family: var(--pr-sans);
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.58;
  color: var(--pr-text);
}

.premium-service__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.52rem;
}

.premium-service__list li::before {
  content: "";
  flex: 0 0 0.28rem;
  width: 0.28rem;
  height: 0.28rem;
  margin-top: 0.64em;
  border-radius: 50%;
  background: var(--pr-gold);
}

.premium-service__list li + li {
  margin-top: 0.32rem;
}

@media screen and (min-width: 768px) {
  .premium-services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }

  .premium-service__list {
    max-width: 14rem;
    font-size: 0.86rem;
  }
}

@media screen and (min-width: 900px) {
  .premium-services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1180px) {
  .premium-services__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem 0;
  }

  .premium-service {
    padding: 0 0.85rem;
    border-right: none;
  }

  .premium-service:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 8%;
    right: 0;
    width: 1px;
    height: 84%;
    background: rgba(143, 115, 72, 0.32);
  }

  .premium-service:last-child {
    border-right: none;
  }

  .premium-service__icon {
    --icon-size: 3.5rem;
  }

  .premium-service__title {
    font-size: 0.96rem;
    letter-spacing: 0.09em;
    max-width: 10rem;
    min-height: 2.85rem;
  }

  .premium-service__list {
    max-width: 11.75rem;
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .premium-service__list li::before {
    flex-basis: 0.28rem;
    width: 0.28rem;
    height: 0.28rem;
    margin-top: 0.62em;
  }
}

/* ---------- Нижня зона: trio + CTA + єдиний фоновий декор ---------- */

.premium-lower {
  position: relative;
  overflow: hidden;
  background: var(--pr-bg-warm);
  isolation: isolate;
}

.premium-lower::before,
.premium-lower::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: min(52vw, 34rem);
  height: min(78vh, 40rem);
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
}

.premium-lower::before {
  left: max(-1.5rem, calc(50% - 52rem));
  background-image: url("../images/content/decor-lilies-crystal.png");
  background-position: left bottom;
  -webkit-mask-image: linear-gradient(
    to top,
    #000 0%,
    #000 62%,
    rgba(0, 0, 0, 0.75) 78%,
    rgba(0, 0, 0, 0.25) 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to top,
    #000 0%,
    #000 62%,
    rgba(0, 0, 0, 0.75) 78%,
    rgba(0, 0, 0, 0.25) 92%,
    transparent 100%
  );
}

.premium-lower::after {
  right: max(-1.5rem, calc(50% - 52rem));
  background-image: url("../images/content/decor-books-candles.png");
  background-position: right bottom;
  -webkit-mask-image: linear-gradient(
    to top,
    #000 0%,
    #000 62%,
    rgba(0, 0, 0, 0.75) 78%,
    rgba(0, 0, 0, 0.25) 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to top,
    #000 0%,
    #000 62%,
    rgba(0, 0, 0, 0.75) 78%,
    rgba(0, 0, 0, 0.25) 92%,
    transparent 100%
  );
}

.premium-lower > section {
  position: relative;
  z-index: 1;
}

.premium-trio {
  position: relative;
  padding: 0 0 0.5rem;
  background: transparent;
}

.premium-trio__grid {
  display: grid;
  gap: 0;
  border: none;
  background: transparent;
  position: relative;
  z-index: 1;
}

.premium-panel {
  position: relative;
  padding: 2.25rem 1.5rem 2.5rem;
}

.premium-panel--decor,
.premium-panel--benefits {
  display: flex;
  flex-direction: column;
}

.premium-panel--decor {
  padding-top: 2rem;
}

.premium-panel--approach {
  padding-top: 2.25rem;
  padding-bottom: 2.75rem;
}

.premium-panel--decor > *,
.premium-panel--benefits > * {
  position: relative;
  z-index: 1;
}

.premium-panel__title {
  margin: 0 0 1.75rem;
  font-family: var(--pr-serif);
  font-size: clamp(1.08rem, 2.2vw, 1.32rem);
  font-weight: 500;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
  color: var(--pr-green);
  line-height: 1.3;
}

.premium-panel--approach .premium-panel__title {
  margin-bottom: 1.15rem;
  font-size: clamp(1.1rem, 2.3vw, 1.38rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.premium-approach__intro {
  margin: 0 0 1.45rem;
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.premium-steps {
  display: grid;
  gap: 1.25rem;
}

.premium-step {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.85rem;
  align-items: start;
}

.premium-step__num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--pr-green);
  color: #fff;
  font-family: var(--pr-serif);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 2.5rem;
  text-align: center;
}

.premium-step__body {
  min-width: 0;
}

.premium-step__title {
  margin: 0 0 0.2rem;
  padding-top: 0.35rem;
  font-family: var(--pr-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pr-text);
}

.premium-step__text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--pr-text);
}

/* Центральна зелена колонка */
.premium-panel--approach {
  background: var(--pr-green);
  color: #f4f0e6;
}

.premium-approach__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.15rem;
}

.premium-approach__item {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.8rem;
  align-items: start;
  font-size: 0.82rem;
  line-height: 1.5;
}

.premium-approach__icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.08rem;
  color: var(--pr-gold-light);
}

.premium-approach__icon svg {
  width: 100%;
  height: 100%;
}

.premium-approach__item span:last-child {
  color: rgba(255, 255, 255, 0.88);
}

.premium-approach__item strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--pr-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #ffffff;
}

/* Права колонка */
.premium-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
}

.premium-benefits li {
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 0.65rem;
  align-items: start;
  font-family: var(--pr-sans);
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--pr-text);
}

.premium-benefits li + li {
  margin-top: 0.75rem;
}

.premium-benefits__check {
  color: var(--pr-gold);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 0.05rem;
}

.premium-quote {
  margin-top: 1.25rem;
  padding: 1.35rem 1.15rem 1.1rem;
  background: var(--pr-green);
  color: #f7f3ea;
  border-radius: 12px;
}

.premium-quote__mark {
  display: block;
  font-family: var(--pr-serif);
  font-size: 2.6rem;
  line-height: 0.75;
  color: var(--pr-gold-light);
}

.premium-quote p {
  margin: 0.1rem 0 0.9rem;
  font-family: var(--pr-sans);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
  text-align: center;
  color: #fff;
}

.premium-quote__sign {
  display: block;
  text-align: right;
  font-family: var(--pr-serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  color: var(--pr-gold-light);
  letter-spacing: 0.01em;
}

@media screen and (min-width: 992px) {
  .premium-trio__grid {
    grid-template-columns: 1fr 1.05fr 1fr;
    align-items: stretch;
  }

  .premium-panel {
    padding: 2.5rem 1.85rem 2.25rem;
  }

  .premium-panel__title {
    font-size: 1.32rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.85rem;
  }

  .premium-panel--approach .premium-panel__title {
    font-size: 1.38rem;
    margin-bottom: 1.25rem;
  }

  .premium-panel--decor {
    border-right: 1px solid rgba(143, 115, 72, 0.28);
  }

  .premium-panel--benefits {
    border-left: 1px solid rgba(143, 115, 72, 0.28);
  }

  .premium-panel--decor,
  .premium-panel--benefits {
    min-height: 100%;
  }
}

/* ---------- CTA ---------- */

.premium-cta {
  position: relative;
  padding: 2.5rem 0 4.5rem;
  background: transparent;
  border-top: none;
}

.premium-cta__inner {
  position: relative;
  z-index: 1;
}

.premium-cta__body {
  max-width: 30rem;
  margin: 0 auto;
  text-align: center;
}

.premium-cta__title {
  margin: 0;
  font-family: var(--pr-serif);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pr-green);
}

.premium-cta__head {
  margin-bottom: 1.15rem;
}

.premium-cta__head .pr-ornament {
  margin-top: 0.9rem;
}

.premium-cta__lead {
  margin: 0 0 1.35rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--pr-text);
}

/* ---------- Футер ---------- */

.premium-footer {
  background: var(--pr-green);
  color: #f0e9dc;
  padding: 2.25rem 0 2rem;
}

.premium-footer__ornament {
  margin-bottom: 2rem;
  opacity: 0.88;
}

.premium-footer__grid {
  display: grid;
  gap: 1.75rem;
}

.premium-contact {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.75rem;
  align-items: start;
}

.premium-contact__icon {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--pr-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pr-gold-light);
}

.premium-contact__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.premium-contact__label {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pr-gold-light);
}

.premium-contact a {
  font-size: 0.85rem;
  color: #fff;
}

.premium-contact a:hover {
  color: var(--pr-gold-light);
}

.premium-footer__copy {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
}

@media screen and (min-width: 768px) {
  .premium-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 992px) {
  .premium-footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Плаваюча кнопка дзвінка ---------- */

.premium-call-fab {
  position: fixed !important;
  right: 1rem !important;
  bottom: 1.65rem !important;
  left: auto !important;
  top: auto !important;
  z-index: 120 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #0d2e24;
  background-image: linear-gradient(145deg, #1f6b52 0%, #0d2e24 60%, #071a14 100%);
  color: #ffffff !important;
  text-decoration: none !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  box-shadow:
    0 10px 28px rgba(13, 46, 36, 0.45),
    0 0 0 2px rgba(166, 137, 88, 0.45);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.premium-call-fab:hover,
.premium-call-fab:focus-visible {
  background: #143a2e;
  box-shadow:
    0 14px 32px rgba(13, 46, 36, 0.5),
    0 0 0 2px rgba(166, 137, 88, 0.65);
  outline: none;
  -webkit-transform: translateZ(0) scale(1.05);
  transform: translateZ(0) scale(1.05);
}

.premium-call-fab:active {
  -webkit-transform: translateZ(0) scale(0.96);
  transform: translateZ(0) scale(0.96);
}

.premium-call-fab__icon {
  position: relative;
  z-index: 2;
  width: 1.85rem;
  height: 1.85rem;
  display: block;
  flex-shrink: 0;
}

.premium-call-fab__pulse {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid rgba(166, 137, 88, 0.65);
  animation: premium-call-pulse 2.2s ease-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes premium-call-pulse {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }
  70% {
    transform: scale(1.55);
    opacity: 0;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-call-fab__pulse {
    animation: none;
  }
}

@supports (padding: max(0px)) {
  .premium-call-fab {
    right: max(1rem, env(safe-area-inset-right, 0px)) !important;
    bottom: max(1.65rem, env(safe-area-inset-bottom, 0px)) !important;
  }
}

/* Ховаємо FAB, коли відкрита модалка */
body:has(.premium-review-modal.is-open) .premium-call-fab {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

/* ---------- Відгуки: карусель вліво ---------- */

.premium-reviews {
  padding: 2.5rem 0 2.75rem;
  background: linear-gradient(180deg, #faf8f5 0%, #ffffff 100%);
  border-top: 1px solid var(--pr-line);
}

.premium-reviews__container {
  width: min(100% - 1.25rem, 78rem);
}

.premium-reviews__head {
  margin-bottom: 1.75rem;
}

.premium-reviews__head .pr-ornament {
  margin-top: 0.9rem;
}

.premium-section-title--reviews {
  margin: 0;
  font-family: var(--pr-serif);
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
  color: var(--pr-green);
}

.premium-reviews__slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
}

.premium-reviews__viewport {
  overflow: hidden;
  min-width: 0;
}

.premium-reviews__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.42s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
  touch-action: pan-y;
}

.premium-review-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 15.5rem;
  padding: 1.15rem 1.1rem 1.2rem;
  border: 1px solid rgba(143, 115, 72, 0.24);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 4px 22px rgba(13, 46, 36, 0.06);
}

.premium-review-card__head {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.55rem;
}

.premium-review-card__name {
  font-family: var(--pr-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--pr-green);
}

.premium-review-card__meta {
  font-size: 0.72rem;
  color: rgba(0, 0, 0, 0.55);
}

.premium-review-card__stars {
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--pr-gold);
}

.premium-review-card__text {
  margin: 0;
  padding: 0.7rem 0 0;
  border: none;
  border-top: 1px solid rgba(143, 115, 72, 0.16);
  font-family: var(--pr-sans);
  font-size: 0.82rem;
  line-height: 1.62;
  color: var(--pr-text);
}

.premium-reviews__nav {
  flex-shrink: 0;
  width: 2.45rem;
  height: 2.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(143, 115, 72, 0.35);
  border-radius: 50%;
  background: #ffffff;
  color: var(--pr-green);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}

.premium-reviews__nav svg {
  width: 1.15rem;
  height: 1.15rem;
}

.premium-reviews__nav:hover:not(:disabled) {
  background: var(--pr-green);
  border-color: var(--pr-green);
  color: #ffffff;
}

.premium-reviews__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.premium-reviews__controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1rem;
}

.premium-reviews__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  max-width: 12rem;
}

.premium-reviews__dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(143, 115, 72, 0.28);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.premium-reviews__dot.is-active {
  background: var(--pr-gold);
  transform: scale(1.25);
}

.premium-reviews__nav--mobile {
  width: 2.75rem;
  height: 2.75rem;
}

.premium-reviews__footer {
  margin-top: 1.35rem;
  text-align: center;
}

.premium-reviews__add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.6rem 1.35rem;
  border: 1px solid var(--pr-green);
  border-radius: 2px;
  background: transparent;
  color: var(--pr-green);
  font-family: var(--pr-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.premium-reviews__add:hover {
  background: var(--pr-green);
  color: #ffffff;
}

/* Модальне вікно відгуку */
.premium-review-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, visibility 0.25s;
}

.premium-review-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.premium-review-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 46, 36, 0.55);
}

.premium-review-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 24rem);
  max-height: min(92vh, 36rem);
  overflow: auto;
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.premium-review-modal__close {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  color: var(--pr-green);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.premium-review-modal__title {
  margin: 0 0 1rem;
  font-family: var(--pr-serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pr-green);
}

.premium-review-form {
  display: grid;
  gap: 0.85rem;
}

.premium-review-form__field {
  display: grid;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pr-text);
}

.premium-review-form__field input,
.premium-review-form__field textarea {
  width: 100%;
  padding: 0.7rem 0.75rem;
  border: 1px solid rgba(143, 115, 72, 0.35);
  border-radius: 4px;
  font-family: var(--pr-sans);
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--pr-text);
  background: #fff;
  -webkit-appearance: none;
  appearance: none;
}

.premium-review-form__field textarea {
  resize: vertical;
  min-height: 5.5rem;
}

.premium-review-form__stars {
  display: inline-flex;
  gap: 0.2rem;
}

.premium-review-form__stars button {
  padding: 0;
  border: none;
  background: transparent;
  font-size: 1.25rem;
  line-height: 1;
  color: rgba(143, 115, 72, 0.35);
  cursor: pointer;
}

.premium-review-form__stars button.is-active {
  color: var(--pr-gold);
}

.premium-review-form__submit {
  width: 100%;
  margin-top: 0.25rem;
}

.premium-review-modal__thanks {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: center;
  color: var(--pr-green);
}

.premium-booking-modal__lead {
  margin: -0.35rem 0 1rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.65);
}

.premium-booking-modal__error {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #9b2c2c;
}

.premium-booking-modal__dialog {
  width: min(100%, 26rem);
}

.premium-booking-form .premium-review-form__field input::placeholder,
.premium-booking-form .premium-review-form__field textarea::placeholder {
  color: rgba(0, 0, 0, 0.38);
}

@media screen and (max-width: 767px) {
  .premium-reviews {
    padding: 2rem 0 2.25rem;
  }

  .premium-section-title--reviews {
    font-size: clamp(1.05rem, 4.5vw, 1.28rem);
    letter-spacing: 0.12em;
  }

  .premium-reviews__slider {
    gap: 0;
  }

  .premium-reviews__slider > .premium-reviews__nav {
    display: none;
  }

  .premium-reviews__controls {
    display: flex;
  }

  .premium-review-card {
    min-height: 0;
    padding: 0.95rem 0.9rem 1rem;
  }

  .premium-review-card__name {
    font-size: 0.78rem;
  }

  .premium-review-card__meta {
    font-size: 0.64rem;
  }

  .premium-review-card__stars {
    font-size: 0.68rem;
    margin-bottom: 0.4rem;
  }

  .premium-review-card__text {
    font-size: 0.72rem;
    line-height: 1.55;
    padding-top: 0.55rem;
  }

  .premium-reviews__footer {
    margin-top: 1.1rem;
  }

  .premium-reviews__add {
    width: 100%;
    max-width: 20rem;
    min-height: 2.85rem;
    font-size: 0.62rem;
  }

  /* Модалки по центру екрана */
  .premium-review-modal {
    padding: 1rem 0.85rem;
    align-items: center;
    justify-content: center;
  }

  .premium-review-modal__dialog,
  .premium-booking-modal__dialog {
    width: min(100%, 24rem);
    max-height: min(86vh, 38rem);
    margin: auto;
    border-radius: 12px;
    padding: 1.25rem 1.1rem max(1.25rem, env(safe-area-inset-bottom, 0px));
  }

  .premium-review-modal__title {
    font-size: 1.05rem;
    padding-right: 1.75rem;
  }

  .premium-review-form__field {
    font-size: 0.78rem;
  }

  .premium-review-form__field input,
  .premium-review-form__field textarea {
    font-size: 0.9rem;
  }

  .premium-footer {
    padding-bottom: max(1.75rem, env(safe-area-inset-bottom, 0px));
  }
}

@media screen and (min-width: 768px) and (max-width: 1099px) {
  .premium-reviews__nav {
    width: 2.2rem;
    height: 2.2rem;
  }
}
