@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");
@font-face {
  font-family: "Foriene Serif";
  src: url("../../assets/fonts/THE-FORIENE-SERIF-REGULAR.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Foriene Serif";
  src: url("../../assets/fonts/THE-FORIENE-SERIF-ITALIC.TTF") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "PP Editorial Old";
  src: url("../../assets/fonts/PPEDITORIALOLD-ULTRABOLD.OTF") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Editorial Old";
  src: url("../../assets/fonts/PPEDITORIALOLD-ITALIC.OTF") format("opentype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "PP Editorial Old";
  src: url("../../assets/fonts/PPEDITORIALOLD-ULTRALIGHT.OTF") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Host Grotesk";
  src: url("../../assets/fonts/host-grotesk.woff2") format("woff2"), url("../../assets/fonts/host-grotesk.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Host Grotesk";
  src: url("../../assets/fonts/host-grotesk-bold.woff2") format("woff2"), url("../../assets/fonts/host-grotesk-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.about-developers {
  background-color: #ffffff;
  padding: 5rem 0;
  width: 100%;
  overflow: hidden;
}
.about-developers__container {
  max-width: 1440px;
  padding: 0 4rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-bottom: 5rem;
}
.about-developers__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-developers__content {
  display: flex;
  flex-direction: column;
}
.about-developers__title {
  font-family: "Foriene Serif", Georgia, serif;
  font-size: clamp(3rem, 7vw, 3.75rem);
  line-height: 1.1;
  font-weight: 400;
  color: #1e1e1e;
  margin-bottom: 1rem;
}
.about-developers__title--accent {
  color: #b11116;
  font-style: italic;
  font-family: "PP Editorial Old", Georgia, serif;
}
@media (max-width: 480px) {
  .about-developers__title {
    text-align: left;
    font-size: clamp(2.5rem, 6vw, 3rem);
    margin-top: 0;
  }
}
.about-developers__description {
  font-family: "Manrope", "Host Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(0.875rem, 1.6vw, 0.9375rem);
  color: #1e1e1e;
  line-height: 1.6;
  margin-bottom: 4rem;
  max-width: 90%;
}
@media (max-width: 480px) {
  .about-developers__description {
    text-align: left;
  }
}
.about-developers__stats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.about-developers__stats-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
  width: 100%;
}
.about-developers__stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  min-height: 5rem;
  gap: 0.5rem;
  position: relative;
  padding-right: 1rem;
}
.about-developers__stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 5rem;
  width: 1px;
  background-color: #b11116;
  opacity: 0.5;
}
.about-developers__stat-item:last-child {
  padding-right: 0;
}
.about-developers__number {
  font-family: "PP Editorial Old", Georgia, serif;
  font-size: clamp(3rem, 7vw, 3.75rem);
  color: #b11116;
  font-style: italic;
  font-weight: 400;
}
@media (max-width: 480px) {
  .about-developers__number {
    font-size: clamp(2.5rem, 6vw, 3rem);
  }
}
.about-developers__label {
  font-family: "Manrope", "Host Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(0.75rem, 1.4vw, 0.8125rem);
  color: #1e1e1e;
  line-height: 1.4;
  text-align: center;
}
.about-developers__image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
}
.about-developers__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
@media (max-width: 480px) {
  .about-developers__image {
    width: 100%;
    height: 30rem;
    padding-bottom: 4rem;
  }
}
.about-developers__logo-badge {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.about-developers__logo-badge img {
  height: 24px;
  width: auto;
  display: block;
}
.about-developers__gallery {
  --about-gallery-gap: 0.75rem;
  --about-gallery-gap-half: calc(var(--about-gallery-gap) / 2);
  display: flex;
  gap: var(--about-gallery-gap);
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 480px) {
  .about-developers__gallery {
    padding-bottom: 0;
  }
}
.about-developers__gallery--marquee {
  width: max-content;
  max-width: none;
  overflow: visible;
  scroll-snap-type: none;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: auto;
  will-change: transform;
  animation: about-developers-marquee 34s linear infinite;
  scrollbar-width: none;
}
.about-developers__gallery--marquee::-webkit-scrollbar {
  display: none;
}
.about-developers__gallery .project-card {
  flex: 0 0 auto;
  width: clamp(33rem, 22vw, 36rem);
  aspect-ratio: 16/9;
  scroll-snap-align: start;
  overflow: hidden;
}
.about-developers__gallery .project-card .project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-developers__gallery::-webkit-scrollbar {
  height: 0.5rem;
  display: none;
}
.about-developers__gallery::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 9999px;
}
@keyframes about-developers-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - var(--about-gallery-gap-half)));
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-developers__gallery {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    animation: none;
  }
  .about-developers__gallery::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 900px) {
  .about-developers__top {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-developers__description {
    max-width: 100%;
  }
  .about-developers__gallery .project-card {
    width: clamp(12.5rem, 44vw, 15rem);
  }
}
@media (max-width: 600px) {
  .about-developers__container {
    padding: 0 1.5rem;
  }
  .about-developers__stats-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding-bottom: 0.5rem;
  }
  .about-developers__stat-item {
    padding-right: 1rem;
    width: auto;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5rem;
  }
  .about-developers__stat-item::after {
    display: none;
  }
  .about-developers__stat-item:nth-child(1), .about-developers__stat-item:nth-child(2) {
    position: relative;
  }
  .about-developers__stat-item:nth-child(1)::after, .about-developers__stat-item:nth-child(2)::after {
    display: block;
    content: "";
    position: absolute;
    right: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    height: 5rem;
    width: 1px;
    background-color: rgba(177, 17, 22, 0.5);
  }
  .about-developers__stat-item:nth-child(3) {
    grid-column: 1/-1;
    padding-top: 1rem;
  }
  .about-developers__gallery {
    gap: 0.75rem;
  }
  .about-developers__gallery .project-card {
    width: clamp(12rem, 78vw, 14rem);
  }
}

