:root {
  --brown-950: #39312e;
  --brown-900: #403733;
  --brown-800: #4b403b;
  --brown-700: #6d5f57;
  --taupe: #9d8774;
  --sand: #dfd2c2;
  --cream: #eee4d5;
  --ink: #3d3531;
  --white: #fff;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff;
}
img {
  display: block;
  max-width: 100%;
}
button,
input {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
.content-container {
  width: min(1190px, calc(100% - 48px));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.top-strip {
  height: 29px;
  background: var(--brown-950);
}

.site-header {
  height: 109px;
  background: #ded2c3;
  position: relative;
  z-index: 20;
}
.header-inner {
  width: min(1190px, calc(100% - 48px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  width: 170px;
  align-self: flex-start;
  padding-top: 7px;
}
.brand img {
  width: 170px;
  height: 91px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  text-transform: uppercase;
  color: #a18770;
  font-size: 14px;
  font-weight: 600;
}
.main-nav a {
  padding: 12px 0;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--brown-900);
}
.main-nav .nav-cta {
  color: #f7f0e7;
  background: #9e8772;
  padding: 14px 20px;
  border-radius: 4px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
}
.menu-toggle span {
  width: 27px;
  height: 2px;
  display: block;
  margin: 6px 0;
  background: var(--brown-900);
}

.hero {
  min-height: 685px;
  position: relative;
  background: url('img/banner/slide1.webp') center center / cover no-repeat;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 36, 32, 0.26);
}
.hero-inner {
  width: min(1190px, calc(100% - 48px));
  min-height: 685px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 315px;
  gap: 95px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 54px 0 90px;
}
.hero-copy {
  padding-left: 2px;
  transform: translateY(13px);
}
.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(46px, 4vw, 60px);
  line-height: 1.01;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.hero-copy > p {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
}
.income-stamp {
  width: 290px;
  color: var(--ink);
  background: rgba(235, 223, 208, 0.95);
  border-radius: 5px;
  padding: 12px 17px 13px;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}
.income-stamp strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
}
.income-stamp span {
  display: block;
  font-size: 17px;
  font-weight: 700;
}
.income-stamp b {
  font-size: 31px;
  vertical-align: -2px;
  margin-right: 4px;
}

.lead-form {
  align-self: center;
  color: var(--ink);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.23);
  transform: translateY(-2px);
}
.form-top {
  color: #eee6dd;
  background: rgba(58, 48, 44, 0.96);
  padding: 9px 20px;
  text-align: center;
  font-size: 22px;
  line-height: 1.04;
  font-weight: 700;
}
.form-body {
  padding: 11px 26px 39px;
  background: rgba(226, 216, 205, 0.9);
}
.form-body h2 {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 0.01em;
}
.form-body label {
  display: block;
  margin-bottom: 13px;
}
.form-body input {
  width: 100%;
  height: 34px;
  border: 1px solid #9d8d80;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  padding: 0 12px;
  outline: none;
}
.form-body input:focus {
  border-color: var(--brown-900);
  box-shadow: 0 0 0 2px rgba(57, 49, 46, 0.15);
}
.form-actions {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
}
.form-actions small {
  font-size: 13px;
  line-height: 1.02;
}
.form-actions button {
  min-width: 122px;
  border: 0;
  color: #eee7df;
  background: linear-gradient(90deg, #a99580, #423a37);
  padding: 10px 20px;
  text-transform: uppercase;
  cursor: pointer;
}
.form-status {
  min-height: 0;
  margin: 9px 0 0;
  font-size: 12px;
  font-weight: 600;
}

.feature-ribbon {
  width: min(1190px, calc(100% - 48px));
  min-height: 188px;
  margin: -86px auto 0;
  position: relative;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  color: #eee5dc;
  background: linear-gradient(
    180deg,
    rgba(106, 91, 82, 0.96),
    rgba(57, 48, 44, 0.98)
  );
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.13);
}
.feature-ribbon article {
  min-height: 140px;
  display: grid;
  place-content: center;
  text-align: center;
}
.feature-ribbon img {
  width: 46px;
  height: 49px;
  margin: 0 auto 11px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(90%) sepia(9%) saturate(368%)
    hue-rotate(345deg) brightness(92%);
}
.feature-ribbon p {
  margin: 0;
  font-size: 16px;
  line-height: 1.18;
  font-style: italic;
  font-weight: 500;
}

