html,
body,
#root {
  min-height: 100%;
}

body {
  margin: 0;
}/* CSS variables. */
:root {
	--PhoneInput-color--focus: #03b2cb;
	--PhoneInputInternationalIconPhone-opacity: 0.8;
	--PhoneInputInternationalIconGlobe-opacity: 0.65;
	--PhoneInputCountrySelect-marginRight: 0.35em;
	--PhoneInputCountrySelectArrow-width: 0.3em;
	--PhoneInputCountrySelectArrow-marginLeft: var(--PhoneInputCountrySelect-marginRight);
	--PhoneInputCountrySelectArrow-borderWidth: 1px;
	--PhoneInputCountrySelectArrow-opacity: 0.45;
	--PhoneInputCountrySelectArrow-color: currentColor;
	--PhoneInputCountrySelectArrow-color--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountrySelectArrow-transform: rotate(45deg);
	--PhoneInputCountryFlag-aspectRatio: 1.5;
	--PhoneInputCountryFlag-height: 1em;
	--PhoneInputCountryFlag-borderWidth: 1px;
	--PhoneInputCountryFlag-borderColor: rgba(0,0,0,0.5);
	--PhoneInputCountryFlag-borderColor--focus: var(--PhoneInput-color--focus);
	--PhoneInputCountryFlag-backgroundColor--loading: rgba(0,0,0,0.1);
}

.PhoneInput {
	/* This is done to stretch the contents of this component. */
	display: flex;
	align-items: center;
}

.PhoneInputInput {
	/* The phone number input stretches to fill all empty space */
	flex: 1;
	/* The phone number input should shrink
	   to make room for the extension input */
	min-width: 0;
}

.PhoneInputCountryIcon {
	width: calc(var(--PhoneInputCountryFlag-height) * var(--PhoneInputCountryFlag-aspectRatio));
	height: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--square {
	width: var(--PhoneInputCountryFlag-height);
}

.PhoneInputCountryIcon--border {
	/* Removed `background-color` because when an `<img/>` was still loading
	   it would show a dark gray rectangle. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom. */
	background-color: var(--PhoneInputCountryFlag-backgroundColor--loading);
	/* Border is added via `box-shadow` because `border` interferes with `width`/`height`. */
	/* For some reason the `<img/>` is not stretched to 100% width and height
	   and sometime there can be seen white pixels of the background at top and bottom,
	   so an additional "inset" border is added. */
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor);
}

.PhoneInputCountryIconImg {
	/* Fixes weird vertical space above the flag icon. */
	/* https://gitlab.com/catamphetamine/react-phone-number-input/-/issues/7#note_348586559 */
	display: block;
	/* 3rd party <SVG/> flag icons won't stretch if they have `width` and `height`.
	   Also, if an <SVG/> icon's aspect ratio was different, it wouldn't fit too. */
	width: 100%;
	height: 100%;
}

.PhoneInputInternationalIconPhone {
	opacity: var(--PhoneInputInternationalIconPhone-opacity);
}

.PhoneInputInternationalIconGlobe {
	opacity: var(--PhoneInputInternationalIconGlobe-opacity);
}

/* Styling native country `<select/>`. */

.PhoneInputCountry {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: center;
	margin-right: var(--PhoneInputCountrySelect-marginRight);
}

.PhoneInputCountrySelect {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
	border: 0;
	opacity: 0;
	cursor: pointer;
}

.PhoneInputCountrySelect[disabled],
.PhoneInputCountrySelect[readonly] {
	cursor: default;
}