.floor-plans {
  background-color: #ffffff;
  padding: 3rem 0;
  width: 100%;
  overflow: hidden;
}
.floor-plans__container {
  max-width: 1440px;
  padding: 0 4rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 768px) {
  .floor-plans__container {
    padding: 0.25rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .floor-plans__container {
    padding: 0.25rem 1.5rem;
  }
}
.floor-plans__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.floor-plans__title {
  font-family: "Foriene Serif", Georgia, serif;
  font-size: clamp(3rem, 7vw, 3.75rem);
  line-height: 1.1;
  font-weight: 400;
  color: #1e1e1e;
  margin-bottom: 0.75rem;
}
.floor-plans__title--accent {
  color: #b11116;
  font-family: "PP Editorial Old", Georgia, serif;
  font-style: italic;
}
@media (max-width: 480px) {
  .floor-plans__title {
    text-align: left;
    font-size: clamp(2.5rem, 6vw, 3rem);
    margin-top: 0;
  }
}
.floor-plans__subtitle {
  font-family: "Manrope", "Host Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(0.875rem, 1.6vw, 0.9375rem);
  color: #1e1e1e;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 650px;
}
@media (max-width: 480px) {
  .floor-plans__subtitle {
    text-align: left;
  }
}
.floor-plans__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}
.floor-plans__masterplan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.floor-plans__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 650px;
}
.floor-plans__image {
  width: 100%;
  height: auto;
  display: block;
}
.floor-plans__compass {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: auto;
}
.floor-plans__caption {
  font-family: "Manrope", "Host Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: clamp(1.125rem, 2.6vw, 1.25rem);
  color: #1e1e1e;
  margin: 0;
}
.floor-plans__viewer {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-left: 2rem;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}
.floor-plans__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.floor-plans__tab {
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
  color: #1e1e1e;
  font-family: "Manrope", "Host Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(0.875rem, 1.6vw, 0.9375rem);
  cursor: pointer;
  transition: all 0.2s ease;
}
.floor-plans__tab:hover {
  border-color: rgba(0, 0, 0, 0.3);
  color: #1e1e1e;
}
.floor-plans__tab--active {
  background-color: #b11116;
  border-color: #b11116;
  color: #ffffff;
}
.floor-plans__tab--active:hover {
  border-color: #b11116;
  color: #ffffff;
}
.floor-plans__display {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floor-plans__detail-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  opacity: 0.7;
  filter: blur(2px);
}
.floor-plans__download-btn {
  position: absolute;
  z-index: 2;
}

@media (max-width: 1024px) {
  .floor-plans__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .floor-plans__viewer {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 3rem;
    align-items: center;
  }
  .floor-plans__tabs {
    justify-content: center;
  }
}
.highlights {
  padding: 2rem 0;
  background-color: #ffffff;
  width: 100%;
}
.highlights__container {
  max-width: 1440px;
  padding: 0 4rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 768px) {
  .highlights__container {
    padding: 0.25rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .highlights__container {
    padding: 0.25rem 1.5rem;
  }
}
.highlights {
  /* Header Section */
}
.highlights__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.highlights__title {
  font-family: "PP Editorial Old", Georgia, serif;
  font-size: clamp(3rem, 7vw, 3.75rem);
  line-height: 1.1;
  font-weight: 400;
  color: #1e1e1e;
  margin: 0;
}
.highlights__title--accent {
  color: #b11116;
  font-family: "Foriene Serif", Georgia, serif;
  font-weight: 500;
  font-style: italic;
}
@media (max-width: 480px) {
  .highlights__title {
    font-size: clamp(2.5rem, 6vw, 3rem);
    text-align: left;
    margin-bottom: -2rem;
  }
}
.highlights {
  /* Stats Section */
}
.highlights__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.highlights__stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  gap: 0.5rem;
  position: relative;
  padding-right: 1rem;
}
.highlights__stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 5rem;
  width: 1px;
  background-color: #b11116;
  opacity: 0.5;
}
.highlights__stat-item:last-child {
  padding-right: 0;
}
.highlights__stat-number {
  font-family: "PP Editorial Old", Georgia, serif;
  font-size: clamp(3rem, 7vw, 3.75rem);
  font-weight: 300;
  font-style: italic;
  color: #b11116;
  line-height: 1;
}
@media (max-width: 480px) {
  .highlights__stat-number {
    font-size: clamp(2.5rem, 6vw, 3rem);
    text-align: left;
  }
}
.highlights__stat-label {
  font-family: "Manrope", "Host Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(0.75rem, 1.4vw, 0.8125rem);
  line-height: 1.4;
  font-weight: 500;
  color: #1e1e1e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.highlights__stat-label span {
  color: #b11116;
  font-family: "PP Editorial Old", Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
}
.highlights {
  /* Gallery Section */
}
.highlights__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
}
.highlights__card {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: #ffffff;
}
.highlights__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}
.highlights__card:hover .highlights__card-img {
  transform: scale(1.03);
}
.highlights__card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 60%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}
.highlights__card-text {
  position: absolute;
  color: #ffffff;
  font-family: "Manrope", "Host Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(0.875rem, 1.6vw, 0.9375rem);
  padding: 0.5rem 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}
