@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/outfit-variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --be-plum: #501f3a;
  --be-plum-dark: #43172f;
  --be-plum-soft: #963a75;
  --be-coral: #ff8359;
  --be-coral-strong: #ff5b62;
  --be-orange: #ff965e;
  --be-lavender: #f2e2f1;
  --be-blush: #fff1ec;
  --be-mint: #e2f8f3;
  --be-white: #ffffff;
  --be-text: #501f3a;
  --be-muted: #76636d;
  --be-border: #f1dfe5;
  --be-container: 1300px;
  --be-gutter: 28px;
  --be-radius-card: 16px;
  --be-radius-panel: 18px;
  --be-radius-pill: 999px;
  --be-shadow: 0 20px 44px rgba(80, 31, 58, 0.12);
  --be-shadow-soft: 0 12px 30px rgba(80, 31, 58, 0.09);
  --be-font: "Outfit", Arial, sans-serif;
}

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

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--be-font);
  color: var(--be-text);
  background: var(--be-white);
  /* Clip decorative/carousel overflow without creating a scroll container,
     otherwise the site header can no longer remain sticky. */
  overflow-x: clip;
}

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

h1 {
  font-size: 60px;
  line-height: 1.2;
  color: #501f3a;
  font-weight: 700;
}

h2 {
  margin: 0;
  color: #501f3a;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin: 0;
  color: #501f3a;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: #501f3a;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 300;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(255, 131, 89, 0.75);
  outline-offset: 3px;
}

.be-container {
  width: min(100%, var(--be-container));
  padding-inline: var(--be-gutter);
  margin-inline: auto;
}

.be-row {
  --be-grid-gutter-x: 28px;
  --be-grid-gutter-y: 0px;
  display: flex;
  flex-wrap: wrap;
  margin-inline: calc(var(--be-grid-gutter-x) * -0.5);
  margin-top: calc(var(--be-grid-gutter-y) * -1);
}

.be-row > * {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: var(--be-grid-gutter-y);
  padding-inline: calc(var(--be-grid-gutter-x) * 0.5);
}

.be-row--flush {
  --be-grid-gutter-x: 0px;
}

.be-row--align-center {
  align-items: center;
}

.be-col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 641px) {
  .be-col-sm-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .be-col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 1025px) {
  .be-col-lg {
    flex: 1 0 0%;
    width: auto;
  }

  .be-col-lg-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .be-col-lg-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }

  .be-col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .be-col-lg-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }

  .be-col-lg-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }
}

.be-section {
  position: relative;
}

.be-heading {
  margin: 0;
  color: var(--be-plum);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.be-heading em,
.be-accent {
  color: var(--be-coral);
  font-style: normal;
}

.be-copy {
  margin: 0;
  color: var(--be-plum);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 300;
}

.be-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--be-radius-pill);
  padding: 0 22px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.be-button img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  transition: filter 180ms ease;
}

.be-button:hover {
  transform: translateY(-1px);
}

.be-button--coral {
  color: var(--be-white);
  background: var(--be-coral);
}

.be-button--coral:hover,
.be-button--coral:focus-visible {
  color: var(--be-white);
  background: var(--be-plum-soft);
}

.be-button--orange {
  color: var(--be-white);
  background: var(--be-orange);
}

.be-button--orange:hover,
.be-button--orange:focus-visible {
  color: var(--be-white);
  background: var(--be-plum-soft);
}

.be-button--plum {
  color: var(--be-white);
  background: var(--be-plum-soft);
}

.be-button--plum:hover,
.be-button--plum:focus-visible {
  color: var(--be-white);
  background: var(--be-coral);
}