.PhoneInputCountrySelectArrow {
	display: block;
	content: '';
	width: var(--PhoneInputCountrySelectArrow-width);
	height: var(--PhoneInputCountrySelectArrow-width);
	margin-left: var(--PhoneInputCountrySelectArrow-marginLeft);
	border-style: solid;
	border-color: var(--PhoneInputCountrySelectArrow-color);
	border-top-width: 0;
	border-bottom-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	border-left-width: 0;
	border-right-width: var(--PhoneInputCountrySelectArrow-borderWidth);
	transform: var(--PhoneInputCountrySelectArrow-transform);
	opacity: var(--PhoneInputCountrySelectArrow-opacity);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon + .PhoneInputCountrySelectArrow {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon--border {
	box-shadow: 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus),
		inset 0 0 0 var(--PhoneInputCountryFlag-borderWidth) var(--PhoneInputCountryFlag-borderColor--focus);
}

.PhoneInputCountrySelect:focus + .PhoneInputCountryIcon .PhoneInputInternationalIconGlobe {
	opacity: 1;
	color: var(--PhoneInputCountrySelectArrow-color--focus);
}@font-face {
  font-family: "PP Monument";
  src: url("/fonts/PPMonumentExtended-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --font-display: "PP Monument", sans-serif;
  --font-body: "DM Sans", sans-serif;

  --font-small: 11px;
  --font-body-size: 13px;

  --light-beige: #F3EFE9;
  --deep-red: #360101;
  --grey-charcoal: #4C4342;
  --dark-grey-charcoal: #373031;
  --white: #FFFFFF;
  --black: #000000;

  --page-padding: 5vw;
  --radius-pill: 999px;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body,
#root {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--light-beige);
  color: var(--dark-grey-charcoal);
  font-family: var(--font-body);
  font-size: var(--font-body-size);
  font-weight: 400;
  line-height: 1.5;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--dark-grey-charcoal);
}

h1 {
  font-size: clamp(42px, 4vw, 62px);
  line-height: 0.96;
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(22px, 1.6vw, 28px);
  line-height: 1;
  letter-spacing: -0.3px;
}

h3 {
  font-size: clamp(18px, 1.1vw, 20px);
  line-height: 1.05;
  letter-spacing: -0.2px;
}

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

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

button {
  cursor: pointer;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site {
  width: 100%;
  overflow: hidden;
}

.eyebrow,
.form-title,
.nav,
.header-cta,
.outline-button,
.floorplans-download,
.payment-offer,
.payment-secondary-btn,
.payment-primary-btn,
.final-cta-button,
.register-card button[type="submit"],
.payment-marker span,
.amenities-level {
  font-family: var(--font-display);
  font-weight: 400;
}

.eyebrow {
  color: var(--grey-charcoal);
  font-size: var(--font-small);
  line-height: 1;
  letter-spacing: 1.2px;
}

.section-title {
  margin-bottom: 42px;
  text-align: center;
}

.header-cta,
.outline-button,
.floorplans-download,
.payment-secondary-btn,
.payment-primary-btn,
.final-cta-button,
.register-card button[type="submit"],
.carousel-arrow,
.floorplan-arrow {
  transition:
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.nav a,
.footer-links a {
  transition: opacity var(--transition);
}

.nav a:hover,
.footer-links a:hover {
  opacity: 0.65;
}

.header-cta:hover,
.floorplans-download:hover,
.floorplan-arrow:hover {
  background: var(--light-beige);
  border-color: var(--light-beige);
  color: var(--dark-grey-charcoal);
}

.outline-button:hover,
.payment-secondary-btn:hover,
.carousel-arrow:hover {
  background: var(--dark-grey-charcoal);
  border-color: var(--dark-grey-charcoal);
  color: var(--light-beige);
}

.register-card button[type="submit"]:hover,
.payment-primary-btn:hover,
.final-cta-button:hover {
  background: var(--grey-charcoal);
  border-color: var(--grey-charcoal);
}

.header-cta:focus-visible,
.outline-button:focus-visible,
.floorplans-download:focus-visible,
.payment-secondary-btn:focus-visible,
.payment-primary-btn:focus-visible,
.final-cta-button:focus-visible,
.register-card button[type="submit"]:focus-visible,
.carousel-arrow:focus-visible,
.floorplan-arrow:focus-visible,
.nav a:focus-visible,
.footer-links a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--grey-charcoal);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 180px 1fr 230px;
  align-items: center;
  background: transparent;
  color: var(--white);
  transition:
    background-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.header.scrolled {
  background: var(--white);
  color: var(--dark-grey-charcoal);
  box-shadow: 0 1px 0 rgba(55, 48, 49, 0.1);
}

.brand-logo {
  height: 45px;
  width: auto;
}

.header .nav a {
  color: inherit;
}

.header-cta {
  justify-self: end;
  padding: 12px 21px;
  border: 1px solid var(--white);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-size: var(--font-small);
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
}

.header.scrolled .header-cta {
  border-color: var(--dark-grey-charcoal);
  color: var(--dark-grey-charcoal);
}

.header.scrolled .header-cta:hover {
  border-color: var(--dark-grey-charcoal);
  background: var(--dark-grey-charcoal);
  color: var(--white);
}

.brand-logo {
  height: 45px;
  width: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.nav a {
  font-size: var(--font-small);
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
}

.header-cta {
  justify-self: end;
  padding: 12px 21px;
  border: 1px solid var(--white);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-size: var(--font-small);
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
}

.register-card {
  position: absolute;
  z-index: 4;
  top: 150px;
  right: 7vw;
  width: 430px;
  padding: 30px 34px 32px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  background: rgba(243, 239, 233, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 24px 60px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--dark-grey-charcoal);
}

.form-title {
  margin-bottom: 20px;
  color: var(--dark-grey-charcoal);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.8px;
}

.register-card form {
  display: grid;
  gap: 12px;
}

.register-card label {
  color: var(--deep-red);
  font-weight: 500;
}

.register-card label,
.register-card legend {
  display: grid;
  gap: 5px;
  font-family: var(--font-body);
  line-height: 1.3;
  letter-spacing: 0;
}

.register-card input {
  width: 100%;
  height: 34px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  outline: none;
  background: rgba(255, 255, 255, 0.65);
  color: var(--dark-grey-charcoal);
  font-size: var(--font-body-size);
  transition:
    background-color var(--transition),
    border-color var(--transition);
}

.register-card input:focus {
  border-color: var(--grey-charcoal);
  background: var(--white);
}

.radio-row input[type="radio"],
.consent input[type="checkbox"] {
  accent-color: var(--deep-red);
}

.phone-input {
  position: relative;
  width: 100%;
  height: 42px;
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.65);
  font-family: var(--font-body);
  transition:
    background-color var(--transition),
    border-color var(--transition);
}

.phone-input.PhoneInput--focus {
  border-color: var(--grey-charcoal);
  background: var(--white);
}

.phone-input .PhoneInputInput {
  min-width: 0;
  height: 40px;
  flex: 1;
  padding: 0 12px !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  color: var(--dark-grey-charcoal) !important;
  font-family: var(--font-body) !important;
  font-size: var(--font-body-size) !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

.phone-country-select {
  position: static;
  flex: 0 0 50px;
}

.phone-country-trigger {
  width: 50px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  border-right: 1px solid rgba(76, 67, 66, 0.15);
  background: transparent;
  color: var(--dark-grey-charcoal);
}

.phone-country-trigger:hover,
.phone-country-trigger:focus-visible {
  background: rgba(255, 255, 255, 0.35);
}

.phone-country-trigger:focus-visible {
  outline: 0;
}

.phone-country-trigger .PhoneInputCountryIcon,
.phone-country-option .PhoneInputCountryIcon {
  width: 21px;
  height: 14px;
  flex-shrink: 0;
  background: transparent;
  box-shadow: none;
}

.phone-country-trigger .PhoneInputCountryIconImg,
.phone-country-option .PhoneInputCountryIconImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-country-chevron {
  width: 0;
  height: 0;
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
  border-top: 4px solid var(--dark-grey-charcoal);
  transition: transform var(--transition);
}

.phone-country-chevron.open {
  transform: rotate(180deg);
}

.phone-country-menu {
  position: absolute;
  z-index: 100;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(76, 67, 66, 0.2);
  background: var(--white);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.phone-country-search-wrap {
  position: relative;
  z-index: 2;
  padding: 10px;
  border-bottom: 1px solid rgba(76, 67, 66, 0.15);
  background: var(--white);
}

.register-card .phone-country-search {
  width: 100%;
  height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(76, 67, 66, 0.25);
  outline: 0;
  background: var(--white);
  color: var(--dark-grey-charcoal);
  font-family: var(--font-body);
  font-size: var(--font-body-size);
  box-shadow: none;
}

.register-card .phone-country-search:focus {
  border-color: var(--grey-charcoal);
  background: var(--white);
}

.phone-country-options {
  max-height: 230px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.phone-country-options::-webkit-scrollbar {
  width: 5px;
}

.phone-country-options::-webkit-scrollbar-track {
  background: var(--light-beige);
}

.phone-country-options::-webkit-scrollbar-thumb {
  background: var(--grey-charcoal);
  border-radius: var(--radius-pill);
}

.phone-country-option {
  width: 100%;
  min-height: 40px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 0;
  background: var(--white);
  color: var(--dark-grey-charcoal);
  font-family: var(--font-body);
  font-size: var(--font-body-size);
  line-height: 1.2;
  text-align: left;
}

.phone-country-option:hover,
.phone-country-option:focus-visible,
.phone-country-option.active {
  background: var(--light-beige);
}

.phone-country-option:focus-visible {
  outline: 0;
}

.phone-country-option-flag {
  width: 22px;
  display: flex;
  align-items: center;
}

.phone-country-option-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-country-option-code {
  color: var(--grey-charcoal);
  white-space: nowrap;
}

.register-card fieldset {
  margin: 3px 0 0;
  padding: 0;
  border: 0;
}

.radio-row {
  display: flex;
  gap: 24px;
  margin-top: 5px;
}

.radio-row legend {
  display: flex;
  align-items: center;
  gap: 6px;
}

.radio-row input,
.consent input {
  width: auto;
  height: auto;
}

.consent {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  gap: 8px !important;
  margin-top: 3px;
  line-height: 1.4;
}

.register-card button[type="submit"] {
  width: 210px;
  min-height: 40px;
  margin: 10px auto 0;
  border: 1px solid var(--deep-red);
  border-radius: var(--radius-pill);
  background: var(--deep-red);
  color: var(--light-beige);
  font-size: var(--font-small);
  letter-spacing: 0.7px;
}

.state-of-mind {
  min-height: 550px;
  display: grid;
  grid-template-columns: 35% 65%;
  background: var(--white);
}

.state-copy {
  padding: 76px 54px 70px;
}

.state-copy .eyebrow {
  margin-bottom: 22px;
}

.description {
  max-width: 440px;
  margin-top: 34px;
  font-size: var(--font-body-size);
  line-height: 1.7;
}

.state-image {
  margin: 50px 5vw 50px 0;
  overflow: hidden;
  background: var(--light-beige);
}

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

.residences {
  padding: 80px 0 85px;
  overflow: hidden;
  background: var(--light-beige);
}

.residences-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 55px;
  padding-left: var(--page-padding);
}

.residences-intro {
  padding-top: 65px;
}

.residences-intro .eyebrow {
  margin-bottom: 12px;
}

.residences-description {
  margin: 18px 0 34px;
  font-size: var(--font-body-size);
  line-height: 1.5;
}

.outline-button {
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid var(--dark-grey-charcoal);
  border-radius: var(--radius-pill);
  color: var(--dark-grey-charcoal);
  font-size: var(--font-small);
  line-height: 1;
  letter-spacing: 0.5px;
}

.residences-carousel {
  position: relative;
  min-width: 0;
}

.residences-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  user-select: none;
}

.residences-scroll:active {
  cursor: grabbing;
}

.residences-scroll::-webkit-scrollbar {
  display: none;
}

.residence-track {
  width: max-content;
  display: flex;
  gap: 24px;
  padding-right: 130px;
}

.residence-card {
  width: 340px;
  flex: 0 0 340px;
  scroll-snap-align: start;
}

.residence-media {
  width: 100%;
  height: 290px;
  object-fit: cover;
  pointer-events: none;
}

.residence-content {
  padding-top: 10px;
}

.residence-type {
  margin-bottom: 12px;
  color: var(--grey-charcoal);
  font-size: var(--font-small);
  line-height: 1;
  letter-spacing: 1px;
}

.residence-card-description {
  margin-top: 10px;
  font-size: var(--font-body-size);
  line-height: 1.5;
}

.residences-gradient {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(243, 239, 233, 0) 0%,
    rgba(243, 239, 233, 0.78) 62%,
    var(--light-beige) 100%
  );
}

.residence-controls {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: -52px;
  display: flex;
  gap: 8px;
}

.carousel-arrow,
.floorplan-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
}

.carousel-arrow {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(76, 67, 66, 0.55);
  background: var(--light-beige);
  color: var(--dark-grey-charcoal);
}

.tower-view {
  width: 100%;
  background: var(--black);
}

.tower-iframe {
  display: block;
  width: 100%;
  height: 820px;
  border: 0;
}

.place-to-belong {
  padding: 50px var(--page-padding) 105px;
  background: var(--white);
}

.belong-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.belong-item {
  min-width: 0;
}

.belong-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 21px;
  object-fit: cover;
}