.highlights__card-text--top-left {
  top: 1rem;
  left: 1rem;
}
.highlights__card-text--bottom-right {
  bottom: 1rem;
  right: 1rem;
  text-align: right;
  background-color: rgba(177, 17, 22, 0.5);
}

@media (max-width: 1024px) {
  .highlights__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .highlights__stats {
    width: 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .highlights__stats {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 2rem;
  }
  .highlights__gallery {
    grid-template-columns: 1fr;
  }
  .highlights__card {
    aspect-ratio: 4/3;
  }
}
.amenities {
  background-color: #f6f4df;
  padding-top: 3rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.amenities__bg-shadow {
  position: absolute;
  width: 600px;
  height: 600px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.amenities__bg-shadow--top-right {
  top: -10%;
  right: -10%;
  background-image: url("../../assets/images/nature_mock_up.png");
}
.amenities__bg-shadow--bottom-center {
  bottom: 10%;
  left: 40%;
  background-image: url("../../assets/images/nature_mock_up.png");
  transform: scaleX(-1);
}
.amenities__container {
  max-width: 1440px;
  padding: 0 4rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .amenities__container {
    padding: 0.25rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .amenities__container {
    padding: 0.25rem 1.5rem;
  }
}
.amenities__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.amenities__title {
  font-family: "Foriene Serif", Georgia, serif;
  font-size: clamp(3rem, 7vw, 3.75rem);
  line-height: 1.2;
  font-weight: 400;
  color: #1e1e1e;
  margin-bottom: 0.75rem;
}
.amenities__title--accent {
  font-family: "PP Editorial Old", Georgia, serif;
  color: #b11116;
  font-style: italic;
}
@media (max-width: 480px) {
  .amenities__title {
    text-align: left;
    font-size: clamp(2.25rem, 5.5vw, 2.5rem);
    margin-top: 0;
  }
}
.amenities__subtitle {
  font-family: "Manrope", "Host Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(0.875rem, 1.6vw, 0.9375rem);
  color: #1e1e1e;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 720px;
}
@media (max-width: 480px) {
  .amenities__subtitle {
    text-align: left;
  }
}
.amenities__gallery {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}
.amenities__track {
  --amenities-track-gap: 2rem;
  --amenities-track-gap-half: 1rem;
  display: flex;
  gap: var(--amenities-track-gap);
  width: max-content;
  padding: 0;
  will-change: transform;
}
.amenities__track .amenity-card {
  flex: 0 0 420px;
}
.amenities__track--marquee {
  animation: amenities-marquee-left 28s linear infinite;
}
.amenities__track--top {
  margin-left: max(2rem, (100vw - 1440px) / 2);
}
.amenities__track--bottom {
  animation-name: amenities-marquee-right;
  margin-left: max(-10rem, (100vw - 1440px) / 2 - 10rem);
}

@keyframes amenities-marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - var(--amenities-track-gap-half)));
  }
}
@keyframes amenities-marquee-right {
  from {
    transform: translateX(calc(-50% - var(--amenities-track-gap-half)));
  }
  to {
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .amenities__track {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    animation: none;
  }
  .amenities__track::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 768px) {
  .amenities__track {
    --amenities-track-gap: 1rem;
    --amenities-track-gap-half: 0.5rem;
  }
  .amenities__track .amenity-card {
    flex-basis: 280px;
  }
  .amenities__track--top {
    margin-left: 1rem;
  }
  .amenities__track--bottom {
    margin-left: -6rem;
  }
}
.location {
  background-color: #1e1e1e;
  color: #ffffff;
  padding: 4rem 0;
  width: 100%;
  overflow: hidden;
}
.location__container {
  max-width: 1440px;
  padding: 0 4rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}
.location__content {
  display: flex;
  flex-direction: column;
  max-width: 40rem;
}
.location__title {
  font-family: "PP Editorial Old", Georgia, serif;
  font-size: clamp(3rem, 7vw, 3.75rem);
  line-height: 1;
  font-weight: 200;
  margin-bottom: 4rem;
  color: #ffffff;
}
.location__title--italic {
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 3rem);
}
@media (max-width: 480px) {
  .location__title {
    font-size: clamp(2.5rem, 6vw, 3rem);
    text-align: left;
    margin-top: -0.25rem;
    margin-bottom: 3rem;
  }
}
.location__features {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}
.location__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #b11116;
}
.location__feature:first-child {
  padding-top: 0;
}
.location__feature:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.location__feature-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.location__feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.location__feature-text {
  font-family: "Manrope", "Host Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.2px;
}
.location__text-accent {
  color: #f4a700;
  font-family: "Foriene Serif", Georgia, serif;
  font-weight: 500;
}
.location__map-wrapper {
  width: 100%;
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
}
.location__map-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .location__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .location__content {
    max-width: 100%;
  }
  .location__map-wrapper {
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .location {
    padding: 3rem 0;
  }
  .location__container {
    padding: 0 1.5rem;
  }
  .location__feature-text {
    font-size: clamp(0.875rem, 1.6vw, 0.9375rem);
  }
}
.feature-card {
  background-color: #ffffff;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(177, 17, 22, 0.08);
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.feature-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.feature-card__icon-wrapper {
  width: 3.125rem;
  height: 3.125rem;
  background-color: #b11116;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-card__icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.feature-card__title {
  font-family: "Manrope", "Host Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.125rem, 2.6vw, 1.25rem);
  font-weight: 600;
  color: #1e1e1e;
  line-height: 1.3;
  margin: 0;
}
.feature-card__desc {
  font-family: "Manrope", "Host Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(0.875rem, 1.6vw, 0.9375rem);
  color: #1e1e1e;
  line-height: 1.6;
  margin: 0;
}

.features {
  background-color: #f6f4df;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.features__bg-leaf {
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
.features__bg-leaf--top-left {
  top: -50px;
  left: 0px;
  background-image: url("../../assets/images/nature_mock_up.png");
}
.features__container {
  max-width: 1440px;
  padding: 0 4rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .features__container {
    padding: 0.25rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .features__container {
    padding: 0.25rem 1.5rem;
  }
}
.features__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
@media (max-width: 480px) {
  .features__header {
    text-align: left;
    font-size: clamp(2.5rem, 6vw, 3rem);
  }
}
.features__title {
  font-family: "Foriene Serif", Georgia, serif;
  font-size: clamp(3rem, 7vw, 3.75rem);
  line-height: 1.1;
  font-weight: 400;
  color: #1e1e1e;
  margin-bottom: 1rem;
}
.features__title--accent {
  color: #b11116;
  font-style: italic;
}
@media (max-width: 480px) {
  .features__title--accent {
    font-size: clamp(2.25rem, 5.5vw, 2.5rem);
    text-align: left;
  }
}
@media (max-width: 480px) {
  .features__title {
    text-align: left;
    font-size: clamp(2.5rem, 6vw, 3rem);
    margin-top: 0;
  }
}
.features__subtitle {
  font-family: "Manrope", "Host Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(0.875rem, 1.6vw, 0.9375rem);
  color: #1e1e1e;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 700px;
}
.features__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 0;
}

.feature-rows {
  background-color: #ffffff;
  padding: 4rem 0;
  width: 100%;
}
.feature-rows__container {
  max-width: 1440px;
  padding: 0 4rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .feature-rows__container {
    padding: 3rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .feature-rows__container {
    padding: 0.25rem 1.5rem;
  }
}

.features__rows {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  position: relative;
  isolation: isolate;
}
.feature-row--reverse {
  grid-template-columns: 1.2fr 0.8fr;
  direction: rtl;
}
.feature-row--reverse > * {
  direction: ltr;
}
.feature-row__content {
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.feature-row__content--left {
  padding-right: 2rem;
}
.feature-row__content--right {
  padding-left: 2rem;
}
.feature-row__title {
  font-family: "Foriene Serif", Georgia, serif;
  font-size: clamp(3rem, 7vw, 3.75rem);
  line-height: 1.2;
  font-weight: 400;
  color: #1e1e1e;
  margin-bottom: 3rem;
}
.feature-row__title--accent {
  font-family: "PP Editorial Old", Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 3rem);
  color: #b11116;
  font-style: italic;
  display: block;
}
@media (max-width: 480px) {
  .feature-row__title--accent {
    font-size: clamp(2.25rem, 5.5vw, 2.5rem);
    text-align: left;
  }
}
@media (max-width: 480px) {
  .feature-row__title {
    font-size: clamp(2.5rem, 6vw, 3rem);
    text-align: left;
    margin-top: 0;
    margin-bottom: 1rem;
  }
}
.feature-row__text-block {
  padding: 2rem;
  position: relative;
}
.feature-row__text-block::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100vw;
  right: -100vw;
  background-color: #f6f4df;
  z-index: 0;
}
.feature-row__text-block p {
  font-family: "Manrope", "Host Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(0.875rem, 1.6vw, 0.9375rem);
  color: #1e1e1e;
  line-height: 1.6;
  margin: 0;
  max-width: 400px;
  position: relative;
  z-index: 2;
}
@media (max-width: 480px) {
  .feature-row__text-block {
    padding: 1rem 0;
  }
}
.feature-row__image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  z-index: 1;
}
.feature-row__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-row__image-caption {
  position: absolute;
  bottom: 1rem;
  padding: 0.5rem 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-family: "Foriene Serif", Georgia, serif;
  font-size: 1.2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  background-color: rgba(177, 17, 22, 0.5);
}
.feature-row__image-caption .feature-row__caption-italic {
  font-style: italic;
}

@media (max-width: 1024px) {
  .features__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .feature-row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .feature-row__content {
    padding: 0;
  }
  .feature-row__content--left, .feature-row__content--right {
    padding: 0;
  }
  .feature-row__text-block::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .features {
    padding: 3rem 0;
  }
  .features__cards {
    grid-template-columns: 1fr;
  }
  .feature-rows {
    padding: 3rem 0;
  }
}
.gallery {
  background-color: #f6f4df;
  padding: 4rem 0;
  width: 100%;
  overflow: hidden;
}
.gallery__container {
  max-width: 1440px;
  padding: 0 4rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .gallery__container {
    padding: 0.25rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .gallery__container {
    padding: 0.25rem 1.5rem;
  }
}
.gallery__header {
  text-align: center;
  margin-bottom: 2rem;
}
.gallery__title {
  font-family: "Foriene Serif", Georgia, serif;
  font-size: clamp(3rem, 7vw, 3.75rem);
  color: #1e1e1e;
  font-weight: 500;
  margin: 0;
}
.gallery__title--accent {
  color: #b11116;
  font-style: italic;
  font-family: "PP Editorial Old", Georgia, serif;
  font-weight: 400;
}
@media (max-width: 480px) {
  .gallery__title {
    text-align: left;
    font-size: clamp(2.5rem, 6vw, 3rem);
  }
}
.gallery__collage {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  margin: 0 auto;
  border-radius: 0.5rem;
  overflow: hidden;
  background-image: url("../assets/images/gallery/gallery-main-bg-img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.gallery__item {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
}
.gallery__item:hover .gallery__image {
  transform: scale(1.05);
}
.gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery__item--main {
  display: none;
}
.gallery__item--tr1 {
  top: 0;
  right: 18%;
  width: 28%;
  height: 35%;
  z-index: 2;
  border-left: 1rem solid #f6f4df;
  border-bottom: 1rem solid #f6f4df;
  border-bottom-left-radius: 0.5rem;
}
.gallery__item--tr2 {
  top: 0;
  right: 0%;
  width: 18%;
  height: 45%;
  z-index: 2;
  border-left: 1rem solid #f6f4df;
  border-bottom: 1rem solid #f6f4df;
  border-bottom-left-radius: 0.5rem;
}
.gallery__item--bl1 {
  bottom: 0%;
  left: 0%;
  width: 30%;
  height: 35%;
  z-index: 2;
  border-top: 1rem solid #f6f4df;
  border-right: 1rem solid #f6f4df;
}
.gallery__item--bl2 {
  bottom: 0%;
  left: 30.8%;
  width: 18%;
  height: 35%;
  z-index: 2;
  border-top: 1rem solid #f6f4df;
  border-left: 0.25rem solid #f6f4df;
  border-right: 1rem solid #f6f4df;
  border-top-right-radius: 0.5rem;
}
.gallery__item--br1 {
  bottom: 0%;
  right: 0%;
  width: 15%;
  height: 20%;
  z-index: 2;
  border-top: 1rem solid #f6f4df;
  border-left: 1rem solid #f6f4df;
  border-top-left-radius: 0.5rem;
}
@media (max-width: 1024px) {
  .gallery__collage {
    padding-bottom: 80%;
  }
  .gallery__item {
    border-width: 4px;
    border-radius: 8px;
  }
}
@media (max-width: 768px) {
  .gallery__collage {
    position: static;
    padding-bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    background-image: none;
    border-radius: 0;
  }
  .gallery__item {
    position: static;
    width: 100%;
    height: 200px;
    border: none;
    box-shadow: none;
  }
  .gallery__item--main {
    display: block;
    grid-column: 1/-1;
    height: 300px;
  }
  .gallery__item--tr1 {
    grid-column: 1/2;
  }
  .gallery__item--tr2 {
    grid-column: 2/3;
  }
  .gallery__item--bl1 {
    grid-column: 1/-1;
    height: 250px;
  }
  .gallery__item--bl2 {
    grid-column: 1/2;
  }
  .gallery__item--br1 {
    grid-column: 2/3;
  }
}

.contact {
  background-color: #ffffff;
  padding: 1.5rem 0;
  width: 100%;
}
.contact__container {
  max-width: 1440px;
  padding: 0 4rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .contact__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .contact__container {
    padding: 0.25rem 1.5rem;
  }
}
.contact__content {
  display: flex;
  flex-direction: column;
  padding-right: 1rem;
}
@media (max-width: 480px) {
  .contact__content {
    align-items: start;
    justify-content: start;
  }
}
.contact__header {
  position: relative;
  margin-bottom: 1rem;
  width: 100%;
}
.contact__title {
  width: 100%;
  font-family: "Foriene Serif", Georgia, serif;
  font-size: clamp(3rem, 7vw, 3.75rem);
  font-weight: 400;
  color: #1e1e1e;
  line-height: 1.1;
  margin-bottom: -0.5rem;
}
.contact__title--accent {
  color: #b11116;
  font-family: "PP Editorial Old", Georgia, serif;
  font-style: italic;
}
@media (max-width: 480px) {
  .contact__title {
    text-align: left;
    font-size: clamp(2.5rem, 6vw, 3rem);
    margin-top: 0;
  }
}
.contact__decor-birds {
  position: absolute;
  top: -10px;
  right: 20%;
  width: 40px;
  opacity: 0.8;
}
.contact__description {
  font-family: "Manrope", "Host Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(0.875rem, 1.6vw, 0.9375rem);
  line-height: 1.6;
  color: #1e1e1e;
  margin-bottom: 2rem;
  max-width: 500px;
}
@media (max-width: 480px) {
  .contact__description {
    text-align: left;
  }
}
.contact__image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
}
.contact__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .contact__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact__content {
    padding-right: 0;
    align-items: center;
    text-align: center;
  }
  .contact__decor-birds {
    right: 0;
  }
  .contact__description {
    max-width: 100%;
  }
  .contact .form {
    max-width: 100%;
  }
  .contact__image-wrapper {
    min-height: 400px;
  }
}
@media (max-width: 768px) {
  .contact__decor-birds {
    display: none;
  }
  .contact__image-wrapper {
    min-height: 300px;
  }
  .contact .form {
    width: 100%;
  }
  .contact__description {
    font-size: clamp(0.75rem, 1.4vw, 0.8125rem);
  }
}
@media (max-width: 480px) {
  .contact__image-wrapper {
    min-height: 200px;
  }
  .contact .form {
    width: 100%;
  }
  .contact__content {
    gap: 0.5rem;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8) 100%);
}
.hero__container {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: 8rem;
}
.hero__content {
  max-width: 1440px;
  padding: 0 4rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-left: auto;
  text-align: right;
}
.hero__title {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: #ffffff;
  font-family: "Foriene Serif", Georgia, serif;
  letter-spacing: 0;
}
.hero__title-line {
  font-family: "Foriene Serif", Georgia, serif;
  font-size: clamp(3.75rem, 8vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
}
.hero__title-line--serif {
  font-family: "Foriene Serif", Georgia, serif;
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 3rem);
  text-align: left;
}
.hero__location {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: #ffffff;
}
.hero__location-icon {
  width: 20px;
  height: 20px;
}
.hero__location-text {
  font-family: "Manrope", "Host Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  margin: 0;
}
.hero__cta-wrapper {
  margin-top: 0.5rem;
}
.hero__pricing {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 0.5rem;
}
.hero__pricing-label {
  font-family: "Manrope", "Host Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(0.875rem, 1.6vw, 0.9375rem);
  color: #ffffff;
}
.hero__pricing-value {
  font-family: "Manrope", "Host Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}
.hero__clouds {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 65vh;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}
.hero__cloud-white {
  position: absolute;
  left: 0;
  bottom: -200px;
  width: 100%;
  height: 400px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 40%);
  z-index: 0;
  will-change: transform;
}
.hero__cloud {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
}
.hero__cloud img {
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}
.hero__cloud--back {
  z-index: 1;
  opacity: 0.75;
}
.hero__cloud--front {
  z-index: 2;
}
.hero .hero__cloud,
.hero .hero__cloud img {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.error-message {
  display: block;
  color: red;
  font-size: 13px;
  margin-top: 5px;
}

.form__input.error {
  border-color: red;
}

.form__input.success {
  border-color: green;
}

/* modal css */
.site-visit-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.site-visit-modal.active {
  display: flex;
}

.site-visit-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.site-visit-modal__content {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  z-index: 2;
}

.site-visit-modal__title {
  margin-bottom: 20px;
}

.site-visit-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  background: none;
  font-size: 28px;
  cursor: pointer;
}