.be-button--light {
  min-height: 34px;
  color: var(--be-white);
  background: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.be-button--light:hover,
.be-button--light:focus-visible {
  color: var(--be-plum);
  background: var(--be-white);
  box-shadow: inset 0 0 0 1px var(--be-white), 0 10px 24px rgba(80, 31, 58, 0.14);
}

.be-button--light:hover img,
.be-button--light:focus-visible img {
  filter: brightness(0) saturate(100%) invert(17%) sepia(31%) saturate(1360%) hue-rotate(278deg) brightness(88%) contrast(91%);
}

.site-header {
  padding: 22px 0 10px;
  background: var(--be-white);
}

.site-header__inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  width: 135px;
  flex: 0 0 auto;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.menu-button {
  width: 35px;
  height: 35px;
  display: inline-grid;
  place-items: center;
  gap: 4px;
  border: 0;
  border-radius: 50%;
  background: var(--be-plum-soft);
}

.menu-button span {
  width: 13px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: var(--be-white);
}

.hero {
  padding: 68px 0 24px;
  background: var(--be-white);
}

.hero__grid {
  --be-grid-gutter-x: 70px;
  --be-grid-gutter-y: 44px;
}

.hero__copy {
  min-width: 0;
  padding-top: 8px;
}

.hero__title {
  max-width: 620px;
  font-size: 60px;
}

.hero__title span {
  color: var(--be-plum);
}

.hero__intro {
  max-width: 470px;
  margin-top: 14px;
  font-size: 19px;
}

.hero__bullets {
  display: grid;
  gap: 5px;
  margin: 24px 0 26px;
  padding: 0;
  color: var(--be-text);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
  list-style: none;
}

.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__bullets img {
  width: 16px;
  height: 13px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__media {
  position: relative;
  width: min(760px, 100%);
  min-width: 0;
  margin-left: auto;
  padding: 42px 0 38px 54px;
  isolation: isolate;
}

.media-zigzag {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.media-zigzag--hero-top {
  width: 360px;
  top: 18px;
  left: 28px;
  opacity: 0.78;
}

.media-zigzag--hero-bottom {
  width: 140px;
  right: 0;
  bottom: 38px;
  opacity: 0.9;
}

.hero-photo {
  position: relative;
  z-index: 1;
  margin: 0;
  aspect-ratio: 1.39;
  overflow: hidden;
  border-radius: 46% 54% 49% 51% / 42% 41% 59% 58%;
  -webkit-mask-image: radial-gradient(ellipse 58% 50% at 51% 51%, #000 98%, transparent 100%);
  mask-image: radial-gradient(ellipse 58% 50% at 51% 51%, #000 98%, transparent 100%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
}

.hero-review {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 22px;
  width: 182px;
  aspect-ratio: 1.12;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 20px 18px 18px;
  border: 4px solid var(--be-white);
  border-radius: 42px 52px 42px 52px;
  color: var(--be-white);
  background: var(--be-plum-soft);
  box-shadow: 0 18px 34px rgba(80, 31, 58, 0.18);
  text-align: center;
}

.hero-review span:first-child {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.05;
}

.hero-review small {
  margin-top: 5px;
  font-size: 13px;
  font-weight: 600;
}

.hero-review strong {
  margin-top: 10px;
  color: var(--be-white);
  font-size: 56px;
  font-weight: 900;
  line-height: 0.88;
}

.hero-review__stars {
  display: flex;
  gap: 5px;
  margin-top: 13px;
}

.hero-review__stars i {
  width: 15px;
  height: 15px;
  display: block;
  background: var(--be-coral);
  clip-path: polygon(50% 0, 62% 35%, 100% 35%, 69% 57%, 81% 95%, 50% 72%, 19% 95%, 31% 57%, 0 35%, 38% 35%);
}

.intro {
  padding: 48px 0 92px;
  background: var(--be-white);
}

.intro__grid {
  --be-grid-gutter-x: 104px;
  --be-grid-gutter-y: 46px;
}

.intro__media {
  position: relative;
  width: min(620px, 100%);
  min-width: 0;
  padding: 48px 32px 32px 54px;
  isolation: isolate;
}

.media-zigzag--intro-top {
  width: 350px;
  top: 0;
  left: 0;
  opacity: 0.88;
}

.media-zigzag--intro-bottom {
  width: 366px;
  right: 0;
  bottom: 0;
  opacity: 0.78;
}

.intro-photo {
  position: relative;
  z-index: 1;
  margin: 0;
  aspect-ratio: 1.57;
  overflow: hidden;
  border-radius: 48% 52% 50% 50% / 43% 44% 56% 57%;
  -webkit-mask-image: radial-gradient(ellipse 56% 49% at 51% 50%, #000 98%, transparent 100%);
  mask-image: radial-gradient(ellipse 56% 49% at 51% 50%, #000 98%, transparent 100%);
}

.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
}

.intro__copy {
  min-width: 0;
}

.intro__title {
  margin-bottom: 20px;
  font-size: 44px;
}

.intro__copy .be-copy + .be-copy {
  margin-top: 16px;
}

.intro__copy .be-copy:first-of-type {
  font-size: 19px;
}

.intro__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.mini-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--be-border);
  border-radius: 10px;
  background: var(--be-white);
  box-shadow: 0 8px 22px rgba(80, 31, 58, 0.045);
}

.mini-card__icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--be-coral);
  background: rgba(255, 131, 89, 0.13);
  font-size: 11px;
  font-weight: 700;
}

.mini-card h3,
.mini-card p {
  grid-column: 2;
  margin: 0;
}

.mini-card h3 {
  align-self: end;
  font-size: 18px;
  font-weight: 700;
}

.mini-card p {
  margin-top: 3px;
  color: var(--be-muted);
  font-size: 14px;
  line-height: 1.3;
}

.product-zone {
  padding: 62px 0 94px;
  background: var(--be-blush);
  overflow: hidden;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 28px;
}

.section-head--activities {
  margin-top: 82px;
}

.section-head__title {
  font-size: 44px;
}

.section-head__title span {
  color: var(--be-plum);
}

.section-head h2 {
  margin: 8px 0 0;
  color: var(--be-plum);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 300;
}

.section-link {
  margin-bottom: 9px;
  color: var(--be-plum-soft);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.carousel-shell {
  position: relative;
  min-width: 0;
  overflow: visible;
}

.card-row {
  display: grid;
  grid-auto-flow: column;
  gap: 28px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding: 0 4px 28px;
}

@media (min-width: 1025px) {
  .product-zone .carousel-shell {
    padding-inline: 0;
  }

  .product-zone .card-row {
    width: calc(100vw - max(0px, (100vw - var(--be-container)) / 2));
    padding-left: 0;
    padding-right: 0;
  }
}

.card-row::-webkit-scrollbar {
  display: none;
}

.card-row--arrangements {
  grid-auto-columns: 326px;
}

.card-row--activities {
  grid-auto-columns: 246px;
  gap: 22px;
}

.product-card,
.activity-card {
  min-width: 0;
  border-radius: var(--be-radius-card);
  background: var(--be-white);
  box-shadow: var(--be-shadow-soft);
  overflow: hidden;
  scroll-snap-align: start;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.78;
  object-fit: cover;
  object-position: top center;
}

.product-card__body {
  min-width: 0;
  padding: 18px 22px 20px;
}

.product-card h3,
.activity-card h3 {
  margin: 0;
  color: var(--be-plum);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.16;
}

.product-card p {
  margin: 9px 0 18px;
  color: var(--be-muted);
  font-size: 14px;
  line-height: 1.45;
}

.product-card .be-button {
  min-height: 32px;
  padding-inline: 17px;
  font-size: 14px;
}

.product-card__meta {
  display: block;
  margin-top: 16px;
  color: var(--be-muted);
  font-size: 14px;
  font-weight: 700;
}

.activity-card img {
  width: 100%;
  aspect-ratio: 1.52;
  object-fit: cover;
  object-position: top center;
}

.activity-card__body {
  min-width: 0;
  padding: 14px 15px 16px;
}

.activity-card h3 {
  font-size: 18px;
}

.activity-card p {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 10px 0 13px;
  color: var(--be-muted);
  font-size: 12px;
  font-weight: 700;
}

.activity-card .be-button {
  min-height: 31px;
  padding-inline: 15px;
  font-size: 14px;
}

.carousel-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-right: 4px;
}

.carousel-actions button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  color: var(--be-plum);
  background: var(--be-white);
  box-shadow: var(--be-shadow-soft);
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}

.advice {
  padding: 74px 0 82px;
  background: var(--be-white);
}

.advice__grid {
  --be-grid-gutter-x: 70px;
  --be-grid-gutter-y: 28px;
}

.advice-card {
  min-width: 0;
  height: 100%;
  display: flex;
  gap: 22px;
  align-items: stretch;
  padding: 0 24px 0 0;
  border: 1px solid rgba(80, 31, 58, 0.06);
  border-radius: 14px;
  background: var(--be-white);
  box-shadow: var(--be-shadow-soft);
  overflow: hidden;
}

.advice-card > img {
  flex: 0 0 clamp(128px, 23%, 150px);
  width: clamp(128px, 23%, 150px);
  height: auto;
  aspect-ratio: 0.68;
  object-fit: cover;
}

.advice-card > div {
  min-width: 0;
  padding-block: 20px;
}

.advice-card h2 {
  margin: 0;
  color: var(--be-plum);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.18;
}

.advice-card p {
  margin: 12px 0 18px;
  color: var(--be-muted);
  font-size: 14px;
  line-height: 1.55;
}

.advice-card .be-button {
  min-height: 32px;
  padding-inline: 18px;
  font-size: 14px;
}

.reviews {
  padding: 0 0 72px;
  background: linear-gradient(to bottom, var(--be-white) 0 82%, var(--be-blush) 82% 100%);
}

.reviews__panel {
  --reviews-inner-inset: clamp(48px, 7.5vw, 120px);
  position: relative;
  width: min(100%, var(--be-container));
  padding: 76px var(--reviews-inner-inset) 64px;
  border-radius: 18px;
  background: var(--be-lavender);
  overflow: hidden;
  isolation: isolate;
}

.reviews__panel::before {
  content: "";
  position: absolute;
  inset: -92px auto auto -56px;
  z-index: 0;
  width: 760px;
  height: 500px;
  background: url("../assets/shapes/reviews-bg-shape.webp") center / contain no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.reviews__panel::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  z-index: 0;
  width: 720px;
  height: 460px;
  background: url("../assets/shapes/reviews-bg-shape.webp") center / contain no-repeat;
  opacity: 0.12;
  transform: rotate(180deg);
  pointer-events: none;
}

.reviews__head {
  position: relative;
  z-index: 1;
  text-align: center;
}

.reviews__head .be-heading {
  font-size: 36px;
}

.reviews__head h2 {
  margin: 8px 0 0;
  color: var(--be-plum);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 300;
}

.reviews__slider {
  position: relative;
  z-index: 1;
  margin-top: 48px;
}

.reviews__grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 68px) / 3);
  gap: 34px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding: 0 2px 30px;
}