.belong-content p {
  max-width: 390px;
  margin-top: 11px;
  font-size: var(--font-body-size);
  line-height: 1.5;
}

.floorplans {
  position: relative;
  isolation: isolate;
  padding: 52px 0 82px;
  overflow: hidden;
  background: var(--grey-charcoal);
  color: var(--light-beige);
}

.floorplans-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.floorplans::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(55, 48, 49, 0.9) 0%,
    rgba(55, 48, 49, 0.42) 35%,
    rgba(55, 48, 49, 0.18) 100%
  );
  pointer-events: none;
}

.floorplans-header,
.floorplans-carousel {
  position: relative;
  z-index: 2;
}

.floorplans h2,
.floorplans h3 {
  color: var(--light-beige);
}

.floorplans-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-padding);
  margin-bottom: 44px;
}

.floorplans-download {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid rgba(243, 239, 233, 0.25);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  color: var(--light-beige);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: var(--font-small);
  line-height: 1;
  letter-spacing: 0.5px;
}

.floorplans-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scroll-padding-left: 13vw;
  user-select: none;
}

.floorplans-scroll:active {
  cursor: grabbing;
}

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

.floorplans-track {
  width: max-content;
  display: flex;
  gap: 28px;
  padding-right: 180px;
}

.floorplans-track::before {
  content: "";
  flex: 0 0 calc(13vw - 28px);
}

