:root {
  --navy: #061b45;
  --blue: #B9CDE7;
  --sky: #ddecff;
  --ice: #f4f8ff;
  --ink: #0a1832;
  --muted: #66738a;
  --line: #dbe4f1;
  --white: #fffcfc;
  --lime: #b8ffda;
  --radius: 28px;
  --shadow: 0 30px 80px rgba(6, 27, 69, .13)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden
}

body.menu-open {
  overflow: hidden
}

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

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

button {
  color: inherit
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  background: #fff;
  transform: translateY(-150%);
  border-radius: 10px
}

.skip-link:focus {
  transform: none
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 300px;
  height: 300px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 104, 255, .09), transparent 67%);
  transform: translate(-50%, -50%)
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-content: center;
  background: #fff;
  transition: .7s cubic-bezier(.77, 0, .18, 1)
}

.page-loader.done {
  transform: translateY(-105%)
}

.page-loader img {
  width: 96px;
  height: 80px;
  object-fit: cover;
  object-position: 50% 12%;
  margin: auto
}

.loader-line {
  width: 140px;
  height: 2px;
  margin-top: 20px;
  background: #e4ebf5;
  overflow: hidden
}

.loader-line span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--blue);
  transform: translateX(-100%);
  animation: load 1.2s ease forwards
}

@keyframes load {
  to {
    transform: none
  }
}

.site-header {
  height: 88px;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(22px, 4vw, 72px);
  color: white;
  transition: .35s
}

.site-header.scrolled {
  height: 74px;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(8, 45, 103, .08);
  backdrop-filter: blur(18px)
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  justify-self: start
}

.brand-mark {
  display: block;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  overflow: hidden;
  background: white
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 11%;
  transform: scale(1.6)
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1
}

.brand-copy strong {
  font: 700 15px/1 "Manrope"
}

.brand-copy small {
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: .2em;
  margin-top: 5px
}

.desktop-nav {
  display: flex;
  gap: 30px;
  font-size: 13px;
  font-weight: 600
}

.desktop-nav a {
  position: relative;
  padding: 10px 0
}

.desktop-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  transition: .3s
}

.desktop-nav a:hover:after {
  right: 0
}

.header-cta {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, .4);
  padding: 12px 17px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: .25s
}

.site-header.scrolled .header-cta {
  background: var(--navy);
  color: white;
  border-color: var(--navy)
}

.header-cta:hover {
  transform: translateY(-2px)
}

.header-cta span {
  margin-left: 12px
}

.menu-toggle,
.mobile-menu {
  display: none
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  max-height: 1000px;
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy)
}

.hero-media {
  position: absolute;
  inset: 0
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 15s ease-out both
}

@keyframes heroZoom {
  from {
    transform: scale(1.08)
  }

  to {
    transform: scale(1)
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 16, 44, .96) 0%, rgba(3, 20, 55, .82) 43%, rgba(4, 32, 80, .18) 75%), linear-gradient(0deg, rgba(3, 20, 55, .35), transparent 50%)
}

.scan-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  left: 58%;
  background: linear-gradient(transparent, rgba(120, 188, 255, .7), transparent);
  box-shadow: 0 0 35px #50a2ff;
  opacity: .6;
  animation: scan 8s ease-in-out infinite
}

@keyframes scan {
  50% {
    transform: translateX(220px)
  }
}

.orbit {
  position: absolute;
  border: 1px solid rgba(124, 184, 255, .23);
  border-radius: 50%;
  pointer-events: none
}

.orbit:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #90c4ff;
  box-shadow: 0 0 20px #4e9cff
}

.orbit-one {
  width: 500px;
  height: 500px;
  right: -150px;
  bottom: -170px;
  animation: spin 22s linear infinite
}

.orbit-one:before {
  top: 55px;
  left: 65px
}

.orbit-two {
  width: 280px;
  height: 280px;
  right: 7vw;
  top: 18%;
  animation: spin 16s linear infinite reverse
}

.orbit-two:before {
  bottom: 18px;
  left: 72px
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1300px, 88%);
  margin: auto;
  padding-top: 50px
}

.eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: .17em;
  font: 700 11px/1.2 "Manrope";
  display: flex;
  align-items: center;
  gap: 12px;
  color: #335a9a
}

.eyebrow span,
.section-kicker:before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor
}

.eyebrow.light,
.section-kicker.light {
  color: #a8cbff
}

.hero h1,
.display-title,
.leasing-intro h2 {
  font: 500 clamp(62px, 8vw, 126px)/.88 "Manrope";
  letter-spacing: -.07em;
  margin: 26px 0
}

.hero h1 {
  max-width: 900px
}

.hero h1 em,
.display-title em,
.leasing-intro em {
  font-style: normal;
  color: #B9CDE7
}

.hero-lead {
  max-width: 550px;
  font-size: 17px;
  line-height: 1.7;
  color: #d4e2f8
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 34px
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  border: 0;
  border-radius: 999px;
  padding: 16px 22px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s
}

.button-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 14px 35px rgba(23, 104, 255, .35)
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(23, 104, 255, .3)
}

.text-link {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  gap: 10px;
  align-items: center
}

