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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #121212;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
}

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

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: #0063be;
  transform: translateY(-140%);
}
.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 48px, 1368px);
  margin-inline: auto;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 64px;
  padding: 14px 34px;
  border: 2px solid #0063be;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.button::before {
  position: absolute;
  inset: 50% auto auto var(--button-effect-x, 78%);
  z-index: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: #0063be;
  content: "";
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.button:hover, .button:focus-visible {
  transform: translateY(-1px);
}
.button:hover::before, .button:focus-visible::before {
  transform: translate(-50%, -50%) scale(1);
}
.button__text, .button__icon {
  position: relative;
  z-index: 1;
}
.button--small {
  min-height: 33px;
  padding: 6px 18px;
  border-width: 0;
  color: #fff;
  background: #0063be;
  font-size: 14px;
  font-weight: 500;
}
.button--small::before {
  display: none;
}
.button--small:hover, .button--small:focus-visible {
  color: #fff;
  background: #2084df;
}
.button--outline {
  min-width: 364px;
  color: #0063be;
  background: #fff;
  font-size: 24px;
  letter-spacing: -0.04em;
}
.button--outline::before {
  display: none;
}
.button--outline:hover, .button--outline:focus-visible {
  color: #fff;
  background: #0063be;
  border-color: #0063be;
}
.button--outline:hover .button__icon, .button--outline:focus-visible .button__icon {
  background: #fff;
}
.button--outline:hover .button__icon::before, .button--outline:focus-visible .button__icon::before {
  border-color: #0063be;
}
.button--primary {
  min-width: min(100%, 782px);
  min-height: 129px;
  color: #fff;
  background: #0063be;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -0.04em;
}
.button--primary::before {
  display: none;
}
.button--primary:hover, .button--primary:focus-visible {
  color: #fff;
  background: #2084df;
}
.button__icon {
  position: relative;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: currentColor;
  transition: background 0.25s ease, transform 0.25s ease;
}
.button__icon::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  transform: translate(-65%, -50%) rotate(45deg);
  transition: border-color 0.25s ease;
}
.button:hover .button__icon, .button:focus-visible .button__icon {
  transform: translateX(4px);
}
.button--primary .button__icon {
  flex-basis: 42px;
  width: 42px;
  height: 42px;
  background: transparent;
}
.button--primary .button__icon::before {
  width: 24px;
  height: 24px;
  border-width: 3px 3px 0 0;
  border-color: #fff;
}

.circle-arrow {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  transition: background 0.25s ease, transform 0.25s ease;
}
.circle-arrow::before {
  width: 10px;
  height: 10px;
  border-top: 2px solid #0063be;
  border-right: 2px solid #0063be;
  content: "";
  transform: rotate(45deg);
  transition: border-color 0.25s ease;
}