.reviews__grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 0;
  display: grid;
  justify-items: center;
  padding: 34px 34px 32px;
  border-radius: 13px;
  background: var(--be-white);
  box-shadow: var(--be-shadow-soft);
  text-align: center;
  scroll-snap-align: start;
}

.review-card img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.review-card strong {
  margin-top: 18px;
  color: var(--be-coral);
  font-size: 13px;
  font-weight: 700;
}

.review-card h3 {
  margin: 6px 0 9px;
  color: var(--be-plum);
  font-size: 22px;
  font-weight: 700;
}

.review-card p {
  margin: 0;
  color: var(--be-muted);
  font-size: 14px;
  line-height: 1.55;
}

.review-card span {
  margin-top: 18px;
  color: var(--be-plum);
  font-size: 13px;
  font-weight: 700;
}

.reviews__dots {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 38px;
}

.reviews__dots button {
  width: 5px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--be-plum-soft);
  opacity: 0.45;
}

.reviews__dots button.is-active {
  width: 14px;
  border-radius: 99px;
  opacity: 1;
}

.reviews__logos {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

.faq {
  padding: 92px 0 142px;
  background: var(--be-blush);
}

.faq__grid {
  --be-grid-gutter-x: 40px;
  --be-grid-gutter-y: 32px;
  align-items: start;
}

@media (min-width: 1025px) {
  .faq__grid {
    --be-grid-gutter-x: 86px;
  }
}

.faq__title {
  font-size: 44px;
}

.faq__grid h2 {
  margin: 14px 0 0;
  color: var(--be-plum);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 300;
}

.accordion {
  display: grid;
  gap: 13px;
  min-width: 0;
}

.accordion__item {
  border: 1px solid var(--be-border);
  border-radius: 9px;
  background: var(--be-white);
  box-shadow: 0 5px 14px rgba(80, 31, 58, 0.04);
  overflow: hidden;
}

.accordion__item button {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  padding: 0 16px 0 24px;
  color: var(--be-plum);
  background: transparent;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
}

.accordion__item button::after {
  content: "+";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--be-white);
  background: var(--be-plum);
  font-size: 12px;
  line-height: 1;
}