.text-link i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #65e9a5;
  box-shadow: 0 0 0 5px rgba(101, 233, 165, .12)
}

.hero-status {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: 48px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(6, 27, 69, .36);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 3px 10px;
  align-items: center
}

.hero-status span {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 9px;
  color: #bcd0ed
}

.hero-status strong {
  grid-column: 2;
  font-size: 12px
}

.status-dot {
  grid-row: 1/3;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #71efa9;
  box-shadow: 0 0 15px #71efa9
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 5vw;
  height: 100px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 8px
}

.scroll-cue span {
  width: 1px;
  height: 35px;
  background: #fff;
  animation: scrollLine 2s ease-in-out infinite
}

@keyframes scrollLine {
  50% {
    transform: scaleY(.4);
    transform-origin: bottom
  }
}

.section {
  padding: 130px max(6vw, 28px);
  position: relative
}

.section-kicker {
  margin-bottom: 42px
}

.section-kicker span {
  font-size: 9px;
  border: 1px solid #bad0ef;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 8vw;
  align-items: end
}

.display-title {
  font-size: clamp(46px, 6vw, 90px);
  line-height: .98;
  margin: 0;
  letter-spacing: -.065em
}

.display-title em {
  color: var(--blue)
}

.intro-copy {
  max-width: 510px
}

.intro-copy .lead {
  font: 600 22px/1.45 "Manrope";
  color: var(--ink)
}

.intro-copy p {
  color: var(--muted);
  line-height: 1.75
}

.equal-housing {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px
}

.equal-housing span {
  font-size: 18px;
  color: var(--blue)
}

.story-media {
  height: 610px;
  margin-top: 90px;
  position: relative
}

.story-image {
  height: 100%;
  width: 88%;
  margin-left: auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow)
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s
}

.story-image:hover img {
  transform: scale(1.03)
}

.story-card {
  position: absolute;
  left: 0;
  bottom: 55px;
  width: 235px;
  background: var(--blue);
  color: white;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 25px 55px rgba(23, 104, 255, .34)
}

.story-card-number {
  font: 700 70px/1 "Manrope";
  letter-spacing: -.07em
}

.story-card-plus {
  font-size: 17px;
  margin-left: 4px
}

.story-card p {
  font-size: 12px;
  line-height: 1.55;
  margin: 10px 0 0;
  color: #dce9ff
}

.story-caption {
  position: absolute;
  right: 25px;
  bottom: -38px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 9px;
  display: flex;
  gap: 12px;
  align-items: center
}

.story-caption span {
  height: 55px;
  width: 1px;
  background: var(--blue)
}

.dark-section {
  background: var(--navy);
  color: white;
  overflow: hidden
}

.grid-glow {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(77, 143, 255, .14) 1px, transparent 1px), linear-gradient(90deg, rgba(77, 143, 255, .14) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 80% 30%, black, transparent 60%)
}

.section-heading {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr .5fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 70px
}

.section-heading p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 410px
}

.light-heading p {
  color: #aabbd8
}

.light-heading .display-title em {
  color: #B9CDE7
}

.plan-shell {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(15px)
}

.plan-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, .13)
}

.plan-tab {
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .13);
  padding: 22px 28px;
  background: transparent;
  color: #8296b9;
  text-align: left;
  cursor: pointer;
  font-weight: 700;
  transition: .3s
}

.plan-tab span {
  font-size: 9px;
  margin-right: 18px
}

.plan-tab.active {
  background: var(--blue);
  color: #fff
}

.plan-display {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  min-height: 575px
}

.plan-visual {
  background: #fff;
  display: grid;
  place-items: center;
  padding: 30px;
  overflow: hidden
}

.plan-visual img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  transition: .45s
}

.plan-visual img.switching {
  opacity: 0;
  transform: scale(.96)
}

.plan-info {
  padding: 55px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.availability {
  font-size: 10px;
  color: #9db2d4;
  text-transform: uppercase;
  letter-spacing: .12em
}

.availability i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #72f0aa;
  margin-right: 8px;
  box-shadow: 0 0 10px #72f0aa
}

.plan-label {
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #70aaff;
  font-size: 10px;
  margin: 30px 0 8px
}

.plan-info h3 {
  font: 600 clamp(30px, 4vw, 52px)/1 "Manrope";
  letter-spacing: -.05em;
  margin: 0 0 30px
}

.plan-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-block: 1px solid rgba(255, 255, 255, .14);
  padding: 20px 0
}

.plan-metrics div {
  display: flex;
  flex-direction: column
}

.plan-metrics div+div {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, .14)
}

.plan-metrics strong {
  font: 600 22px "Manrope"
}

.plan-metrics span {
  font-size: 9px;
  color: #8fa3c3;
  text-transform: uppercase;
  letter-spacing: .12em
}

.plan-price {
  margin: 26px 0 3px;
  display: flex;
  align-items: baseline;
  gap: 8px
}

.plan-price span {
  font-size: 10px;
  text-transform: uppercase;
  color: #8fa3c3
}

.plan-price strong {
  font: 700 40px "Manrope"
}

.plan-price small {
  font-size: 10px;
  color: #8fa3c3
}

