.spemastay-page{
  --bg: #F8F8F8;
  --primary: #b43954;
  --primary-dark: #9e2f48;
  --body: #4a4540;
  --title: #2d2622;
  --caption: #8e867e;
  --white: #ffffff;
  --shadow-soft: 0 6px 10px 4px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.3);
  --radius-pill: 50px;
  --radius-lg: 40px;
  --radius-xl: 100px;
}

.spemastay-page *{
  box-sizing: border-box;
}

.spemastay-page{
  scroll-behavior: smooth;
}

.spemastay-page{
  margin: 0;
  font-family: "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  color: var(--body);
  background-color: var(--bg);
}

.spemastay-page a{
  color: inherit;
  text-decoration: none;
}

.spemastay-page img{
  max-width: 100%;
  display: block;
}

.spemastay-page .spemastay-page{
  max-width: 1440px;
  margin: 0 auto;
  background-color: var(--bg);
}

.spemastay-page .spemastay-reveal{
  opacity: 0;
  transform: var(--reveal-from, translateY(36px));
  will-change: opacity, transform;
}

.spemastay-page .spemastay-reveal.spemastay-is-visible{
  animation: reveal-up 2s ease forwards;
}

.spemastay-page .spemastay-hero__content.spemastay-reveal{
  --reveal-from: translateY(36px);
  --reveal-to: translateY(0);
}

.spemastay-page .spemastay-hero__content.spemastay-reveal.spemastay-is-visible{
  animation-delay: 0s;
}

.spemastay-page .spemastay-hero__cta.spemastay-reveal{
  --reveal-from: translateX(-50%) translateY(calc(var(--hero-cta-offset) + 36px));
  --reveal-to: translateX(-50%) translateY(var(--hero-cta-offset));
}

.spemastay-page .spemastay-hero__cta.spemastay-reveal.spemastay-is-visible{
  animation: reveal-up 2s ease forwards;
  animation-delay: 0.2s;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: var(--reveal-from, translateY(36px));
  }
  to {
    opacity: 1;
    transform: var(--reveal-to, translateY(0));
  }
}

@media (prefers-reduced-motion: reduce) {
  .spemastay-reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .spemastay-hero__content.spemastay-reveal,
  .spemastay-hero__cta.spemastay-reveal {
    transform: none;
  }
}

.spemastay-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.spemastay-section {
  background: var(--section-bg, var(--bg));
  padding: var(--section-padding, 80px 64px);
}

.spemastay-media {
  position: relative;
  overflow: hidden;
}

.spemastay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.spemastay-page .spemastay-btn--primary {
  background: var(--primary);
  color: var(--white);
}

.spemastay-btn--primary:hover {
  background: rgba(180, 57, 84, 0.6);
}

.spemastay-page .spemastay-btn--outline {
  border: 3px solid var(--primary);
  color: var(--primary);
  background: #ffffff;
  justify-content: center;
  text-align: center;
}

.spemastay-btn--outline:hover {
  opacity: 0.4;
}

.spemastay-btn--lg {
  width: 358px;
  height: 70px;
  font-size: 20px;
  line-height: 70px;
  letter-spacing: 1.6px;
}

.spemastay-btn--sm {
  /* width: 358px;
  height: 70px;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0; */

  margin-top: 0;
  width: 346px;
  height: 64px;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0;
}

.spemastay-eyebrow {
  color: var(--caption);
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 18px;
}

.spemastay-about__text .spemastay-eyebrow {
  font-size: 16px;
  color: var(--caption);
  margin: 0 0 16px;
}

.spemastay-page .spemastay-about__text .spemastay-eyebrow {
  font-size: 16px !important;
  color: var(--caption) !important;
  margin: 0 0 16px !important;
}

.spemastay-section-title {
  font-size: 32px;
  margin: 0 0 20px;
  color: var(--title);
  line-height: 1.4;
}

.spemastay-section-subtitle {
  font-size: 32px;
  margin: 12px 0 0;
  color: var(--body);
}

.spemastay-hero {
  position: relative;
  background: transparent;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 19px 19px 0;
  overflow: visible;
  --hero-base-width: 1440px;
  --hero-cta-offset: calc(80px * (1 - (min(100vw, var(--hero-base-width)) / var(--hero-base-width))));
}

.spemastay-hero__image {
  position: relative;
  grid-area: 1 / 1;
  width: 100%;
  height: auto;
  border-radius: 0;
  overflow: visible;
  z-index: 1;
}