.section-heading {
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.section-heading__title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 500;
  line-height: 1.15;
}
.section-heading__text {
  margin: 0;
  font-size: clamp(18px, 2.1vw, 28px);
}
.section-heading--light {
  color: #fff;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 24px;
  left: 0;
  width: 100%;
}
.site-header__inner {
  display: flex;
  align-items: center;
  min-height: 77px;
  margin-inline: 40px;
  padding: 16px 36px 16px 128px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  font-family: "Work Sans", "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 600;
  white-space: nowrap;
}
.site-header__logo {
  width: 80px;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 48px;
}
.site-header__menu {
  display: flex;
  align-items: center;
  gap: 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header__link {
  position: relative;
  display: block;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.site-header__link::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: #0063be;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}
.site-header__link:hover, .site-header__link:focus-visible, .site-header__link:active, .site-header__link[aria-current=page], .current-menu-item .site-header__link, .current_page_item .site-header__link {
  color: #0063be;
}
.site-header__link:hover::after, .site-header__link:focus-visible::after, .site-header__link:active::after, .site-header__link[aria-current=page]::after, .current-menu-item .site-header__link::after, .current_page_item .site-header__link::after {
  transform: scaleX(1);
}
.site-header__toggle {
  display: none;
}

.hero {
  min-height: min(919px, 100vh);
  padding-top: 220px;
  color: #fff;
  background-image: linear-gradient(98deg, rgba(0, 99, 190, 0.35), rgba(0, 99, 190, 0) 65%), url("../images/hero.jpg");
  background-position: center;
  background-size: cover;
}
.hero__content {
  padding-top: clamp(80px, 14vw, 154px);
}
.hero__title {
  margin: 0 0 22px;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 500;
  line-height: 1.2;
}
.hero__lead {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.4;
}

.section--city {
  background-image: url("../images/city-bg.jpg");
  background-position: center bottom;
  background-size: cover;
}

.news {
  padding: clamp(72px, 8vw, 128px) 0 96px;
}
.news__heading {
  margin-bottom: 32px;
}
.news__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.news__item {
  border-left: 6px solid #0063be;
  background: #f4f7fb;
}
.news__link {
  display: grid;
  grid-template-columns: 160px 1fr 50px;
  align-items: center;
  gap: 28px;
  min-height: 103px;
  padding: 24px 40px 24px 34px;
  transition: background 0.25s ease;
}
.news__link:hover, .news__link:focus-visible {
  background: rgba(0, 99, 190, 0.06);
}
.news__link:hover .news__arrow, .news__link:focus-visible .news__arrow {
  background: #0063be;
  transform: translateX(6px);
}
.news__link:hover .news__arrow::before, .news__link:focus-visible .news__arrow::before {
  border-color: #fff;
}
.news__date {
  color: #92a0ad;
  font-size: 16px;
  text-align: center;
}
.news__title {
  font-size: 18px;
  line-height: 1.7;
}
.news__more {
  display: flex;
  justify-content: center;
  margin-top: 58px;
}

.feature-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 72px;
}
.feature-links__item {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 180px;
  padding: 45px 90px 42px 40px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.25);
  transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.feature-links__item::before {
  display: none;
}
.feature-links__item:hover, .feature-links__item:focus-visible {
  color: #fff;
  background: #0063be;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
  transform: translateY(-4px);
}
.feature-links__item:hover .feature-links__arrow, .feature-links__item:focus-visible .feature-links__arrow {
  background: #fff;
  transform: translateY(-50%) translateX(6px);
}
.feature-links__item:hover .feature-links__arrow::before, .feature-links__item:focus-visible .feature-links__arrow::before {
  border-color: #0063be;
}
.feature-links__label {
  position: relative;
  z-index: 1;
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 500;
}
.feature-links__text {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  font-size: 16px;
}
.feature-links__arrow {
  position: absolute;
  top: 50%;
  right: 40px;
  width: 44px;
  height: 44px;
  color: #fff;
  background: #0063be;
  transform: translateY(-50%);
  z-index: 1;
}
.feature-links__arrow::before {
  border-color: #fff;
}

.property {
  overflow: hidden;
  padding: 64px 0 70px;
  color: #fff;
  background: #0063be;
}
.property__heading {
  margin-bottom: 50px;
}
.property__viewport {
  position: relative;
  margin-inline: calc((100vw - min(100vw, 1368px)) / -2);
}
.property__list {
  display: flex;
  gap: 28px;
  align-items: start;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  margin: 0;
  padding: 0 calc((100vw - min(100vw, 1368px)) / 2);
  list-style: none;
  cursor: grab;
  scroll-behavior: smooth;
  scroll-padding-inline: calc((100vw - min(100vw, 1368px)) / 2);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-y;
  user-select: none;
}
.property__list::-webkit-scrollbar {
  display: none;
}
.property__list--dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}
.property__item {
  flex: 0 0 min(28vw, 382px);
  scroll-snap-align: center;
}
.property__item--muted {
  flex-basis: min(24vw, 332px);
  opacity: 0.58;
}
.property__item--edge {
  opacity: 0.58;
}
.property__image,
.property .property-card__image {
  width: 100%;
  aspect-ratio: 382/334;
  object-fit: cover;
}
.property__control {
  position: absolute;
  z-index: 2;
  top: 45%;
  width: 41px;
  height: 41px;
  border: 0;
  background: rgba(18, 18, 18, 0.8);
  cursor: pointer;
}
.property__control:disabled {
  cursor: default;
  pointer-events: none;
}
.property__control::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
}
.property__control--prev {
  left: calc(50% - 620px);
}
.property__control--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}
.property__control--next {
  right: calc(50% - 620px);
}
.property__control--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.property-card {
  margin: 0;
}
.property-card__caption {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

.contact-cta {
  padding: 120px 0 126px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.78)), url("../images/footer-bg.jpg");
  background-position: center top;
  background-size: cover;
}
.contact-cta__panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  min-height: 525px;
  padding: 70px 210px 64px 190px;
  border-radius: 36px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.28)), url("../images/cta-bg.jpg");
  background-position: center;
  background-size: cover;
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.25);
}
.contact-cta__icon {
  width: 146px;
}
.contact-cta__title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(54px, 7vw, 90px);
  font-weight: 500;
  line-height: 1.1;
}
.contact-cta__text {
  margin: 10px 0 54px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}