.plan-deposit {
  font-size: 10px;
  color: #8fa3c3;
  margin-bottom: 28px
}

.plan-deposit span {
  color: #fff;
  margin-left: 7px
}

.button-white {
  background: #fff;
  color: var(--navy);
  align-self: flex-start
}

.pricing-note {
  text-align: center;
  color: #778ba9;
  font-size: 9px;
  margin: 22px 0 0
}

.amenity-showcase {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 7vw;
  align-items: center
}

.amenity-feature {
  position: relative;
  min-height: 650px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  color: #fff
}

.feature-image {
  position: absolute;
  inset: 0
}

.feature-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 23, 61, .95), transparent 70%)
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.feature-content {
  position: absolute;
  z-index: 2;
  left: 42px;
  right: 42px;
  bottom: 42px
}

.feature-content>span {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 9px;
  color: #9fc7ff
}

.feature-content h3 {
  font: 600 37px/1.08 "Manrope";
  letter-spacing: -.045em;
  margin: 12px 0
}

.feature-content p {
  font-size: 13px;
  line-height: 1.6;
  color: #c7d7ed;
  max-width: 440px
}

.amenity-row {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 30px 4px;
  border-bottom: 1px solid var(--line);
  transition: .25s
}

.amenity-row:hover {
  transform: translateX(8px);
  border-color: var(--blue)
}

.amenity-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--ice);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 22px
}

.amenity-row h3 {
  font: 700 17px "Manrope";
  margin: 0 0 7px
}

.amenity-row p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55
}

.row-index {
  font-size: 9px;
  color: #9aabc3
}

.pet-banner {
  margin-top: 65px;
  background: #e9f3ff;
  border-radius: 20px;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.pet-copy {
  display: flex;
  align-items: center;
  gap: 20px
}

.paw {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: white
}

.pet-copy strong {
  font: 700 16px "Manrope"
}

.pet-copy p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px
}

.pet-banner a {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue)
}

.pet-banner a span {
  margin-left: 12px
}

.gallery-section {
  background: rgb(233, 243, 255)
}

.gallery-controls {
  display: flex;
  align-items: center;
  gap: 8px
}

.gallery-filter {
  border: 1px solid #cdd9e9;
  background: transparent;
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer
}

.gallery-filter.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy)
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 310px;
  gap: 18px
}

.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: #dce6f3;
  text-align: left;
  transition: .5s
}

.gallery-item.hidden {
  opacity: 0;
  transform: scale(.9);
  display: none
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .65s
}

.gallery-item:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 22, 55, .72), transparent 55%);
  opacity: .8
}

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

.gallery-item span {
  position: absolute;
  z-index: 2;
  left: 23px;
  right: 20px;
  bottom: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  justify-content: space-between
}

.gallery-item b {
  font-size: 18px
}

.gallery-wide {
  grid-column: span 2
}

.gallery-tall {
  grid-row: span 2
}

.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(3, 14, 35, .92);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  padding: 5vw
}

.lightbox.open {
  opacity: 1;
  visibility: visible
}

.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 16px
}

.lightbox-close {
  position: absolute;
  right: 24px;
  top: 18px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 42px;
  cursor: pointer
}

.leasing {
  padding-top: 100px;
  padding-bottom: 100px
}

.leasing-card {
  border-radius: 32px;
  background: linear-gradient(120deg, #071c47, #0b367a);
  color: #fff;
  padding: 70px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 9vw;
  position: relative;
  overflow: hidden
}

.leasing-card:after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(90, 164, 255, .18);
  border-radius: 50%;
  left: -250px;
  bottom: -330px
}

.leasing-intro h2 {
  font-size: clamp(44px, 5vw, 70px);
  margin: 30px 0 24px
}

.leasing-intro p {
  color: #b1c2df;
  line-height: 1.6;
  max-width: 380px
}

.light-link {
  margin-top: 30px
}

.leasing-details {
  display: grid;
  grid-template-columns: 1fr 1fr
}

.leasing-details div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13)
}

.leasing-details div:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, .13)
}

.leasing-details div:nth-child(even) {
  padding-left: 35px
}

.leasing-details span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: #8ba3c8;
  margin-bottom: 7px
}

.leasing-details strong {
  font: 600 15px "Manrope"
}

.contact {
  padding-top: 80px
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 10vw
}

.contact-copy>p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 470px
}

.contact-person {
  margin-top: 45px;
  border-left: 2px solid var(--blue);
  padding-left: 18px;
  display: flex;
  flex-direction: column
}

.contact-person span,
.contact-person small {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted)
}

.contact-person strong {
  font: 700 18px "Manrope";
  margin: 5px 0
}

.contact-form {
  background: var(--ice);
  border: 1px solid #e2eaf5;
  border-radius: 25px;
  padding: 42px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 700;
  margin-bottom: 22px
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 0;
  border-bottom: 1px solid #bfccdd;
  background: transparent;
  padding: 13px 2px;
  color: var(--ink);
  outline: none;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 0
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue)
}

.contact-form textarea {
  resize: vertical
}

.submit-button {
  margin-top: 5px
}

.form-note {
  font-size: 9px;
  color: var(--muted);
  margin: 13px 0 0
}