.floorplan-card {
  width: clamp(430px, 30vw, 520px);
  flex: 0 0 clamp(430px, 30vw, 520px);
  padding: 25px 25px 23px;
  border: 1px solid rgba(243, 239, 233, 0.35);
  border-radius: 32px;
  background: rgba(243, 239, 233, 0.28);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 45px rgba(0, 0, 0, 0.12);
  scroll-snap-align: start;
}

.floorplan-image {
  width: 100%;
  aspect-ratio: 0.88 / 1;
  border-radius: 14px;
  object-fit: cover;
  background: var(--light-beige);
  pointer-events: none;
}

.floorplan-content {
  padding-top: 20px;
}

.floorplan-content p {
  margin-top: 9px;
  color: var(--light-beige);
  font-size: var(--font-body-size);
  line-height: 1.5;
}

.floorplans-gradient {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 150px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(76, 67, 66, 0) 0%,
    rgba(76, 67, 66, 0.45) 55%,
    rgba(76, 67, 66, 0.96) 100%
  );
}

.floorplan-controls {
  position: absolute;
  z-index: 4;
  right: 34px;
  bottom: 20px;
  display: flex;
  gap: 8px;
}

.floorplan-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(243, 239, 233, 0.65);
  background: rgba(76, 67, 66, 0.65);
  color: var(--light-beige);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.payment-plan {
  padding: 90px var(--page-padding) 100px;
  background: var(--light-beige);
  color: var(--dark-grey-charcoal);
}

