@font-face {
  font-family: "Gyst Variable";
  src: url("../assets/fonts/fonnts.com-Gyst_Variable_Light.otf") format("opentype-variations");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gyst Variable";
  src: url("../assets/fonts/fonnts.com-Gyst_Variable_Light_Italic.otf") format("opentype-variations");
  font-weight: 100 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Optima";
  src: url("../assets/fonts/OPTIMA.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Optima";
  src: url("../assets/fonts/Optima Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Optima";
  src: url("../assets/fonts/OPTIMA_B.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Optima";
  src: url("../assets/fonts/Optima_Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  color: #864637;
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button {
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
}

h1, h2, h3, h4, p, ul, table {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

input {
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
}

.container {
  width: 100%;
  max-width: 1490px;
  margin-inline: auto;
  padding-inline: clamp(15px, 4vw, 30px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-tap-highlight-color: transparent;
}
.btn--primary {
  background: #864637;
  color: #ffffff;
  padding: 10px 16px;
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: color-mix(in srgb, #864637 85%, black);
}
.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: #ffffff;
  color: #864637;
  border-color: #ffffff;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(134, 70, 55, 0.35);
  color: #864637;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.pill svg {
  flex-shrink: 0;
}
.pill:hover, .pill:focus-visible {
  background: #864637;
  color: #ffffff;
  border-color: #864637;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.site-header.is-scrolled {
  background: #864637;
}
.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -moz-column-gap: 12px;
       column-gap: 12px;
  align-items: center;
  min-height: 76px;
  position: relative;
}
@media (min-width: 992px) {
  .site-header__inner {
    min-height: 120px;
  }
}
.site-header__logo {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header__logo img {
  height: 72px;
  width: auto;
}
@media (min-width: 992px) {
  .site-header__logo img {
    height: 100px;
  }
}
.site-header__toggle {
  grid-column: 1;
  justify-self: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 5;
}
.site-header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media (min-width: 992px) {
  .site-header__toggle {
    display: none;
  }
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(16px, 6vw, 80px);
}
.site-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.site-nav a:hover, .site-nav a:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
}
.site-nav {
  display: none;
}
@media (min-width: 992px) {
  .site-nav {
    display: block;
  }
}
.site-nav--left {
  grid-column: 1;
  justify-self: start;
}
.site-nav--right {
  grid-column: 3;
  justify-self: end;
}

.site-nav__mobile {
  max-height: 0;
  overflow: hidden;
  background: color-mix(in srgb, #864637 92%, black);
  transition: max-height 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.site-nav__mobile ul {
  display: flex;
  flex-direction: column;
  padding: 8px clamp(15px, 4vw, 30px) 20px;
  gap: 4px;
}
.site-nav__mobile a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1rem;
}
.site-nav__mobile.is-open {
  max-height: 420px;
}
@media (min-width: 992px) {
  .site-nav__mobile {
    display: none;
  }
}

.site-visit-tab {
  position: fixed;
  right: 0;
  top: 42%;
  z-index: 60;
  writing-mode: vertical-rl;
  transform: rotate(0deg);
  background: #864637;
  color: #ffffff;
  text-decoration: none;
  text-align: right;
  padding: 22px 10px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 12px 0 0 12px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.site-visit-tab:hover {
  padding-right: 16px;
}

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.whatsapp-fab:hover {
  transform: translateY(-3px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  overflow: hidden;
  color: #ffffff;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.22) 120px, rgba(0, 0, 0, 0) 240px);
}
.hero .fullscreen-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-block: clamp(32px, 6vw, 64px);
}
.hero__top {
  margin-left: auto;
  display: none;
  flex-direction: column;
  align-items: self-end;
  gap: 22px;
}
@media (min-width: 768px) {
  .hero__top {
    display: flex;
  }
}
.hero__top {
  margin-top: 6rem;
}
.hero__bottom {
  margin-top: 15rem;
}
.hero__badge {
  align-self: flex-end;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  background: rgba(134, 70, 55, 0.56);
  color: #ffffff;
  text-align: center;
  padding: 10px 24px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding-right: 7px;
  padding-left: 7rem;
}
.hero__badge-title {
  margin-bottom: 5px;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: right;
}
.hero__badge-subtitle {
  margin: 4px 0 0;
  font-size: 1rem;
  font-weight: 400;
  text-align: right;
}
.hero__subline {
  max-width: 360px;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  font-weight: 600;
  text-align: right;
}
.hero__scroll {
  color: #ffffff;
  text-decoration: none;
  animation: bob 2.2s ease-in-out infinite;
  display: inline-flex;
}
.hero__eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}
.hero__sound {
  position: absolute;
  left: clamp(20px, 4vw, 40px);
  bottom: clamp(20px, 4vw, 40px);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.hero__sound:hover {
  background: rgba(0, 0, 0, 0.55);
}
.hero__sound-icon--off {
  display: none;
}
.hero__sound.is-muted .hero__sound-icon--on {
  display: none;
}
.hero__sound.is-muted .hero__sound-icon--off {
  display: block;
}
.hero__title {
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  color: #864637;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-family: var(--font-body);
  color: #ffffff;
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.08;
}

@keyframes bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
.lifestyle {
  padding-block: clamp(20px, 7vw, 40px);
}
.lifestyle__grid {
  display: grid;
  gap: 2rem;
  align-items: self-end;
  justify-content: space-between;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .lifestyle__grid {
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
  }
}
.lifestyle__text h2 {
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  color: #864637;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  margin-bottom: 20px;
}
.lifestyle__text p {
  font-size: 1.3rem;
  line-height: 1.7;
  color: color-mix(in srgb, #864637 88%, black 4%);
  margin-bottom: 14px;
}
.lifestyle__text .btn {
  margin-top: 18px;
}
.lifestyle__media {
  width: 95%;
}

.lifestyle-slider {
  border-radius: 12px;
  overflow: hidden;
}
.lifestyle-slider__item img {
  width: 100%;
  aspect-ratio: 5/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}
.lifestyle-slider .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}
.lifestyle-slider .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(134, 70, 55, 0.25);
  display: block;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.lifestyle-slider .owl-dots .owl-dot.active span {
  width: 22px;
  border-radius: 4px;
  background: #864637;
}

.quote-banner {
  position: relative;
  padding-block: clamp(56px, 3vw, 110px) clamp(90px, 18vw, 450px);
  overflow: hidden;
}
.quote-banner__text {
  text-align: center;
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  color: #864637;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-weight: 400;
  font-size: clamp(1.35rem, 3vw, 3rem);
  line-height: 1.5;
}
.quote-banner__waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
}

.amenity-map {
  position: relative;
}
@media (max-width: 767px) {
  .amenity-map {
    display: flex;
    flex-direction: column;
  }
}
.amenity-map__frame {
  position: relative;
  width: 100%;
  line-height: 0;
}
.amenity-map__frame--dark {
  background: #000;
}
.amenity-map__img {
  width: 100%;
  height: auto;
  display: block;
}
.amenity-map__caption {
  position: absolute;
  top: clamp(20px, 4vw, 56px);
  left: clamp(15px, 4vw, 30px);
  max-width: 460px;
  z-index: 5;
  pointer-events: none;
}
@media (max-width: 767px) {
  .amenity-map__caption {
    position: static;
    order: -1;
    max-width: none;
    padding: 0 clamp(15px, 4vw, 30px) 14px;
    pointer-events: auto;
  }
}
.amenity-map__caption h2 {
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  color: #864637;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #ffffff;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}
.amenity-map__legend {
  position: absolute;
  left: clamp(15px, 4vw, 30px);
  bottom: clamp(20px, 5vw, 60px);
  max-width: 420px;
  color: #ffffff;
  z-index: 5;
  pointer-events: none;
  display: none;
}
@media (min-width: 768px) {
  .amenity-map__legend {
    display: block;
  }
}
.amenity-map__legend p {
  font-size: 0.92rem;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}
.amenity-map__hint {
  font-weight: 700;
  margin-bottom: 10px;
  position: absolute;
  left: clamp(15px, 4vw, 30px);
  bottom: clamp(20px, 5vw, 60px);
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  z-index: 5;
  pointer-events: none;
}
@media (max-width: 767px) {
  .amenity-map__hint {
    position: static;
    order: 1;
    padding: 10px clamp(15px, 4vw, 30px) 0;
  }
}
.amenity-map--ground .amenity-map__legend {
  bottom: clamp(20px, 5vw, 60px);
}
.amenity-map__legend .amenity-map__hint {
  position: static;
  margin: 0 0 8px;
}
.amenity-map--rooftop .amenity-map__caption {
  max-width: 520px;
}
.amenity-map__hotspots {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #864637;
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.hotspot:hover, .hotspot:focus-visible, .hotspot.is-active {
  background: #864637;
  color: #ffffff;
  transform: translate(-50%, -50%) scale(1.15);
}
.hotspot--letter {
  width: 34px;
  height: 34px;
  background: #864637;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1.5px solid #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.hotspot--letter:hover, .hotspot--letter:focus-visible, .hotspot--letter.is-active {
  background: color-mix(in srgb, #864637 85%, black);
}
.hotspot__label {
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65), 0 1px 2px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}
@media (max-width: 480px) {
  .hotspot__label {
    width: 68px;
  }
}
@media (max-width: 991px) {
  .amenity-map--rooftop .hotspot__label {
    display: none;
  }
}

.pavilion-intro {
  padding: 6rem 0rem;
}
.pavilion-intro__grid {
  display: grid;
  gap: 32px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .pavilion-intro__grid {
    grid-template-columns: 0.5fr 1fr;
    gap: 60px;
  }
}
.pavilion-intro__badge span {
  display: block;
  border: 1px solid #c8a24a;
  color: #864637;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 1.5rem;
  line-height: 1.35;
  padding: 22px 30px;
  max-width: 320px;
}
.pavilion-intro__text {
  max-width: 745px;
}
.pavilion-intro__text p {
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 16px;
  color: color-mix(in srgb, #864637 88%, black 4%);
}

.unit-config {
  padding-block: clamp(20px, 7vw, 40px);
}
.unit-config h2 {
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  color: #864637;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  margin-bottom: 28px;
}
.unit-config__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.unit-config__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-tap-highlight-color: transparent;
  padding: 13px 26px;
  background: transparent;
  border-color: rgba(134, 70, 55, 0.4);
  color: #864637;
}
.unit-config__tab.is-active, .unit-config__tab:hover {
  background: #864637;
  color: #ffffff;
  border-color: #864637;
}
.unit-config__panel {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 992px) {
  .unit-config__panel {
    grid-template-columns: 1.3fr 0.9fr;
  }
}
.unit-config__panel--stacked {
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .unit-config__panel--stacked {
    grid-template-columns: 1fr;
  }
}
.unit-config__plan {
  position: relative;
  background: rgba(134, 70, 55, 0.05);
  border-radius: 12px;
  padding: clamp(16px, 3vw, 40px);
  overflow: hidden;
  max-height: 570px;
}
.unit-config__plan > img {
  display: block;
  width: 100%;
  height: auto;
  margin-inline: auto;
  filter: blur(12px);
  transform: scale(1.06);
}
.unit-config__zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(48px, 6vw, 64px);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.unit-config__zoom img {
  width: 100%;
  height: auto;
  display: block;
}
.unit-config__zoom:hover {
  transform: translate(-50%, -50%) scale(1.08);
}
.unit-config__details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.unit-config__cards {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media (min-width: 768px) {
  .unit-config__cards--row {
    flex-direction: row;
    align-items: flex-start;
  }
}
.unit-config__cards--row .unit-config__card {
  flex: 1 1 0;
}
.unit-config__card {
  border: 1px solid rgba(134, 70, 55, 0.25);
  border-radius: 12px;
  padding: clamp(20px, 5vw, 60px);
}
.unit-config__card-label {
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  opacity: 0.75;
}
.unit-config__card h3 {
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  color: #864637;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.unit-config__card table {
  font-size: 1rem;
}
.unit-config__card th {
  text-align: left;
  padding-bottom: 8px;
  font-weight: 700;
}
.unit-config__card td {
  padding: 8px 0;
  border-top: 1px solid rgba(134, 70, 55, 0.12);
}
.unit-config__card td:last-child, .unit-config__card th:last-child {
  text-align: right;
}
.unit-config__price {
  align-self: flex-start;
}
.unit-config__price-btn {
  width: 20%;
}

.gallery {
  position: relative;
  padding-block: clamp(20px, 7vw, 40px);
  padding-bottom: clamp(40px, 6vw, 70px);
}
.gallery h2 {
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  color: #864637;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 28px;
}
.gallery__stage {
  position: relative;
}
.gallery__carousel:not(.is-active) {
  display: none;
}
.gallery__item img {
  width: 100%;
  aspect-ratio: 16/8;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery .owl-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  padding-inline: 24px;
}
.gallery .owl-nav button {
  pointer-events: auto;
  width: 54px;
  height: 54px;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1px solid rgba(134, 70, 55, 0.15);
  color: #864637 !important;
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.gallery .owl-nav button:hover {
  background: #864637;
  border-color: #864637;
  color: #ffffff;
}
.gallery__tabs-wrapper {
  position: absolute;
  bottom: 5rem;
  z-index: 1;
  left: 50%;
  transform: translate(-24%, -50%);
}
@media (max-width: 991px) {
  .gallery__tabs-wrapper {
    left: 0;
    right: 0;
    margin-inline: auto;
    transform: translateY(-50%);
  }
}
.gallery__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.gallery__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-tap-highlight-color: transparent;
  padding: 12px 24px;
  background: white;
  border-color: rgba(134, 70, 55, 0.35);
  color: #864637;
}
.gallery__tab.is-active, .gallery__tab:hover {
  background: #864637;
  color: #ffffff;
  border-color: #864637;
}

.location {
  padding-block: clamp(20px, 7vw, 40px);
  position: relative;
}
.location h2 {
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  color: #864637;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 24px;
}
.location__map {
  position: relative;
  border: 1px solid rgba(134, 70, 55, 0.25);
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}
.location__badge {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #864637;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 16px 24px;
  border-radius: 0 12px 0 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.location__badge:hover {
  padding-inline: 30px 24px;
}
.location__cards-wrap {
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 100%;
  max-width: 1280px;
  padding-inline: clamp(15px, 4vw, 30px);
  bottom: -3rem;
}
.location__cards {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 1rem;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scrollbar-width: none;
  cursor: grab;
}
.location__cards::-webkit-scrollbar {
  display: none;
}
.location__cards.is-dragging {
  cursor: grabbing;
  user-select: none;
}
.location__cards-fade {
  position: absolute;
  bottom: 0;
  height: 60px;
  width: clamp(28px, 6vw, 56px);
  pointer-events: none;
  z-index: 5;
}
.location__cards-fade--left {
  left: 0;
  background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}
.location__cards-fade--right {
  right: 0;
  background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}
.location__swipe-hint {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(134, 70, 55, 0.65);
  white-space: nowrap;
  pointer-events: none;
}
.location__swipe-hint svg {
  animation: location-swipe-hint 1.6s ease-in-out infinite;
}
.location__card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  border: 1px solid transparent;
  background: transparent;
  transition: background 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.location__card.is-active {
  background-color: #F5F0EC;
  border-color: rgba(134, 70, 55, 0.3);
}
.location__card-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-color: #F5F0EC;
}
.location__card-content ul {
  padding: 18px 22px 6px;
}
.location__card-content li {
  color: #864637;
  font-size: 0.95rem;
  line-height: 1.85;
  white-space: nowrap;
}
.location__card.is-active .location__card-content {
  opacity: 1;
  transform: translateY(0);
  background-color: #F5F0EC;
}
.location__card-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(134, 70, 55, 0.35);
  border-radius: 999px;
  background: #ffffff;
  color: #864637;
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 12px 12px 12px 22px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.location__card-tab:hover, .location__card-tab:focus-visible {
  background: #864637;
  color: #ffffff;
  border-color: #864637;
}
.location__card-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.location__card-icon .icon-close {
  display: none;
}
.location__card.is-active .location__card-tab {
  border: none;
  background: none;
  color: #864637;
  border-top: 1px solid rgba(134, 70, 55, 0.2);
  border-radius: 0 0 22px 22px;
  padding: 16px 20px;
}
.location__card.is-active .location__card-tab:hover, .location__card.is-active .location__card-tab:focus-visible {
  background: rgba(134, 70, 55, 0.08);
  color: #864637;
}
.location__card.is-active .location__card-title {
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  color: #864637;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-size: 1.05rem;
  font-weight: 600;
}
.location__card.is-active .location__card-icon {
  background: #864637;
  border-color: #864637;
  color: #ffffff;
}
.location__card.is-active .location__card-icon .icon-open {
  display: none;
}
.location__card.is-active .location__card-icon .icon-close {
  display: block;
}

@keyframes location-swipe-hint {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
}

.walkthrough {
  padding-block: clamp(20px, 7vw, 40px);
  padding-top: 10rem;
}
.walkthrough__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.walkthrough__head h2 {
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  color: #864637;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}
.walkthrough__toggle svg {
  margin-left: 2px;
}
.walkthrough__frame {
  position: relative;
  background: rgba(134, 70, 55, 0.06);
  border-radius: 12px;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.walkthrough__play {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
  color: #864637;
}
.walkthrough__play span:last-child {
  background: #ffffff;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.walkthrough__play-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #864637;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.walkthrough__frame.is-playing .walkthrough__play {
  display: none;
}
.walkthrough video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
}
.walkthrough__frame.is-playing video {
  display: block;
}

.about {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  padding-block: clamp(20px, 6vw, 180px);
}
.about__brown-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 992px) {
  .about__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
  }
}
.about__logo {
  margin-bottom: 1rem;
}
.about__logo-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}
.about__logo-tag {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  opacity: 0.8;
  margin-top: 4px;
}
.about__text h2 {
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  color: #864637;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin-bottom: 20px;
}
.about__text p {
  font-size: 0.98rem;
  line-height: 1.75;
  opacity: 0.92;
  margin-bottom: 14px;
  max-width: 560px;
}
.about__media {
  border: none;
}
.about__media img {
  width: 100%;
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
}

.landmarks {
  padding-block: clamp(20px, 7vw, 40px);
}
.landmarks h2 {
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  color: #864637;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 24px;
}
.landmarks__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}
.landmarks__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-tap-highlight-color: transparent;
  padding: 12px 26px;
  background: transparent;
  border-color: rgba(134, 70, 55, 0.35);
  color: #864637;
}
.landmarks__tab.is-active, .landmarks__tab:hover {
  background: #864637;
  color: #ffffff;
  border-color: #864637;
}
.landmarks__stage {
  margin-top: 24px;
  width: 100%;
  overflow: hidden;
  padding-left: max(clamp(15px, 4vw, 30px), (100vw - 1490px) / 2 + clamp(15px, 4vw, 30px));
}
.landmarks__carousel:not(.is-active) {
  display: none;
}
.landmarks__stage .owl-nav button {
  font-size: 1rem !important;
}
.landmarks .owl-carousel .owl-nav button {
  font-size: 2rem !important;
}

.landmark-card {
  flex-shrink: 0;
  width: clamp(260px, 30vw, 440px);
}
.landmark-card img {
  width: 100%;
  aspect-ratio: 3/1.7;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
}
.landmark-card h3 {
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  color: #864637;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.landmark-card p {
  font-size: 0.88rem;
  color: color-mix(in srgb, #864637 75%, black 5%);
}
@media (max-width: 767px) {
  .landmark-card {
    width: clamp(220px, 72vw, 320px);
  }
}

.contact {
  padding-block: clamp(20px, 7vw, 40px);
}
.contact__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 992px) {
  .contact__grid {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 10rem;
  }
}
.contact__rera h2 {
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  color: #864637;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.contact__rera p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 18px;
}
.contact__rera a {
  color: #864637;
  text-decoration: underline;
}
.contact__qr {
  width: 118px;
  height: 118px;
  margin-bottom: 18px;
}
.contact__rera-phase {
  font-weight: 700;
  margin-bottom: 6px !important;
}
.contact__rera-no {
  font-weight: 700;
  line-height: 1.5;
}
.contact__form-wrap {
  background: rgba(134, 70, 55, 0.05);
  border-radius: 20px;
  padding: clamp(24px, 3.6vw, 48px);
  margin-right: 10rem;
}
.contact__form h2 {
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  color: #864637;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-size: 1.6rem;
  margin-bottom: 28px;
}
.contact__row {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .contact__row {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contact .field {
  margin-bottom: 24px;
}
.contact .field--full {
  grid-column: 1/-1;
}
.contact .field label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.contact .field input {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(134, 70, 55, 0.4);
  background: transparent;
  padding: 6px 2px 10px;
  font-size: 0.95rem;
  color: #864637;
  outline: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.contact .field input:focus {
  border-color: #864637;
}
.contact__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  line-height: 1.55;
  margin-bottom: 28px;
  cursor: pointer;
}
.contact__consent input {
  margin-top: 3px;
  accent-color: #864637;
  flex-shrink: 0;
}
.contact__form-note {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.2em;
}

.site-footer {
  background: #864637;
  color: #ffffff;
}
.site-footer__grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
  padding-block: clamp(40px, 6vw, 72px);
}
@media (min-width: 992px) {
  .site-footer__grid {
    grid-template-columns: 1.25fr auto 0.85fr 0.85fr 0.85fr;
    gap: 44px;
  }
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.site-footer__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.site-footer__logo-mark {
  width: 130px;
  height: auto;
  margin-bottom: 10px;
}
.site-footer__logo-name {
  color: #4fb3c9;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
}
.site-footer__logo-tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  opacity: 0.85;
  margin-top: 6px !important;
  text-transform: uppercase;
}
.site-footer__block h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.site-footer__block p {
  font-size: 0.92rem;
  line-height: 1.65;
  opacity: 0.92;
}
.site-footer__divider {
  display: none;
}
@media (min-width: 992px) {
  .site-footer__divider {
    display: block;
    width: 1px;
    background: rgba(255, 255, 255, 0.25);
  }
}
.site-footer__col h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.site-footer__col h4:not(:first-child) {
  margin-top: 26px;
}
.site-footer__col p {
  font-size: 0.92rem;
  line-height: 1.65;
  opacity: 0.92;
}
.site-footer__col a {
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.site-footer__col a:hover {
  opacity: 0.7;
}
.site-footer__links li + li {
  margin-top: 10px;
}
.site-footer__links a {
  font-size: 0.92rem;
}
.site-footer__socials {
  display: flex;
  gap: 12px;
}
.site-footer__nav-heading {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.site-footer__nav li + li {
  margin-top: 14px;
}
.site-footer__nav a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.site-footer__nav a:hover {
  color: #ffffff;
  opacity: 1;
}
.site-footer__bottom {
  background: color-mix(in srgb, #864637 65%, black);
  padding-block: 20px;
  text-align: center;
}
.site-footer__bottom p {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.9;
}
.site-footer__bottom span {
  margin-inline: 10px;
  opacity: 0.6;
}
.site-footer__bottom a {
  text-decoration: none;
}
.site-footer__bottom a:hover {
  opacity: 0.75;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.social-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  opacity: 1 !important;
}

.hotspot-popover {
  position: fixed;
  z-index: 200;
  width: clamp(270px, 42vw, 540px);
  background: #ffffff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.hotspot-popover.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hotspot-popover img {
  display: block;
  width: 100%;
  aspect-ratio: 497/334;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.hotspot-popover p {
  position: absolute;
  left: 24px;
  right: 20px;
  bottom: 22px;
  z-index: 1;
  margin: 0;
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  color: #864637;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.5);
}
.hotspot-popover__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.site-visit-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.site-visit-modal.is-visible {
  opacity: 1;
  visibility: visible;
}
.site-visit-modal__panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: #864637;
  color: #ffffff;
  border-radius: 24px;
  padding: clamp(28px, 4vw, 48px);
}
.site-visit-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #864637;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.site-visit-modal__close:hover {
  background: rgba(255, 255, 255, 0.85);
}
.site-visit-modal__eyebrow {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px !important;
}
.site-visit-modal__subeyebrow {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 22px !important;
}
.site-visit-modal__title {
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  color: #864637;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #ffffff;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 30px;
}
.site-visit-modal__form .field {
  margin-bottom: 28px;
}
.site-visit-modal__form .field label {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}
.site-visit-modal__form .field input {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  padding: 6px 2px 10px;
  font-size: 0.95rem;
  color: #ffffff;
  outline: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.site-visit-modal__form .field input:focus {
  border-color: #ffffff;
}
.site-visit-modal__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  line-height: 1.55;
  margin-bottom: 28px;
  cursor: pointer;
}
.site-visit-modal__consent input {
  margin-top: 3px;
  accent-color: #ffffff;
  flex-shrink: 0;
}
.site-visit-modal__submit {
  width: 100%;
  padding: 16px 34px;
}
.site-visit-modal__note {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.2em;
}

.disclaimer-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.disclaimer-modal.is-visible {
  opacity: 1;
  visibility: visible;
}
.disclaimer-modal__panel {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: 85vh;
  overflow-y: auto;
  background: #ffffff;
  color: #864637;
  border: 6px solid #000;
  border-radius: 24px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.disclaimer-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: #864637;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.disclaimer-modal__close:hover {
  background: color-mix(in srgb, #864637 85%, black);
}
.disclaimer-modal__eyebrow {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px !important;
  padding-right: 60px;
}
.disclaimer-modal__subeyebrow {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 22px !important;
}
.disclaimer-modal__title {
  font-family: "Optima", Candara, "Segoe UI", Calibri, sans-serif;
  color: #864637;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  margin-bottom: 20px;
  padding-right: 40px;
}
.disclaimer-modal__text {
  font-size: 1rem;
  line-height: 1.7;
}

.lifestyle__grid > *,
.pavilion-intro__grid > *,
.about__grid > *,
.contact__grid > *,
.site-footer__grid > *,
.unit-config__plan,
.unit-config__details {
  min-width: 0;
}

.contact__btn-wrap {
  text-align: center;
}

@media (max-width: 767px) {
  .amenity-map__caption {
    max-width: 88%;
  }
  .hero__title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
  .contact__row {
    gap: 8px;
  }
}/*# sourceMappingURL=style.css.map */