@font-face {
  font-family: Roboto;
  src: url('../fonts/Roboto-LatinExt.woff2') format('woff2');
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Roboto;
  src: url('../fonts/Roboto-Latin.woff2') format('woff2');
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Luxia;
  src: url('../fonts/Luxia-Regular.otf') format('opentype');
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --viiv-blue: #0072bc;
  --viiv-blue-dark: #0067a8;
  --viiv-gold: #bd9b60;
  --viiv-gold-dark: #765b2b;
  --viiv-ink: #25282a;
  --viiv-muted: #606467;
  --viiv-gray: #f0f1f2;
  --viiv-gray-strong: #dedfe0;
  --viiv-white: #fff;
  --viiv-font-sans: Roboto, Arial, sans-serif;
  --viiv-font-display: Luxia, Georgia, serif;
  --viiv-container: 98.0625rem;
  --viiv-gutter: clamp(1.25rem, 4.3vw, 5.25rem);
  --viiv-header-height: 6.5rem;
}

html[data-header-compact] {
  --viiv-header-height: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--viiv-header-height) + 1rem);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--viiv-ink);
  background: var(--viiv-white);
  font-family: var(--viiv-font-sans);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.admin-bar .site-header {
  top: 32px;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--viiv-gold);
  outline-offset: 3px;
}

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

.screen-reader-text:focus {
  z-index: 100000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--viiv-blue);
}

