/* Single: Empreendimento e Unidade */

.page-header {
  position: relative;
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-3xl);
  color: var(--color-white);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-header__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-premium);
  z-index: 2;
}

.page-header__content {
  position: relative;
  z-index: 3;
  max-width: 860px;
}

.page-header__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.page-header--single-premium {
  min-height: 66vh;
  align-items: flex-end;
  padding-bottom: 0;
}

.page-header--single-premium .page-header__content {
  max-width: none;
  width: min(var(--container-wide), 94vw);
}

.project-hero-overlay {
  width: min(640px, 100%);
  background: rgba(15, 28, 30, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}

.project-hero-overlay--minimal {
  width: 100%;
  max-width: none;
  background: transparent;
  color: var(--color-primary);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  position: relative;
  bottom: -10px;
  margin: 0;
}

.project-hero-overlay--minimal .page-header__title {
  margin: 0;
  font-size: clamp(2.4rem, 5.8vw, 5.35rem);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.98;
  white-space: normal;
  text-shadow: 0 10px 26px rgba(15, 28, 30, 0.45);
  text-align: left;
}

.project-detail {
  padding: var(--space-xl) 0 var(--space-3xl);
}

.project-detail--premium {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.project-detail--premium .section-title {
  color: var(--text-strong);
}

.project-detail--premium .section-title,
.units-section .section-title {
  font-size: var(--type-section-title-size);
  line-height: 1.1;
  letter-spacing: var(--type-title-tracking);
}

.project-overview-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-lg);
  margin-top: 0;
  margin-bottom: var(--space-2xl);
}

.project-overview-grid__title {
  margin: 0 0 var(--space-sm);
  color: var(--text-strong);
  font-size: var(--type-section-title-size);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: var(--type-title-tracking);
}

.project-detail__content {
  font-size: var(--type-body-size);
  line-height: 1.8;
  color: var(--text-default);
  margin-bottom: var(--space-md);
}

.project-overview-grid__main > .project-detail__content {
  color: var(--text-muted);
}

.project-detail__content h2 {
  font-size: var(--type-feature-title-size);
  line-height: 1.12;
  letter-spacing: var(--type-feature-tracking);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--text-strong);
}

.project-detail__content h3 {
  font-size: var(--type-card-title-size);
  line-height: 1.2;
  letter-spacing: var(--type-feature-tracking);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--text-strong);
}

.project-detail__content p {
  margin-bottom: var(--space-md);
}

.project-detail__cta-inline {
  margin-top: var(--space-md);
}

.project-detail__cta-inline .btn {
  min-width: 210px;
}

.project-overview-grid__facts {
  background: var(--surface-soft);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: var(--space-lg);
  height: fit-content;
  position: sticky;
  top: calc(var(--header-height) + var(--space-md));
}

.project-overview-grid__facts--clean {
  background: linear-gradient(145deg, var(--color-primary) 0%, #2f575c 100%);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
  margin-top: 0;
  border-color: rgba(255, 255, 255, 0.16);
  max-width: 390px;
  justify-self: end;
  --facts-shift: 0px;
}

.project-overview-grid__facts--entry-slow {
  transform: translateY(24px);
  transition: opacity 1.3s cubic-bezier(0.22, 1, 0.36, 1), transform 1.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-overview-grid__facts--entry-slow.is-visible {
  transform: translateY(0);
}

.project-facts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-sm);
}

.project-facts-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-sm);
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 10px;
}

.project-facts-list span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.project-facts-list strong {
  color: var(--color-primary);
  text-align: right;
}