.spemastay-hero__image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.spemastay-hero__content {
  position: relative;
  grid-area: 1 / 1;
  z-index: 2;
  text-align: center;
  color: var(--white);
  width: min(800px, 90%);
  margin: 0 auto;
}

.spemastay-hero__content h1 {
  font-size: 54px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  margin: 0 0 32px;
}

.spemastay-hero__content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.spemastay-hero__cta {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(var(--hero-cta-offset));
  z-index: 2;
}

.spemastay-hero__image .spemastay-hero__cta {
  width: calc(100% / 3.91);
}

.spemastay-site-nav {
  position: fixed;
  top: 31px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1214px, 92vw);
  background: var(--bg);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 28px;
  z-index: 1000;
  gap: 16px;
  transition: top 0.4s ease, box-shadow 0.4s ease;
}

.spemastay-site-nav.spemastay-site-nav--after-hero {
  top: 31px;
}

body.spemastay-hide-nav .spemastay-site-nav {
  opacity: 0;
  pointer-events: none;
}

body.spemastay-menu-open .spemastay-site-nav {
  opacity: 0;
  pointer-events: none;
}

#header {
  display: none;
}

.floating_content_full_details {
  display: none;
}

.spemastay-site-nav__logo {
  width: 132px;
}

.spemastay-site-nav__links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}

.spemastay-site-nav__menu {
  display: none;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  background: transparent;
  border: 0;
}

.spemastay-site-nav__menu img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: none;
}

.spemastay-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

body.spemastay-menu-open .spemastay-mobile-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.spemastay-mobile-menu__close {
  position: absolute;
  top: 64px;
  right: 38px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
}

.spemastay-mobile-menu__close::before,
.spemastay-mobile-menu__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 2px;
  background: var(--primary);
  transform-origin: center;
}

.spemastay-mobile-menu__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.spemastay-mobile-menu__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.spemastay-mobile-menu__links {
  position: absolute;
  top: 140px;
  left: 45px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 1.6px;
  color: var(--primary);
  font-weight: 700;
  margin: 0;
}

.spemastay-mobile-menu__banner {
  position: absolute;
  top: 560px;
  left: 45px;
  width: 288px;
  height: 90px;
  margin-top: 0;
}

.spemastay-mobile-menu__banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: none;
}

.spemastay-hero__banner {
  position: fixed;
  left: 0;
  bottom: 10vh;
  width: 288px;
  height: 90px;
  z-index: 2;
}

.spemastay-hero__banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: none;
}

.spemastay-about {
  --section-padding: 120px 64px;
}

.spemastay-about__grid {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}

.spemastay-about .spemastay-container {
  margin: 0 auto;
  padding: 0;
}

.spemastay-about__text {
  flex: 0 0 60%;
  min-width: 0;
  text-align: left;
}

.spemastay-about__text h2 {
  font-size: 32px;
  color: var(--title);
  margin: 0 0 20px;
  line-height: 1.4;
}

.spemastay-page .spemastay-about__text p {
  margin: 0 0 64px;
  font-size: 18px;
  line-height: 1.4;
  color: var(--body);
}

.spemastay-about__text .spemastay-btn {
  margin-top: 20px;
}

.spemastay-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.spemastay-list--dot {
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
}

.spemastay-page .spemastay-list--dot li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  color: var(--body);
}

.spemastay-list--dot li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--caption);
  border-radius: 50%;
}

.spemastay-about__image {
  flex: 0 0 40%;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.spemastay-about__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: none;
}

.spemastay-border-image {
  background: var(--bg);
  width: 100%;
  margin-left: calc(50% - 50vw);
  height: 327px;
}

.spemastay-border-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spemastay-features {
  --section-padding: 80px 64px 120px;
}

.spemastay-page .spemastay-features {
  padding: 0 24px 120px;
}

.spemastay-features__header {
  text-align: left;
  margin-bottom: 80px;
  margin-top: 64px;
}

.spemastay-page .spemastay-features__header {
  margin-bottom: 80px;
}

.spemastay-features__header .spemastay-eyebrow {
  margin-bottom: 16px;
}

.spemastay-features__row {
  display: flex;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.spemastay-page .spemastay-features__row {
  margin-bottom: 80px;
  gap: 80px;
}

.spemastay-features__row--with-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "text image"
    "cta image";
  column-gap: 80px;
  row-gap: 0;
  align-items: center;
}

.spemastay-features__text {
  flex: 1;
}

.spemastay-features__text h3 {
  font-size: 26px;
  margin: 16px 0;
  color: var(--body);
  letter-spacing: 0;
  line-height: 35px;
}

