﻿:root {
  --bg: #fff;
  --surface: #ffffff;
  --surface-2: #f1f1f1;
  --text: #111111;
  --muted: #4b4b4b;
  --border: #d9d9d9;
  --accent: #0b7fce;
  --accent-dark: #003459;
  --max-width: 1360px;
  --radius: 16px;
  --font-base: "Lato", sans-serif;
  --transition-fast: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-base);
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}


.container {
  width: min(100% - 36px, 1292px); /* 18px each side */
  margin: 0 auto;
}

/* 1440 */
@media (max-width: 1440px) {
  .container {
    max-width: 1140px;
  }

  .feature-banner-home__overlay {
    padding-left: 670px;
  }
}

/* 1200 */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }

   .feature-banner-home__overlay {
    padding-left: clamp(28px, 5vw, 56px);
  }

}

/* 992 */
@media (max-width: 992px) {
  .container {
    max-width: 920px;
  }
}

/* 768 */
@media (max-width: 768px) {
  .container {
    max-width: 480px;
  }
}

/* 480 */
@media (max-width: 480px) {
  .container {
    width: calc(100% - 36px); /* EXACT: 18px each side */
    max-width: 354px;
  }
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 1.05;
}

h2 {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 56px;
  line-height: 66px;
}

h3 {
  font-size: 1.15rem;
}

.section {
  padding: 100px 0;
}

.eyebrow {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 20px;
  font-style: italic;
  line-height: 26px;
  letter-spacing: 4%;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow-light {
  color: #fff;
  font-style: italic;
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  transition: background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-sm {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.88rem;
}

.placeholder-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #a8a8a8, #d6d6d6);
  color: rgba(0, 0, 0, 0.55);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 17px 50px;
  background: #fff;
  border-bottom: 1px solid #ececec;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  width: auto;
  height: 56.12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px 12px 12px 4px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

.brand-text strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.brand-text small {
  display: block;
  margin-top: 2px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #666;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.primary-nav a {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  padding: 8px 0;
  letter-spacing: 4%;
  white-space: nowrap;
}

.primary-nav a:first-child {
  font-weight: 400;
}

.pill-link {
  border: 2px solid var(--accent) !important;
  border-radius: 999px;
  font-weight: 700 !important;
  padding: 6px 18px !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-actions div {
  display: flex;
  gap: 8px;
}

.header-actions a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /* text-transform: uppercase; */
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
}

.hero-home {
  position: relative;
  min-height: 596px;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.hero-kicker span {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 4%;
  text-transform: uppercase;
}

.hero-kicker-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.hero-title {
  font-size: 96px;
  font-weight: 700;
}

.hero-script {
  margin-top: 20px;
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  line-height: 42px;
}

.section-home-about {
  background: #fff;
}

.home-about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  column-gap: 80px;
  row-gap: 34px;
  align-items: start;
  border-bottom: 1px solid #000;
}

.home-about > div {
  width: 100%;
}

.about-headline,
.about-leasing {
  max-width: 532px;
}

.about-headline {
  margin: 0;
  align-self: center;
}

.about-leasing {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}

.about-media,
.about-copy {
  min-width: 0;
}

.about-media {
  grid-column: 2;
  grid-row: 1;
}

.about-copy {
  grid-column: 2;
  grid-row: 2;
  color: #222;
}

.about-copy p {
  font-size: 20px;
  line-height: 32px;
}

.about-copy p + p {
  margin-top: 18px;
}

.availability-copy {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 34px;
}

.about-image-card {
  overflow: hidden;
  border-radius: 14px;
}

.about-image {
  width: 100%;
  height: 400px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

.btn-cta {
  color: #000;
  font-family: var(--font-base);
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  line-height: 1;
  padding: 15px 24px;
}

.btn-cta::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: 44px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .home-about {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-bottom: none;
    padding-top: 100px;
    padding-bottom: 100px;
    border-bottom: 1px solid #000;
  }

  .about-headline {
    max-width: 320px;
    margin-bottom: 30px;
    align-self: stretch;
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: 0;
  }

  .about-leasing {
    /* max-width: 300px; */
    margin-bottom: 40px;
  }

  .availability-copy {
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 1.4;
    color: #222;
  }

  .btn-cta {
    min-height: 34px;
    padding: 15px 25px;
    font-size: 18px;
    line-height: 1;
    border-radius: 999px;
  }

  .btn-cta::after {
    width: 7px;
    height: 7px;
    margin-left: 18px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
  }

  .about-media {
    order: 3;
    margin-bottom: 50px;
  }

  .about-image-card {
    border-radius: 22px;
  }

  .about-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1.28 / 1;
    border-radius: 22px;
    object-fit: cover;
  }

  .about-copy {
    order: 4;
    color: #1f1f1f;
  }

  .about-copy p {
    font-size: 16px;
    line-height: 1.9;
  }

  .about-copy p + p {
    margin-top: 22px;
  }

  .home-about::after {
    content: "";
    display: block;
    width: 100%;
    margin-top: 34px;
    /* border-top: 1px solid #8e8e8e; */
  }
}

.section-label h2 {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
}

.section-gallery {
  padding: 100px 0;
  overflow: hidden;
}

.section-gallery .section-label {
  margin-bottom: 52px;
}

.section-gallery .section-label .eyebrow {
  margin-bottom: 14px;
  font-size: 20px;
  font-style: italic;
  line-height: 26px;
  font-weight: 400;
}

.section-gallery .section-label h2 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 400;
}