.accordion__item.is-open button::after {
  content: "-";
}

.accordion__content {
  display: none;
  padding: 0 54px 18px 24px;
}

.accordion__item.is-open .accordion__content {
  display: block;
}

.accordion__content p {
  margin: 0;
  font-size: 14px;
}

.footer-area {
  background: var(--be-plum);
  color: var(--be-white);
}

.cta-banner {
  align-items: stretch;
  border-radius: 17px;
  background: var(--be-coral);
  margin-bottom: -105px;
  overflow: hidden;
}

.cta-banner__copy {
  min-width: 0;
  display: grid;
  align-content: center;
  padding: 34px 42px 34px 88px;
}

.cta-banner h2 {
  margin: 0;
  color: var(--be-white);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.05;
}

.cta-banner p {
  margin: 10px 0 23px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 600;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-banner__media {
  display: flex;
}

.cta-banner__media img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 53% 48%;
  border-radius: 180px 17px 17px 180px / 118px 17px 17px 118px;
}

.site-footer {
  padding: 168px 0 44px;
}

.site-footer__grid {
  --be-grid-gutter-x: 52px;
  --be-grid-gutter-y: 40px;
  align-items: start;
}

.site-footer__map {
  width: 100%;
  aspect-ratio: 2.1;
  border-radius: 13px;
  object-fit: cover;
}