.project-facts-summary {
  margin-bottom: var(--space-sm);
  transform: translate3d(0, calc(var(--facts-shift) * 0.6), 0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-facts-summary__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  opacity: 0.9;
  margin-top: 8px;
  margin-bottom: 18px;
}

.project-facts-summary__address {
  margin: 0 0 12px;
  color: var(--color-white);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.45;
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
}

.project-facts-summary__address-lines {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.project-facts-summary__address-line {
  display: block;
}

.project-facts-summary__address-line--primary {
  color: var(--color-white);
}

.project-facts-summary__address-line--secondary {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
}

.project-facts-summary__pin {
  color: var(--text-muted);
  margin-top: 2px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.project-facts-summary__pin svg {
  width: 16px;
  height: 16px;
  display: block;
  filter: brightness(0) invert(1);
}

.project-facts-summary__status {
  margin: 0;
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.project-facts-summary__info {
  margin: 0;
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
}

.project-facts-list--grid {
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 2px;
  transform: translate3d(0, var(--facts-shift), 0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-facts-summary__extra {
  margin-top: 14px;
  display: block;
  transform: translate3d(0, calc(var(--facts-shift) * 1.15), 0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-facts-list--grid li {
  border: 0;
  border-top: 0;
  border-radius: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: center;
}

.project-facts-list__icon {
  color: rgba(255, 255, 255, 0.95);
  opacity: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.project-facts-list__icon svg {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.project-facts-list__body {
  display: block;
}

.project-facts-list__body strong {
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  color: var(--color-white);
  line-height: 1.45;
}

body.single-empreendimento .header.header--scrolled,
body.single-empreendimento .header--inverse.header--scrolled {
  animation: none;
}

.project-media-tabs {
  margin-bottom: var(--space-2xl);
}

.project-media-tabs--fullbleed {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.project-media-tabs--floorplans {
  margin-bottom: var(--space-3xl);
}

.floorplans-slider-wrap__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.floorplans-slider-wrap__header .section-title {
  margin: 0;
}

.floorplans-slider-wrap--fullbleed {
  --floorplans-start-offset: calc((100vw - min(var(--container-wide), 94vw)) / 2);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.project-media-tabs > .section-title {
  margin-bottom: var(--space-md);
}

.project-media-tabs__panel {
  display: none;
}

.project-media-tabs__panel.is-active,
.project-media-tabs__panel.is-static {
  display: block;
}

.project-gallery-trigger {
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: block;
  cursor: pointer;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}

.gallery-grid--editorial {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-grid--editorial .gallery-item {
  grid-column: span 1;
  height: 320px;
}

.gallery-grid--editorial .gallery-item:first-child {
  height: 420px;
}

.gallery-grid--editorial .gallery-item:nth-child(3n) {
  height: 250px;
}

.project-gallery-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 28px;
  padding-inline: clamp(16px, calc((100vw - min(var(--container-wide), 94vw)) / 2), 140px);
  -webkit-overflow-scrolling: touch;
}

.project-gallery-slider::-webkit-scrollbar {
  display: none;
}

.project-gallery-slide {
  scroll-snap-align: center;
  scroll-snap-stop: always;
  flex: 0 0 min(86vw, 1040px);
  height: min(68vh, 640px);
  transform: scale(0.985);
  opacity: 0.9;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-gallery-slide.is-active {
  transform: scale(1);
  opacity: 1;
}

.project-gallery-slide .project-gallery-trigger {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.project-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.project-gallery-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 0;
}

.project-gallery-slider-wrap {
  position: relative;
}

.project-gallery-slider__controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: min(var(--container-wide), 94vw);
  margin: 12px auto 0;
}

.project-gallery-slider__action {
  display: none;
  justify-content: center;
  margin-top: 12px;
}

.project-gallery-slider__nav {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
}

.project-gallery-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(37, 66, 70, 0.25);
  cursor: pointer;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), background 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-gallery-slider__dot.is-active {
  background: var(--color-primary);
  transform: scale(1.15);
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
  background: #f2f2f2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.floorplans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-md);
  max-width: none;
}

.floorplans-slider-wrap {
  width: 100%;
}

.floorplans-slider {
  --floorplan-card-width: clamp(320px, 34vw, 460px);
  display: flex;
  align-items: stretch;
  gap: var(--space-md);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x proximity;
  scroll-padding-inline: var(--floorplans-start-offset, 16px);
  padding: 12px clamp(18px, 2.6vw, 34px) 18px var(--floorplans-start-offset, 16px);
}

.floorplans-slider--clusters {
  gap: 0;
}

.floorplan-cluster {
  flex: 0 0 auto;
  position: relative;
  display: block;
  width: max-content;
  min-width: max-content;
  align-self: flex-start;
  padding-top: 34px;
  margin-right: var(--space-md);
}

.floorplan-cluster__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: flex-start;
}

.floorplan-cluster__header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(37, 66, 70, 0.16);
}

.floorplan-cluster__title {
  position: relative;
  left: auto;
  margin: 0;
  padding: 0 8px 6px 0;
  display: inline-block;
  font-size: 0.82rem;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.floorplan-cluster--sticky-title .floorplan-cluster__title {
  position: sticky;
  left: 0;
}

.floorplan-cluster__cards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--floorplan-card-width);
  gap: var(--space-md);
  width: max-content;
}

.floorplan-ungrouped-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--floorplan-card-width);
  gap: var(--space-md);
  width: max-content;
  flex: 0 0 auto;
}

.floorplan-ungrouped-track--with-groups {
  padding-top: 34px;
}

.floorplans-slider::-webkit-scrollbar {
  display: none;
}

.floorplans-slider__controls {
  display: inline-flex;
  gap: 8px;
  flex: 0 0 auto;
}

.floorplans-slider__nav {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: var(--color-white);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.floorplan-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  text-decoration: none;
  color: var(--color-primary);
  background: var(--color-white);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  flex: 0 0 var(--floorplan-card-width);
  height: 100%;
  scroll-snap-align: start;
  margin-right: var(--space-md);
}

.floorplans-slider > .floorplan-card:last-child,
.floorplan-cluster__cards > .floorplan-card:last-child {
  margin-right: 0;
}

.floorplan-cluster__cards > .floorplan-card {
  width: var(--floorplan-card-width);
  flex: none;
  margin-right: 0;
}

.floorplan-ungrouped-track > .floorplan-card {
  width: var(--floorplan-card-width);
  flex: none;
  margin-right: 0;
}

.floorplan-card--button {
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  cursor: zoom-in;
}

.floorplan-card__preview {
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  background: #f6f7f8;
  position: relative;
}

.floorplan-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floorplan-card strong {
  font-size: 1.02rem;
  line-height: 1.3;
  display: block;
}

.floorplan-card--immersive {
  padding: 14px;
  gap: 8px;
  border-radius: 12px;
  background: var(--surface-soft);
}

.floorplan-card--immersive span {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.floorplan-card__body {
  padding: 12px;
  background: linear-gradient(180deg, rgba(37, 66, 70, 0.08) 0%, rgba(159, 184, 184, 0.16) 100%);
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 112px;
}

.floorplan-card__details {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.floorplan-card__icon {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-primary);
  font-size: 0.9rem;
  border: 1px solid var(--border-soft);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.floorplan-card__download {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--color-primary);
  font-size: 0;
  font-weight: 600;
  cursor: pointer;
  z-index: 2;
}

.floorplan-card__icon--download-inline {
  position: static;
  width: 28px;
  height: 28px;
}

.floorplan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.floorplan-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.floorplan-card--interactive:focus-visible {
  outline: 2px solid rgba(37, 66, 70, 0.45);
  outline-offset: 2px;
}

.floorplan-card__download:hover .floorplan-card__icon--download-inline,
.floorplan-card__download:focus-visible .floorplan-card__icon--download-inline {
  transform: translateY(-2px) scale(1.07) rotate(-8deg);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.16);
}

.floorplan-card,
.floorplan-card strong,
.floorplan-card p,
.floorplan-card__preview img,
.floorplan-card__download {
  cursor: pointer;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}

.features-list {
  list-style: none;
  margin: 0 0 var(--space-3xl);
  padding: 0;
  display: grid;
  gap: 12px 18px;
}

.features-list--premium {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-premium-features > .section-title {
  margin-bottom: var(--space-lg);
}

.project-neighborhood-story {
  margin-bottom: var(--space-2xl);
}

.project-brochure {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: var(--space-2xl);
  padding: clamp(30px, 4vw, 46px) 0;
  border-top: 1px solid rgba(37, 66, 70, 0.12);
  border-bottom: 1px solid rgba(37, 66, 70, 0.12);
  background: linear-gradient(135deg, rgba(241, 236, 226, 0.72) 0%, rgba(255, 255, 255, 0.94) 48%, rgba(221, 233, 231, 0.82) 100%);
}

.project-brochure__inner {
  width: min(var(--container-wide), 94vw);
  margin: 0 auto;
  padding-inline: clamp(18px, 3.6vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
}

.project-brochure .section-title {
  margin: 0;
  font-size: clamp(1.28rem, 1.9vw, 1.72rem);
  line-height: 1.12;
  letter-spacing: -0.008em;
  font-weight: 500;
}

.project-brochure__action {
  display: flex;
  justify-content: flex-end;
}

.project-brochure__button {
  min-width: 240px;
}

.project-brochure__button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.project-neighborhood-story > .section-title {
  margin-bottom: var(--space-lg);
}

.project-neighborhood-story__container {
  width: min(var(--container-width), 94vw);
  margin: 0 auto;
  padding-inline: clamp(18px, 3.6vw, 56px);
}

.project-neighborhood-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: stretch;
}

.project-neighborhood-story__grid--text-only {
  grid-template-columns: minmax(0, 720px);
}

.project-neighborhood-story__media {
  min-width: 0;
}

.project-neighborhood-story__media-desktop {
  position: relative;
  min-height: 420px;
}

.project-neighborhood-story__media-desktop:not(.project-neighborhood-story__media-desktop--interactive) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 14px;
}

.project-neighborhood-story__panel {
  --panel-left: 0%;
  --panel-width: 18%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--panel-left);
  width: var(--panel-width);
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 18px 40px rgba(13, 24, 26, 0.12);
  transition: left 0.82s cubic-bezier(0.22, 1, 0.36, 1), width 0.82s cubic-bezier(0.22, 1, 0.36, 1), transform 0.82s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.52s ease, box-shadow 0.42s ease;
}

.project-neighborhood-story__media-desktop:not(.project-neighborhood-story__media-desktop--interactive) .project-neighborhood-story__panel {
  position: relative;
  inset: auto;
  width: 100%;
  min-height: 420px;
}

.project-neighborhood-story__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 28, 30, 0.04) 0%, rgba(15, 28, 30, 0.18) 100%);
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.project-neighborhood-story__panel:hover,
.project-neighborhood-story__panel.is-active {
  left: 0;
  width: 100%;
}

.project-neighborhood-story__media-desktop:not(.project-neighborhood-story__media-desktop--interactive) .project-neighborhood-story__panel:hover,
.project-neighborhood-story__media-desktop:not(.project-neighborhood-story__media-desktop--interactive) .project-neighborhood-story__panel.is-active {
  left: auto;
  width: 100%;
}

.project-neighborhood-story__panel:hover,
.project-neighborhood-story__panel.is-active,
.project-neighborhood-story__panel.is-elevated {
  z-index: 4;
  box-shadow: 0 24px 56px rgba(13, 24, 26, 0.2);
}

.project-neighborhood-story__panel:hover::after,
.project-neighborhood-story__panel.is-active::after,
.project-neighborhood-story__panel.is-elevated::after {
  opacity: 0.2;
}

.project-neighborhood-story__panel:nth-child(1) {
  --panel-left: 0%;
  --panel-width: 18%;
}

.project-neighborhood-story__panel:nth-child(2) {
  --panel-left: 22%;
  --panel-width: 18%;
}

.project-neighborhood-story__panel:nth-child(3) {
  --panel-left: 44%;
  --panel-width: 18%;
}

.project-neighborhood-story__panel:only-child {
  --panel-left: 0%;
  --panel-width: 100%;
}

.project-neighborhood-story__panel:first-child:nth-last-child(2) {
  --panel-left: 0%;
  --panel-width: 18%;
}

.project-neighborhood-story__panel:first-child:nth-last-child(2),
.project-neighborhood-story__panel:first-child:nth-last-child(2)+.project-neighborhood-story__panel {
  width: var(--panel-width);
}

.project-neighborhood-story__panel:first-child:nth-last-child(2)+.project-neighborhood-story__panel {
  --panel-left: 22%;
  --panel-width: 18%;
}

.project-neighborhood-story__media-desktop--interactive .project-neighborhood-story__panel:nth-child(n) {
  left: var(--panel-left);
  width: var(--panel-width);
}

.project-neighborhood-story__media-desktop--interactive .project-neighborhood-story__panel:hover,
.project-neighborhood-story__media-desktop--interactive .project-neighborhood-story__panel.is-active {
  left: 0;
  width: 100%;
}

.project-neighborhood-story__media-desktop--interactive .project-neighborhood-story__panel:first-child:nth-last-child(2):hover,
.project-neighborhood-story__media-desktop--interactive .project-neighborhood-story__panel:first-child:nth-last-child(2).is-active,
.project-neighborhood-story__media-desktop--interactive .project-neighborhood-story__panel:first-child:nth-last-child(2)+.project-neighborhood-story__panel:hover,
.project-neighborhood-story__media-desktop--interactive .project-neighborhood-story__panel:first-child:nth-last-child(2)+.project-neighborhood-story__panel.is-active {
  left: 0;
  width: 100%;
}

.project-neighborhood-story__panel img,
.project-neighborhood-story__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-neighborhood-story__panel img {
  min-height: 420px;
}

.project-neighborhood-story__media-mobile {
  display: none;
}

.project-neighborhood-story__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.project-neighborhood-story__content .project-detail__content {
  color: var(--text-muted);
}

.feature-item--premium {
  border-bottom: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: var(--text-muted);
  text-align: left;
}

.features-list {
  gap: 18px 24px;
}

.feature-item--premium p {
  margin: 0;
}

.feature-item__content {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-item__separator {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.4;
  flex: 0 0 auto;
}

.feature-item__distance {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9em;
  font-weight: 500;
}

.feature-item__icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex: 0 0 auto;
}

.feature-item__icon svg {
  width: 22px;
  height: 22px;
}

.project-work-progress {
  margin-bottom: var(--space-2xl);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: var(--space-lg);
  background: var(--color-white);
}

.project-work-progress__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.project-work-progress__header .section-title {
  margin: 0;
}

.project-work-progress__header strong {
  font-size: 1.4rem;
  color: var(--color-primary);
}

.project-work-progress__metric {
  display: grid;
  justify-items: end;
  gap: 2px;
}

.project-work-progress__metric small {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.project-work-progress__bar {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: #ecf0f0;
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.project-work-progress__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  width: 0;
  transition: width 1.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-work-progress__milestones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.project-work-progress__milestones li {
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 12px;
  font-size: 0.92rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 126px;
}

.project-work-progress__milestones li small {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.project-work-progress__milestones li strong {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  min-height: 2.7em;
}

.project-work-progress__note {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--text-muted);
  margin-top: auto;
}

.project-work-progress__milestones li.is-done {
  background: #e9f4ee;
  border-color: rgba(30, 126, 52, 0.22);
}

.project-work-progress__milestones li.is-done small {
  color: #1e7e34;
}

.project-work-progress__milestones li.is-in-progress {
  background: #fff8ea;
  border-color: rgba(245, 127, 23, 0.24);
}

.project-work-progress__milestones li.is-in-progress small {
  color: #b86b16;
}

.project-work-progress__milestones li.is-planned {
  background: #f7f8f9;
}

.section--related-projects {
  background: linear-gradient(180deg, #fbfbfb 0%, #f5f6f6 100%);
}

.section--related-projects .section-title {
  color: var(--color-primary);
}

.section--related-projects .featured-projects-block {
  width: auto;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.section--related-projects .projects-carousel-wrapper--related-fullbleed {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-inline: 0;
}

.project-gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 5, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.project-gallery-lightbox[hidden] {
  display: none;
}

.project-gallery-lightbox__figure {
  margin: 0;
  width: 100%;
  max-height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.project-gallery-lightbox__figure img {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  border-radius: 10px;
}

.project-gallery-lightbox__meta {
  width: min(100%, 760px);
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
}

.project-gallery-lightbox__meta strong {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
}

.project-gallery-lightbox__meta p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  line-height: 1.5;
}

.project-gallery-lightbox__close,
.project-gallery-lightbox__nav {
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
  position: absolute;
  z-index: 3;
}

.project-gallery-lightbox__close {
  top: 16px;
  right: 16px;
}

.project-gallery-lightbox__nav.prev {
  left: clamp(8px, 2vw, 24px);
  top: 50%;
  transform: translateY(-50%);
}

.project-gallery-lightbox__nav.next {
  right: clamp(8px, 2vw, 24px);
  top: 50%;
  transform: translateY(-50%);
}

.project-gallery-lightbox__thumbs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 16px 2px;
  justify-content: center;
  scrollbar-width: thin;
}

.project-gallery-lightbox__thumb {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0;
  width: 62px;
  height: 44px;
  overflow: hidden;
  flex: 0 0 auto;
}

.project-gallery-lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-gallery-lightbox__thumb.is-active {
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.project-location {
  margin-bottom: var(--space-3xl);
}

.project-location > .section-title {
  margin-bottom: var(--space-sm);
}

.project-location__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.project-location__address {
  margin: 0;
  color: var(--text-muted);
}

.project-location__actions {
  margin-top: 0;
  gap: 10px;
}

.project-location__link {
  gap: 6px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-white);
}

.project-location__link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.project-location__link img {
  display: block;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.units-section {
  background-color: var(--color-bg-alt);
  padding: var(--space-3xl) 0;
}

.units-section__title {
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--color-primary);
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.units-section__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-xl) 0;
}

.unit-card {
  background: var(--color-white);
  min-width: 0;
  padding: var(--space-lg);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: var(--transition-fast);
  border: 1px solid transparent;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
  isolation: isolate;
}

.unit-card:hover {
  transform: translate3d(0, -5px, 0);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--color-primary);
}

.unit-card--commercialized {
  background: #f4f6f6;
  border-color: var(--border-soft);
  box-shadow: none;
}

.unit-card--commercialized:hover {
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  border-color: var(--border-strong);
}

.unit-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.unit-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0;
  min-width: 0;
}

.unit-card--commercialized .unit-card__title,
.unit-card--commercialized .unit-card__title a {
  color: var(--text-muted);
}

.unit-card__status {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--color-neutral-light);
  color: var(--color-text);
}

.unit-card__status.disponivel {
  background: #e6f4ea;
  color: #1e7e34;
}

.unit-card__status.reservada {
  background: #fff8e1;
  color: #f57f17;
}

.unit-card__status.vendida {
  background: #fce8e6;
  color: #c62828;
}

.unit-card__status.locada,
.unit-card__status.permutada,
.unit-card__status.comercializada {
  background: #fce8e6;
  color: #c62828;
}

.unit-card__facts {
  list-style: none;
  margin: var(--space-sm) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.unit-card__facts li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.35;
  min-width: 0;
}

.unit-card__facts li span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.unit-card__facts svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex: 0 0 auto;
}

.contact-section {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-3xl) 0;
  text-align: left;
}