.gallery-stage {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 300px 1072px 300px;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.gallery-side {
  position: relative;
  width: 300px;
  height: 630px;
  overflow: hidden;
  isolation: isolate;
}

.gallery-side-left {
  border-radius: 16px 0 0 16px;
}

.gallery-side-right {
  border-radius: 0 16px 16px 0;
}

.gallery-side[data-gallery-panel],
.gallery-main-wrap[data-gallery-panel] {
  position: relative;
}

.gallery-side-image,
.gallery-main-image {
  display: block;
  object-fit: cover;
}

.gallery-panel-slide {
  position: absolute;
  inset: 0;
  transition: transform 420ms ease, opacity 420ms ease;
  will-change: transform, opacity;
}

.gallery-panel-slide.is-current {
  z-index: 1;
}

.gallery-panel-slide.is-entering {
  z-index: 2;
}

.gallery-panel-slide.is-from-right {
  transform: translate3d(100%, 0, 0);
}

.gallery-panel-slide.is-from-left {
  transform: translate3d(-100%, 0, 0);
}

.gallery-panel-slide.is-to-left {
  transform: translate3d(-100%, 0, 0);
  opacity: 0;
}

.gallery-panel-slide.is-to-right {
  transform: translate3d(100%, 0, 0);
  opacity: 0;
}

.gallery-panel-slide.is-side-slide {
  transition: opacity 260ms ease;
}

.gallery-panel-slide.is-side-slide.is-from-right,
.gallery-panel-slide.is-side-slide.is-from-left,
.gallery-panel-slide.is-side-slide.is-to-left,
.gallery-panel-slide.is-side-slide.is-to-right {
  transform: none;
}

.gallery-panel-slide.is-side-slide.is-from-right,
.gallery-panel-slide.is-side-slide.is-from-left {
  opacity: 0;
}

.gallery-side-image {
  width: 100%;
  height: 630px;
  max-width: 100%;
}

.gallery-side-left .gallery-side-image {
  border-radius: 0;
  object-position: right center;
}

.gallery-side-right .gallery-side-image {
  border-radius: 0;
  object-position: left center;
}

.gallery-main-wrap {
  position: relative;
  width: 1072px;
  height: 730px;
  overflow: hidden;
  border-radius: 16px;
}

.gallery-main-image {
  width: 1072px;
  height: 730px;
}

.slider-btn.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  z-index: 3;
}

.slider-btn.gallery-arrow img {
  width: 35px;
  height: 35px;
}

.gallery-arrow-left {
  left: 160px;
}

.gallery-arrow-right {
  right: 160px;
}

.gallery-thumbs {
  display: flex;
  justify-content: center;
  gap: 5px;
  width: fit-content;
  margin: 12px auto 0;
}

.gallery-thumb {
  width: 104px;
  height: 104px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  background: #cfcfcf;
  cursor: pointer;
  flex: 0 0 auto;
  box-sizing: border-box;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb.is-active {
  border-color: #5fa7df;
}

.gallery-thumbs.is-animating .gallery-thumb.is-active {
  transform: scale(1.02);
}

.gallery-mobile-controls {
  display: none;
}

.gallery-mobile-nav {
  display: none;
}

.gallery-mobile-count {
  margin: 0;
}

@media (max-width: 768px) {
  .section-gallery {
    padding: 100px 0 100px;
  }

  .section-gallery .container {
    /* width: calc(100% - 20px); */
  }

  .section-gallery .section-label {
    margin-bottom: 28px;
  }

  .section-gallery .section-label .eyebrow {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.2;
    font-style: italic;
    letter-spacing: 0.04em;
  }

  .section-gallery .section-label h2 {
    max-width: 320px;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 400;
  }

  .gallery-stage {
    width: 100%;
    left: 0;
    transform: none;
    display: block;
  }

  .gallery-main-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.9;
    border-radius: 28px;
    overflow: hidden;
  }

  .gallery-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gallery-side,
  .gallery-arrow {
    display: none !important;
  }

  .gallery-thumbs {
    width: 100%;
    margin: 12px 0 0;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 2px 2px;
    scrollbar-width: none;
  }

  .gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  .gallery-thumb {
    width: 66px;
    height: 66px;
    /* flex: 0 0 58px; */
    border-radius: 10px;
    border: 2px solid transparent;
    background: #cfcfcf;
  }

  .gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gallery-thumb.is-active {
    border-color: #0b7fce;
  }

  .gallery-mobile-controls {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 18px;
    padding: 0 4px;
  }

  .gallery-mobile-nav {
    width: 60px;
    height: 60px;
    /* flex: 0 0 52px; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0b7fce;
    border-radius: 50%;
    background: transparent;
    color: #111;
    font-size: 28px;
    line-height: 1;
    padding: 0;
  }

  .gallery-mobile-count {
    flex: 1 1 auto;
    margin: 0;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    color: #111;
  }

  .gallery-mobile-prev span,
  .gallery-mobile-next span {
    display: inline-block;
    line-height: 1;
    transform: translateY(-1px);
  }
}

.section-amenities {
  background: #ededed;
  padding-bottom: 228px;
}

.amenities-layout {
  display: flex;
  gap: 68px;
  align-items: flex-start;
  margin-top: 4px;
}

.amenities-eyebrow {
  font-weight: 400;
  font-size: 20px;
  font-style: italic;
  line-height: 26px;
  letter-spacing: 4%;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.amenities-intro {
  max-width: 372px;
}

@media (max-width: 992px) {
  .amenities-intro {
    max-width: 100%;
  }
}

.amenities-intro h2 {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 20px;
}

.amenities-intro p {
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
}

.amenities-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 30px 35px;
}

.amenity-item {
  display: flex;
  gap: 14px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  /* max-width: 262px; */
}

.amenity-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.amenity-bullet {
  color: var(--accent);
}

.feature-banner-home {
  position: relative;
  margin-top: 44px;
  width: 100%;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: -508px;
}

.feature-banner-home img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-banner-home__overlay {
  position: absolute;
  inset: 0 0 0 auto;
  width: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  color: #fff;
  padding: 124px 110px 124px 770px;
}

.feature-bullet-list {
  margin: 18px 0 0;
  padding-left: 22px;
  max-width: 405px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
}

.feature-bullet-list li + li {
  margin-top: 8px;
}

@media (max-width: 992px) {
  .feature-bullet-list {
    max-width: 360px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
  }
}

@media (max-width: 768px) {
  .feature-banner-home {
    margin-top: 80px;
    border-radius: 28px;
    margin-bottom: -508px;
  }

  .feature-banner-home img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
  }

  .feature-banner-home__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    padding: 101px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.28) 0%,
      rgba(0, 0, 0, 0.34) 28%,
      rgba(0, 0, 0, 0.44) 58%,
      rgba(0, 0, 0, 0.54) 100%
    );
    color: #fff;
  }

  .feature-banner-home__overlay .eyebrow-light {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 1.2;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
  }

  .feature-bullet-list {
    margin: 0 0 0;
    padding-left: 20px;
    /* max-width: 270px; */
    font-size: 18px;
    line-height: 1.55;
    font-weight: 400;
  }

  .feature-bullet-list li {
    margin: 0;
  }

  .feature-bullet-list li + li {
    margin-top: 4px;
  }

  .feature-bullet-list li::marker {
    color: #fff;
  }
}