.payment-plan-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 85px;
}

.payment-offer {
  margin-bottom: 14px;
  color: var(--deep-red);
  font-size: var(--font-small);
  line-height: 1;
  letter-spacing: 1px;
}

.payment-plan-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-secondary-btn,
.payment-primary-btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  font-size: var(--font-small);
  line-height: 1;
  letter-spacing: 0.6px;
}

.payment-secondary-btn {
  border: 1px solid rgba(76, 67, 66, 0.55);
  background: transparent;
  color: var(--dark-grey-charcoal);
}

.payment-primary-btn {
  border: 1px solid var(--deep-red);
  background: var(--deep-red);
  color: var(--light-beige);
}

.payment-timeline-shell {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.payment-timeline-shell::-webkit-scrollbar {
  display: none;
}

.payment-timeline {
  position: relative;
  min-width: 1450px;
  display: grid;
  grid-template-columns: repeat(9, minmax(155px, 1fr));
  padding-top: 2px;
}

.payment-timeline::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(76, 67, 66, 0.2);
}

.payment-step {
  position: relative;
  padding-right: 28px;
}

.payment-marker {
  position: relative;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border: 1px solid rgba(76, 67, 66, 0.4);
  border-radius: 50%;
  background: var(--light-beige);
}

.payment-marker span {
  font-size: var(--font-small);
  line-height: 1;
}