.spemastay-features__text p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.spemastay-features__cta {
  display: flex;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}

.spemastay-features__row--with-cta .spemastay-features__text {
  grid-area: text;
}

.spemastay-features__row--with-cta .spemastay-features__image {
  grid-area: image;
}

.spemastay-features__row--with-cta .spemastay-features__cta {
  grid-area: cta;
  justify-self: start;
}

.spemastay-features__number {
  background: var(--caption);
  color: var(--white);
  border-radius: var(--radius-pill);
  width: 54px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

.spemastay-features__image {
  flex: 1 1 0;
  width: 100%;
  height: auto;
  border-radius: 0;
  background: transparent;
}

.spemastay-features__image img {
  width: 100%;
  height: auto;
  max-width: none;
}

.spemastay-features__image--overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.spemastay-features__image--overlay img {
  position: relative;
  z-index: 2;
}

.spemastay-features__image--overlay .spemastay-feature-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  object-fit: cover;
}

.spemastay-features__image--overlay .spemastay-feature-mark {
  position: absolute;
  width: 352px;
  height: 69px;
  left: 41px;
  top: 188px;
  z-index: 2;
  object-fit: contain;
}

.spemastay-features__image--blend {
  background: #d9d9d9;
}

.spemastay-features__image--blend .spemastay-feature-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.4;
}

.spemastay-features__image--blend .spemastay-feature-main {
  position: absolute;
  width: 436px;
  height: 475px;
  left: -3px;
  top: -19px;
  object-fit: cover;
}

.spemastay-features .spemastay-btn {
  margin: 64px auto;
}

.spemastay-features__cta .spemastay-btn {
  margin: 0;
  align-self: flex-start;
}

.spemastay-btn--outline {
  margin: 0;
}

.spemastay-services {
  --section-padding: 63px 64px 80px;
  --section-bg: #8e867e;
  color: var(--white);
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
  width: 100%;
  margin-left: calc(50% - 50vw);
}

.spemastay-services .spemastay-eyebrow {
  color: var(--white);
  margin-top: 40px;
}

.spemastay-services h2 {
  font-size: 26px;
  margin: 0 0 20px;
  line-height: 1.4;
  margin-bottom: 40px;
}

.spemastay-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin: 40px 0;
}

.spemastay-services__card h3 {
  font-size: 20px;
  letter-spacing: 0.08em;
  margin: 24px 0 16px;
}

.spemastay-services__card ul {
  padding-left: 20px;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.spemastay-services__card li {
  margin-bottom: 8px;
}

.spemastay-pricing {
  --section-padding: 40px 64px 80px;
  margin-top: 80px;
}

.spemastay-pricing__grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.spemastay-pricing__title {
  width: auto;
  margin: 0 0 20px;
  font-size: 32px;
  font-weight: 700;
  color: var(--title);
  line-height: 1.4;
}

.spemastay-pricing__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1053px;
  margin: 0 auto;
}

.spemastay-plan-card {
  width: 100%;
  min-height: 430px;
  border-radius: var(--radius-lg);
  padding: 60px 40px;
}

.spemastay-plan-card--outline {
  border: 1px solid var(--primary);
  background: var(--bg);
}

.spemastay-page .spemastay-plan-card--outline .spemastay-price {
  color: var(--primary);
}

.spemastay-plan-card--outline li::before {
  background: url("images/spemastay/checkr.png") center / contain no-repeat;
}

.spemastay-page .spemastay-plan-card--solid {
  background: var(--primary);
  color: var(--white);
}

.spemastay-page .spemastay-plan-card.spemastay-plan-card--solid h4,
.spemastay-page .spemastay-plan-card.spemastay-plan-card--solid .spemastay-price,
.spemastay-page .spemastay-plan-card.spemastay-plan-card--solid li {
  color: var(--white);
}

.spemastay-page .spemastay-plan-card h4 {
  margin: 0 0 24px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--body);
}

.spemastay-plan-card .spemastay-price {
  font-size: 32px;
  font-weight: 700;
  margin: 16px 0;
  color: var(--body);
  line-height: 35px;
  letter-spacing: 0;
}

.spemastay-plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 24px;
}

.spemastay-page .spemastay-plan-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  letter-spacing: 0.08em;
  position: relative;
  padding-left: 30px;
  line-height: 22px;
  color: var(--body);
}

.spemastay-plan-card li::before {
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0;
  top: 2px;
  background: url("images/spemastay/check.png") center / contain no-repeat;
}