.section-dark {
  color: #f0e7de;
  background: var(--brown-900);
}
.how {
  min-height: 746px;
  margin-top: -102px;
  padding: 175px 0 88px;
}
.how-grid {
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1190px;
}
.how-photo {
  width: 600px;
  border-radius: 7px;
  box-shadow: -12px 12px 0 #e4d8c9;
}
.how-copy h2 {
  margin: -2px 0 42px;
  color: #e8dccd;
  font-size: 42px;
  line-height: 1.07;
}
.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.icon-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  margin-bottom: 20px;
  align-items: start;
}
.icon-list img {
  width: 47px;
  height: 47px;
  max-height: none;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(72%) sepia(13%) saturate(586%)
    hue-rotate(345deg) brightness(83%);
}
.icon-list p {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
}
.icon-list strong {
  font-weight: 800;
}

.investment {
  position: relative;
  min-height: 718px;
  color: #f2e9e0;
  background: url('img/banner/fundo.jpg') center 62% / cover no-repeat;
}
.investment-shade {
  position: absolute;
  inset: 0;
  background: rgba(41, 35, 31, 0.72);
}
.investment-grid {
  min-height: 718px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 520px 560px;
  align-items: start;
  max-width: 1190px;
  gap: 110px;
  padding-top: 80px;
}
.investment-copy h2 {
  margin: 0 0 20px;
  color: #e9ddcf;
  font-size: 42px;
  line-height: 1.08;
}
.investment-copy > p {
  margin: 0 0 42px;
  font-size: 18px;
  line-height: 1.35;
}
.price-offer {
  width: 488px;
  height: 112px;
  position: relative;
  margin-bottom: 57px;
  color: #fff;
  text-transform: none;
}
.price-prefix {
  position: absolute;
  left: 0;
  top: 3px;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  font-weight: 800;
}
.price-prefix strong {
  font-size: 32px;
  line-height: 1;
}
.price-prefix span {
  margin-top: 2px;
  font-size: 25px;
  line-height: 1;
  font-weight: 800;
}
.price-currency {
  position: absolute;
  left: 201px;
  top: 3px;
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
}
.price-value {
  position: absolute;
  left: 266px;
  top: -10px;
  font-size: 76px;
  line-height: 1;
  font-weight: 800;
}
.price-unit {
  position: absolute;
  left: 377px;
  top: 10px;
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
}
.price-offer::before,
.price-offer::after {
  content: '';
  position: absolute;
  top: 59px;
  height: 4px;
  background: #fff;
}
.price-offer::before {
  left: 200px;
  width: 51px;
}
.price-offer::after {
  left: 370px;
  width: 65px;
}
.price-offer > p {
  position: absolute;
  left: 0;
  top: 75px;
  margin: 0;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
}
.price-offer sup {
  font-size: 13px;
  vertical-align: super;
}
.whatsapp-button {
  width: 338px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  background: #ae9279;
  padding: 8px 18px;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 21px;
  line-height: 1.02;
  font-weight: 800;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.35);
}
.whatsapp-button img {
  width: 56px;
  height: 56px;
}
.whatsapp-button strong {
  font-size: 26px;
}
.tower-photo {
  width: 560px;
  height: 511px;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 10px 11px 0 #ded2c3;
}