.contact-strip {
  display: grid;
  grid-template-columns: .8fr 1.2fr 1.25fr;
  margin-top: 100px;
  border-block: 1px solid var(--line)
}

.contact-strip a {
  padding: 30px 24px;
  border-right: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  transition: .25s
}

.contact-strip a:hover {
  background: var(--ice)
}

.contact-strip a>span {
  grid-column: 1/3;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 8px;
  color: var(--muted)
}

.contact-strip strong {
  font: 600 13px/1.45 "Manrope"
}

.contact-strip b {
  color: var(--blue);
  font-size: 20px
}

.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 80px max(6vw, 28px) 25px
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  padding-bottom: 65px
}

.footer-brand {
  display: flex;
  gap: 15px;
  align-items: center;
  font: 700 16px/1.1 "Manrope"
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  object-position: 50% 10%;
  filter: brightness(0) invert(1);
  border-radius: 50%
}

.footer-brand small {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #9eb2d2
}

.footer-top>p {
  font: 500 31px/1.2 "Manrope";
  letter-spacing: -.04em;
  margin: 0;
  color: #bcd0ee
}

.footer-hours span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: #7e95b9
}

.footer-hours p {
  font-size: 12px;
  line-height: 1.8;
  color: #c6d5eb
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .13);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #7f96b9;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em
}

.footer-bottom a {
  color: #fff
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .8, .2, 1)
}

.reveal.in-view {
  opacity: 1;
  transform: none
}

.float-card {
  animation: float 4s ease-in-out infinite
}

@keyframes float {
  50% {
    transform: translateY(-10px)
  }
}

@media(max-width:1000px) {

  .desktop-nav,
  .header-cta {
    display: none
  }

  .site-header {
    grid-template-columns: 1fr auto
  }

  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .35);
    background: transparent;
    border-radius: 50%;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 11px
  }

  .site-header.scrolled .menu-toggle {
    border-color: var(--line)
  }

  .menu-toggle span {
    display: block;
    height: 1px;
    background: currentColor;
    transition: .3s
  }

  .menu-toggle[aria-expanded=true] span:first-child {
    transform: translateY(3px) rotate(45deg)
  }

  .menu-toggle[aria-expanded=true] span:last-child {
    transform: translateY(-3px) rotate(-45deg)
  }

  .mobile-menu {
    position: fixed;
    inset: 74px 0 0;
    background: var(--navy);
    color: white;
    padding: 50px 7vw;
    flex-direction: column;
    gap: 28px;
    font: 600 30px "Manrope"
  }

  .mobile-menu.open {
    display: flex
  }

  .intro-grid,
  .section-heading,
  .amenity-showcase,
  .leasing-card,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .section-heading {
    gap: 30px
  }

  .plan-display {
    grid-template-columns: 1fr
  }

  .plan-visual img {
    height: 420px
  }

  .amenity-feature {
    min-height: 540px
  }

  .leasing-card {
    gap: 40px
  }

  .contact-grid {
    gap: 60px
  }

  .gallery-grid {
    grid-auto-rows: 260px
  }

  .contact-strip {
    grid-template-columns: 1fr 1fr
  }

  .contact-strip a:last-child {
    grid-column: 1/3
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(3, 16, 44, .94), rgba(3, 20, 55, .63)), linear-gradient(0deg, rgba(3, 20, 55, .3), transparent)
  }
}

@media(max-width:680px) {
  .site-header {
    height: 74px;
    padding: 0 20px
  }

  .brand-copy strong {
    font-size: 13px
  }

  .section {
    padding: 90px 20px
  }

  .hero {
    min-height: 720px
  }

  .hero-content {
    width: auto;
    margin: 0;
    padding: 70px 22px 0
  }

  .hero h1 {
    font-size: 58px
  }

  .hero-lead {
    font-size: 15px
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px
  }

  .hero-status {
    right: 20px;
    bottom: 24px
  }

  .scroll-cue {
    display: none
  }

  .intro-grid {
    gap: 35px
  }

  .story-media {
    height: 520px;
    margin-top: 55px
  }

  .story-image {
    width: 100%
  }

  .story-card {
    left: 15px;
    bottom: 20px;
    width: 190px;
    padding: 23px
  }

  .story-card-number {
    font-size: 53px
  }

  .story-caption {
    display: none
  }

  .section-heading {
    margin-bottom: 42px
  }

  .plan-tabs {
    overflow: auto;
    grid-template-columns: repeat(3, 190px)
  }

  .plan-tab {
    padding: 18px
  }

  .plan-visual {
    padding: 12px
  }

  .plan-visual img {
    height: 300px
  }

  .plan-info {
    padding: 38px 25px
  }

  .amenity-feature {
    min-height: 520px
  }

  .feature-content {
    left: 25px;
    right: 25px;
    bottom: 25px
  }

  .feature-content h3 {
    font-size: 30px
  }

  .amenity-row {
    grid-template-columns: 43px 1fr;
    gap: 14px
  }

  .amenity-icon {
    width: 43px;
    height: 43px
  }

  .row-index {
    display: none
  }

  .pet-banner {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px
  }

  .gallery-controls {
    margin-top: 10px
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 310px
  }

  .gallery-wide {
    grid-column: auto
  }

  .gallery-tall {
    grid-row: auto
  }

  .leasing {
    padding-left: 0;
    padding-right: 0
  }

  .leasing-card {
    border-radius: 0;
    padding: 65px 22px
  }

  .leasing-details {
    grid-template-columns: 1fr
  }

  .leasing-details div:nth-child(odd) {
    border-right: 0
  }

  .leasing-details div:nth-child(even) {
    padding-left: 0
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0
  }

  .contact-form {
    padding: 28px 22px
  }

  .contact-strip {
    grid-template-columns: 1fr
  }

  .contact-strip a:last-child {
    grid-column: auto
  }

  .contact-strip a {
    border-right: 0;
    border-bottom: 1px solid var(--line)
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 38px
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px
  }

  .cursor-glow {
    display: none
  }
}

