.suncliff-pages-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.suncliff-pages-hero__media,
.suncliff-pages-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.suncliff-pages-hero__image {
  object-fit: cover;
}

.suncliff-pages-hero__overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.533) 0%,
    rgba(0, 0, 0, 0.4) 45%,
    rgba(0, 0, 0, 0.432) 100%
  );

  z-index: 1;
}

.suncliff-pages-hero__content {
  position: relative;
  z-index: 2;

  color: #fff;
}

.suncliff-pages-hero__label {
  display: inline-block;
  margin-bottom: 24px;

  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.suncliff-pages-hero__title {
  margin-bottom: 24px;

  font-family: 'Fraunces 72pt', serif;
  font-size: clamp(60px, 8vw, 80px);
  font-weight: 600;
  line-height: 0.95;
}

.suncliff-pages-hero__text {
  max-width: 850px;

  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .suncliff-pages-hero {
    min-height: 420px;
  }

  .suncliff-pages-hero__title {
    font-size: 58px;
  }

  .suncliff-pages-hero__text {
    font-size: 17px;
  }
}
.suncliff-story {
  padding: 120px 0;
  background: var(--color-background);
}

.suncliff-story__grid {
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: 80px;
  align-items: center;
}

.suncliff-story__label {
  display: inline-block;
  margin-bottom: 24px;

  color: var(--color-primary);

  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 600;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.suncliff-story__title {
  max-width: 700px;
  margin-bottom: 32px;

  color: var(--color-heading);

  font-family: 'Fraunces 72pt', serif;
  font-size: clamp(44px, 5vw, 62px);
  line-height: 1.05;
}

.suncliff-story__text {
  max-width: 760px;
  margin-bottom: 60px;

  color: var(--color-text);

  font-size: 20px;
  line-height: 1.8;
}

.suncliff-story__stats {
  display: flex;
  gap: 120px;
}

.suncliff-story__number {
  display: block;
  margin-bottom: 12px;

  color: var(--color-heading);

  font-family: 'Fraunces 72pt', serif;
  font-size: clamp(54px, 4vw, 82px);
  line-height: 1;
}

.suncliff-story__caption {
  color: var(--color-text);
  font-size: 18px;
}

.suncliff-story__image {
  width: 100%;
  height: 870px;

  object-fit: cover;
  border-radius: 32px;
  display: block;
}

@media (max-width: 992px) {
  .suncliff-story__grid {
    grid-template-columns: 1fr;
  }

  .suncliff-story__visual {
    order: -1;
  }

  .suncliff-story__image {
    height: 500px;
  }

  .suncliff-story__stats {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .suncliff-story {
    padding: 80px 0;
  }

  .suncliff-story__title {
    font-size: 42px;
  }

  .suncliff-story__text {
    font-size: 18px;
  }

  .suncliff-story__stats {
    flex-direction: column;
    gap: 30px;
  }

  .suncliff-story__image {
    height: 420px;
    border-radius: 24px;
  }
}
.suncliff-choice {
  padding: 0 0 110px;
  background: var(--color-background);
}

.suncliff-choice__banner {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 28px;
}

.suncliff-choice__media,
.suncliff-choice__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.suncliff-choice__image {
  object-fit: cover;
}

.suncliff-choice__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(72, 49, 30, 0.56), rgba(72, 49, 30, 0.56));
}

.suncliff-choice__content {
  position: relative;
  z-index: 2;
  padding: 115px 110px;
  color: #fff;
}

.suncliff-choice__label {
  display: block;
  margin-bottom: 34px;

  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.suncliff-choice__title {
  max-width: 1050px;

  font-family: 'Fraunces 72pt', serif;
  font-size: clamp(50px, 5vw, 76px);
  font-weight: 600;
  line-height: 1.05;
}

.suncliff-choice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 90px;

  padding: 62px 30px 0;
}

.suncliff-choice-card__title {
  margin-bottom: 24px;

  color: var(--color-heading);

  font-family: 'Fraunces 72pt', serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
}

.suncliff-choice-card__text {
  color: var(--color-text);

  font-size: 21px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .suncliff-choice__banner {
    min-height: 500px;
  }

  .suncliff-choice__content {
    padding: 80px 40px;
  }

  .suncliff-choice__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-inline: 0;
  }
}

@media (max-width: 640px) {
  .suncliff-choice {
    padding-bottom: 70px;
  }

  .suncliff-choice__banner {
    min-height: 420px;
    border-radius: 22px;
  }

  .suncliff-choice__content {
    padding: 55px 24px;
  }

  .suncliff-choice__title {
    font-size: 42px;
  }

  .suncliff-choice-card__title {
    font-size: 28px;
  }

  .suncliff-choice-card__text {
    font-size: 17px;
  }
}
.suncliff-resorts {
  padding: 110px 0;
  background: #ffffff;
}