.spaces {
  padding: 60px 0 65px;
  background: #e9e0d5;
}
.spaces .content-container {
  max-width: 1190px;
  position: relative;
  left: 7px;
}
.spaces-heading {
  display: grid;
  grid-template-columns: 315px 450px 315px;
  gap: 55px;
  align-items: start;
  margin-bottom: 70px;
}
.spaces-heading img {
  width: 255px;
}
.spaces-heading h2 {
  margin: 17px 0 0;
  font-size: 42px;
  line-height: 1.08;
}
.spaces-heading p {
  margin: 19px 0 0;
  font-size: 18px;
  line-height: 1.34;
}
.gallery-stage {
  position: relative;
}
.gallery-stage > img {
  width: 100%;
  aspect-ratio: 1.932 / 1;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 6px 14px rgba(56, 44, 35, 0.22);
}
.gallery-stage > img.contain {
  object-fit: contain;
  background: #eee5da;
}
.gallery-arrow {
  position: absolute;
  top: calc(100% + 115px);
  z-index: 2;
  transform: translateY(-50%);
  border: 0;
  color: #7d756c;
  background: transparent;
  width: 38px;
  height: 60px;
  cursor: pointer;
  font-size: 38px;
  line-height: 1;
}
.gallery-arrow.prev {
  left: -70px;
}
.gallery-arrow.next {
  right: -70px;
}
.gallery-thumbs {
  display: flex;
  gap: 27px;
  margin-top: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.gallery-thumbs::-webkit-scrollbar {
  display: none;
}
.gallery-thumbs button {
  flex: 0 0 calc((100% - 108px) / 5);
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  opacity: 1;
  box-shadow: 0 5px 10px rgba(56, 44, 35, 0.2);
  scroll-snap-align: start;
}
.gallery-thumbs button.selected {
  outline: 3px solid #9f8874;
  outline-offset: 3px;
}
.gallery-thumbs img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}
.gallery-thumbs button[data-fit="contain"] img {
  object-fit: contain;
  background: #eee5da;
}

.location {
  min-height: 442px;
  display: grid;
  grid-template-columns: 51.75% 48.25%;
  background: #e9e0d5;
}
.location-copy {
  width: 620px;
  max-width: none;
  margin-left: auto;
  padding: 7px 100px 30px 0;
}
.location-copy h2 {
  margin: 0 0 37px;
  font-size: 42px;
  line-height: 1.1;
}
.location-copy p {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.4;
}
.location > img {
  width: 100%;
  height: 442px;
  min-height: 442px;
  object-fit: cover;
}

.nearby {
  position: relative;
  min-height: 485px;
  background: #dfcebd;
  padding: 45px 0 22px;
  overflow: visible;
}
.nearby .content-container {
  position: relative;
  left: 9px;
}
.nik-pattern {
  position: absolute;
  top: -34px;
  left: 0;
  width: 51.75%;
  overflow: hidden;
  color: rgba(90, 70, 57, 0.28);
  font-size: 11px;
  letter-spacing: 7px;
  white-space: nowrap;
  text-align: left;
  padding-left: 17px;
}
.nearby h2 {
  margin: 0 0 48px;
  color: rgba(94, 76, 64, 0.13);
  font-size: 118px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 300;
  white-space: nowrap;
}
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(4, 260px);
  gap: 50px;
}
.nearby-grid article {
  height: 253px;
  min-height: 0;
  position: relative;
  border: 1px solid rgba(110, 82, 61, 0.42);
  padding: 39px 20px 10px;
}
.nearby-grid h3 {
  position: absolute;
  left: 20px;
  top: -24px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding-right: 13px;
  background: #dfcebd;
  font-size: 24px;
  line-height: 46px;
}
.nearby-grid h3 img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.nearby-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nearby-grid li {
  display: flex;
  align-items: flex-end;
  padding: 0;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.12;
}
.nearby-grid li > span {
  white-space: nowrap;
}
.nearby-grid article:nth-child(3) li {
  margin-bottom: 8px;
}
.nearby-grid li::after {
  content: '';
  flex: 1;
  min-width: 8px;
  margin: 0 4px 4px;
  border-bottom: 2px dotted rgba(61, 51, 45, 0.7);
}
.nearby-grid li:last-child {
  margin-bottom: 0;
}
.nearby-grid b {
  order: 3;
  white-space: nowrap;
  font-size: 16px;
}