@media(prefers-reduced-motion:reduce) {

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

  .reveal {
    opacity: 1;
    transform: none
  }
}

/* Keep the complete supplied logo visible instead of cropping it into circles. */
.page-loader img {
  width: 280px;
  height: 239px;
  padding: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  background: transparent;
  margin: auto
}

.page-loader .loader-line {
  width: 280px
}

.brand-mark {
  width: 112px;
  height: 64px;
  padding: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none
}

.footer-brand img {
  width: 145px;
  height: 105px;
  padding: 0;
  object-fit: contain;
  object-position: center;
  filter: none;
  background: transparent;
  border-radius: 0
}

.site-header.scrolled {
  color: #fff;
  background: rgba(6, 27, 69, .9);
  border-bottom-color: rgba(255, 255, 255, .1)
}

.site-header.scrolled .header-cta {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue)
}

.site-header.scrolled .menu-toggle {
  border-color: rgba(255, 255, 255, .35)
}

@media(max-width:680px) {
  .brand-mark {
    width: 92px;
    height: 54px;
    padding: 0
  }
}

.footer-identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px
}

.footer-identity p {
  font: 500 25px/1.25 "Manrope";
  letter-spacing: -.04em;
  margin: 0;
  color: #bcd0ee
}

.footer-links>span {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: #7e95b9;
  margin-bottom: 18px
}

.footer-links>div {
  display: grid;
  grid-template-columns: repeat(2, minmax(90px, 1fr));
  gap: 13px 30px
}

.footer-links a {
  font-size: 12px;
  color: #c6d5eb;
  transition: .25s
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(3px)
}

@media(max-width:680px) {
  .footer-links>div {
    grid-template-columns: 1fr 1fr
  }

  .footer-identity p {
    font-size: 23px
  }
}

/* Location */
.location-section {
  padding-top: 100px;
  background: rgb(233, 243, 255);
  overflow: hidden
}

.location-heading {
  margin-bottom: 60px
}

.map-experience {
  position: relative;
  min-height: 680px;
  border-radius: 32px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 35px 90px rgba(6, 27, 69, .18)
}

.map-frame {
  position: absolute;
  inset: 0
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.75) contrast(1.05)
}

.map-tint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5, 24, 62, .04) 35%, rgba(5, 24, 62, .68) 70%, rgba(5, 24, 62, .92) 100%)
}

.map-coordinates {
  position: absolute;
  left: 25px;
  bottom: 22px;
  padding: 9px 13px;
  border: 1px solid rgba(6, 27, 69, .15);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(12px);
  color: #385174;
  font: 700 8px "Manrope";
  letter-spacing: .15em
}

.map-pulse {
  position: absolute;
  left: 42%;
  top: 48%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%)
}

.map-pulse i {
  position: absolute;
  inset: 0;
  border: 2px solid var(--blue);
  border-radius: 50%;
  animation: mapRadar 2.8s ease-out infinite
}

.map-pulse i:nth-child(2) {
  animation-delay: 1.4s
}

.map-pulse span {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 4px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 30px rgba(23, 104, 255, .48);
  font-size: 17px
}

@keyframes mapRadar {
  0% {
    opacity: .85;
    transform: scale(.6)
  }

  100% {
    opacity: 0;
    transform: scale(3)
  }
}

.location-card {
  position: absolute;
  z-index: 3;
  right: 35px;
  top: 35px;
  bottom: 35px;
  width: min(420px, 40%);
  padding: 44px 40px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 25px;
  background: rgba(6, 27, 69, .9);
  backdrop-filter: blur(22px);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 24px 65px rgba(2, 14, 38, .34)
}

.location-card:before {
  content: "";
  position: absolute;
  right: -70px;
  top: -80px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(104, 173, 255, .18);
  border-radius: 50%;
  animation: spin 18s linear infinite
}

.location-label {
  position: relative;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #9fc6ff;
  font-size: 9px;
  font-weight: 700
}

.location-label i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #73efa9;
  box-shadow: 0 0 12px #73efa9;
  margin-right: 9px
}

.location-card h3 {
  font: 600 clamp(36px, 4vw, 56px)/.98 "Manrope";
  letter-spacing: -.055em;
  margin: 20px 0
}

.location-card address {
  font-style: normal;
  color: #b9cbe5;
  font-size: 13px;
  line-height: 1.65
}