.section-floorplans {
  background: #fff;
  padding-top: 379px;
}

.centered {
  justify-content: center;
}

.filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 32px 0 30px;
}

.chip {
  border: 1px solid #101010;
  border-radius: 999px;
  background: #fff;
  padding: 5px 18px;
  cursor: pointer;
  font-size: 18px;
  font-style: italic;
}

.chip.is-active {
  background: #000;
  color: #fff;
}

.floorplan-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.floorplan-card-home {
  position: relative;
  background: #f8f8f8;
  border-radius: 14px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  width: 100%;
}

.floorplan-image-wrap {
  position: relative;
  background: #fff;
  /* aspect-ratio: 1 / 1; */
  max-height: 412px;
  border-radius: 14px 14px 0 0;
  border: 2px solid #e8e8e8;
  overflow: visible;
}

.floorplan-image-trigger {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.floorplan-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floorplan-badge {
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #107cbb;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.floorplan-body {
  position: relative;
  padding: 34px 24px 22px;
  background: #ededed;
  z-index: 1;
}

.floorplan-body h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.floorplan-submeta,
.floorplan-price {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 400;
}

.floorplan-submeta {
  font-size: 18px;
  margin-bottom: 2px;
  font-style: italic;
}

.floorplan-price {
  margin-top: 10px;
}

.floorplan-price strong,
.floorplan-price b {
  font-weight: 700;
}

.floorplan-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.floorplan-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #4a4a4a;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
}

.floorplan-action img {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.floorplan-action:hover {
  text-decoration: underline;
}

.floorplan-modal-open {
  overflow: hidden;
}

.floorplan-modal {
  --floorplan-spin-surface: #cee3e8;
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.floorplan-modal[hidden] {
  display: none;
}

.floorplan-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.72);
}

.floorplan-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-width: 960px;
  max-height: calc(100vh - 64px);
  padding: 24px;
  border-radius: 20px;
  background: var(--floorplan-spin-surface);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
  overflow: auto;
}

.floorplan-modal__dialog.is-spin-view {
  width: min(1240px, 100%);
  max-width: 1240px;
}

.floorplan-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #f1f1f1;
  color: #111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.floorplan-modal__title {
  margin: 0 40px 16px 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.floorplan-modal__media {
  position: relative;
  width: 100%;
  background: var(--floorplan-spin-surface);
}

.floorplan-modal__dialog.is-spin-view .floorplan-modal__media {
  max-width: 1160px;
  margin: 0 auto;
}

.floorplan-modal__image {
  display: block;
  width: 100%;
  max-height: calc(100vh - 180px);
  object-fit: contain;
}

.floorplan-modal__spin {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: min(70vh, 720px);
  max-height: calc(100vh - 180px);
  overscroll-behavior: contain;
  touch-action: none;
}

.floorplan-modal__spin .Sirv {
  width: 100%;
  height: 100%;
  touch-action: none;
}

.floorplan-mobile-controls {
  display: none;
}

@media (max-width: 768px) {
  .section-floorplans {
    background: #fff;
    padding-top: 320px;
    padding-bottom: 100px;
    /* position: relative; */
  }

  .section-floorplans .section-label {
    margin-bottom: 18px;
  }

  .section-floorplans .eyebrow {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.2;
    font-style: normal;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-style: italic;
  }

  .section-floorplans .section-label h2 {
    /* max-width: 230px; */
    font-size: 22px;
    line-height: 1.38;
    font-weight: 400;
  }

  .filter-chips {
    gap: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 16px 0 20px;
    padding-bottom: 2px;
    scrollbar-width: none;
    justify-content: center;
  }

  .filter-chips::-webkit-scrollbar {
    display: none;
  }

  .chip {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 3px 15px;
    font-size: 16px;
    line-height: 24px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .floorplan-container {
    display: block;
  }

  .floorplan-card-home {
    display: none;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #dcdcdc;
    background: #ededed;
  }

  .floorplan-card-home.is-visible-mobile {
    display: block;
  }

  .floorplan-image-wrap {
    aspect-ratio: auto;
    height: 330px;
    max-height: none;
    border: none;
    border-bottom: none;
    border-radius: 20px 20px 0 0;
    /* background: #f5f5f5; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 18px 34px;
  }

  .floorplan-image-trigger {
    height: 100%;
  }

  .floorplan-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .floorplan-badge {
    min-width: 54px;
    height: 30px;
    padding: 0 10px;
    bottom: -15px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    border-radius: 999px;
  }

  .floorplan-body {
    padding: 30px 20px 20px;
    background: #e9e9e9;
  }

  .floorplan-body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .floorplan-submeta {
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.45;
    font-style: italic;
  }

  .floorplan-price {
    margin-top: 0;
    font-size: 18px;
    line-height: 1.45;
  }

  .floorplan-actions {
    justify-content: space-around;
    gap: 18px;
    margin-top: 14px;
    flex-wrap: nowrap;
  }

  .floorplan-action {
    gap: 6px;
    font-size: 14px;
    line-height: 1.2;
    color: #2f2f2f;
    white-space: nowrap;
  }

  .floorplan-action img {
    width: 14px;
    height: 14px;
  }

  .floorplan-mobile-controls {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding: 0 2px;
  }

  .floorplan-mobile-nav {
    width: 60px;
    height: 60px;
    border: 2px solid #0b7fce;
    border-radius: 50%;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    color: #111;
    padding: 0;
    /* flex: 0 0 36px; */
  }

  .floorplan-mobile-nav span {
    display: inline-block;
    line-height: 1;
    transform: translateY(-1px);
  }

  .floorplan-mobile-count {
    flex: 1 1 auto;
    text-align: center;
    margin: 0;
    font-size: 16px;
    line-height: 1.37;
    color: #111;
  }

  .section-floorplans .floorplan-mobile-controls.mobile-only {
    display: flex !important;
  }

  .floorplan-modal {
    padding: 16px;
  }

  .floorplan-modal__dialog {
    padding: 20px 16px 16px;
    max-height: calc(100vh - 32px);
  }

  .floorplan-modal__dialog.is-spin-view {
    width: 100%;
    max-width: none;
  }

  .floorplan-modal__title {
    margin-right: 32px;
    font-size: 18px;
  }

  .floorplan-modal__image {
    max-height: calc(100vh - 140px);
  }

  .floorplan-modal__spin {
    min-height: 55vh;
  }
}

.section-location-home {
  padding: 0;
}

.location-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 390px;
}