.opportunity {
  min-height: 1337px;
  position: relative;
  padding: 0;
  overflow: hidden;
  color: #f0e7de;
  background: #fff;
}
.opportunity-bg {
  position: absolute;
  inset: 0 0 auto;
  height: 1064px;
  background: url('img/video/slide1.webp') center / cover no-repeat;
  opacity: 1;
}
.opportunity-top {
  max-width: 1190px;
  height: 523px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 360px 716px;
  gap: 114px;
  align-items: start;
  padding-top: 98px;
}
.opportunity-copy {
  padding-top: 48px;
}
.opportunity-copy h2 {
  margin: 0 0 29px;
  font-size: 42px;
  line-height: 1.08;
}
.opportunity-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.34;
}
.video-button {
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.video-button > img {
  width: 716px;
  border-radius: 6px;
  box-shadow: none;
}
.play-icon {
  display: none;
}
.floorplans {
  max-width: 1190px;
  position: relative;
  z-index: 1;
  padding: 110px 0 0;
  color: #f0e7de;
}
.floorplans > h2 {
  margin: 0 0 35px;
  text-align: center;
  font-size: 42px;
  line-height: 1.2;
}
.floorplan-grid {
  display: grid;
  grid-template-columns: 535px 476px;
  gap: 179px;
}
.floorplan-grid article {
  min-width: 0;
}
.plan-heading {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 25px;
}
.plan-heading span {
  font-size: 65px;
  line-height: 1;
  font-weight: 300;
  white-space: nowrap;
}
.plan-heading p {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}
.floorplan-grid article > img {
  width: 100%;
  max-height: none;
  margin-top: 22px;
  object-fit: contain;
  object-position: center top;
}

.project-details {
  min-height: 676px;
  padding: 5px 0 48px;
  background: #fff;
}
.details-grid {
  position: relative;
  left: 7px;
  max-width: 1190px;
  display: grid;
  grid-template-columns: 530px 510px;
  gap: 150px;
}
.details-grid h2 {
  margin: 0 0 15px;
  color: #463e39;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 300;
  text-transform: uppercase;
}
.details-grid h3 {
  margin: 15px 0 3px;
  font-size: 21px;
  line-height: 1.25;
}
.details-grid li {
  font-size: 17px;
  line-height: 1.45;
}
.details-grid article:first-child h3:nth-of-type(2) {
  margin-top: 25px;
}
.details-grid ul {
  margin: 0;
  padding-left: 16px;
}
.details-grid article:last-child p {
  margin: 0 0 27px;
  font-size: 21px;
  line-height: 1.27;
}

.plaink {
  min-height: 251px;
  padding: 59px 0 30px;
  background: #ded0c2;
}
.plaink-grid {
  position: relative;
  left: 7px;
  max-width: 1190px;
  display: grid;
  grid-template-columns: 350px 220px 210px 230px;
  gap: 60px;
  align-items: start;
}
.plaink-grid h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 300;
}
.plaink-grid article > strong {
  display: block;
  line-height: 0.98;
}
.plaink-grid article > strong span,
.plaink-grid article > strong small {
  display: block;
  font-weight: 700;
}
.stat-experience strong span {
  font-size: 43px;
}
.stat-experience strong small {
  font-size: 25px;
}
.stat-commitment strong span,
.stat-commitment strong small {
  font-size: 28px;
}
.stat-built strong small {
  font-size: 25px;
}
.stat-built strong span {
  font-size: 38px;
}
.plaink-grid article p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.35;
}