.nearby-list {
  margin: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .13)
}

.nearby-list>div {
  display: grid;
  grid-template-columns: 25px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13)
}

.nearby-list>div>span {
  font-size: 8px;
  color: #6f8db8
}

.nearby-list p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: #8299ba;
  font-size: 9px;
  line-height: 1.45
}

.nearby-list strong {
  color: #fff;
  font: 600 11px "Manrope";
  margin-bottom: 2px
}

.nearby-list b {
  color: #8dbaff;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.location-button {
  align-self: flex-start
}

@media(max-width:1000px) {
  .map-experience {
    min-height: 850px
  }

  .map-frame {
    bottom: 350px
  }

  .map-tint {
    background: linear-gradient(0deg, rgba(5, 24, 62, .65), transparent 60%)
  }

  .map-pulse {
    left: 50%;
    top: 45%
  }

  .location-card {
    top: auto;
    left: 25px;
    right: 25px;
    bottom: 25px;
    width: auto;
    height: 390px;
    padding: 30px 35px
  }

  .location-card h3 {
    margin: 13px 0
  }

  .nearby-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 18px 0
  }

  .nearby-list>div {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border-right: 1px solid rgba(255, 255, 255, .13)
  }

  .nearby-list>div:last-child {
    border-right: 0
  }

  .nearby-list>div>span {
    display: none
  }
}

@media(max-width:680px) {
  .location-section {
    padding-left: 0;
    padding-right: 0
  }

  .location-heading {
    padding: 0 20px
  }

  .map-experience {
    min-height: 940px;
    border-radius: 0
  }

  .map-frame {
    bottom: 500px
  }

  .map-coordinates {
    left: 15px;
    bottom: 12px
  }

  .location-card {
    left: 15px;
    right: 15px;
    bottom: 15px;
    height: 470px;
    padding: 28px 22px
  }

  .location-card h3 {
    font-size: 38px
  }

  .nearby-list {
    display: block
  }

  .nearby-list>div {
    display: grid;
    grid-template-columns: 1fr auto;
    border-right: 0;
    padding: 11px 0
  }

  .nearby-list b {
    grid-column: 2;
    grid-row: 1
  }

  .location-button {
    width: 100%
  }
}

/* Compact animated mobile navigation */
@media(max-width:1000px) {
  .mobile-menu {
    display: flex;
    inset: auto 18px auto auto;
    top: 78px;
    width: min(350px, calc(100vw - 36px));
    padding: 28px;
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 20px;
    background: rgba(6, 27, 69, .97);
    box-shadow: 0 24px 65px rgba(2, 14, 38, .32);
    backdrop-filter: blur(20px);
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-18px) scale(.97);
    transform-origin: top right;
    transition: opacity .28s ease, transform .38s cubic-bezier(.2, .8, .2, 1), visibility .28s
  }

  .mobile-menu.open {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none
  }

  .mobile-menu a {
    padding: 7px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
  }

  .mobile-menu a:last-child {
    margin-top: 4px;
    padding: 13px 18px;
    border: 0;
    border-radius: 999px;
    background: var(--blue);
    text-align: center;
    font-size: 13px
  }
}

/* Sequential gallery filtering */
.gallery-item.filtering-out {
  opacity: 0;
  transform: scale(.96) translateY(14px)
}

.gallery-item.filtering-in {
  animation: galleryEnter .55s cubic-bezier(.2, .8, .2, 1) both
}

@keyframes galleryEnter {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.97)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* Footer tagline refinement */
.footer-identity p {
  width: 300px;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -.02em
}

@media(max-width:680px) {
  .story-card {
    left: 12px;
    bottom: 12px;
    width: 145px;
    padding: 13px;
    border-radius: 15px
  }

  .story-card-number {
    font-size: 36px
  }

  .story-card-plus {
    font-size: 12px
  }

  .story-card p {
    font-size: 9px;
    line-height: 1.4;
    margin-top: 6px
  }

  .plan-tabs {
    overflow: visible;
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .plan-tab {
    min-width: 0;
    padding: 13px 5px;
    text-align: center;
    font-size: 9px;
    line-height: 1.25
  }

  .plan-tab span {
    display: block;
    margin: 0 0 5px;
    font-size: 7px
  }

  .footer-identity p {
    width: 260px;
    font-size: 16px;
    line-height: 1.5
  }
}

/* Font Awesome map marker and gallery navigation */
.map-pulse span i {
  position: static;
  inset: auto;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  animation: none;
  font-size: 15px
}

.lightbox {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  padding: 42px clamp(18px, 4vw, 60px)
}

.lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: calc(100vh - 84px)
}

.lightbox-stage img {
  display: block;
  max-width: 100%;
  max-height: calc(100% - 48px);
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .3)
}

.lightbox-stage.slide-next {
  animation: lightboxNext .42s cubic-bezier(.2, .8, .2, 1)
}

.lightbox-stage.slide-prev {
  animation: lightboxPrev .42s cubic-bezier(.2, .8, .2, 1)
}