.payment-step-content {
  max-width: 150px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.payment-step-content strong {
  font-family: var(--font-display);
  color: var(--dark-grey-charcoal);
  font-size: 20px;
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.7px;
}

.payment-step-content span {
  color: var(--grey-charcoal);
  font-size: var(--font-body-size);
  line-height: 1.45;
}

.payment-step-final .payment-marker {
  border-color: var(--deep-red);
  background: var(--deep-red);
  color: var(--light-beige);
}

.payment-step-final .payment-step-content strong,
.payment-step-final .payment-step-content span {
  color: var(--deep-red);
}

.payment-step-final .payment-step-content strong {
  font-size: 20px;
}

.payment-step-final::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 16px;
  right: 100%;
  width: 45%;
  height: 1px;
  background: var(--deep-red);
}

.amenities {
  padding: 70px 4vw 95px;
  background: var(--dark-grey-charcoal);
  color: var(--light-beige);
}

.amenities h2,
.amenities h3,
.amenities .section-title {
  color: var(--light-beige);
}

.amenities-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.amenities-slider {
  width: 100%;
}

.amenities-image {
  position: relative;
  width: 100%;
  aspect-ratio: 2.05 / 1;
  overflow: hidden;
  background: var(--grey-charcoal);
}

.amenities-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: amenity-fade 260ms ease;
}

@keyframes amenity-fade {
  from {
    opacity: 0.72;
  }

  to {
    opacity: 1;
  }
}

.amenities-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: rgba(55, 48, 49, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.amenity-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(243, 239, 233, 0.4);
  transition:
    width var(--transition),
    height var(--transition),
    background-color var(--transition);
}

.amenity-dot:hover {
  background: var(--light-beige);
}

.amenity-dot.active {
  width: 11px;
  height: 11px;
  background: var(--light-beige);
}

.amenities-content {
  min-height: 120px;
  padding-top: 34px;
}

.amenities-level {
  margin-bottom: 10px;
  color: var(--light-beige);
  font-size: var(--font-small);
  line-height: 1;
  letter-spacing: 1px;
}

.amenities-lists {
  display: grid;
  grid-template-columns: 240px 240px;
  gap: 70px;
  margin-top: 24px;
}

.amenities-lists ul {
  margin: 0;
  padding-left: 16px;
}

.amenities-lists li {
  margin-bottom: 5px;
  color: var(--light-beige);
  font-size: var(--font-body-size);
  line-height: 1.4;
}

.final-cta {
  padding: 105px 0 110px;
  background: var(--white);
  color: var(--dark-grey-charcoal);
}

.final-cta-inner {
  width: min(760px, 82vw);
  margin-left: 13vw;
}

.final-cta p {
  max-width: 640px;
  margin-top: 18px;
  font-size: var(--font-body-size);
  line-height: 1.55;
}

.final-cta-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 54px;
  padding: 0 24px;
  border: 1px solid var(--deep-red);
  border-radius: var(--radius-pill);
  background: var(--deep-red);
  color: var(--light-beige);
  font-size: var(--font-small);
  line-height: 1;
  letter-spacing: 0.6px;
}

.site-footer {
  color: var(--light-beige);
}

.footer-top {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-charcoal);
}

.footer-signature {
  width: min(330px, 42vw);
  height: auto;
}

.footer-bottom {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 18px var(--page-padding);
  background: var(--dark-grey-charcoal);
}

.footer-brand {
  width: 120px;
  height: auto;
}

.footer-legal {
  text-align: right;
}