.site-footer {
  color: #ded5cc;
  background: #342f2b;
  border-top: 3px solid #d9ccbe;
}
.footer-grid {
  height: 251px;
  display: grid;
  grid-template-columns: 190px 580px 300px;
  gap: 60px;
  align-items: start;
}
.player-brand {
  margin-top: 48px;
}
.player-brand > img {
  width: 151px;
  height: 122px;
  object-fit: contain;
}
.socials {
  display: flex;
  gap: 7px;
  margin: 26px 0 0 24px;
}
.socials img {
  width: 29px;
  height: 29px;
  opacity: 0.92;
}
.footer-text {
  margin-top: 61px;
}
.footer-text h2 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.2;
}
.footer-text p {
  max-width: 550px;
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.35;
}
.footer-text strong {
  display: block;
  max-width: 535px;
  font-size: 17px;
  line-height: 1.28;
}
.footer-cta {
  margin-top: 55px;
  text-align: center;
}
.footer-cta p {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}
.footer-cta a {
  position: relative;
  display: block;
  width: 300px;
  min-height: 74px;
  color: #fff;
  background: #b89d87;
  padding: 11px 54px 10px 27px;
  border-radius: 8px;
  font-size: 23px;
  line-height: 1.12;
  font-weight: 800;
  text-transform: uppercase;
  text-align: left;
}
.footer-cta a span,
.footer-cta strong {
  display: block;
  font-size: inherit;
  white-space: nowrap;
}
.footer-cta img {
  position: absolute;
  right: 7px;
  top: 13px;
  width: 58px;
  height: 72px;
  object-fit: contain;
}
.footer-bottom {
  height: 34px;
  background: linear-gradient(90deg, #a18b78 0%, #6d5e54 47%, #4a403b 100%);
}
.copyright {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(244, 237, 230, 0.68);
  font-size: 14px;
}

.video-modal {
  width: min(900px, calc(100% - 30px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  color: #fff;
  background: #292321;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.6);
}
.video-modal::backdrop {
  background: rgba(31, 26, 24, 0.84);
}
.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  font-size: 27px;
  cursor: pointer;
}
.modal-content video {
  display: block;
  width: 100%;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
    font-size: 11px;
  }
  .hero-inner {
    gap: 45px;
  }
  .gallery-arrow.prev {
    left: 8px;
  }
  .gallery-arrow.next {
    right: 8px;
  }
}

@media (max-width: 820px) {
  .top-strip {
    height: 12px;
  }
  .content-container,
  .header-inner,
  .hero-inner,
  .feature-ribbon,
  .copyright {
    width: min(100% - 32px, 650px);
  }
  .site-header {
    height: 86px;
  }
  .brand,
  .brand img {
    width: 125px;
  }
  .brand img {
    height: 69px;
  }
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 2;
  }
  .main-nav {
    position: absolute;
    inset: 86px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 24px 26px;
    color: #836d5b;
    background: #e7dccf;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    padding: 11px 4px;
  }
  .main-nav .nav-cta {
    text-align: center;
    margin-top: 7px;
  }
  .hero,
  .hero-inner {
    min-height: auto;
  }
  .hero {
    background-position: 41% center;
  }
  .hero-inner {
    display: block;
    padding: 70px 0 115px;
  }
  .hero-copy {
    transform: none;
  }
  .hero h1 {
    font-size: clamp(39px, 12vw, 56px);
  }
  .hero-copy > p {
    font-size: 14px;
  }
  .desktop-only {
    display: none;
  }
  .lead-form {
    max-width: 390px;
    margin-top: 45px;
    transform: none;
  }
  .feature-ribbon {
    grid-template-columns: 1fr 1fr;
    margin-top: -72px;
    padding: 18px 0;
  }
  .feature-ribbon article {
    min-height: 122px;
  }
  .how {
    margin-top: -95px;
    padding-top: 170px;
  }
  .how-grid,
  .investment-grid,
  .spaces-heading,
  .nearby-grid,
  .opportunity-top,
  .details-grid,
  .plaink-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .how-grid {
    gap: 32px;
  }
  .how-photo {
    width: 100%;
    height: auto;
  }
  .how-copy h2 {
    font-size: 36px;
  }
  .icon-list p {
    font-size: 16px;
  }
  .investment {
    padding: 60px 0;
  }
  .investment,
  .investment-grid {
    min-height: auto;
  }
  .investment-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 35px;
    padding-top: 0;
  }
  .investment-copy {
    min-width: 0;
  }
  .tower-photo {
    width: 100%;
    height: auto;
    max-height: none;
  }
  .spaces-heading {
    gap: 18px;
  }
  .spaces .content-container {
    left: 0;
  }
  .spaces-heading p {
    max-width: 360px;
  }
  .gallery-thumbs {
    gap: 18px;
  }
  .gallery-thumbs button {
    flex-basis: calc((100% - 36px) / 3);
  }
  .gallery-arrow {
    top: 50%;
    background: rgba(238, 229, 217, 0.88);
  }
  .location {
    grid-template-columns: 1fr;
  }
  .location-copy {
    max-width: 650px;
    width: calc(100% - 32px);
    margin: auto;
    padding: 55px 0 35px;
  }
  .nearby .content-container {
    left: 0;
  }
  .nik-pattern {
    width: 100%;
  }
  .nearby h2 {
    font-size: 56px;
  }
  .nearby-grid {
    grid-template-columns: 1fr 1fr;
  }
  .opportunity-top {
    gap: 35px;
  }
  .opportunity {
    min-height: auto;
  }
  .opportunity-top {
    height: auto;
    padding-top: 70px;
  }
  .opportunity-copy {
    max-width: 400px;
  }
  .video-button > img {
    width: 100%;
  }
  .floorplans {
    padding-top: 80px;
  }
  .floorplan-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .details-grid {
    gap: 45px;
  }
  .plaink-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    height: auto;
    gap: 30px;
    padding: 42px 0;
  }
  .player-brand {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 0;
  }
  .player-brand > img {
    width: 130px;
    height: auto;
  }
  .socials {
    margin: 0;
  }
  .footer-text,
  .footer-cta {
    margin-top: 0;
  }
  .footer-cta {
    text-align: left;
  }
  .footer-cta p {
    text-align: left;
  }
  .footer-cta a {
    max-width: 300px;
  }
  .footer-bottom {
    height: auto;
    min-height: 50px;
  }
  .copyright {
    min-height: 50px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    font-size: 11px;
  }
}