@keyframes lightboxNext {
  from {
    opacity: 0;
    transform: translateX(24px) scale(.985)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes lightboxPrev {
  from {
    opacity: 0;
    transform: translateX(-24px) scale(.985)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.lightbox-nav {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  transition: .25s;
  backdrop-filter: blur(12px)
}

.lightbox-nav:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: scale(1.07)
}

.lightbox-nav i {
  font-size: 15px
}

.lightbox-close {
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px)
}

.lightbox-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font: 600 11px "Manrope";
  letter-spacing: .04em
}

.lightbox-count {
  color: #90baff;
  font-size: 10px;
  letter-spacing: .13em
}

.footer-identity p {
  width: min(380px, 100%)
}

@media(max-width:680px) {
  .lightbox {
    grid-template-columns: 1fr;
    display: block;
    padding: 65px 15px 85px
  }

  .lightbox-stage {
    height: calc(100vh - 150px)
  }

  .lightbox-nav {
    position: absolute;
    bottom: 20px
  }

  .lightbox-prev {
    left: calc(50% - 62px)
  }

  .lightbox-next {
    right: calc(50% - 62px)
  }

  .lightbox-meta {
    bottom: 5px
  }

  .lightbox-close {
    right: 15px;
    top: 14px
  }

  .footer-identity p {
    width: 100%;
    font-size: 16px
  }
}

/* Dense bento gallery: preserve varied shapes while filling open cells. */
.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 310px;
  grid-auto-flow: dense;
  gap: 18px;
  overflow: visible
}

.gallery-item {
  border-radius: 20px
}

.gallery-item.gallery-wide {
  grid-column: span 2;
  grid-row: span 1
}

.gallery-item.gallery-tall {
  grid-column: span 1;
  grid-row: span 2
}

@media(max-width:1000px) {
  .gallery-grid {
    grid-auto-rows: 260px
  }
}

@media(max-width:680px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 310px;
    grid-auto-flow: row
  }

  .gallery-item.gallery-wide,
  .gallery-item.gallery-tall {
    grid-column: auto;
    grid-row: auto
  }
}

.plan-visual {
  background: transparent
}

@media(min-width:1800px) {
  .story-media {
    height: 800px
  }
}

.site-header,
.site-header.scrolled {
  border: 0;
  outline: 0;
  transform: translateZ(0)
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(3, 18, 48, .18)
}

@media(max-width:680px) {
  .page-loader img {
    width: 230px;
    height: 196px
  }

  .page-loader .loader-line {
    width: 230px
  }
}

/* Dark contact form */
.contact-form {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #061b45 0%, #0a3272 100%);
  border-color: rgba(113, 172, 255, .25);
  box-shadow: 0 30px 75px rgba(6, 27, 69, .2);
  color: #fff
}

.contact-form:before {
  content: "";
  position: absolute;
  right: -130px;
  top: -150px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(112, 177, 255, .16);
  border-radius: 50%;
  pointer-events: none
}

.contact-form label {
  position: relative;
  color: #a8c8f5
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  position: relative;
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, .28);
  color-scheme: dark
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8199bc;
  opacity: 1
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #6eb0ff
}

.contact-form select option {
  background: #071f4d;
  color: #fff
}

.contact-form .form-note {
  position: relative;
  color: #8fa8cc
}

@media(min-width:1001px) {
  .contact-form {
    padding: 52px
  }

  .contact-form label {
    font-size: 12px
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
    padding: 16px 3px
  }

  .contact-form .submit-button {
    font-size: 14px;
    padding: 18px 25px
  }

  .contact-form .form-note {
    font-size: 11px
  }
}

/* Contrast adjustments for the light-blue accent palette. */
.button-primary,
.story-card,
.plan-tab.active,
.paw,
.site-header.scrolled .header-cta,
.map-pulse span,
.mobile-menu a:last-child,
.lightbox-nav:hover {
  color: var(--navy)
}

.story-card p {
  color: #31506f
}

.gallery-section .display-title em,
.location-heading .display-title em {
  color: #0a1832
}

.amenity-icon {
  background: var(--blue);
  color: #0a1832
}

.paw {
  color: #0a1832
}

.pet-banner a {
  color: #0a1832
}

.map-pulse {
  left: 50%;
  top: 50%
}

@media(min-width:1001px) {
  .map-pulse {
    top: 46%
  }
}

.contact-strip .fa-arrow-up-right-from-square {
  color: #0a1832
}

/* Sequential hero headline reveal */
.hero-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(.55em) scale(.82) rotate(3deg);
  transform-origin: 50% 100%
}

.heading-word {
  display: inline-block;
  white-space: nowrap
}

.animate-chars .hero-char {
  animation: characterBump .72s cubic-bezier(.2, .9, .25, 1.25) forwards;
  animation-delay: calc(var(--char-index) * 38ms)
}

@keyframes characterBump {
  0% { opacity: 0; transform: translateY(.55em) scale(.82) rotate(3deg) }
  65% { opacity: 1; transform: translateY(-.08em) scale(1.04) rotate(-1deg) }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0) }
}

@media(prefers-reduced-motion:reduce) {
  .hero-char,.animate-chars .hero-char { opacity: 1; transform: none; animation: none }
}

@media(max-width:680px) {
  h2.display-title,
  .leasing-intro h2 {
    font-size: 38px;
    line-height: 1.04
  }

  .intro-copy .lead {
    font-size: 18px;
    line-height: 1.5
  }
}