.footer-legal p {
  margin-bottom: 8px;
  color: var(--light-beige);
  font-size: var(--font-small);
  line-height: 1.4;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

.footer-links a {
  color: var(--light-beige);
  font-size: var(--font-small);
}

@media (max-width: 1100px) {
  .header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .register-card {
    right: 40px;
  }
}

@media (max-width: 900px) {
  .residences-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 35px;
  }

  .residence-card {
    width: 300px;
    flex-basis: 300px;
  }

  .residence-media {
    height: 255px;
  }

  .tower-iframe {
    height: 700px;
  }

  .belong-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 45px;
  }

  .floorplans-scroll {
    scroll-padding-left: 6vw;
  }

  .floorplans-track::before {
    flex-basis: calc(6vw - 28px);
  }

  .floorplan-card {
    width: 390px;
    flex-basis: 390px;
  }

  .amenities-lists {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 760px) {
  :root {
    --page-padding: 22px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 17px;
  }

  .hero {
    min-height: 900px;
  }

  .header {
    height: 72px;
    padding: 0 20px;
  }

  .brand-logo {
    width: 100px;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: var(--font-small);
  }

  .register-card {
    top: auto;
    right: 20px;
    bottom: 40px;
    left: 20px;
    width: auto;
  }

  .state-of-mind {
    grid-template-columns: 1fr;
  }

  .state-copy {
    padding: 55px 22px;
  }

  .state-image {
    min-height: 380px;
    margin: 0;
  }

  .residences {
    padding: 55px 0 80px;
  }

  .residences-layout {
    display: block;
    padding-left: 22px;
  }

  .residences-intro {
    padding: 0 22px 35px 0;
  }

  .residence-track {
    gap: 15px;
    padding-right: 70px;
  }

  .residence-card {
    width: 82vw;
    flex-basis: 82vw;
  }

  .residence-media {
    height: auto;
    aspect-ratio: 1.2 / 1;
  }

  .residences-gradient {
    width: 55px;
  }

  .residence-controls {
    right: 22px;
    bottom: -50px;
  }

  .tower-iframe {
    height: 560px;
  }

  .place-to-belong {
    padding: 60px 22px 75px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .belong-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .belong-image {
    margin-bottom: 17px;
  }

  .floorplans {
    padding: 45px 0 75px;
  }

  .floorplans-header {
    padding: 0 22px;
    margin-bottom: 30px;
  }

  .floorplans-download {
    min-height: 36px;
    padding: 0 14px;
    font-size: var(--font-small);
  }

  .floorplans-scroll {
    scroll-padding-left: 22px;
  }

  .floorplans-track {
    gap: 16px;
    padding-right: 75px;
  }

  .floorplans-track::before {
    flex-basis: 6px;
  }

  .floorplan-card {
    width: 82vw;
    flex-basis: 82vw;
    padding: 18px;
    border-radius: 25px;
  }

  .floorplans-gradient {
    width: 60px;
  }

  .floorplan-controls {
    right: 20px;
    bottom: 14px;
  }

  .payment-plan {
    padding: 65px 22px 75px;
  }

  .payment-plan-header {
    display: block;
    margin-bottom: 55px;
  }

  .payment-plan-actions {
    margin-top: 25px;
    flex-wrap: wrap;
  }

  .payment-secondary-btn,
  .payment-primary-btn {
    min-height: 36px;
    padding: 0 15px;
    font-size: var(--font-small);
  }

  .payment-timeline-shell {
    overflow: visible;
  }

  .payment-timeline {
    min-width: 0;
    display: block;
    padding: 0;
  }

  .payment-timeline::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 16px;
    width: 1px;
    height: auto;
  }

  .payment-step {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 22px;
    padding: 0 0 42px;
  }

  .payment-marker {
    margin: 0;
  }

  .payment-step-content {
    max-width: none;
    padding-top: 2px;
  }

  .payment-step-content strong {
    font-size: 27px;
  }

  .payment-step-final::before {
    display: none;
  }

  .payment-step-final .payment-step-content strong {
    font-size: 34px;
  }

  .amenities {
    padding: 55px 22px 70px;
  }

  .amenities-image {
    aspect-ratio: 1 / 1;
  }

  .amenities-dots {
    bottom: 15px;
  }

  .amenities-content {
    padding-top: 25px;
  }

  .amenities-lists {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .final-cta {
    padding: 70px 22px 75px;
  }

  .final-cta-inner {
    width: 100%;
    margin-left: 0;
  }

  .final-cta-button {
    margin-top: 35px;
  }

  .footer-top {
    min-height: 110px;
  }

  .footer-signature {
    width: min(270px, 70vw);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 22px;
  }

  .footer-legal {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }
}/* dm-sans-latin-ext-400-normal */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/assets/dm-sans-latin-ext-400-normal-BtiwyxMk.woff2) format('woff2'), url(/assets/dm-sans-latin-ext-400-normal-BjWJ59Pq.woff) format('woff');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* dm-sans-latin-400-normal */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/assets/dm-sans-latin-400-normal-CW0RaeGs.woff2) format('woff2'), url(/assets/dm-sans-latin-400-normal-BwCSEQnW.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}/* dm-sans-latin-ext-500-normal */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url(/assets/dm-sans-latin-ext-500-normal-BJfUCQsA.woff2) format('woff2'), url(/assets/dm-sans-latin-ext-500-normal-DR84L5F-.woff) format('woff');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* dm-sans-latin-500-normal */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url(/assets/dm-sans-latin-500-normal-B9HHJjqV.woff2) format('woff2'), url(/assets/dm-sans-latin-500-normal-Dr3UlScf.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}