.spemastay-plan-card.spemastay-plan-card--outline li::before {
  background: url("images/spemastay/checkr.png") center / contain no-repeat;
}

.spemastay-plan-card li::after {
  content: none;
}

.spemastay-pricing__notes {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 38px;
  font-size: 18px;
  width: 100%;
  max-width: 1053px;
}

.spemastay-pricing-note {
  display: grid;
  grid-template-columns: 140px 1fr;
  column-gap: 64px;
  align-items: flex-start;
}

.spemastay-pricing-note--option {
  column-gap: 64px;
}

.spemastay-pricing-note--option .spemastay-pricing-note__title {
  height: 36px;
}

.spemastay-pricing-note--option .spemastay-pricing-note__title::before {
  height: 36px;
}

.spemastay-pricing-note--option .spemastay-pricing-note__list {
  gap: 16px;
}

.spemastay-pricing-note__title {
  width: 140px;
  font-weight: 700;
  position: relative;
  padding-left: 22px;
  height: 32px;
  display: flex;
  align-items: center;
}

.spemastay-pricing-note__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 32px;
  background: var(--primary);
}

.spemastay-pricing-note__list {
  list-style: none;
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.spemastay-pricing-note__list li {
  margin: 0;
  font-size: 20px;
  line-height: 22px;
  position: relative;
}

.spemastay-pricing-note__muted {
  color: var(--caption);
}

.spemastay-pricing-note__list li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 7px;
  width: 8px;
  height: 8px;
  background: var(--caption);
  border-radius: 50%;
}


.spemastay-area {
  --section-padding: 40px 64px 80px;
}

.spemastay-area__grid {
  display: flex;
  gap: 166px;
  align-items: center;
}

.spemastay-area__map {
  flex: 1 1 0;
  width: 100%;
  height: auto;
}

.spemastay-area__text {
  flex: 1 1 0;
  min-width: 0;
  display: grid;
  gap: 24px;
}

.spemastay-area__text h3 {
  margin: 0 0 20px;
  font-size: 32px;
  color: var(--title);
  line-height: 1.4;
}

.spemastay-area__text p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.spemastay-contact-spemastay {
  --section-padding: 40px 64px 80px;
}

.spemastay-contact__grid {
  display: flex;
  gap: 64px;
  align-items: center;
  justify-content: space-between;
}

.spemastay-contact__text {
  flex: 1 1 0;
  min-width: 0;
}

.spemastay-contact__text h3 {
  font-size: 32px;
  margin: 0 0 24px;
}

.spemastay-contact__text p {
  margin: 0 0 40px;
  font-size: 18px;
  line-height: 1.5;
}

.spemastay-contact__image {
  flex: 1 1 0;
  width: 100%;
  height: auto;
  border-radius: 0;
  overflow: visible;
}

.spemastay-contact__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