.story-image img {
  animation: storyImageBreath 9s ease-in-out infinite;
  transform-origin: center;
  will-change: transform
}

.story-image picture {
  display: block;
  width: 100%;
  height: 100%
}

.story-image:hover img {
  animation-play-state: paused
}

@keyframes storyImageBreath {
  0%,100% { transform: scale(1) }
  50% { transform: scale(1.045) }
}

.hero-media img {
  animation: heroImageBreath 12s ease-in-out infinite;
  transform-origin: center;
  will-change: transform
}

@keyframes heroImageBreath {
  0%,100% { transform: scale(1.03) }
  50% { transform: scale(1.085) }
}

/* Floating call action */
.floating-call {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(37, 211, 102, .3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  box-shadow: 0 14px 40px rgba(6, 27, 69, .2);
  color: #fff;
  transition: transform .3s ease, box-shadow .3s ease
}

.floating-call:before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(37, 211, 102, .55);
  border-radius: inherit;
  animation: callPulse 2.4s ease-out infinite
}

.floating-call>i {
  font-size: 20px;
  animation: phoneWiggle 4s ease-in-out infinite
}

.floating-call:hover,
.floating-call:focus-visible {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 45px rgba(37, 211, 102, .24);
  outline: none
}

.call-tooltip {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: calc(100% + 13px);
  padding: 9px 13px;
  border-radius: 9px;
  background: #061b45;
  color: #fff;
  font: 700 11px "Manrope";
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px) scale(.9);
  transform-origin: center bottom;
  transition: opacity .22s ease, visibility .22s, transform .38s cubic-bezier(.2,.9,.25,1.25)
}

.call-tooltip:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #061b45
}

.floating-call:hover .call-tooltip,
.floating-call:focus-visible .call-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1)
}

@keyframes callPulse {
  0% { opacity: .7; transform: scale(1) }
  80%,100% { opacity: 0; transform: scale(1.55) }
}

@keyframes phoneWiggle {
  0%,86%,100% { transform: rotate(0) }
  89% { transform: rotate(-12deg) }
  93% { transform: rotate(12deg) }
  97% { transform: rotate(-7deg) }
}

@media(max-width:680px) {
  .floating-call { right: 16px; bottom: 16px; width: 54px; height: 54px }
}

@media(max-width:680px) {
  .mobile-menu {
    top: 74px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    padding: 28px 22px;
    transform-origin: top center
  }
}

/* Decorative pet paw path */
.pet-banner {
  position: relative;
  overflow: hidden;
  isolation: isolate
}

.pet-banner .pet-copy,
.pet-banner>a {
  position: relative;
  z-index: 2
}

.paw-trail {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none
}

.paw-trail i {
  position: absolute;
  color: #fff;
  opacity: 0;
  font-size: 29px;
  filter: drop-shadow(0 3px 8px rgba(60, 96, 140, .18));
  transform: rotate(var(--paw-rotate));
  animation: pawStep 6s ease-in-out infinite both
}

.paw-trail i {
  --paw-rotate: 90deg !important
}

.paw-trail i:nth-child(1) { left: 22%; top: 58%; --paw-rotate: 28deg; animation-delay: 0s }
.paw-trail i:nth-child(2) { left: 32%; top: 17%; --paw-rotate: 12deg; animation-delay: .45s }
.paw-trail i:nth-child(3) { left: 43%; top: 52%; --paw-rotate: 32deg; animation-delay: .9s }
.paw-trail i:nth-child(4) { left: 54%; top: 12%; --paw-rotate: 17deg; animation-delay: 1.35s }
.paw-trail i:nth-child(5) { left: 65%; top: 55%; --paw-rotate: 35deg; animation-delay: 1.8s }
.paw-trail i:nth-child(6) { left: 76%; top: 13%; --paw-rotate: 20deg; animation-delay: 2.25s }
.paw-trail i:nth-child(7) { left: 87%; top: 53%; --paw-rotate: 38deg; animation-delay: 2.7s }

@keyframes pawStep {
  0%,6% { opacity: 0; transform: rotate(var(--paw-rotate)) scale(.58) translateY(8px) }
  14% { opacity: 1; transform: rotate(var(--paw-rotate)) scale(1.16) translateY(0) }
  22%,50% { opacity: .9; transform: rotate(var(--paw-rotate)) scale(1) translateY(0) }
  66%,100% { opacity: 0; transform: rotate(var(--paw-rotate)) scale(.92) translateY(-3px) }
}

@media(max-width:680px) {
  .paw-trail i { font-size: 20px }
  .paw-trail i:nth-child(1) { left: 3%; top: 68% }
  .paw-trail i:nth-child(2) { left: 18%; top: 14% }
  .paw-trail i:nth-child(3) { left: 33%; top: 68% }
  .paw-trail i:nth-child(4) { left: 48%; top: 14% }
  .paw-trail i:nth-child(5) { display: block; left: 63%; top: 68% }
  .paw-trail i:nth-child(6) { display: block; left: 78%; top: 14% }
  .paw-trail i:nth-child(7) { display: block; left: 91%; top: 68% }
}