.suncliff-resorts__list {
  display: grid;
  gap: 80px;
}

.suncliff-resort {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.suncliff-resort--reverse .suncliff-resort__media {
  order: 2;
}

.suncliff-resort__media {
  overflow: hidden;
  border-radius: 12px;
}

.suncliff-resort__image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.suncliff-resort__title {
  margin-bottom: 26px;

  color: #06111a;

  font-family: 'Fraunces 72pt', serif;
  font-size: clamp(36px, 3vw, 46px);
  font-weight: 600;
  line-height: 1.1;
}

.suncliff-resort__text {
  max-width: 710px;

  color: #111111;

  font-family: 'Manrope', sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.55;
}

.suncliff-resort__footer {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 42px;
}

.suncliff-resort__button {
  flex-shrink: 0;

  min-width: 160px;
  min-height: 58px;
  padding: 0 30px;

  border: 1px solid rgba(6, 17, 26, 0.15);
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #06111a;

  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 600;

  transition: 0.3s ease;
}

.suncliff-resort__button:hover {
  background: #143f4c;
  color: #fff;
  border-color: #143f4c;
}

.suncliff-resort__line {
  width: 100%;
  height: 1px;
  background: rgba(6, 17, 26, 0.15);
}

@media (max-width: 992px) {
  .suncliff-resort,
  .suncliff-resort--reverse {
    grid-template-columns: 1fr;
  }

  .suncliff-resort--reverse .suncliff-resort__media {
    order: 0;
  }

  .suncliff-resort__image {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .suncliff-resorts {
    padding: 70px 0;
  }

  .suncliff-resorts__list {
    gap: 58px;
  }

  .suncliff-resort {
    gap: 30px;
  }

  .suncliff-resort__image {
    height: 300px;
  }

  .suncliff-resort__title {
    font-size: 34px;
  }

  .suncliff-resort__text {
    font-size: 17px;
  }

  .suncliff-resort__footer {
    gap: 22px;
    margin-top: 30px;
  }

  .suncliff-resort__button {
    min-width: 140px;
    min-height: 52px;
    font-size: 16px;
  }
}
/* VIP INTRO */

.suncliff-vip-intro {
  background: #f4f2ed;
}

.suncliff-vip-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.suncliff-vip-intro__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(24px, 8vw, 170px);
}

.suncliff-vip-intro__label {
  display: block;
  margin-bottom: 34px;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #143f4c;
}

.suncliff-vip-intro__title {
  max-width: 640px;
  margin-bottom: 32px;
  font-family: 'Fraunces 72pt', serif;
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 600;
  line-height: 1.12;
  color: #143f4c;
}

.suncliff-vip-intro__text {
  max-width: 690px;
  margin-bottom: 22px;
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: #143f4c;
}

.suncliff-vip-intro__text:last-child {
  margin-bottom: 0;
}

.suncliff-vip-intro__media {
  min-height: 620px;
}

.suncliff-vip-intro__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* VIP BENEFITS */

.suncliff-vip-benefits {
  padding: 110px 0;
  background: #ffffff;
  color: #143f4c;
  text-align: center;
}

.suncliff-vip-benefits__label {
  display: block;
  margin-bottom: 26px;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.suncliff-vip-benefits__title {
  max-width: 900px;
  margin: 0 auto 62px;
  font-family: 'Fraunces 72pt', serif;
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 600;
  line-height: 1.12;
}

.suncliff-vip-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.suncliff-vip-benefit {
  padding: 42px 34px;
  border: 1px solid rgba(20, 63, 76, 0.12);
  border-radius: 24px;
  background: #f4f2ed;
}

.suncliff-vip-benefit__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: #143f4c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.suncliff-vip-benefit__heading {
  margin-bottom: 18px;
  font-family: 'Fraunces 72pt', serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
  color: #143f4c;
}

.suncliff-vip-benefit__text {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: #143f4c;
}

/* VIP CONTACT */

.suncliff-contact {
  padding: 105px 0 95px;
  background: #f4f2ed;
  color: #143f4c;
  text-align: center;
}

.suncliff-contact__label {
  display: block;
  margin-bottom: 24px;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.suncliff-contact__title {
  max-width: 900px;
  margin: 0 auto 26px;
  font-family: 'Fraunces 72pt', serif;
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 600;
  line-height: 1.12;
}

.suncliff-contact__text {
  max-width: 1040px;
  margin: 0 auto 48px;
  font-family: 'Manrope', sans-serif;
  font-size: 21px;
  line-height: 1.6;
}

.suncliff-contact-form {
  max-width: 1280px;
  margin: 0 auto;
}

.suncliff-contact-form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px 60px;
}

.suncliff-contact-form__textarea {
  grid-column: 1 / -1;
  min-height: 130px;
  resize: vertical;
}

.suncliff-contact-form__row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.suncliff-contact-form__input,
.suncliff-contact-form__textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(20, 63, 76, 0.16);
  background: transparent;
  color: #143f4c;
  outline: none;
  font-family: 'Manrope', sans-serif;
  font-size: 21px;
  padding: 18px 18px 18px 12px;
}