.site-visit-error {
  display: block;
  color: red;
  font-size: 13px;
  margin-top: 5px;
}

.form__input.site-visit-input-error {
  border-color: red;
}

.form__input.site-visit-input-success {
  border-color: green;
}

/* floor plan modal */
.floor-plan-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.floor-plan-modal.active {
  display: flex;
}

.floor-plan-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.floor-plan-modal__content {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  z-index: 2;
}

.floor-plan-modal__title {
  margin-bottom: 20px;
}

.floor-plan-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  background: none;
  font-size: 28px;
  cursor: pointer;
}

.floor-plan-error {
  display: block;
  color: red;
  font-size: 13px;
  margin-top: 5px;
}

.form__input.floor-plan-input-error {
  border-color: red;
}

.form__input.floor-plan-input-success {
  border-color: green;
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
  }
  .hero__overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 80%);
  }
  .hero__container {
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    margin-right: 0;
    padding-bottom: 10vh;
  }
  .hero__content {
    width: 100%;
    max-width: 100%;
    padding: 0 1.5rem;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
  }
  .hero__title-line {
    font-size: clamp(3rem, 7vw, 3.75rem);
  }
  .hero__title-line--serif {
    font-size: clamp(1.875rem, 4.8vw, 2.25rem);
    text-align: center;
  }
  .hero__location, .hero__pricing {
    justify-content: center;
  }
  .hero__clouds {
    height: 70vh;
    bottom: -8vh;
  }
  .hero__cloud-white {
    bottom: -240px;
    height: 460px;
  }
}
@media (max-width: 480px) {
  .hero {
    min-height: 100svh;
  }
  .hero__container {
    padding-bottom: 5vh;
  }
  .hero__overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.35) 72%, rgba(0, 0, 0, 0.55) 100%);
  }
  .hero__content {
    padding: 0 1rem;
  }
  .hero__title-line {
    font-size: clamp(3rem, 7vw, 3.75rem);
  }
  .hero__title-line--serif {
    font-size: clamp(2.25rem, 5.5vw, 2.5rem);
  }
  .hero__location-icon {
    width: 18px;
    height: 18px;
  }
  .hero__pricing {
    gap: 0.5rem;
  }
  .hero__pricing-value {
    font-size: clamp(1.25rem, 3.2vw, 1.5rem);
  }
  .hero__clouds {
    height: 75vh;
    bottom: -10vh;
  }
  .hero__cloud-white {
    bottom: -260px;
    height: 480px;
  }
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #f6f4df;
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding-bottom: 3rem;
}
.menu-overlay__inner {
  max-width: 1440px;
  padding: 0 4rem;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  background-color: #f6f4df;
  padding: 1rem;
  gap: 2rem;
}
.menu-overlay {
  /* HEADER */
}
.menu-overlay__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 2.5rem;
  position: relative;
}
.menu-overlay__close {
  width: 3rem;
  height: 3rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  background-color: #b11116;
  border-radius: 9999px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.menu-overlay__close:hover {
  transform: scale(1.05) rotate(90deg);
}
.menu-overlay__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 3rem;
}
.menu-overlay__logo-img {
  height: 100%;
  width: auto;
  display: block;
}
.menu-overlay {
  /* NAVIGATION */
}
.menu-overlay__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.menu-overlay__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 1250px;
}
.menu-overlay__item {
  text-align: center;
  border-bottom: 1px solid rgba(30, 30, 30, 0.2);
  overflow: hidden;
  font-family: "Foriene Serif", Georgia, serif;
}
.menu-overlay__item:last-child {
  border-bottom: none;
}
.menu-overlay__link {
  display: block;
  padding: 1rem 0;
  color: #1e1e1e;
  font-family: "Foriene Serif", Georgia, serif;
  font-size: clamp(2.25rem, 5.5vw, 2.5rem);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
.menu-overlay__link:hover {
  color: #b11116;
  transform: translateY(-2px);
}
.menu-overlay {
  /* RESPONSIVE */
}
@media (max-width: 768px) {
  .menu-overlay__header {
    padding: 0.5rem 0;
  }
  .menu-overlay__logo {
    height: 2rem;
  }
  .menu-overlay__close {
    width: 2rem;
    height: 2rem;
  }
  .menu-overlay__cta {
    display: none;
  }
  .menu-overlay__link {
    padding: 1rem 0;
    font-size: clamp(1.25rem, 3.2vw, 1.5rem);
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
}
.header--scrolled {
  background-color: #f6f4df;
}
.header__container {
  max-width: 1440px;
  padding: 0 4rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.header__menu {
  justify-self: start;
}
.header__logo {
  display: block;
  height: 40px;
  justify-self: center;
}
.header__logo-img {
  display: block;
  width: auto;
  height: 100%;
}
.header__action {
  justify-self: end;
  white-space: nowrap;
  padding: 0.5rem 0.75rem;
  font-size: clamp(0.75rem, 1.4vw, 0.8125rem);
  font-family: "Manrope", "Host Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  letter-spacing: 0.35px;
}

@media (max-width: 768px) {
  .header {
    padding: 0.75rem 0;
  }
  .header__container {
    padding: 0 1.5rem;
    gap: 0.75rem;
  }
  .header__logo {
    height: 10rem;
  }
  .header__action {
    padding: 0.25rem 0.5rem;
    font-size: clamp(0.75rem, 1.4vw, 0.8125rem);
    letter-spacing: 0.3px;
  }
  .header__menu {
    width: 2.75rem;
    height: 2.75rem;
  }
}
@media (max-width: 480px) {
  .header__container {
    padding: 0 1rem;
    gap: 0.5rem;
  }
  .header__logo {
    height: 30px;
  }
  .header__action {
    padding: 0.25rem 0.5rem;
    font-size: 0.625rem;
    letter-spacing: 0.25px;
  }
  .header__menu {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.footer {
  background-color: #2b1b1b;
  color: #ffffff;
  padding: 3rem 0 2rem 0;
  width: 100%;
  font-family: "Manrope", "Host Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
}
.footer__container {
  max-width: 1440px;
  padding: 0 4rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .footer__container {
    padding: 0.25rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .footer__container {
    padding: 0.25rem 1.5rem;
  }
}
.footer__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.footer__heading {
  font-family: "Foriene Serif", Georgia, serif;
  font-size: clamp(1.25rem, 3.2vw, 1.5rem);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 1px;
  margin: 0;
}
.footer__heading--right {
  width: 300px;
  text-align: left;
}
.footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 0 3rem 0;
  width: 100%;
}
.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 2rem;
}
.footer__brand-col {
  flex: 1;
  max-width: 400px;
}
.footer__logo {
  width: 200px;
  height: auto;
  margin-bottom: 1rem;
}
.footer__description {
  font-size: clamp(0.875rem, 1.6vw, 0.9375rem);
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
  text-align: justify;
}
.footer__center-col {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.footer__back-to-top {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer__back-to-top:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}
.footer__back-to-top svg {
  width: 30px;
  height: 30px;
}
.footer__contact-col {
  width: 300px;
  flex-shrink: 0;
}
.footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.footer__contact-icon {
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer__contact-icon img {
  width: 14px;
  height: 14px;
  filter: invert(1);
}
.footer__contact-link, .footer__contact-address {
  font-size: clamp(0.875rem, 1.6vw, 0.9375rem);
  color: #ffffff;
  text-decoration: none;
  font-style: normal;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.footer__contact-link:hover {
  opacity: 0.8;
}
.footer__socials {
  display: flex;
  gap: 0.75rem;
}
.footer__social-link {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.footer__social-link img {
  width: 16px;
  height: 16px;
}
.footer__social-link:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(0.875rem, 1.6vw, 0.9375rem);
  color: rgba(255, 255, 255, 0.7);
}
.footer__copyright, .footer__credits {
  margin: 0;
}
.footer__copyright a, .footer__credits a {
  text-decoration: none;
  color: #f4a700;
}
.footer__legal-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__legal-link:hover {
  color: #ffffff;
}
@media (max-width: 1024px) {
  .footer__main {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer__center-col {
    order: 3;
    width: 100%;
    flex: none;
    margin-top: 3rem;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer__header {
    flex-direction: column;
    gap: 0.75rem;
    display: none;
  }
  .footer__main {
    flex-direction: column;
    gap: 3rem;
  }
  .footer__brand-col, .footer__contact-col {
    width: 100%;
    max-width: 100%;
  }
}

.project-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #f6f4df;
}
.project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.project-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.62) 45%, rgba(0, 0, 0, 0.2) 78%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
.project-card__title {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-family: "Foriene Serif", Georgia, serif;
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.2px;
  padding: 0 0.75rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  z-index: 2;
  margin: 0;
}
.project-card:hover .project-card__image {
  transform: scale(1.03);
}

.amenity-card {
  position: relative;
  flex: 0 0 420px;
  width: 420px;
  height: 280px;
  overflow: hidden;
  background-color: #ffffff;
}
.amenity-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.amenity-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.amenity-card__title {
  position: absolute;
  bottom: 0.75rem;
  padding: 0.25rem 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-family: "Foriene Serif", Georgia, serif;
  font-size: clamp(1.125rem, 2.6vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.5px;
  z-index: 2;
  margin: 0;
  background-color: rgba(177, 17, 22, 0.5);
}
.amenity-card__title--italic {
  font-style: italic;
}
.amenity-card:hover .amenity-card__image {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .amenity-card {
    width: 300px;
    height: 200px;
  }
  .amenity-card__title {
    font-size: clamp(1rem, 2vw, 1.125rem);
  }
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  padding-right: 1.5rem;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: #f6f4df;
}
.stat-item__number {
  font-family: "Foriene Serif", Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 500;
  font-style: italic;
  color: #b11116;
  line-height: 1;
  letter-spacing: -1px;
}
.stat-item__label {
  font-family: "Manrope", "Host Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.65rem;
  line-height: 1.4;
  font-weight: 500;
  color: #1e1e1e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  gap: 1.5rem;
  border: none;
  cursor: pointer;
  font-weight: 400;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}
.btn--menu {
  width: 3rem;
  height: 3rem;
  padding: 0;
  gap: 0;
  border-radius: 9999px;
  background-color: #b11116;
  color: #ffffff;
  backdrop-filter: blur(10px);
}
.btn--menu:hover {
  background-color: rgb(130.4690721649, 12.5309278351, 16.2164948454);
}
.btn--outline {
  padding: 0.9rem 1.4rem;
  border: 1px solid #ffffff;
  border-radius: 0.125rem;
  font-family: "Manrope", "Host Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  background-color: transparent;
  color: #ffffff;
}
.btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}
.header--scrolled .btn--outline {
  border-color: #b11116;
  color: #b11116;
}
.header--scrolled .btn--outline:hover {
  border-color: #b11116;
}
.btn--outline-primary {
  padding: 0.9rem 1.4rem;
  border: 1px solid #b11116;
  border-radius: 0.125rem;
  font-family: "Manrope", "Host Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  background-color: transparent;
  color: #b11116;
}
.btn--outline-primary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #b11116;
}
@media (max-width: 480px) {
  .btn--outline-primary {
    padding: 0.5rem 0.5rem;
    font-size: clamp(0.75rem, 1.4vw, 0.8125rem);
    letter-spacing: 0.25px;
  }
}
.btn--primary {
  padding: 0.75rem 1rem;
  background-color: #b11116;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: rgb(130.4690721649, 12.5309278351, 16.2164948454);
  transform: translateY(-2px);
}
.btn--download {
  padding: 0.75rem 1rem;
  background-color: #ffffff;
  color: #1e1e1e;
  border: 1px solid #b11116;
  box-shadow: rgba(255, 255, 255, 0.1) 8px 4px 12px;
}
.btn--download:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.btn__icon-wrapper-download {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  background-color: #b11116;
  border-radius: 9999px;
  color: #ffffff;
}
.btn__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  border-radius: 9999px;
  color: #b11116;
}
.btn__icon {
  width: 16px;
  height: 16px;
}
.btn__menu-line {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 9999px;
  background-color: currentColor;
}

@media (max-width: 768px) {
  .btn--outline {
    padding: 0.5rem 0.75rem;
    font-size: clamp(0.75rem, 1.4vw, 0.8125rem);
    letter-spacing: 0.35px;
  }
}
@media (max-width: 480px) {
  .btn--outline {
    padding: 0.5rem 0.5rem;
    font-size: clamp(0.75rem, 1.4vw, 0.8125rem);
    letter-spacing: 0.25px;
  }
}
.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 500px;
}
.form__group {
  position: relative;
  width: 100%;
}
.form__group--textarea {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}
.form__input {
  width: 100%;
  padding: 1rem 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
  font-family: "Foriene Serif", Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #1e1e1e;
  transition: all 0.15s ease;
  outline: none;
}
.form__input::placeholder {
  color: rgba(30, 30, 30, 0.6);
}
.form__input:focus {
  border-bottom-color: #b11116;
}
.form__textarea {
  resize: none;
  overflow: hidden;
  min-height: 40px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

.d-none {
  display: none !important;
}

@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
}

/*# sourceMappingURL=main.css.map */