.site-footer {
  padding: 0 0 1px;
  background-image: url("../images/footer-bg.jpg");
  background-position: center bottom;
  background-size: cover;
}
.site-footer__inner {
  position: relative;
  width: calc(100% - 96px);
  min-height: 419px;
  margin-inline: auto;
  padding: 86px 177px 64px;
  border-radius: 23px 23px 0 0;
  color: #fff;
  background: #0063be;
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 62px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-family: "Work Sans", "Noto Sans JP", sans-serif;
  font-size: 34px;
  font-weight: 600;
}
.site-footer__logo {
  filter: brightness(0) invert(1);
}
.site-footer__top {
  position: absolute;
  top: 78px;
  right: 83px;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  background: #fff;
}
.site-footer__top::before {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 14px;
  height: 14px;
  border-top: 3px solid #0063be;
  border-left: 3px solid #0063be;
  content: "";
  transform: translate(-50%, -25%) rotate(45deg);
}
.site-footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}
.site-footer__link {
  font-size: 22px;
  font-weight: 500;
}
.site-footer__address {
  margin-top: 56px;
  font-size: 16px;
  font-style: normal;
  color: #faf7f4;
}
.site-footer__copyright {
  position: absolute;
  right: 170px;
  bottom: 75px;
  margin: 0;
  color: #f4f7fb;
  font-size: 12px;
}

.page-main {
  padding: 180px 0 120px;
}

.page-content {
  font-size: 16px;
  line-height: 1.9;
}
.page-content__title {
  margin: 0 0 40px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 500;
  line-height: 1.2;
}
.page-content__body {
  max-width: 920px;
}