.contact-section__grid {
  display: grid;
  gap: var(--space-xl);
  min-width: 0;
}

.contact-section .section-title {
  color: var(--surface-contrast);
  margin-bottom: var(--space-md);
  font-size: var(--type-section-title-size);
}

.contact-section__cta p {
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.contact-section--premium #lead-form {
  background: var(--color-white);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  padding: clamp(1.1rem, 1.9vw, 1.7rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.86rem var(--space-md);
  align-items: start;
}

.contact-section--premium #lead-form.form--project-quick {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.contact-section--premium #lead-form .form__body--project-quick {
  min-width: 0;
}

.contact-section--premium #lead-form .form__content--project-quick {
  padding: clamp(1.1rem, 1.9vw, 1.7rem);
  min-width: 0;
}

.contact-section--premium #lead-form,
.contact-section--premium #lead-form .form__group > label:not(.form__checkbox),
.contact-section--premium #lead-form .form__hint--required,
.contact-section--premium #lead-form .form__checkbox span,
.contact-section--premium #lead-form [data-form-status] {
  color: var(--text-default);
}

.contact-section--premium #lead-form .form__group--full,
.contact-section--premium #lead-form > :not(.form__group),
.contact-section--premium #lead-form .form__content--project-quick > .form__group--full,
.contact-section--premium #lead-form .form__footer--project-quick {
  grid-column: 1 / -1;
}