.suncliff-contact-form__input::placeholder,
.suncliff-contact-form__textarea::placeholder {
  color: rgba(20, 63, 76, 0.48);
}

.suncliff-contact-form__input:focus,
.suncliff-contact-form__textarea:focus {
  border-color: #143f4c;
}

.suncliff-contact-form__button {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 72px;
  border: 0;
  border-radius: 4px;
  background: #143f4c;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.suncliff-contact-form__button:hover {
  background: #0f303a;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .suncliff-vip-intro__grid,
  .suncliff-vip-benefits__grid {
    grid-template-columns: 1fr;
  }

  .suncliff-vip-intro__media {
    min-height: 420px;
    order: -1;
  }

  .suncliff-vip-intro__content {
    padding: 70px 24px;
  }

  .suncliff-contact-form__fields,
  .suncliff-contact-form__row {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .suncliff-vip-benefits,
  .suncliff-contact {
    padding: 70px 0;
  }

  .suncliff-vip-intro__title,
  .suncliff-vip-benefits__title,
  .suncliff-contact__title {
    font-size: 40px;
  }

  .suncliff-vip-intro__text,
  .suncliff-contact__text,
  .suncliff-contact-form__input,
  .suncliff-contact-form__textarea {
    font-size: 17px;
  }

  .suncliff-vip-benefit {
    padding: 34px 24px;
  }

  .suncliff-vip-benefit__heading {
    font-size: 28px;
  }
}
/* SITEMAP */

.suncliff-sitemap {
  padding: 120px 0;
  background: #f4f2ed;
}

.suncliff-sitemap__header {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}

.suncliff-sitemap__label {
  display: block;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #143f4c;
}

.suncliff-sitemap__title {
  margin-bottom: 24px;
  font-family: 'Fraunces 72pt', serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.1;
  color: #143f4c;
}

.suncliff-sitemap__text {
  font-size: 20px;
  line-height: 1.7;
  color: #143f4c;
}

.suncliff-sitemap__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.suncliff-sitemap__card {
  padding: 42px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(20, 63, 76, 0.08);
}

.suncliff-sitemap__card-title {
  margin-bottom: 28px;
  font-family: 'Fraunces 72pt', serif;
  font-size: 34px;
  color: #143f4c;
}

.suncliff-sitemap__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.suncliff-sitemap__list a {
  font-size: 18px;
  color: #143f4c;
  transition: 0.3s ease;
}

.suncliff-sitemap__list a:hover {
  opacity: 0.7;
}

@media (max-width: 992px) {
  .suncliff-sitemap__grid {
    grid-template-columns: 1fr;
  }

  .suncliff-sitemap {
    padding: 80px 0;
  }
}
.suncliff-legal {
  padding: 120px 0;
  background: #f4f2ed;
}

.suncliff-legal__container {
  max-width: 980px;
  margin: 0 auto;
}

.suncliff-legal h1 {
  margin-bottom: 40px;
  font-family: 'Fraunces 72pt', serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.1;
  color: #143f4c;
}

.suncliff-legal h2 {
  margin: 50px 0 20px;
  font-family: 'Fraunces 72pt', serif;
  font-size: 34px;
  line-height: 1.2;
  color: #143f4c;
}

.suncliff-legal p,
.suncliff-legal li {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  line-height: 1.9;
  color: #143f4c;
}

.suncliff-legal ul {
  padding-left: 22px;
  margin: 20px 0;
}

.suncliff-legal a {
  color: #143f4c;
  text-decoration: underline;
}

.suncliff-legal strong {
  font-weight: 600;
}

.suncliff-legal__date {
  margin-bottom: 30px;
  font-size: 15px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .suncliff-legal {
    padding: 80px 0;
  }

  .suncliff-legal h2 {
    font-size: 28px;
  }

  .suncliff-legal p,
  .suncliff-legal li {
    font-size: 17px;
  }
}