@media (max-width: 540px) {
  .hero h1 {
    font-size: 41px;
  }
  .hero-copy > p {
    font-size: 13px;
  }
  .income-stamp {
    width: 270px;
  }
  .form-top {
    font-size: 19px;
  }
  .form-body h2 {
    font-size: 21px;
  }
  .feature-ribbon {
    width: calc(100% - 20px);
  }
  .feature-ribbon p {
    font-size: 13px;
  }
  .how-photo {
    aspect-ratio: 1 / 0.82;
    object-fit: cover;
  }
  .investment-copy h2 {
    font-size: 36px;
  }
  .investment-copy > p {
    font-size: 16px;
  }
  .price-offer {
    width: 488px;
    margin-bottom: 6px;
    transform: scale(0.7);
    transform-origin: left top;
  }
  .spaces {
    padding-top: 58px;
  }
  .project-details,
  .plaink,
  .nearby {
    min-height: auto;
  }
  .gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-right: -12px;
    padding: 3px 12px 10px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery-thumbs::-webkit-scrollbar {
    display: none;
  }
  .gallery-thumbs button {
    flex-basis: 124px;
    scroll-snap-align: start;
  }
  .nearby-grid {
    grid-template-columns: 1fr;
  }
  .nearby h2 {
    font-size: 42px;
    letter-spacing: 0.08em;
  }
  .opportunity {
    padding-top: 55px;
  }
  .opportunity-bg {
    height: 650px;
  }
  .floorplans {
    padding-top: 55px;
    color: #5c4d45;
  }
  .floorplans > h2 {
    color: #5c4d45;
  }
  .plan-heading p {
    color: #5c4d45;
  }
  .floorplan-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .plan-heading span {
    font-size: 32px;
  }
  .project-details {
    padding: 55px 0;
  }
  .plaink-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