.site-footer__content {
  --be-grid-gutter-x: 34px;
  --be-grid-gutter-y: 28px;
}

.site-footer__addresses {
  display: grid;
  align-content: start;
  gap: 22px;
}

.site-footer address,
.site-footer nav,
.site-footer__contact {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-size: 13px;
  line-height: 1.35;
}

.site-footer strong {
  color: var(--be-white);
  font-size: 16px;
  font-weight: 700;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 9px;
}

.socials a {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: transparent;
  background: var(--be-coral);
}

.site-footer__contact img {
  width: 86px;
  margin-top: 18px;
}

.site-footer__bottom {
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

@media (max-width: 1200px) {
  :root {
    --be-gutter: 24px;
  }

  .hero__grid {
    --be-grid-gutter-x: 24px;
  }

  .hero__title {
    font-size: 52px;
  }

  .intro__grid {
    --be-grid-gutter-x: 46px;
  }

  .hero-review {
    right: 8px;
  }

  .advice__grid {
    --be-grid-gutter-x: 34px;
  }

  .site-footer__grid {
    --be-grid-gutter-x: 34px;
  }
}

@media (max-width: 1024px) {
  .site-header__actions {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 42px;
  }

  .hero__grid,
  .intro__grid,
  .faq__grid,
  .site-footer__grid {
    --be-grid-gutter-y: 36px;
  }

  .hero__copy {
    max-width: 600px;
  }

  .hero__title {
    max-width: 560px;
    font-size: 50px;
  }

  .hero__media,
  .intro__media {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .intro {
    padding-top: 34px;
  }

  .intro__copy {
    max-width: 700px;
  }

  .reviews__grid {
    grid-auto-columns: calc((100% - 24px) / 2);
    gap: 24px;
  }

  .advice-card {
    max-width: 620px;
  }

  .review-card {
    max-width: none;
    margin-inline: 0;
  }

  .cta-banner__copy {
    padding-left: 42px;
  }

  .site-footer__map {
    width: min(512px, 100%);
  }

  .site-footer__content {
    max-width: 620px;
  }
}

@media (max-width: 820px) {
  :root {
    --be-gutter: 20px;
  }

  .site-header__inner {
    align-items: flex-start;
  }

  .site-logo {
    width: 118px;
  }

  .site-header__actions .be-button {
    min-height: 34px;
    padding-inline: 15px;
    font-size: 11px;
  }

  .hero__title {
    font-size: 44px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .section-link {
    margin-bottom: 0;
  }

  .faq {
    padding-bottom: 72px;
  }

  .reviews__panel {
    --reviews-inner-inset: 24px;
    padding-block: 48px 40px;
  }

  .reviews__panel::before {
    width: 720px;
    height: 440px;
  }

  .reviews__grid {
    grid-auto-columns: minmax(280px, 74vw);
  }

  .cta-banner {
    transform: none;
    margin-bottom: 0;
  }

  .cta-banner__copy {
    padding: 34px 30px 24px;
  }

  .cta-banner__media img {
    width: 100%;
    min-height: 0;
    aspect-ratio: 2.2;
    border-radius: 150px 150px 17px 17px / 78px 78px 17px 17px;
  }

  .site-footer {
    padding-top: 64px;
  }
}

@media (max-width: 640px) {
  .site-header__inner {
    flex-direction: column;
  }

  .site-header__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 24px;
  }

  .hero__title {
    font-size: 38px;
  }

  .hero__intro {
    max-width: none;
  }

  .hero__media {
    padding: 26px 0 54px;
  }

  .media-zigzag--hero-top {
    width: 260px;
    top: 10px;
    left: 0;
  }

  .media-zigzag--hero-bottom {
    width: 112px;
    right: 4px;
    bottom: 30px;
  }

  .hero-review {
    right: 4px;
    bottom: 0;
    width: 132px;
    padding: 14px 12px 12px;
    border-width: 3px;
    border-radius: 30px 38px;
  }

  .hero-review span:first-child {
    font-size: 11px;
  }

  .hero-review small {
    font-size: 10px;
  }

  .hero-review strong {
    font-size: 38px;
  }

  .hero-review__stars i {
    width: 11px;
    height: 11px;
  }

  .be-button {
    min-height: 40px;
    padding-inline: 18px;
  }

  .hero__actions .be-button {
    flex: 1 1 160px;
  }

  .intro__title,
  .section-head__title,
  .faq__title {
    font-size: 33px;
  }

  .intro__media {
    padding: 42px 18px 32px;
  }

  .media-zigzag--intro-top {
    width: 260px;
  }

  .media-zigzag--intro-bottom {
    width: 278px;
  }

  .product-zone {
    padding-top: 48px;
  }

  .card-row--arrangements {
    grid-auto-columns: minmax(270px, 82vw);
  }

  .card-row--activities {
    grid-auto-columns: minmax(220px, 72vw);
  }

  .advice-card {
    padding-right: 16px;
  }

  .advice-card > img {
    flex-basis: 116px;
    width: 116px;
  }

  .reviews__head .be-heading {
    font-size: 29px;
  }

  .reviews__grid {
    grid-auto-columns: minmax(260px, 85vw);
    gap: 20px;
  }

  .accordion__item button {
    min-height: 54px;
    padding-left: 16px;
    font-size: 12px;
  }

  .accordion__content {
    padding-inline: 16px 42px;
  }

}

@media (max-width: 480px) {
  :root {
    --be-gutter: 16px;
  }

  .site-header__actions {
    gap: 8px;
  }

  .site-header__actions .be-button {
    flex: 1 1 130px;
  }

  .menu-button {
    flex: 0 0 35px;
  }

  .hero__title {
    font-size: 34px;
  }

  .hero__bullets {
    font-size: 13px;
  }

  .hero__media {
    padding: 22px 0 50px;
  }

  .hero-review {
    width: 116px;
  }

  .hero-review strong {
    font-size: 34px;
  }

  .intro__media {
    padding: 36px 10px 28px;
  }

  .reviews__panel::before {
    width: 560px;
    height: 360px;
  }

  .product-card__body {
    padding-inline: 18px;
  }

  .advice__grid {
    --be-grid-gutter-y: 22px;
  }

  .advice-card {
    flex-direction: column;
    padding: 0 18px 20px;
  }

  .advice-card > img {
    flex-basis: auto;
    width: calc(100% + 36px);
    aspect-ratio: 2.4;
    margin-inline: -18px;
  }

  .review-card {
    padding-inline: 24px;
  }

  .faq {
    padding-bottom: 56px;
  }

  .cta-banner h2 {
    font-size: 27px;
  }

  .cta-banner__actions .be-button {
    width: 100%;
  }
}