@media (max-width: 819px) {
  .spemastay-section-title {
    font-size: 26px;
  }

  .spemastay-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .spemastay-features .spemastay-container {
    padding-left: 0;
    padding-right: 0;
  }

  .spemastay-features {
    padding-left: 24px;
    padding-right: 24px;
  }

  .spemastay-hero {
    min-height: 900px;
    padding-top: 0;
    overflow: hidden;
    --hero-cta-offset: 0px;
  }

  .spemastay-hero__image {
    height: 873px;
    overflow: hidden;
    position: static;
  }

  .spemastay-hero__image img {
    width: 819px;
    height: 873px;
    max-width: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -63px;
  }

  .spemastay-hero__content {
    position: absolute;
    top: 328px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: none;
    width: 329px;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 34px;
  }

  .spemastay-hero__content h1 {
    font-size: 32px;
    line-height: 40px;
    margin: 0;
  }

  .spemastay-hero__content p {
    font-size: 16px;
    line-height: 20px;
    margin: 0;
  }

  .spemastay-hero__cta {
    top: 560px;
    bottom: auto;
    height: 64px;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0;
  }

  .spemastay-hero__banner {
    display: none;
  }

  #services {
    --section-padding: 120px 16px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  #services .spemastay-container {
    padding-left: 0;
    padding-right: 0;
  }

  #services .spemastay-eyebrow {
    margin: 0;
    padding: 40px 8px 0;
    line-height: 20px;
  }

  #services h2 {
    margin: 0;
    padding: 16px 8px 40px;
    font-size: 26px;
    line-height: 1.4;
    letter-spacing: 1.76px;
  }

  #services .spemastay-services__grid {
    gap: 80px;
    padding: 40px 0;
  }

  #services .spemastay-services__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 27px;
  }

  #services .spemastay-services__card:first-child {
    gap: 31px;
  }

  #services .spemastay-services__card img {
    display: block;
  }

  #services .spemastay-services__card h3 {
    margin: 0;
    line-height: 22px;
  }

  #services .spemastay-services__card ul {
    display: inline-block;
    text-align: left;
    margin: 0;
    padding-left: 24px;
    line-height: 20px;
  }

  #services .spemastay-services__card li {
    margin-bottom: 0;
  }

  .spemastay-site-nav__links {
    display: none;
  }

  .spemastay-site-nav__menu {
    display: inline-flex;
  }

  .spemastay-site-nav {
    top: 16px;
    width: calc(100% - 40px);
    height: 66px;
    padding: 21px 28px;
    border-radius: 50px;
  }

  .spemastay-site-nav.spemastay-site-nav--after-hero {
    top: 16px;
  }

  .spemastay-site-nav__logo {
    width: 120px;
    height: 24px;
    object-fit: contain;
  }

  .spemastay-site-nav__menu {
    width: 24px;
    height: 24px;
  }

  .spemastay-border-image {
    display: none;
  }

  /* .spemastay-about {
    --section-padding: 120px 24px;
  } */

  .spemastay-page .spemastay-about {
    padding: 0 24px 120px;
  }

  .spemastay-about__grid {
    gap: 80px;
    flex-direction: column;
  }

  .spemastay-about__text {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }

  .spemastay-about__text .spemastay-eyebrow {
    margin: 0 0 16px;
    line-height: 18px;
    font-size: 16px;
  }

  .spemastay-about__text h2 {
    font-size: 26px;
    line-height: 1.4;
    margin: 0 0 20px;
    color: var(--title);
  }

  .spemastay-about__text p {
    font-size: 16px;
    line-height: 32px;
    margin: 0 0 64px;
  }

  .spemastay-list--dot {
    gap: 16px;
    margin-bottom: 64px;
  }

  .spemastay-list--dot li {
    padding-left: 19px;
    line-height: 20px;
  }

  .spemastay-list--dot li::before {
    top: 5px;
  }

  .spemastay-about__text .spemastay-btn {
    margin-top: 0;
    width: 346px;
    height: 64px;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0;
  }

  .spemastay-about__image {
    width: 100%;
    max-width: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: clamp(40px, 12vw, 100px);
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
  }

  .spemastay-features {
    --section-padding: 120px 24px;
  }

  .spemastay-features__header {
    margin-bottom: 80px;
  }

  .spemastay-features__header .spemastay-eyebrow {
    margin-bottom: 16px;
    line-height: 18px;
  }

  .spemastay-features__header .spemastay-section-title {
    font-size: 26px;
    line-height: 35px;
  }

  .spemastay-features__row {
    flex-direction: column;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
  }

  .spemastay-features__row:last-of-type {
    margin-bottom: 0;
  }

  .spemastay-features__row--with-cta {
    display: flex;
    flex-direction: column;
  }

  .spemastay-features__row .spemastay-features__text {
    order: 1;
  }

  .spemastay-features__row .spemastay-features__image {
    order: 3;
  }

  .spemastay-features__row .spemastay-features__cta {
    order: 2;
  }

  .spemastay-features__text {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .spemastay-features__cta {
    width: 100%;
    justify-content: center;
  }

  .spemastay-features__text h3 {
    font-size: 22px;
    line-height: 35px;
    margin: 0;
  }

  .spemastay-features__text p {
    font-size: 16px;
    line-height: 32px;
    margin: 0;
  }

  .spemastay-features__cta .spemastay-btn {
    width: 346px;
    height: 64px;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0;
    margin: 0;
  }

  .spemastay-features .spemastay-btn {
    width: 346px;
    height: 64px;
    margin: 0;
  }

  .spemastay-pricing__grid {
    gap: 40px;
  }

  .spemastay-about__text,
  .spemastay-about__image,
  .spemastay-features__text,
  .spemastay-features__image,
  .spemastay-contact__text,
  .spemastay-contact__image,
  .spemastay-area__text,
  .spemastay-area__map {
    flex: 0 0 auto;
  }

  .spemastay-pricing__title {
    width: auto;
    font-size: 26px;
    line-height: 35px;
  }

  .spemastay-pricing__cards {
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 16px;
  }

  .spemastay-pricing {
    --section-padding: 80px 24px;
    margin-top: 0;
  }

  .spemastay-pricing__notes {
    margin: 40px 0 0;
    gap: 48px;
  }

  .spemastay-pricing-note__title {
    min-width: 0;
    width: auto;
    height: auto;
    font-size: 20px;
    line-height: 22px;
  }

  .spemastay-pricing-note__title::before {
    top: 0;
  }

  .spemastay-pricing-note {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 16px;
    align-items: flex-start;
  }

  .spemastay-pricing-note__list {
    list-style: none;
    padding-left: 22px;
    margin: 0;
    display: grid;
    gap: 12px;
  }

  .spemastay-pricing-note__list li {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    position: relative;
  }

  .spemastay-pricing-note__list li::before {
    content: "";
    position: absolute;
    left: -21px;
    top: 6px;
    width: 8px;
    height: 8px;
    background: var(--caption);
    border-radius: 50%;
  }

  .spemastay-pricing-note:nth-of-type(2) .spemastay-pricing-note__title::before {
    height: 36px;
  }

  .spemastay-area__grid {
    flex-direction: column;
    gap: 64px;
    align-items: stretch;
  }

  .spemastay-area__grid .spemastay-area__text {
    order: 1;
    width: 100%;
  }

  .spemastay-area__grid .spemastay-area__map {
    order: 2;
    width: 100%;
  }

  .spemastay-area__map {
    width: 100%;
    max-width: none;
    height: 393px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
  }

  .spemastay-area {
    --section-padding: 80px 24px;
  }

.spemastay-area__text .spemastay-eyebrow {
  margin: 0;
  line-height: 18px;
}

  .spemastay-area__text h3 {
    font-size: 32px;
    line-height: 35px;
    margin: 0 0 32px;
  }

  .spemastay-area__text p {
    font-size: 16px;
    line-height: 32px;
  }

  .spemastay-contact-spemastay {
    --section-padding: 80px 24px;
  }

  .spemastay-contact__grid {
    flex-direction: column;
    gap: 80px;
    align-items: stretch;
  }

  .spemastay-contact__text {
    max-width: none;
    margin: 0 auto;
    width: 100%;
  }

  .spemastay-contact__text h3 {
    font-size: 32px;
    line-height: 35px;
    margin: 0 0 32px;
  }

  .spemastay-contact__text p {
    font-size: 16px;
    line-height: 32px;
    margin: 0 0 64px;
  }

  .spemastay-contact__text .spemastay-btn {
    /* todo */
    margin-top: 0;
    width: 346px;
    height: 64px;
    font-size: 18px;
    letter-spacing: 0;
  }

  .spemastay-contact__image {
    max-width: none;
    border-bottom-left-radius: 0;
    overflow: visible;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .spemastay-btn--lg {
    width: 346px;
    height: 64px;
    font-size: 18px;
    line-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    margin: 0 auto;
  }

  .spemastay-btn--sm {
    width: 346px;
    height: 68px;
    font-size: 18px;
    line-height: 68px;
    letter-spacing: 0;
    display: block;
    margin: 0 auto;
  }

  #top .spemastay-hero__cta {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 250px;
    height: 64px;
    font-size: 16px;
    line-height: 18px;
  }

  .spemastay-about__text .spemastay-btn,
  .spemastay-contact__text .spemastay-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .spemastay-about__text .spemastay-btn,
  .spemastay-features .spemastay-btn--primary {
    width: 346px;
    height: 64px;
    font-size: 18px;
    line-height: 64px;
    letter-spacing: 0;
    display: block;
    margin: 64px auto !important;
  }

  .spemastay-plan-card {
    width: 100%;
    border-radius: 40px;
    padding: 60px 24px;
    min-height: 0;
  }

  .spemastay-services__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .spemastay-features__image {
    width: 100%;
    max-width: none;
    border-bottom-left-radius: 0;
    overflow: visible;
    margin-left: auto;
    margin-right: auto;
  }

  .spemastay-features__image img {
    width: 100%;
    height: auto;
  }

  .spemastay-plan-card h4 {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0;
  }

  .spemastay-plan-card .spemastay-price {
    font-size: 32px;
    line-height: 35px;
    margin: 0 0 40px;
  }

  .spemastay-plan-card ul {
    gap: 24px;
  }

  .spemastay-plan-card li {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0;
    padding-left: 32px;
  }

  .spemastay-plan-card li::before {
    width: 24px;
    height: 24px;
    top: 0;
  }

  body.spemastay-menu-open {
    overflow: hidden;
  }

}