.viiv-container {
  width: min(calc(100% - (2 * var(--viiv-gutter))), var(--viiv-container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--viiv-header-height);
  background: rgb(255 255 255 / 98%);
  box-shadow: 0 1px 0 rgb(0 0 0 / 7%);
  transition: height 220ms ease, box-shadow 220ms ease;
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  height: 100%;
}

.site-brand {
  flex: none;
  width: clamp(8.75rem, 10vw, 10rem);
  transition: width 220ms ease;
}

.site-brand a {
  display: block;
}

.site-brand img,
.custom-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

html[data-header-compact] .site-header {
  box-shadow: 0 0.35rem 1.1rem rgb(15 41 61 / 12%);
}

html[data-header-compact] .site-brand {
  width: 7.25rem;
}

.menu-toggle {
  display: none;
}

.primary-navigation {
  min-width: 0;
  margin-left: auto;
}

.primary-navigation__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.9rem, 1.65vw, 1.8rem);
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-navigation a {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  color: #1c2024;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-navigation a:hover {
  color: var(--viiv-blue);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.home-hero {
  position: relative;
  height: clamp(44rem, 43.25vw, 55rem);
  min-height: 43rem;
  overflow: visible;
  color: #fff;
}

.home-hero__media,
.home-hero__media::after,
.home-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__media img {
  object-fit: cover;
  object-position: center;
}

.home-hero__media::after {
  content: '';
  background: linear-gradient(90deg, rgb(5 8 10 / 52%) 0%, transparent 52%);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  padding-top: clamp(7rem, 7.1vw, 8.45rem);
}

.home-hero__logo {
  width: clamp(15rem, 19.8vw, 23.5rem);
}

.home-hero h1 {
  max-width: 38rem;
  margin: 2.25rem 0 1.7rem 4.2rem;
  font-size: clamp(2.3rem, 2.6vw, 3.1rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: 2rem;
}

.home-hero__actions p {
  display: flex;
  min-height: 4.3125rem;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-size: 0.93rem;
}

.home-hero__actions p img {
  width: 2.25rem;
  height: 3.25rem;
}

.home-hero__actions a {
  display: grid;
  width: 19rem;
  min-height: 4.3125rem;
  place-items: center;
  color: var(--viiv-ink);
  background: var(--viiv-gold);
  font-size: 1.25rem;
  text-decoration: none;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 13.1rem;
  left: 50%;
  display: flex;
  gap: 0.58rem;
  transform: translateX(-50%);
}

.hero-dots span {
  width: 2rem;
  height: 0.375rem;
  background: rgb(255 255 255 / 58%);
}

.hero-dots .is-active {
  background: #fff;
}

.project-filter {
  display: grid;
  align-items: stretch;
  background: #fff;
  box-shadow: 0 0.65rem 1.8rem rgb(0 0 0 / 13%);
}

.project-filter--home {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 4.625rem;
  left: 0;
  width: min(calc(100% - (2 * var(--viiv-gutter))), 93.0625rem);
  height: 6.9375rem;
  margin-inline: auto;
  grid-template-columns: 1.2fr repeat(4, auto) minmax(9rem, 1fr) 11.5rem;
}

.project-filter > strong,
.project-filter > label,
.project-filter > button {
  min-width: 0;
  min-height: 2.75rem;
  border: 0;
}

.project-filter > strong,
.project-filter > label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: clamp(0.8rem, 1.35vw, 1.65rem);
  color: #3a3c3e;
  font-size: 0.78rem;
  font-weight: 400;
  white-space: nowrap;
}

.project-filter > strong {
  color: #6b6d6f;
  font-size: 1rem;
  font-weight: 600;
}

.project-filter input {
  width: 0.92rem;
  height: 0.92rem;
  margin: 0 0.7rem 0 0;
  accent-color: var(--viiv-blue);
}

.project-filter__city {
  border-left: 1px solid #d3d5d6 !important;
}

.project-filter select {
  width: 100%;
  min-height: 2.75rem;
  color: #4c4f51;
  background: transparent;
  border: 0;
}

.project-filter button {
  padding: 0 2rem;
  color: #fff;
  background: var(--viiv-blue);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.project-filter button:hover {
  background: var(--viiv-blue-dark);
}

.home-story {
  position: relative;
  height: clamp(52rem, 60vw, 71.375rem);
  overflow: hidden;
  background: #fff;
}

.home-story__copy {
  position: relative;
  z-index: 1;
  padding-top: 6.7rem;
  text-align: center;
}

.home-story h2 {
  margin: 0 0 2.4rem;
  color: #323537;
  font-size: clamp(1.8rem, 2.15vw, 2.55rem);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}

.home-story h2 em {
  display: block;
  margin-top: 0.55rem;
  color: var(--viiv-blue);
  font-size: 1.65rem;
  font-style: normal;
  text-transform: none;
}

.home-story p {
  width: min(100%, 66.75rem);
  margin: 0 auto 1.8rem;
  color: #323537;
  font-size: 1.03rem;
  line-height: 1.85;
}

.home-story a,
.home-featured__all {
  color: var(--viiv-blue-dark);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.home-story > img {
  position: absolute;
  z-index: 0;
  top: 12.8125rem;
  right: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 12.8125rem);
  object-fit: cover;
}

.home-featured {
  min-height: 59.5rem;
  padding: 4.25rem var(--viiv-gutter) 4.9rem;
  background: #efeff0;
  text-align: center;
}

.home-featured > header h2,
.home-news h2 {
  margin: 0;
  color: #45484a;
  font-size: clamp(1.9rem, 2.1vw, 2.55rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-featured > header p,
.home-news header p {
  margin: 1rem 0 2.85rem;
  color: #626568;
  font-size: 1.35rem;
  letter-spacing: 0.015em;
}

.home-featured__rail {
  display: grid;
  width: min(100%, 98.0625rem);
  min-height: 36.5rem;
  align-items: center;
  margin-inline: auto;
  grid-template-columns: 0.85fr 1.05fr 0.85fr;
  gap: 1.1rem;
}

.project-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #e3e3e4;
}

.project-card__link {
  position: relative;
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.project-card__status {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  display: grid;
  width: min(50%, 19.75rem);
  min-height: 3.85rem;
  place-items: center;
  margin: 0;
  color: #fff;
  background: #858789;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.project-card__status--lancamento {
  background: #0072bc;
}

.project-card__status--em-obras {
  background: #666a6d;
}

.project-card__status--pronto-para-construir {
  background: #337347;
}

.project-card__status--breve-lancamento {
  background: #25282a;
}

.project-card__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: 6.5625rem;
  align-content: center;
  padding: 1rem 2rem;
  color: #45484a;
  background: rgb(224 225 226 / 94%);
  text-align: center;
}

.project-card__title {
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  font-weight: 400;
  line-height: 1.25;
}

.project-card__city,
.project-card__lots {
  margin: 0.28rem 0 0;
  font-size: 0.92rem;
}

.project-card__lots,
.project-card__more {
  display: none;
}

.project-card--featured {
  aspect-ratio: 1 / 1;
  border-radius: 1.35rem;
}

.project-card--featured:not(.is-active) .project-card__status,
.project-card--featured:not(.is-active) .project-card__content {
  display: none;
}

.project-card--featured .project-card__status {
  display: none;
}

.project-card--featured.is-active {
  box-shadow: 0 0.9rem 2.1rem rgb(0 0 0 / 18%);
}

.project-card--featured.is-active .project-card__content {
  min-height: 7.1rem;
  color: #fff;
  background: rgb(22 24 25 / 72%);
}

.home-featured__all {
  display: inline-block;
  min-height: 2.75rem;
  margin-top: 2.55rem;
  border-bottom: 1px solid currentColor;
}

.home-news {
  padding-top: 4.9rem;
  background: #fff;
  text-align: center;
}

.home-news header p {
  width: min(100%, 58rem);
  margin-inline: auto;
  margin-bottom: 4.55rem;
}

.home-news__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-news article {
  position: relative;
  aspect-ratio: 635 / 579;
  overflow: hidden;
}

.home-news article a {
  display: block;
  height: 100%;
  text-decoration: none;
}

.home-news article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.home-news article h3 {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: 8.625rem;
  align-items: center;
  padding: 1.4rem 3.5rem;
  margin: 0;
  color: #fff;
  background: rgb(22 24 25 / 72%);
  font-size: clamp(0.9rem, 1.1vw, 1.17rem);
  font-weight: 400;
  line-height: 1.5;
}

.home-news article:hover img,
.project-card:hover .project-card__image {
  transform: scale(1.025);
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: clamp(1rem, 2.1vw, 2.75rem);
  bottom: 1.8rem;
  display: block;
  width: clamp(3.75rem, 4.5vw, 5.3125rem);
  height: clamp(3.75rem, 4.5vw, 5.3125rem);
  border-radius: 50%;
  box-shadow: 0 0.65rem 1.5rem rgb(0 0 0 / 24%);
}

.catalog-search {
  position: relative;
  display: grid;
  height: 17.75rem;
  overflow: hidden;
  place-items: center;
  color: #fff;
  background: #404346;
}

.catalog-search::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(34 37 40 / 68%);
}

.catalog-search > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: grayscale(1);
}

.catalog-search > div {
  position: relative;
  z-index: 1;
  text-align: center;
}

.catalog-search h1 {
  margin: 0 0 2.35rem;
  font-size: clamp(1.9rem, 2.15vw, 2.5rem);
  font-weight: 400;
  text-transform: uppercase;
}

.project-filter--catalog {
  width: min(100%, 80.5625rem);
  height: 3.875rem;
  margin-inline: auto;
  grid-template-columns: repeat(4, auto) minmax(11rem, 1fr) 10.9rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card--catalog {
  aspect-ratio: 635 / 579;
}

.project-card--catalog .project-card__status {
  width: min(58%, 21.75rem);
  min-height: 3.35rem;
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
}

.project-card--catalog .project-card__content {
  color: #fff;
  background: rgb(22 24 25 / 72%);
}

.project-card--catalog .project-card__image {
  position: absolute;
  inset: 0;
}

.project-card--catalog:hover .project-card__content,
.project-card--catalog:focus-within .project-card__content {
  min-height: 100%;
  align-content: center;
  color: #fff;
  background: rgb(0 114 188 / 86%);
}

.project-card--catalog:hover .project-card__title,
.project-card--catalog:focus-within .project-card__title {
  font-size: clamp(1.2rem, 1.55vw, 1.75rem);
  text-transform: uppercase;
}

.project-card--catalog:hover .project-card__lots,
.project-card--catalog:hover .project-card__more,
.project-card--catalog:focus-within .project-card__lots,
.project-card--catalog:focus-within .project-card__more {
  display: block;
}

.project-card__more {
  margin-top: 8rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}

.catalog-more,
.catalog-empty {
  min-height: 7.9rem;
  padding: 2.9rem var(--viiv-gutter);
  text-align: center;
}

.catalog-more a {
  color: var(--viiv-blue);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer {
  color: #edf4f8;
  background: #092b47;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 3rem;
  padding-block: 2.75rem 2.5rem;
  border-bottom: 1px solid rgb(255 255 255 / 17%);
}

.footer-top__brand img {
  width: 9.75rem;
}

.footer-top__brand p {
  max-width: 21rem;
  margin: 0.5rem 0 0;
  color: #c7d8e5;
  font-size: 0.85rem;
}

.footer-top__contact h2,
.footer-navigation h2 {
  margin: 0 0 0.9rem;
  color: #dfbd81;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-top__phones {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.footer-top__phones a {
  display: grid;
  gap: 0.15rem;
  width: fit-content;
  text-decoration: none;
}

.footer-top__phones span {
  color: #c7d8e5;
  font-size: 0.82rem;
}

.footer-top__phones strong {
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.footer-navigation {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
  padding-block: 2.5rem 2.75rem;
}

.footer-navigation__group {
  min-width: 0;
}

.footer-navigation a {
  display: block;
  width: fit-content;
  padding-block: 0.27rem;
  color: #e4edf4;
  font-size: 0.85rem;
  line-height: 1.4;
  text-decoration: none;
}

.footer-top a:hover,
.footer-navigation a:hover,
.footer-bottom a:hover {
  color: #f2d39b;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem 2rem;
  padding-block: 1.5rem 2rem;
  border-top: 1px solid rgb(255 255 255 / 17%);
  color: #c7d8e5;
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 1rem;
  padding-right: 4.5rem;
}

.footer-bottom a {
  color: #e4edf4;
  text-decoration: none;
}

.footer-bottom__legal {
  grid-column: 1 / -1;
  font-size: 0.7rem;
}

@media (min-width: 120rem) {
  .home-hero {
    height: min(49vw, 64rem);
  }

  .home-hero__content {
    padding-top: clamp(8rem, 8vw, 10.5rem);
  }

  .project-card__title {
    font-size: 1.35rem;
  }
}

@media (max-width: 87.5rem) {
  :root {
    --viiv-header-height: 5.75rem;
  }

  html[data-header-compact] {
    --viiv-header-height: 4rem;
  }

  .site-brand {
    width: 8.5rem;
  }

  .primary-navigation__list {
    gap: clamp(0.75rem, 1.2vw, 1.25rem);
  }

  .primary-navigation a {
    font-size: 0.7rem;
  }

  .project-filter--home {
    grid-template-columns: 1.2fr repeat(4, auto) minmax(7.5rem, 1fr) 9rem;
  }

  .project-filter > label {
    padding-inline: 0.65rem;
    font-size: 0.68rem;
  }

}

@media (max-width: 68.75rem) {
  :root {
    --viiv-header-height: 4.75rem;
  }

  html[data-header-compact] {
    --viiv-header-height: 4rem;
  }

  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header__inner {
    justify-content: space-between;
  }

  .site-brand {
    width: 7rem;
  }

  html[data-header-compact] .site-brand {
    width: 6.1rem;
  }

  .menu-toggle {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-content: center;
    gap: 0.3rem;
    padding: 0;
    color: var(--viiv-blue);
    background: transparent;
    border: 0;
  }

  .menu-toggle span[aria-hidden] {
    width: 1.55rem;
    height: 2px;
    background: currentColor;
  }

  .primary-navigation {
    display: none;
    position: absolute;
    top: 100%;
    right: calc(-1 * var(--viiv-gutter));
    bottom: auto;
    left: calc(-1 * var(--viiv-gutter));
    max-height: calc(100vh - var(--viiv-header-height));
    overflow-y: auto;
    padding: 1rem var(--viiv-gutter) 1.5rem;
    background: #fff;
    box-shadow: 0 0.8rem 1.5rem rgb(0 0 0 / 12%);
  }

  .primary-navigation[data-open] {
    display: block;
  }

  .primary-navigation__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .primary-navigation a {
    min-height: 3.15rem;
    border-bottom: 1px solid #eceeef;
    font-size: 0.8rem;
  }

  .home-hero {
    height: auto;
    min-height: 50rem;
    padding-bottom: 2rem;
  }

  .home-hero__content {
    padding-top: 5rem;
  }

  .project-filter--home {
    position: absolute;
    bottom: 2rem;
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-filter--home > strong,
  .project-filter--home > button {
    grid-column: 1 / -1;
  }

  .project-filter > strong,
  .project-filter > label,
  .project-filter > button,
  .project-filter select {
    min-height: 3.25rem;
  }

  .project-filter__city {
    border-top: 1px solid #e1e3e5 !important;
    border-left: 0 !important;
    grid-column: 1 / -1;
  }

  .home-featured__rail {
    min-height: auto;
  }

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

@media (max-width: 47.9375rem) {
  :root {
    --viiv-gutter: 1.25rem;
  }

  body.admin-bar .site-header {
    top: 0;
  }

  .home-hero {
    min-height: 54rem;
  }

  .home-hero__media img {
    object-position: center top;
  }

  .home-hero__media::after {
    background: linear-gradient(180deg, rgb(4 7 10 / 16%) 20%, rgb(4 7 10 / 78%) 69%, rgb(4 7 10 / 86%) 100%);
  }

  .home-hero__content {
    padding-top: 3.5rem;
    text-align: center;
  }

  .home-hero__logo {
    width: min(70vw, 17rem);
    margin-inline: auto;
  }

  .home-hero h1 {
    max-width: 20rem;
    margin: 1.5rem auto;
    font-size: clamp(2rem, 8vw, 2.85rem);
  }

  .home-hero__actions {
    flex-direction: column;
    gap: 0.65rem;
    margin-left: 0;
  }

  .home-hero__actions p {
    min-height: 2.75rem;
  }

  .home-hero__actions p img {
    width: 1.5rem;
    height: auto;
  }

  .home-hero__actions a {
    width: min(100%, 19rem);
    min-height: 3.5rem;
  }

  .hero-dots {
    display: none;
  }

  .project-filter--home {
    bottom: 1.25rem;
    width: calc(100% - 2.5rem);
  }

  .project-filter--home > label span {
    white-space: normal;
  }

  .home-story__copy {
    min-height: 0;
    padding-block: 4.2rem 2.4rem;
  }

  .home-story h2 {
    font-size: 1.75rem;
  }

  .home-story h2 em {
    font-size: 1.3rem;
  }

  .home-story p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .home-story > img {
    position: static;
    width: 100%;
    height: 20rem;
    min-height: 20rem;
    object-fit: cover;
    object-position: 54% 82%;
  }

  .home-story {
    height: auto;
  }

  .home-featured {
    min-height: 0;
    padding-block: 3.8rem;
  }

  .home-featured > header p,
  .home-news header p {
    font-size: 1rem;
  }

  .home-featured__rail {
    width: min(100%, 28rem);
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .project-card--featured:not(.is-active) .project-card__content {
    display: grid;
  }

  .project-card--featured:not(.is-active) .project-card__status {
    display: grid;
  }

  .home-news {
    padding-top: 3.8rem;
  }

  .home-news header p {
    margin-bottom: 3rem;
  }

  .home-news__grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .home-news article {
    aspect-ratio: 1.12 / 1;
  }

  .catalog-search {
    height: auto;
    min-height: 35rem;
    padding-block: 3rem;
  }

  .catalog-search h1 {
    max-width: 20rem;
    margin-inline: auto;
    margin-bottom: 2rem;
  }

  .project-filter--catalog {
    width: 100%;
    height: auto;
    grid-template-columns: 1fr;
  }

  .project-filter--catalog > label {
    justify-content: flex-start;
    padding-inline: 1rem;
    border-bottom: 1px solid #eceeef;
  }

  .project-filter--catalog .project-filter__city {
    grid-column: auto;
  }

  .project-card--catalog {
    aspect-ratio: 1.08 / 1;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding-block: 2rem 1.75rem;
  }

  .footer-top__phones {
    gap: 1rem;
  }

  .footer-navigation {
    gap: 1.75rem 1.25rem;
    padding-block: 2rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-right: 3.5rem;
  }

  .footer-bottom__social {
    justify-content: flex-start;
    padding-right: 0;
  }

  .footer-bottom__legal {
    grid-column: auto;
  }
}

@media (max-width: 25rem) {
  .project-filter > label {
    padding-inline: 0.45rem;
    font-size: 0.62rem;
  }
}

@media (max-width: 22rem) {
  .footer-top__phones {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