.contact-section--premium #lead-form .form__group {
  align-self: start;
  gap: 0.36rem;
}

.contact-section--premium #lead-form .btn {
  width: 100%;
}

.contact-section--premium #lead-form .form__group > label:not(.form__checkbox) {
  min-height: 1.2rem;
  line-height: 1.2;
  font-size: 0.92rem;
}

.contact-section--premium #lead-form input,
.contact-section--premium #lead-form textarea,
.contact-section--premium #lead-form .contact-premium-select__trigger {
  min-height: 44px;
  padding-top: 0.58rem;
  padding-bottom: 0.58rem;
}

.contact-section--premium #lead-form .form__checkbox input[type="checkbox"] {
  min-height: 0.96rem;
  padding-top: 0;
  padding-bottom: 0;
}

.contact-section--premium #lead-form textarea {
  min-height: 106px;
}

.contact-section__cta {
  max-width: 760px;
  margin: 0 auto;
  min-width: 0;
}

.contact-section__cta > * {
  min-width: 0;
}

.contact-section__form-wrap {
  min-width: 0;
}

.contact-direct-links {
  margin-top: var(--space-md);
  display: grid;
  gap: 16px;
}

.contact-direct-links a {
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 0;
  min-width: 0;
  padding: 0;
  text-decoration: underline;
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.45;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.contact-direct-links a span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-direct-links a:hover {
  opacity: 0.82;
}

.contact-section__form-wrap {
  width: 100%;
  max-width: none;
  margin: var(--space-xl) 0 0;
}

.btn--outline-white {
  color: var(--color-white);
  border: 1px solid var(--btn-outline-white-border);
  background: transparent;
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
}

.map-container {
  height: 450px;
  background: #eee;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-top: var(--space-lg);
}

.map-container__frame {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1024px) {
  .project-overview-grid {
    grid-template-columns: 1fr;
  }

  .project-overview-grid__facts {
    order: 1;
  }

  .project-overview-grid__main {
    order: 2;
  }

  .project-overview-grid__facts {
    position: static;
  }

  .project-overview-grid__facts--clean {
    max-width: none;
    justify-self: stretch;
  }

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

  .floorplans-slider-wrap__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .floorplans-slider {
    --floorplan-card-width: clamp(280px, 72vw, 420px);
    --floorplans-start-offset: min(4vw, 24px);
    padding-left: min(4vw, 24px);
    padding-right: min(4vw, 24px);
    scroll-padding-inline: min(4vw, 24px);
  }

  .features-list--premium {
    grid-template-columns: 1fr;
  }

  .project-neighborhood-story__grid {
    grid-template-columns: 1fr;
  }

  .project-neighborhood-story__media-desktop {
    min-height: 360px;
  }

  .project-neighborhood-story__panel img {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .page-header--single-premium {
    min-height: 54vh;
  }

  .project-hero-overlay {
    padding: var(--space-md);
    border-radius: 14px;
  }

  .project-hero-overlay--minimal {
    bottom: -6px;
    padding: 0;
  }

  .project-hero-overlay--minimal .page-header__title {
    white-space: normal;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .section--related-projects .projects-carousel-wrapper--related-fullbleed {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-inline: 0;
  }

  .floorplan-card {
    grid-template-columns: 1fr;
  }

  .floorplans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floorplans-slider {
    --floorplan-card-width: clamp(260px, 84vw, 360px);
    --floorplans-start-offset: 16px;
    padding-left: 16px;
    padding-right: 16px;
    scroll-padding-inline: 16px;
  }

  .project-neighborhood-story__grid {
    gap: 18px;
  }

  .project-neighborhood-story__container {
    padding-inline: 0;
  }

  .project-neighborhood-story__media-desktop {
    display: none;
  }

  .project-neighborhood-story__media-mobile {
    display: block;
  }

  .project-neighborhood-story__slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .project-neighborhood-story__slider::-webkit-scrollbar {
    display: none;
  }

  .project-neighborhood-story__slide {
    flex: 0 0 100%;
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    scroll-snap-align: start;
  }

  .project-neighborhood-story__slide img {
    min-height: 240px;
    max-height: 42vh;
  }

  .project-neighborhood-story__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }

  .project-neighborhood-story__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(37, 66, 70, 0.2);
    transition: transform 0.25s ease, background-color 0.25s ease;
  }

  .project-neighborhood-story__dot.is-active {
    background: var(--color-primary);
    transform: scale(1.35);
  }

  .project-gallery-slider__controls {
    width: calc(100vw - 16px);
    gap: 10px;
    display: flex;
    justify-content: center;
  }

  .project-facts-list--grid {
    grid-template-columns: 1fr;
  }

  .project-gallery-lightbox {
    padding: var(--space-sm);
  }

  .gallery-grid--editorial {
    grid-template-columns: 1fr;
  }

  .gallery-grid--editorial .gallery-item,
  .gallery-grid--editorial .gallery-item:first-child {
    grid-column: auto;
    height: 240px;
  }

  .project-gallery-slider {
    gap: 14px;
    padding-inline: 8px;
  }

  .project-gallery-slide {
    height: 52vh;
    flex-basis: 92vw;
  }

  .project-work-progress__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-work-progress__metric {
    justify-items: start;
  }

  .project-work-progress {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 36px 16px;
    border-radius: 24px;
  }

  .project-work-progress__bar {
    margin-bottom: 14px;
  }

  .project-work-progress__milestones {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .project-work-progress__milestones li {
    min-height: 126px;
    padding: 10px 11px;
    gap: 5px;
  }

  .project-work-progress__milestones li strong {
    min-height: 2.7em;
    font-size: 0.9rem;
  }

  .project-work-progress__note {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .project-brochure {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .project-brochure__inner {
    grid-template-columns: 1fr;
  }

  .project-brochure__action {
    justify-content: flex-start;
  }

  .project-gallery-slider__nav {
    display: none;
  }

  .project-gallery-slider__dots {
    width: 100%;
    justify-content: center;
  }

  .project-gallery-slider__action {
    display: flex;
  }

  .floorplans-slider {
    --floorplan-card-width: clamp(230px, 82vw, 320px);
    padding: 10px 12px 18px;
    scroll-padding-inline: 12px;
    gap: 12px;
  }

  .project-gallery-lightbox__figure,
  .project-gallery-lightbox__figure img {
    max-height: calc(100vh - 190px);
  }

  .project-gallery-lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .project-gallery-lightbox__thumbs {
    justify-content: flex-start;
    padding-inline: 10px;
  }

  .project-gallery-lightbox__thumb {
    width: 56px;
    height: 40px;
  }

  .project-location__row {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-section--premium #lead-form {
    grid-template-columns: 1fr;
  }

  .unit-card__facts {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 992px) {
  .contact-section__grid {
    grid-template-columns: minmax(0, 30%) minmax(0, 70%);
    align-items: center;
    text-align: left;
  }

  .contact-section__cta,
  .contact-section__form-wrap {
    max-width: none;
    margin: 0;
  }

  .contact-section__cta {
    align-self: center;
  }

  .contact-direct-links {
    gap: 18px;
  }

  .contact-direct-links a {
    text-decoration: none;
  }

  .contact-direct-links a:hover,
  .contact-direct-links a:focus-visible {
    text-decoration: underline;
  }
}

@media (max-width: 560px) {
  .floorplans-grid {
    grid-template-columns: 1fr;
  }

  .floorplans-slider {
    --floorplan-card-width: clamp(220px, 82vw, 300px);
  }
}