.location-image-panel {
  background: #bdbdbd;
  display: flex;
  min-height: 390px;
  overflow: hidden;
}

.location-map-embed {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  min-height: 390px;
  border: 0;
}

.location-content-panel {
  display: flex;
  align-items: center;
  background: var(--accent-dark);
  color: #fff;
}

.location-content-inner {
  padding: 227px 218px 227px 124px;
}

.location-content-inner p {
  max-width: 520px;
}

.location-content-inner .eyebrow-light {
  margin-bottom: 20px;
  font-size: 22px;
  font-style: italic;
  line-height: 28px;
  letter-spacing: 0.04em;
}

.location-content-inner h2 {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 34px;
}

.location-content-inner .eyebrow-copy {
  font-size: 20px;
  line-height: 32px;
}

.location-content-inner .bullet-list {
  margin-top: 20px;
  padding-left: 20px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.bullet-list li + li {
  margin-top: 8px;
}

.bullet-list-light li {
  color: #fff;
}

@media (max-width: 768px) {
  .location-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .location-image-panel {
    min-height: 296px;
  }

  .location-content-panel {
    align-items: flex-start;
  }

  .location-content-inner {
    width: 100%;
    padding: 42px 12px 36px;
  }

  .location-content-inner p {
    max-width: 100%;
  }

  .location-content-inner .eyebrow-light {
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.2;
    font-style: normal;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .location-content-inner h2 {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
  }

  .location-content-inner .eyebrow-copy {
    font-size: 14px;
    line-height: 1.65;
    font-weight: 400;
  }

  .location-content-inner .bullet-list {
    margin-top: 12px;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 400;
  }

  .bullet-list li + li {
    margin-top: 4px;
  }

  .location-image-panel.placeholder-card {
    justify-content: flex-start;
    padding: 0 16px;
    color: #111;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
}

.section-waitlist-home {
  padding: 100px 0;
}

.waitlist-shell {
  position: relative;
  width: 100%;
  min-height: 625px;
}

.waitlist-card {
  position: relative;
  width: calc(100% - 110px);
  min-height: 625px;
  margin-left: auto;
  background: #e9e9e9;
  border-radius: 24px;
}

.waitlist-image-wrap {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  z-index: 2;
}

.waitlist-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.waitlist-copy {
  position: absolute;
  top: 50%;
  right: 45px;
  transform: translateY(-50%);
  max-width: 552px;
  z-index: 2;
}

.waitlist-copy .eyebrow {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.waitlist-copy h2 {
  margin: 0 0 20px;
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
}

.waitlist-copy p:not(.eyebrow) {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #242424;
}

.waitlist-copy .btn {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .section-waitlist-home {
    padding: 100px 0 100px;
  }

  .waitlist-shell {
    position: relative;
    width: 100%;
    min-height: auto;
    padding-top: 0 !important;
  }

  .waitlist-image-wrap {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    width: calc(100% - 32px) !important;
    margin: 0 auto !important;
    transform: none !important;
    z-index: 3;
  }

  .waitlist-image {
    display: block;
    width: 100%;
    height: auto !important;
    border-radius: 24px;
    object-fit: cover;
  }

  .waitlist-card {
    position: relative !important;
    width: 100% !important;
    min-height: auto !important;
    margin: -85px 0 0 !important; /* overlap from middle of image */
    padding: 110px 16px 28px !important;
    border-radius: 24px;
    background: #e9e9e9;
    z-index: 2;
  }

  .waitlist-copy {
    position: static !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    max-width: 100% !important;
  }

  .waitlist-copy .eyebrow {
    margin: 0 0 20px;
    font-size: 20px;
    font-style: italic;
    line-height: 1.27;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .waitlist-copy h2 {
    margin: 0 0 20px;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 400;
  }

  .waitlist-copy p:not(.eyebrow) {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.75;
    color: #242424;
  }

  .waitlist-copy .btn {
    margin-top: 12px;
  }
}

.contact-widget {
  position: fixed;
  right: 12px;
  top: 220px;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.contact-widget__toggle {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid var(--border);
  cursor: pointer;
}

.contact-widget__panel {
  width: 148px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.contact-widget__item {
  display: block;
  width: 100%;
  padding: 12px;
  border-top: 1px solid #eee;
  font-size: 0.83rem;
  background: #fff;
}

.contact-widget__item:first-child {
  border-top: none;
}

.contact-widget__item.is-active {
  background: #4c61d9;
  color: #fff;
}

.contact-widget.is-collapsed .contact-widget__panel {
  display: none;
}

.site-footer {
  padding-bottom: 12px;
}

.footer-topline {
  border-top: 1px solid #b6b6b6;
  margin-bottom: 46px;
}

.footer-grid-home {
  display: flex;
  /* grid-template-columns: 148px minmax(250px, 1.55fr) minmax(90px, 0.62fr) minmax(120px, 0.84fr) minmax(220px, 1.28fr); */
  gap: 42px;
  justify-content: space-between;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
}

.footer-link-explore-residents-col {
  display: flex;
  gap: 28px;
  justify-content: space-between;
  width: 25%;
}

.footer-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.footer-brand-col img {
  width: 150px;
  height: auto;
}

.footer-brand-col .btn {
  min-height: 38px;
  margin-top: 0;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  background: #0b7fce;
  white-space: nowrap;
}

.footer-home h4,
.footer-heading {
  margin: 0 0 20px;
  font-size: 16px;
  /* color: #747474; */
  letter-spacing: 0.04em;
  font-weight: 400;
  text-transform: uppercase;
}

.footer-home p,
.footer-links li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.footer-label {
  font-weight: 700;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 12px;
}

.footer-bottom-home {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 34px;
}

.footer-bottom-home p {
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
}

.footer-bottom-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.footer-contact-block + .footer-contact-block {
  /* margin-top: 14px; */
}

.footer-office-title {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700 !important;
}

.footer-contact-item,
.footer-contact-item-start {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  color: #000;
  font-size: 14px;
  line-height: 1.45;
}

.footer-contact-item-start {
  gap: 10px;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.72;
}

.footer-contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-text .footer-office-title {
  margin-bottom: 4px;
}

.footer-contact-text span,
.footer-contact-item span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.footer-bottom-links a {
  font-size: 13px;
  line-height: 1.4;
  color: #3f3f3f;
}

.footer-link-col {
  min-width: 0;
}

.footer-links a,
.footer-contact-item a,
.footer-contact-text a,
.footer-bottom-links a {
  transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-contact-item a:hover,
.footer-contact-text a:hover,
.footer-bottom-links a:hover {
  color: var(--accent);
}

.page-hero.compact {
  padding: 45px 0;
  background-color: #ededed;
}

.eyebrow-apply {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--text);
  line-height: 68px;
}

.status-card {
  padding: 100px 220px;
}

.status-card .eyebrow {
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  letter-spacing: 4%;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.status-card h2 {
  font-size: 28px;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 0;
  margin: 20px 0;
}

.status-card p {
  font-size: 17px;
  line-height: 28px;
  font-weight: 400;
}

.status-card .btn {
  margin-top: 30px;
  background-color: #107cbb;
}

.apply-btn {
  font-size: 18px;
  font-style: italic;
  padding: 10px 16px;
}

.status-card .btn img {
  padding-left: 44px;
}

.section-residents {
  padding: 100px 0;
}

.page-hero.compact h1 {
  margin: 0;
  font-family: var(--font-base);
  font-size: 56px;
  font-weight: 700;
  color: #000;
}

.residents-layout {
  display: grid;
  grid-template-columns: 218px minmax(0, 1fr);
  gap: 112px;
  /* align-items: start; */
}

.residents-nav {
  position: sticky;
  top: 120px;
  align-self: start;
}

.residents-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.residents-nav li + li {
  margin-top: 20px;
}

.residents-nav a {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

.residents-nav a.active,
.residents-nav a:hover {
  text-decoration: underline;
}

.residents-content {
  max-width: 852px;
}

.residents-content article {
  scroll-margin-top: 140px;
}

.residents-section-block {
  padding: 0;
}

.section-eyebrow {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 4%;
  font-weight: 400;
  font-style: italic;
  text-transform: uppercase;
  color: #000;
}

.residents-section-block h2 {
  margin: 0 0 20px;
  font-size: 28px;
  line-height: 38px;
  font-weight: 400;
  color: #000;
}

.section-body {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  color: #000;
}

.section-divider {
  margin: 100px 0;
  border: 0;
  border-top: 1px solid #000;
}

.subsection-title {
  margin: 40px 0 20px;
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  color: #000;
}

.emergency-meta {
  display: flex;
  gap: 20px;
  /* margin: 30px 0 40px; */
}

.emergency-meta-item {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 2px;
}

.emergency-meta-item img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.meta-label {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4%;
  color: #767676;
  padding-right: 20px;
  padding-left: 4px;
}

.meta-value {
  font-size: 22px;
  line-height: 24px;
  font-weight: 400;
  color: #000;
}

.emergency-list,
.moveout-list {
  margin: 0;
  padding-left: 22px;
}

.emergency-list li,
.moveout-list li {
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
}

.emergency-list li:last-child,
.moveout-list li:last-child {
  margin-bottom: 0;
}

.residents-section-block .btn.btn-primary.btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 15px;
  border-radius: 999px;
  background: #107cbb;
  color: #000;
  font-style: italic;
  font-size: 18px;
  font-weight: 700;
}

.btn.btn-primary.btn-sm img {
  padding-left: 15px;
}

.btn.btn-primary.btn-sm:hover {
  background: #086eb2;
}

@media (max-width: 992px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .header-actions {
  }

  .primary-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-bottom: 14px;
  }

  .gallery-stage {
    grid-template-columns: 60px 1fr 60px;
  }

  .gallery-side {
    display: none;
  }

  .amenities-layout,
  .waitlist-card {
    grid-template-columns: 1fr;
  }

  .location-content-inner {
    max-width: none;
  }

  .footer-grid-home {
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .header-inner {
    grid-template-columns: auto auto;
    gap: 12px;
    /* padding: 10px 0; */
  }

  .primary-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0 14px;

    height: 50px;
    min-height: 50px;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .brand-text strong {
    font-size: 1.15rem;
  }

  .brand-text small {
    font-size: 0.62rem;
  }

  .hero-home {
    min-height: 340px;
  }

  .hero-script {
    font-size: 1.25rem;
  }

  .gallery-stage {
    gap: 10px;
  }

  .amenities-list {
    grid-template-columns: 1fr;
  }

  .footer-grid-home {
    flex-direction: column;
    /* grid-template-columns: 1fr; */
  }

  .footer-link-explore-residents-col {
    width: auto;
  }

  .contact-widget {
    display: none;
  }

  .waitlist-card {
    padding: 20px;
  }

  .waitlist-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-script {
    font-size: 20px;
    line-height: 28px;
  }

  .eyebrow {
    font-size: 16px;
    line-height: 22px;
  }

  .status-card .eyebrow {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 4%;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-style: italic;
  }

  .status-card h2 {
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0;
    margin: 20px 0;
  }

  .status-card p {
      font-size: 15px;
      line-height: 1.63;
      font-weight: 400;
  }
}

/* Default (desktop) */
.mobile-only {
  display: none !important;
}

.desktop-only {
  display: flex;
}

/* Mobile */
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: inline-flex !important;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-pay-btn,
  .mobile-apply-btn {
    min-height: 34px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
  }

  .mobile-pay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #ffffff;
    border: 2px solid var(--accent);
    color: #111111;
  }

  .mobile-pay-btn img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: block;
  }

  .mobile-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border: 2px solid var(--accent);
    color: #000000;
  }

  .nav-apply {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .site-header {
    /* padding: 12px 16px; */
    padding: 0;
  }

  .header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    /* padding: 12px 16px; */
  }

  .brand {
    padding-left: 18px;
    padding-top: 8px;
  }

  .brand-logo {
    height: 42px;
    width: auto;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 5px;
    padding-right: 18px;
  }

  .header-actions a {
    font-size: 13px;
    white-space: nowrap;
  }

  .pill-link {
    padding: 5px 18px !important;
  }

  .primary-nav {
    order: 3;
    width: 100vw;
    flex: 0 0 100%;

    display: flex !important;
    flex-direction: row !important;   /* important fix */
    flex-wrap: nowrap !important;     /* important fix */
    align-items: center !important;
    justify-content: flex-start !important;

    /* gap: 14px; */
    padding: 0px 16px;
    margin: 0;

    background-color: #ededed;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;

    border-bottom: 1px solid #dcd7d7;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .primary-nav a {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 12px;
    letter-spacing: 4%;
    font-weight: 600;
    padding: 0 !important;
  }
}

@media (max-width: 768px) {
  .home-about {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-leasing {
    grid-column: auto;
    grid-row: auto;
  }

  .about-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 992px) {
  .gallery-stage {
    grid-template-columns: 1fr;
    width: 100%;
    transform: none;
    left: 0;
  }

  .gallery-side {
    display: none;
  }

  .gallery-main-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 1072 / 730;
  }

  .gallery-main-image {
    width: 100%;
    height: 100%;
  }

  .gallery-thumbs {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 6px;
  }

  .gallery-mobile-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 18px;
    padding: 0 4px;
  }

  .gallery-mobile-nav {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0b7fce;
    border-radius: 50%;
    background: transparent;
    color: #111;
    font-size: 28px;
    line-height: 1;
    padding: 0;
  }

  .gallery-mobile-count {
    flex: 1 1 auto;
    margin: 0;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    color: #111;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .gallery-arrow {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .amenities-layout {
    flex-direction: column;
    gap: 30px;
  }

  .amenities-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .floorplan-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .floorplan-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .location-split {
    grid-template-columns: 1fr;
  }

  .location-content-inner {
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .waitlist-card {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 20px;
  }

  .waitlist-image-wrap {
    position: relative;
    width: 100%;
    transform: none;
    top: auto;
  }

  .waitlist-copy {
    position: relative;
    transform: none;
    top: auto;
    right: auto;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 0 0 26px;
  }

  .footer-topline {
    margin-bottom: 65px;
  }

  .footer-grid-home {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: start;
    /* padding: 0 2px; */
  }

  .footer-brand-col {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    grid-column: 1 / -1;
    gap: 18px;
    margin-bottom: 20px;
    padding-top: 0;
  }

  .footer-brand {
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .footer-brand-col img {
    width: 166px;
    height: auto;
  }

  .footer-brand-col .btn {
    margin-top: 0;
    /* min-height: 26px; */
    padding: 7px 42px;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
  }

  .footer-contact-col,
  .footer-corporate-col {
    grid-column: 1 / -1;
  }

  .footer-heading {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.2;
    /* color: #717171; */
    letter-spacing: 0.04em;
  }

  .footer-office-title {
    margin: 0 0 15px;
    font-size: 15px;
    line-height: 1.4;
  }

  .footer-contact-block + .footer-contact-block {
    /* margin-top: 10px; */
  }

  .footer-contact-item,
  .footer-contact-item-start {
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.55;
  }

  .footer-contact-icon {
    width: 16px;
    height: 16px;
    margin-top: 3px;
  }

  .footer-contact-text span,
  .footer-contact-item span {
    font-size: 16px;
    line-height: 1.6;
  }

  .footer-home p,
  .footer-links li a {
    font-size: 16px;
    line-height: 1.55;
  }

  .footer-links li + li {
    margin-top: 14px;
  }

  .footer-corporate-col {
    /* width: 100%; */
  }

  .footer-bottom-home {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    text-align: center;
    padding: 0 2px;
  }

  .footer-bottom-home p {
    font-size: 15px;
    line-height: 1.4;
  }

  .footer-bottom-links {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
  }

  .footer-bottom-links a {
    font-size: 16px;
    line-height: 1.5;
  }

  .footer-link-col {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .status-card {
    padding: 80px 2px;
  }

  .eyebrow-apply {
    font-size: 30px;
    line-height: 40px;
    padding: 0px 6px;
  }

 .status-card .btn img {
    padding-left: 115px;
  }
}

@media (max-width: 768px) {
  .page-hero.compact {
    background: #e9e9e9;
    padding: 40px 0 28px;
    border-top: 1px solid #e4e4e4;
  }

  .page-hero.compact h1 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
  }

  .section-residents {
    padding: 0 0 100px;
  }

  .residents-layout {
    display: block;
  }

  .residents-nav {
    margin: 18px 0 28px;
  }

  .residents-nav-toggle {
    width: 100%;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid #d8d8d8;
    border-radius: 999px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #4b4b4b;
    font-size: 13px;
    line-height: 1;
  }

  .residents-nav-toggle-icon {
    font-size: 14px;
    line-height: 1;
    color: #107cbb;
  }

  .residents-content {
    max-width: 100%;
  }

  .residents-section-block h2 {
    margin: 0 0 18px;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 400;
  }

  .section-eyebrow {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .section-body {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    color: #2b2b2b;
  }

  .residents-btn {
    min-height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    background: #107cbb;
    color: #000;
    font-size: 14px;
    font-style: italic;
    font-weight: 700;
    gap: 18px;
  }

  .btn-arrow {
    font-size: 24px;
    line-height: 1;
    font-style: normal;
    margin-left: 60px;
  }

  .section-divider {
    margin: 100px 0;
    border: 0;
    border-top: 1px solid #8e8e8e;
  }

  .emergency-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 22px 0 24px;
  }

  .emergency-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
  }

  .emergency-meta-item img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .meta-label {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    text-transform: uppercase;
    color: #8a8a8a;
    margin-right: 4px;
  }

  .meta-value {
    font-size: 20px;
    line-height: 22px;
    font-weight: 400;
    color: #2b2b2b;
  }

  .subsection-title {
    margin: 0 0 20px;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 400;
    color: #111;
  }

  .emergency-list,
  .moveout-list {
    margin: 0;
    padding-left: 18px;
  }

  .emergency-list li,
  .moveout-list li {
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.62;
    font-weight: 400;
  }

  .emergency-list li:last-child,
  .moveout-list li:last-child {
    margin-bottom: 0;
  }
}

.desktop-residents-nav {
  display: block;
}

.residents-nav-mobile {
  display: none;
}

@media (max-width: 768px) {
  .residents-layout {
    display: block;
  }

  .desktop-residents-nav {
    display: none;
  }

  .residents-nav-mobile {
    display: block;
    margin: 15px 6px 68px;
  }

  .residents-nav-select {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 1px solid #d8d8d8;
    border-radius: 999px;
    /* background: #f5f5f5; */
    text-align: center;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.75;
    font-family: var(--font-base);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23107cbb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
    cursor: pointer;
  }

  .residents-nav-mobile hr {
    margin-top: 5px;
    background-color: #d8d8d8;
    border: none;
    height: 1px;
  }
}

@media (max-width: 768px) {
  .hero-home {
    min-height: 600px;
    padding: 0 0 100px;
    justify-content: flex-end;
    background-image: url('../assets/hpm/hero/hero-mobile.png') !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .hero-home::before {
    background: rgba(0, 0, 0, 0.6);
  }

  .hero-content {
    padding: 0 22px;
  }

  .hero-kicker {
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    /* max-width: 290px; */
  }

  .hero-kicker span {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.04em;
  }

  .hero-kicker-icon {
    width: 18px;
    height: 18px;
    margin-top: 2px;
  }

  .hero-title {
    font-size: 45px;
    margin: 0;
    font-weight: 700;
  }

  .hero-script {
    margin-top: 20px;
    font-size: 22px;
    line-height: 32px;
  }
}

/* Responsive cleanup layer for 390px mobile and 1728px desktop comps */
body {
  overflow-x: hidden;
}

.site-header {
  padding-inline: clamp(18px, 3.6vw, 50px);
}

.header-inner {
  gap: 24px;
}

.primary-nav img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero-home {
  min-height: clamp(560px, 48vw, 760px);
  padding: clamp(88px, 11vw, 136px) 0 clamp(72px, 9vw, 112px);
  background-position: center;
}

.hero-content {
  /* width: min(100%, 1040px); */
}

.hero-title {
  font-size: clamp(56px, 7vw, 96px);
  /* line-height: 0.98; */
  /* max-width: 10ch; */
}

.hero-script {
  /* max-width: 24ch; */
  font-size: clamp(24px, 2.5vw, 28px);
  line-height: 38px;
}

.about-copy p {
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 30px;
}

.gallery-stage {
  grid-template-columns: minmax(0, clamp(120px, 17vw, 300px)) minmax(0, clamp(680px, 62vw, 1072px)) minmax(0, clamp(120px, 17vw, 300px));
  gap: clamp(12px, 1.7vw, 24px);
}

.gallery-side {
  width: clamp(120px, 17vw, 300px);
  height: clamp(480px, 36vw, 630px);
  isolation: isolate;
}

.gallery-side-left {
  border-radius: 0 16px 16px 0;
}

.gallery-side-right {
  border-radius: 16px 0px 0px 16px;
}

.gallery-side-image {
  width: 100%;
  height: 100%;
  max-width: none;
}

.gallery-side-left .gallery-side-image {
  border-radius: 0;
  object-position: right center;
}

.gallery-side-right .gallery-side-image {
  border-radius: 0;
  object-position: left center;
}

.gallery-main-wrap,
.gallery-main-image {
  width: 100%;
  height: clamp(560px, 42vw, 730px);
}

.gallery-arrow-left {
  left: clamp(24px, 5vw, 160px);
}

.gallery-arrow-right {
  right: clamp(24px, 5vw, 160px);
}

.amenities-layout {
  justify-content: space-between;
  gap: clamp(32px, 4vw, 68px);
}

.amenities-list {
  flex: 1 1 auto;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.section-floorplans {
  padding-top: clamp(380px, 28vw, 379px);
}

.floorplan-container {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.location-split {
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
}

.location-content-inner {
  padding: clamp(72px, 11vw, 227px) clamp(32px, 10vw, 218px) clamp(72px, 11vw, 227px) clamp(24px, 6vw, 124px);
}

.waitlist-shell {
  display: block;
  min-height: 625px;
}

.waitlist-image-wrap {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 632px;
  z-index: 2;
}

.waitlist-card {
  /* height: 625px; */
  min-height: 625px;
  margin-left: auto;
  padding: clamp(48px, 6vw, 88px) clamp(28px, 4.2vw, 56px) clamp(48px, 6vw, 88px) clamp(140px, 12vw, 180px);
}

.waitlist-copy {
  position: absolute;
  top: 50%;
  right: 45px;
  transform: translateY(-50%);
  max-width: 552px;
  z-index: 2;
}

.footer-contact-col {
  min-width: 0;
}

.footer-corporate-col {
  min-width: 0;
}

@media (max-width: 992px) {
  .site-header {
    padding-inline: 24px;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .hero-content {
    margin: 0px 48px;
  }

  .primary-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .gallery-stage {
    grid-template-columns: 1fr;
    width: 100%;
    left: 0;
    transform: none;
  }

  .gallery-side {
    display: none;
  }

  .gallery-main-wrap,
  .gallery-main-image {
    height: auto;
    aspect-ratio: 1072 / 730;
  }

  .section-gallery .gallery-mobile-controls.mobile-only {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 18px;
    padding: 0 4px;
  }

  .section-gallery .gallery-mobile-nav {
    width: 60px;
    height: 60px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 2px solid #0b7fce;
    border-radius: 50%;
    background: transparent;
    color: #111;
    font-size: 28px;
    line-height: 1;
    padding: 0;
  }

  .section-gallery .gallery-mobile-count {
    flex: 1 1 auto;
    margin: 0;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    color: #111;
  }

  .amenities-eyebrow {
    font-weight: 400;
    font-size: 20px;
    font-style: italic;
    line-height: 1.3;
    letter-spacing: 4%;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .amenities-intro p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
  }

  .amenities-layout {
    display: grid;
    grid-template-columns: 1fr;
  }

  .amenities-list {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .feature-banner-home__overlay {
    padding-left: clamp(28px, 5vw, 56px);
  }

  .floorplan-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .waitlist-shell {
    min-height: 560px;
  }

  .waitlist-image-wrap {
    width: min(44%, 420px);
  }

  .waitlist-card {
    width: calc(100% - 56px);
    /* height: 560px; */
    min-height: 560px;
    margin-left: auto;
    padding-left: clamp(120px, 16vw, 180px);
  }

  .waitlist-copy {
    right: clamp(32px, 5vw, 56px);
    max-width: clamp(360px, 46vw, 500px);
  }

  .footer-grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .amenities-eyebrow {
    font-weight: 400;
    font-size: 18px;
    font-style: italic;
    line-height: 1.3;
    letter-spacing: 4%;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .amenities-intro h2 {
    font-family: var(--font-base);
    font-weight: 400;
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 20px;
  }

  .amenities-intro p {
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
  }

  .amenity-item {
    display: flex;
    gap: 14px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    /* max-width: 262px; */
  }

  .feature-banner-home__overlay {
    padding: 80px 15px;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .section-gallery .gallery-arrow {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0;
  }

  .header-inner {
    gap: 10px;
  }

  .primary-nav {
    gap: 14px;
    padding: 10px 16px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .primary-nav img {
    width: 14px;
    height: 14px;
  }

  .hero-home {
    min-height: 600px;
    padding: 0 0 80px;
  }

  .hero-title {
    font-size: 48px;
    line-height: 1;
  }

  .hero-script {
    font-size: 20px;
    line-height: 30px;
  }

  .home-about {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .gallery-thumbs {
    margin-top: 12px;
  }

  .amenities-list {
    grid-template-columns: 1fr;
  }

  .floorplan-container {
    grid-template-columns: 1fr;
  }

  .location-split {
    grid-template-columns: 1fr;
  }

  .location-image-panel {
    min-height: 296px;
  }

  .location-content-inner {
    padding: 80px 12px 80px;
  }

  .location-content-inner .eyebrow-light {
    margin-bottom: 20px;
    font-size: 20px;
    font-style: italic;
  }

  .location-content-inner h2 {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.5;
  }

  .location-content-inner .eyebrow-copy {
    font-size: 16px;
    line-height: 1.65;
  }

  .location-content-inner .bullet-list {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.65;
  }

  .location-image-panel.placeholder-card {
    justify-content: center;
    padding: 0 16px;
    color: #111;
    font-size: 22px;
    line-height: 1.27;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    height: 464px;
  }

  .waitlist-shell {
    display: block;
    position: relative;
    isolation: isolate;
  }

  .waitlist-image-wrap {
    position: relative !important;
    z-index: 3;
  }

  .waitlist-card {
    margin-left: 0;
    padding-left: 16px;
    position: relative !important;
    z-index: 1;
  }

  .footer-grid-home {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
  }

  .footer-contact-col {
    width: 100%;
  }

  .footer-link-explore-residents-col,
  .footer-corporate-col {
    width: 100%;
  }
}

/* 1440 */
@media (max-width: 1440px) {
  .container {
    max-width: 1140px;
  }

  .feature-banner-home__overlay {
    padding-left: 600px;
  }
  .waitlist-copy {
    max-width: 484px;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .primary-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 12px;
  }
}

/* 1200 */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }

   .feature-banner-home__overlay {
    padding-left: clamp(28px, 5vw, 56px);
  }

  .waitlist-copy {
    max-width: 400px;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .primary-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 12px;
  }
}

/* 992 */
@media (max-width: 992px) {
  .container {
    max-width: 920px;
  }

  .waitlist-copy {
    max-width: 366px;
  }
}

/* 768 */
@media (max-width: 768px) {
  .container {
    max-width: 480px;
  }
}

/* 480 */
@media (max-width: 480px) {
  .container {
    width: calc(100% - 36px); /* EXACT: 18px each side */
    max-width: 354px;
  }

  .hero-home .hero-content.container {
    width: 100%;
    max-width: none;
    margin: 0 0;
    padding: 0 18px;
  }

  .hero-kicker span {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 768px) {
  .header-inner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 10px 0 0 18px;
  }

  .brand {
    flex: 0 1 auto;
    min-width: 0;
    padding-left: 0;
    padding-top: 0;
  }

  .brand-logo {
    height: 40px;
    width: auto;
    max-width: 150px;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 8px;
    /* margin-left: auto; */
    flex-wrap: nowrap;
  }

  .mobile-pay-btn,
  .mobile-apply-btn {
    min-height: 30px;
    padding: 0 12px !important;
    font-size: 11px;
    line-height: 1;
  }

  .nav-toggle {
    display: inline-flex !important;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #454545;
  }

  .nav-toggle__line {
    position: absolute;
    width: 16px;
    height: 1.75px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-toggle__line:nth-child(1) {
    transform: translateY(-5px);
  }

  .nav-toggle__line:nth-child(2) {
    transform: translateY(0);
  }

  .nav-toggle__line:nth-child(3) {
    transform: translateY(5px);
  }

  .nav-toggle.is-open .nav-toggle__line:nth-child(1) {
    transform: rotate(45deg);
  }

  .nav-toggle.is-open .nav-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open .nav-toggle__line:nth-child(3) {
    transform: rotate(-45deg);
  }

  .primary-nav {
    display: flex;
    order: 3;
    flex: 0 0 calc(100% + 18px);
    width: calc(100% + 18px);
    margin: 8px 0 0 -18px;
    padding: 7px 18px 9px;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    background: #EDEDED;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .primary-nav > img {
    display: block;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
  }

  .primary-nav > a {
    flex: 0 0 auto;
    padding: 0;
    border-bottom: 0;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0.04em;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .primary-nav .nav-apply {
    display: none !important;
  }

  .mobile-nav-panel {
    display: flex !important;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    /* margin-top: 8px; */
    padding: 50px 18px 50px;
    background: #fff;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
    z-index: 40;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transform-origin: top center;
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  }

  .mobile-nav-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav-panel a {
    padding: 0;
    border-bottom: 0;
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: 4%;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-nav-panel__divider {
    width: min(100%, 240px);
    border-top: 1px solid #dedede;
    margin-top: 4px;
  }

  .mobile-nav-panel__resident-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px !important;
    font-weight: 600;
    text-transform: none;
  }

  .mobile-nav-panel__resident-link img {
    display: block;
    width: 16px;
    height: 16px;
  }
}

.gallery-mobile-nav span,
.floorplan-mobile-nav span,
.amenity-bullet {
  font-size: 0;
  line-height: 0;
}

.gallery-mobile-prev span::before,
.floorplan-mobile-controls [data-floorplan-prev] span::before {
  content: "\2190";
  font-size: 28px;
  line-height: 1;
}

.gallery-mobile-next span::before,
.floorplan-mobile-controls [data-floorplan-next] span::before {
  content: "\2192";
  font-size: 28px;
  line-height: 1;
}

.amenity-bullet::before {
  content: "\2726";
  font-size: 18px;
  line-height: 1;
}