@media (max-width: 1180px) {
  .site-header__inner {
    margin-inline: 24px;
    padding-inline: 32px;
  }
  .site-header__nav {
    gap: 24px;
  }
  .site-header__menu {
    gap: 24px;
  }
  .contact-cta__panel {
    padding-inline: 80px;
  }
  .site-footer__inner {
    padding-inline: 80px;
  }
}
@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, 1368px);
  }
  .site-header {
    top: 12px;
  }
  .site-header__inner {
    min-height: 64px;
    margin-inline: 12px;
    padding: 14px 18px;
  }
  .site-header__brand {
    font-size: 18px;
  }
  .site-header__nav {
    display: none;
  }
  .site-header__toggle {
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 11px;
    border: 0;
    border-radius: 4px;
    background: #0063be;
  }
  .site-header__toggle-line {
    height: 2px;
    background: #fff;
  }
  .hero {
    min-height: 620px;
    padding-top: 120px;
  }
  .section-heading {
    display: block;
  }
  .section-heading__text {
    margin-top: 8px;
  }
  .news {
    padding-bottom: 72px;
  }
  .news__link {
    grid-template-columns: 1fr 42px;
    gap: 10px 20px;
    padding: 22px;
  }
  .news__date, .news__title {
    grid-column: 1;
    text-align: left;
  }
  .news__arrow {
    grid-row: 1/3;
    grid-column: 2;
    width: 42px;
    height: 42px;
  }
  .feature-links {
    grid-template-columns: 1fr;
  }
  .property__viewport {
    margin-inline: 0;
  }
  .property__list {
    gap: 20px;
    padding: 0 16px 16px;
    scroll-padding-inline: 16px;
  }
  .property__item {
    flex: 0 0 min(78vw, 382px);
  }
  .property__item--muted {
    display: none;
  }
  .property__control {
    display: none;
  }
  .contact-cta {
    padding-block: 80px;
  }
  .contact-cta__panel {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: auto;
    padding: 48px 28px;
    text-align: center;
  }
  .contact-cta__icon {
    justify-self: center;
    width: 84px;
  }
  .contact-cta__text {
    margin-bottom: 32px;
    font-size: 20px;
  }
  .button--primary {
    min-height: 78px;
  }
  .button--outline {
    min-width: min(100%, 320px);
    font-size: 20px;
  }
  .site-footer__inner {
    width: calc(100% - 24px);
    padding: 48px 24px 40px;
  }
  .site-footer__brand {
    padding-right: 70px;
    padding-bottom: 36px;
    font-size: 24px;
  }
  .site-footer__top {
    top: 44px;
    right: 24px;
    width: 44px;
    height: 44px;
  }
  .site-footer__menu {
    gap: 20px 28px;
    margin-top: 32px;
  }
  .site-footer__link {
    font-size: 16px;
  }
  .site-footer__address {
    margin-top: 42px;
    line-height: 1.8;
  }
  .site-footer__copyright {
    position: static;
    margin-top: 28px;
  }
  .page-main {
    padding: 120px 0 80px;
  }
}
@media (max-width: 560px) {
  .container {
    width: calc(100% - 24px);
  }
  .site-header {
    top: 17px;
    z-index: 50;
  }
  .site-header::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .site-header__inner {
    align-items: flex-start;
    min-height: 53px;
    margin-inline: 12px;
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.25);
    transition: background 0.2s ease, min-height 0.2s ease;
  }
  .site-header__brand {
    gap: 8px;
    min-height: 38px;
    font-size: 16px;
    line-height: 1.2;
  }
  .site-header__logo {
    width: 42px;
    height: auto;
  }
  .site-header__toggle {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    gap: 0;
    width: 38px;
    height: 38px;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #0063be;
  }
  .site-header__toggle-line {
    position: absolute;
    left: 11px;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .site-header__toggle-line:nth-child(1) {
    transform: translateY(-5px);
  }
  .site-header__toggle-line:nth-child(3) {
    transform: translateY(5px);
  }
  .site-header__nav {
    display: none;
  }
  .site-header--open::before {
    opacity: 1;
    pointer-events: auto;
  }
  .site-header--open .site-header__inner {
    display: grid;
    grid-template-columns: 1fr 38px;
    min-height: 414px;
    padding: 16px 16px 28px;
    color: #fff;
    background: #0063be;
  }
  .site-header--open .site-header__brand {
    color: #fff;
  }
  .site-header--open .site-header__logo {
    filter: brightness(0) invert(1);
  }
  .site-header--open .site-header__toggle {
    background: transparent;
  }
  .site-header--open .site-header__toggle-line {
    top: 18px;
    left: 8px;
    width: 22px;
  }
  .site-header--open .site-header__toggle-line:nth-child(1) {
    transform: rotate(45deg);
  }
  .site-header--open .site-header__toggle-line:nth-child(2) {
    opacity: 0;
  }
  .site-header--open .site-header__toggle-line:nth-child(3) {
    transform: rotate(-45deg);
  }
  .site-header--open .site-header__nav {
    grid-column: 1/-1;
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: stretch;
    padding: 28px 14px 0;
  }
  .site-header--open .site-header__contact {
    order: -1;
    align-self: center;
    width: min(100%, 213px);
    min-height: 43px;
    color: #0063be;
    background: #fff;
    font-size: 16px;
    font-weight: 700;
  }
  .site-header--open .site-header__contact:hover,
  .site-header--open .site-header__contact:focus-visible {
    color: #0063be;
    background: #fff;
    transform: none;
  }
  .site-header--open .site-header__menu {
    display: grid;
    gap: 0;
    width: 100%;
  }
  .site-header--open .site-header__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
  }
  .site-header--open .site-header__link::before {
    order: 2;
    width: 9px;
    height: 9px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: "";
    transform: rotate(45deg);
  }
  .site-header--open .site-header__link::after {
    display: none;
  }
  .site-header--open .site-header__link:hover,
  .site-header--open .site-header__link:focus-visible,
  .site-header--open .site-header__link[aria-current=page] {
    color: #fff;
  }
  .hero {
    min-height: 443px;
    padding-top: 0;
    background-position: center top;
  }
  .hero__content {
    padding-top: 96px;
  }
  .hero__title,
  .hero__lead {
    font-size: 29px;
    font-weight: 500;
    line-height: 1.35;
  }
  .hero__title {
    margin-bottom: 14px;
  }
  .news {
    padding: 40px 0 66px;
    background-color: #f9fafd;
  }
  .news__heading {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
  }
  .news .section-heading__title {
    font-size: 32px;
  }
  .news .section-heading__text {
    margin-top: 0;
    font-size: 18px;
  }
  .news__list {
    gap: 8px;
  }
  .news__item {
    border-left-width: 4px;
  }
  .news__link {
    grid-template-columns: 1fr 31px;
    min-height: 71px;
    padding: 10px 12px 10px 14px;
  }
  .news__date {
    font-size: 12px;
  }
  .news__title {
    overflow: hidden;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .news__arrow {
    width: 31px;
    height: 31px;
  }
  .news__more {
    margin-top: 36px;
  }
  .button--outline {
    min-width: 186px;
    min-height: 42px;
    gap: 24px;
    padding: 10px 20px 10px 40px;
    border-width: 1px;
    font-size: 14px;
    letter-spacing: -0.07em;
  }
  .button--outline .button__icon {
    flex-basis: 18px;
    width: 18px;
    height: 18px;
  }
  .button--outline .button__icon::before {
    width: 6px;
    height: 6px;
  }
  .feature-links {
    gap: 16px;
    margin-top: 66px;
  }
  .feature-links__item {
    min-height: 123px;
    padding: 24px 58px 22px 28px;
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  }
  .feature-links__label {
    font-size: 30px;
  }
  .feature-links__arrow {
    right: 28px;
    width: 30px;
    height: 30px;
  }
  .property {
    padding: 22px 0 28px;
  }
  .property .section-heading {
    display: flex;
    align-items: baseline;
    gap: 14px;
  }
  .property .section-heading__title {
    font-size: 32px;
  }
  .property .section-heading__text {
    margin-top: 0;
    font-size: 18px;
  }
  .property__heading {
    margin-bottom: 18px;
  }
  .property__viewport {
    margin-inline: -12px;
  }
  .property__list {
    gap: 8px;
    padding: 0 12px 10px;
    scroll-padding-inline: 12px;
  }
  .property__item {
    flex-basis: 178px;
  }
  .property__item--muted {
    display: block;
    flex-basis: 178px;
  }
  .property__image,
  .property .property-card__image {
    aspect-ratio: 178/156;
  }
  .property-card__caption {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.35;
  }
  .contact-cta {
    padding: 68px 0 66px;
  }
  .contact-cta__panel {
    grid-template-columns: 54px 1fr;
    gap: 12px;
    min-height: 172px;
    padding: 24px 14px;
    border-radius: 16px;
    text-align: left;
  }
  .contact-cta__icon {
    width: 54px;
  }
  .contact-cta__title {
    font-size: 36px;
  }
  .contact-cta__text {
    margin: 2px 0 18px;
    font-size: 12px;
    white-space: nowrap;
  }
  .contact-cta__button {
    grid-column: 1/-1;
    justify-self: center;
    min-width: 208px;
    min-height: 43px;
    gap: 18px;
    padding: 10px 20px;
    font-size: 16px;
    letter-spacing: -0.07em;
  }
  .button--primary .button__icon {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
  }
  .button--primary .button__icon::before {
    width: 10px;
    height: 10px;
    border-width: 2px 2px 0 0;
  }
  .site-footer__inner {
    width: 100%;
    min-height: 536px;
    padding: 36px 23px 28px;
    border-radius: 23px 23px 0 0;
  }
  .site-footer__brand {
    gap: 10px;
    padding: 356px 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    font-size: 16px;
  }
  .site-footer__logo {
    width: 40px;
  }
  .site-footer__top {
    top: 36px;
    right: 13px;
    width: 42px;
    height: 42px;
  }
  .site-footer__menu {
    position: absolute;
    top: 100px;
    right: 23px;
    left: 23px;
    display: grid;
    gap: 16px;
    margin: 0;
  }
  .site-footer__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
  }
  .site-footer__link::after {
    width: 7px;
    height: 7px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    content: "";
    transform: rotate(45deg);
  }
  .site-footer__address {
    margin-top: 0;
    font-size: 14px;
  }
  .site-footer__copyright {
    margin-top: 24px;
    font-size: 12px;
    text-align: center;
  }
}
