/* =========================================================
   Rustomjee 180 Bayview — Landing Page
   Base: reset, design tokens, typography, shared components
   ========================================================= */

:root {
  /* Colors */
  --rb-dark: #241b14; /* primary dark chocolate */
  --rb-dark-2: #17110c; /* deepest brown (footer) */
  --rb-dark-soft: #362a1f; /* lighter brown panel */
  --rb-gold: #c6a15b; /* primary gold accent */
  --rb-gold-2: #dcbf85; /* lighter gold (hover/highlight) */
  --rb-gold-deep: #a3813f; /* deeper gold (gradients) */
  --rb-cream: #f4efe4; /* warm off-white section bg */
  --rb-cream-2: #ece4d3; /* deeper cream panel */
  --rb-white: #ffffff;
  --rb-text: #2a2018;
  --rb-text-muted: #6d6255;
  --rb-text-light: #f6f2e9;
  --rb-text-light-70: rgba(246, 242, 233, 0.7);
  --rb-border-light: rgba(255, 255, 255, 0.16);
  --rb-border-dark: rgba(42, 32, 24, 0.12);

  /* Type */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Jost", "Segoe UI", sans-serif;

  /* Layout */
  --container-max: 1320px;
  --section-pad-y: clamp(3.5rem, 6vw, 7rem);
  --nav-height: 92px;

  /* Motion */
  --ease-soft: cubic-bezier(0.16, 0.84, 0.44, 1);
  --dur-m: 0.6s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: auto;
}
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--rb-text);
  background: var(--rb-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font-family: inherit;
}

.container-xl {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  color: inherit;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rb-gold);
  margin-bottom: 1rem;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.section-eyebrow.center {
  margin-inline: auto;
}

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  line-height: 1.15;
}

.section-lede {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--rb-text-muted);
  line-height: 1.85;
  font-size: 1rem;
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2.1rem;
  background: linear-gradient(135deg, var(--rb-gold-2), var(--rb-gold-deep));
  color: var(--rb-dark);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  transition:
    transform var(--dur-m) var(--ease-soft),
    box-shadow var(--dur-m) var(--ease-soft),
    background var(--dur-m) var(--ease-soft);
  box-shadow: 0 8px 20px -8px rgba(163, 129, 63, 0.6);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -8px rgba(163, 129, 63, 0.75);
  color: var(--rb-dark);
}

.btn-outline-cream {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--rb-text-light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--rb-gold);
  border-radius: 2px;
  transition:
    background var(--dur-m) var(--ease-soft),
    color var(--dur-m) var(--ease-soft);
}
.btn-outline-cream:hover {
  background: var(--rb-gold);
  color: var(--rb-dark);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: linear-gradient(
    to bottom,
    rgba(20, 15, 10, 0.65),
    rgba(20, 15, 10, 0)
  );
  transition:
    background var(--dur-m) var(--ease-soft),
    height var(--dur-m) var(--ease-soft),
    box-shadow var(--dur-m) var(--ease-soft);
}
.site-navbar.is-scrolled {
  background: rgba(23, 17, 12, 0.94);
  height: 76px;
  box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
}
.site-navbar .container-xl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 34px;
  width: auto;
  display: block;
}

/* ---- Text brand logo (Leo Eminence / Leo Group) ---- */
.brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rb-text-light);
  white-space: nowrap;
}
.brand__sub {
  margin-top: 0.3rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--rb-gold);
  white-space: nowrap;
}
.brand--right {
  align-items: flex-end;
  text-align: right;
}
.brand--right .brand__sub { color: var(--rb-text-light-70); }
.footer-brand {
  align-items: center;
  text-align: center;
}
.footer-brand .brand__name { font-size: 1.7rem; letter-spacing: 0.2em; }
.footer-brand .brand__sub { margin-top: 0.5rem; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.4rem);
}
.nav-menu a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rb-text-light-70);
  font-weight: 400;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--rb-gold);
  transition: width 0.35s var(--ease-soft);
}
.nav-menu a:hover {
  color: var(--rb-text-light);
}
.nav-menu a:hover::after {
  width: 100%;
}

.nav-partner {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-partner img {
  height: 34px;
  width: auto;
  display: block;
}

/* ---- Premium animated hamburger (3 bars → X) ---- */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  cursor: pointer;
  transition:
    border-color 0.35s var(--ease-soft),
    background 0.35s var(--ease-soft);
}
.nav-toggle:hover {
  border-color: var(--rb-gold);
  background: rgba(198, 161, 91, 0.1);
}
.nav-toggle__lines {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle__lines span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--rb-text-light);
  transition:
    transform 0.45s var(--ease-soft),
    opacity 0.3s var(--ease-soft),
    width 0.45s var(--ease-soft),
    background 0.3s;
}
.nav-toggle:hover .nav-toggle__lines span {
  background: var(--rb-gold);
}
body.nav-open .nav-toggle__lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle__lines span:nth-child(2) {
  opacity: 0;
  width: 0;
}
body.nav-open .nav-toggle__lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Off-canvas drawer + backdrop ---- */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1400;
  background: rgba(18, 13, 9, 0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s var(--ease-soft),
    visibility 0.5s var(--ease-soft);
}
body.nav-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
}

.nav-drawer {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1500;
  width: 100%;
  padding: 1.4rem clamp(1.5rem, 6vw, 4rem) 2rem;
  background: linear-gradient(158deg, #2a2018 0%, #17110c 60%);
  box-shadow: -24px 0 70px -24px rgba(0, 0, 0, 0.75);
  transform: translateX(105%);
  transition: transform 0.55s var(--ease-soft);
  overflow-y: auto;
  overscroll-behavior: contain;
}
/* keep the content readable / centered on wider (tablet) screens */
.nav-drawer__top,
.nav-drawer__links,
.nav-drawer__foot {
  width: 100%;
  max-width: 620px;
  margin-inline: auto;
}
.nav-drawer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--rb-gold), transparent 70%);
}
body.nav-open .nav-drawer {
  transform: translateX(0);
}

.nav-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-drawer__logo {
  height: auto;
  width: auto;
}
.nav-drawer__close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  position: relative;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  cursor: pointer;
  transition:
    border-color 0.35s var(--ease-soft),
    transform 0.45s var(--ease-soft);
}
.nav-drawer__close:hover {
  border-color: var(--rb-gold);
  transform: rotate(90deg);
}
.nav-drawer__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1.5px;
  background: var(--rb-text-light);
}
.nav-drawer__close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-drawer__close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-drawer__links {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.1rem 0 0.5rem;
}
.nav-drawer__links a {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  padding: 0.82rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--rb-text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  /* staggered reveal */
  opacity: 0;
  transform: translateX(22px);
  transition:
    color 0.3s var(--ease-soft),
    padding-left 0.3s var(--ease-soft),
    opacity 0.5s var(--ease-soft),
    transform 0.5s var(--ease-soft);
}
.nav-drawer__num {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--rb-gold);
}
.nav-drawer__links a:hover {
  color: var(--rb-gold);
  padding-left: 0.4rem;
}
body.nav-open .nav-drawer__links a {
  opacity: 1;
  transform: translateX(0);
}
body.nav-open .nav-drawer__links a:nth-child(1) {
  transition-delay: 0.14s, 0.14s, 0.14s, 0.14s;
}
body.nav-open .nav-drawer__links a:nth-child(2) {
  transition-delay: 0.2s, 0.2s, 0.2s, 0.2s;
}
body.nav-open .nav-drawer__links a:nth-child(3) {
  transition-delay: 0.26s, 0.26s, 0.26s, 0.26s;
}
body.nav-open .nav-drawer__links a:nth-child(4) {
  transition-delay: 0.32s, 0.32s, 0.32s, 0.32s;
}
body.nav-open .nav-drawer__links a:nth-child(5) {
  transition-delay: 0.38s, 0.38s, 0.38s, 0.38s;
}
body.nav-open .nav-drawer__links a:nth-child(6) {
  transition-delay: 0.44s, 0.44s, 0.44s, 0.44s;
}

.nav-drawer__foot {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}
.nav-drawer__cta {
  width: 100%;
  justify-content: center;
}
.nav-drawer__partner {
  height: auto;
  width: auto;
  opacity: 0.85;
}
.nav-drawer__partner.brand { align-items: flex-start; }
.nav-drawer__partner .brand__name { font-size: 1.05rem; }

@media (max-width: 991.98px) {
  .nav-menu {
    display: none;
  }
  .nav-partner {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-backdrop {
    display: block;
  }
  .nav-drawer {
    display: flex;
  }
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--rb-gold);
  background: rgba(23, 17, 12, 0.85);
  color: var(--rb-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.4s var(--ease-soft),
    transform 0.4s var(--ease-soft),
    background 0.3s;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--rb-gold);
  color: var(--rb-dark);
}

/* =========================================================
   SHARED: swiper nav/pagination look shared across sliders
   ========================================================= */
.rb-swiper-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--rb-gold);
  color: var(--rb-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s;
  font-size: 1rem;
}
.rb-swiper-nav:hover {
  background: var(--rb-gold);
  color: var(--rb-dark);
}
.rb-swiper-nav.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
.rb-swiper-nav.swiper-button-disabled:hover {
  background: transparent;
  color: var(--rb-gold);
}

.rb-pagination.swiper-pagination-bullets {
  position: static;
  margin-top: 1rem;
}
.rb-pagination .swiper-pagination-bullet {
  background: var(--rb-gold);
  opacity: 0.35;
  width: 8px;
  height: 8px;
}
.rb-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* =========================================================
   FOOTER (skeleton — content filled by section partial)
   ========================================================= */
.site-footer {
  background: #2d251f;
  color: #fff;
}

/* =========================================================
   RESPONSIVE HELPERS
   ========================================================= */
@media (max-width: 575.98px) {
  :root {
    --nav-height: 76px;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: var(--nav-height);   /* space above banner so the fixed header doesn't cut it */
  background: var(--rb-dark-2);      /* fills the strip behind the header */
}

.hero__img {
  display: block;
  width: 100%;
  height: auto;          /* natural banner height for web & mobile */
  z-index: 0;
}

/* Overlay hidden so the banner artwork is fully visible
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(23, 17, 12, 0.58) 0%,
    rgba(23, 17, 12, 0) 18%,
    rgba(23, 17, 12, 0) 40%,
    rgba(23, 17, 12, 0.88) 100%
  );
}
*/

.hero__content {
  display: none;   /* text hidden — banner artwork carries the messaging (set to flex to show) */
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  padding: 0 1.5rem;
  padding-bottom: clamp(5rem, 11vh, 7.5rem);
  flex-direction: column;
  align-items: center;
}

.hero__rule {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--rb-gold);
  margin: 0 auto clamp(1.25rem, 3vw, 1.75rem);
}

.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--rb-text-light);
  font-size: clamp(1.6rem, 3.6vw, 2.9rem);
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.hero__scroll {
  display: none;   /* scroll-down arrow hidden */
  position: absolute;
  left: 50%;
  bottom: clamp(1.25rem, 3vh, 2.25rem);
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--rb-border-light);
  color: var(--rb-text-light-70);
  font-size: 1.05rem;
  animation: hero-bob 2.2s var(--ease-soft) infinite;
}

@keyframes hero-bob {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

@media (max-width: 992px) {
  .hero__content {
    padding-bottom: clamp(4.5rem, 12vh, 6.5rem);
  }
}

@media (max-width: 768px) {
  .hero__tagline {
    max-width: 90%;
  }
}

@media (max-width: 576px) {
  .hero__content {
    padding: 0 1.1rem;
    padding-bottom: clamp(4rem, 13vh, 5.5rem);
  }

  .hero__rule {
    width: 40px;
    margin-bottom: 1rem;
  }

  .hero__scroll-circle {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }
}

@media (max-width: 400px) {
  .hero__tagline {
    max-width: 100%;
    letter-spacing: 0;
  }

  .hero__scroll {
    bottom: 1rem;
  }
}

/* =========================================================
   OVERVIEW
   ========================================================= */
.overview {
  position: relative;
  overflow: visible;
  background: var(--rb-dark);
  color: var(--rb-text-light);
}

.overview__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 61.5% 38.5%;
  align-items: stretch;
  min-height: 760px;
}

.overview__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-pad-y) clamp(1.5rem, 4vw, 3rem) var(--section-pad-y)
    clamp(1.5rem, 6vw, 8rem);
}

.overview__heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.overview__heading-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--rb-gold);
  flex-shrink: 0;
}

.overview__heading-text {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
  font-weight: 500;
  color: var(--rb-gold);
  margin: 0;
  line-height: 1;
}

.overview__lede {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--rb-text-light-70);
  line-height: 1.85;
  font-size: 1rem;
  margin: 0 0 clamp(2rem, 4vw, 2.75rem);
  max-width: 46ch;
}

.overview__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.overview__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.05rem 0;
  transition: padding-left var(--dur-m) var(--ease-soft);
}

.overview__item:hover {
  padding-left: 0.4rem;
}

.overview__icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  color: var(--rb-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.overview__icon svg {
  width: 100%;
  height: 100%;
}

.overview__icon--mark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.5rem;
}

.overview__text {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1vw + 0.6rem, 1.08rem);
  line-height: 1.5;
  color: var(--rb-text-light);
}

.overview__visual {
  position: relative;
  overflow: visible;
}

.overview__img-bleed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overview__inset {
  position: absolute;
  left: -38%;
  top: 13%;
  width: 65%;
  height: 72%;
  z-index: 2;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.overview__img-inset {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overview__numeral {
  position: absolute;
  left: clamp(1rem, 4vw, 3rem);
  bottom: -120px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(8rem, 18vw, 16rem);
  line-height: 1;
  color: rgba(198, 161, 91, 0.08);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .overview__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .overview__content {
    padding: clamp(3rem, 8vw, 4rem) clamp(1.5rem, 6vw, 2.5rem)
      clamp(3.5rem, 9vw, 4.5rem);
  }

  .overview__visual {
    height: 480px;
  }

  .overview__inset {
    left: 6%;
    top: auto;
    bottom: -10%;
    width: 55%;
    height: 55%;
  }
}

@media (max-width: 575.98px) {
  .overview__item {
    gap: 1rem;
    padding: 0.9rem 0;
  }

  .overview__icon {
    width: 40px;
    height: 40px;
  }

  .overview__icon--mark {
    font-size: 1.2rem;
  }

  .overview__visual {
    height: 360px;
  }

  .overview__inset {
    left: 5%;
    width: 62%;
    height: 60%;
  }

  .overview__numeral {
    bottom: -34px;
    font-size: clamp(5.5rem, 22vw, 8rem);
  }
}

/* =========================================================
   PROJECT CONFIGURATION
   ========================================================= */
.config {
  position: relative;
  background: var(--rb-white);
  padding: var(--section-pad-y) 0;
  overflow: hidden;
}

.config__head {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.config__head-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--rb-gold);
  margin: 0 auto 1rem;
}

.config__head-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
  font-weight: 500;
  color: var(--rb-gold);
  margin: 0;
}

.config__row {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

/* ---- Config: static 3-col grid on desktop, Swiper carousel on mobile ---- */
.config-swiper {
  position: relative;
}
.config__slide {
  height: auto;
}

/* Desktop: three equal columns, no swiper transforms (swiper is destroyed) */
@media (min-width: 769px) {
  .config-swiper .swiper-wrapper {
    display: flex;
    justify-content: center;   /* center the single card */
    gap: clamp(1.5rem, 3vw, 2.5rem);
    transform: none !important;
  }
  .config-swiper .config__slide {
    flex: 0 1 clamp(320px, 32%, 420px);   /* single card: normal width, centered (not full-width) */
    min-width: 0;
    width: auto !important;
    margin: 0 !important;
  }
  .config-pagination {
    display: none;
  }
}

/* Mobile: one card per view, pagination dots below */
@media (max-width: 768px) {
  .config-swiper {
    overflow: hidden;
    padding-bottom: 2.75rem;
  }
  .config-pagination {
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 2;
  }
  .config-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    background: var(--rb-gold);
    opacity: 0.32;
    border-radius: 50%;
    transition:
      opacity 0.3s var(--ease-soft),
      width 0.3s var(--ease-soft),
      border-radius 0.3s var(--ease-soft);
  }
  .config-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 24px;
    border-radius: 5px;
  }
}

.config__card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.config__photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--rb-cream-2);
}

.config__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-soft);
}

.config__card:hover .config__photo img {
  transform: scale(1.06);
}

.config__bhk {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--rb-gold-deep);
  margin: 0;
  padding: 1.15rem 0;
  line-height: 1.1;
  border-top: 1px solid rgba(198, 161, 91, 0.4);
}

.config__panel {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(198, 161, 91, 0.4);
}

.config__info {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.config__icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--rb-gold);
  display: flex;
}

.config__icon svg {
  width: 100%;
  height: 100%;
}

.config__area {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--rb-text);
  white-space: nowrap;
}

.config__cta {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}
.config__price {
  flex-basis: 100%;
  order: 3;
  margin: 0.15rem 0 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--rb-text-muted);
}
.config__price strong {
  color: var(--rb-gold-deep);
  font-weight: 600;
  font-size: 1rem;
}
.config__price span {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .config__bhk {
    font-size: 1.3rem;
    padding: 1rem 0;
  }

  .config__area {
    font-size: 0.92rem;
  }

  .config__panel {
    padding-bottom: 1.1rem;
  }

  .config__cta {
    padding: 0.5rem 1.05rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 375px) {
  .config__panel {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .config__cta {
    width: 100%;
    text-align: center;
  }
}

/* =========================================================
   ROOFTOP AMENITIES — banner + highlight card
   ========================================================= */
.amenities1 {
  position: relative;
  overflow: visible;
  background: var(--rb-cream);
}

/* Layout geometry mirrors Figma section 891:3284 (1920x739):
   image 0-1017 (53%), card 462-1357 (24.1% left / 46.6% wide) at y=341,
   heading inset 100px into the cream, dots vertically centred right of card. */
.amenities1 .amenities1__grid {
  position: relative;
  display: grid;
  grid-template-columns: 53% 47%;
  min-height: 739px;
}

.amenities1 .amenities1__photo {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.amenities1 .amenities1__photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenities1 .amenities1__content {
  display: flex;
  align-items: flex-start;
  background: var(--rb-cream);
  padding: var(--section-pad-y) clamp(1.5rem, 4vw, 3rem) 0
    clamp(2rem, 5.2vw, 100px);
}

.amenities1 .amenities1__inner {
  max-width: 520px;
}

.amenities1 .amenities1__eyebrow-line {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--rb-gold);
  margin-bottom: 1.35rem;
}

.amenities1 .amenities1__heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.6vw, 2.5rem);
  font-weight: 500;
  color: var(--rb-gold);
  margin: 0 0 1.35rem;
}

.amenities1 .amenities1__lede {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--rb-text-muted);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
  max-width: 509px;
}

.amenities1 .amenities1__card-wrap {
  position: absolute;
  top: 341px;
  left: 24.1%;
  width: 49.5%;
  z-index: 6;
}

.amenities1 .amenities1__card-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.amenities1 .amenity-highlight-swiper {
  flex: 1 1 auto;
  min-width: 0;
  height: 298px;
  box-shadow: 0 24px 55px rgba(23, 17, 12, 0.28);
}

.amenities1 .amenities1__card {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.amenities1 .amenities1__card-text {
  flex: 1 1 50%;
  min-width: 0;
  background: #9c9481;
  padding: 2.5rem clamp(1.6rem, 3.1vw, 3.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.amenities1 .amenities1__card-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rb-text-light-70);
  margin-bottom: 0.75rem;
}

.amenities1 .amenities1__card-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1.15;
  font-weight: 500;
  color: var(--rb-text-light);
  margin: 0 0 0.9rem;
}

.amenities1 .amenities1__card-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--rb-text-light-70);
  margin: 0;
}

.amenities1 .amenities1__card-photo {
  flex: 1 1 50%;
  min-width: 0;
  position: relative;
}

.amenities1 .amenities1__card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.amenities1 .amenity-highlight-pagination {
  flex: 0 0 auto;
  position: static;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  width: auto;
}
.amenities1
  .amenity-highlight-pagination.swiper-pagination-bullets
  .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 !important;
  background: #7b7b7b; /* Figma inactive dot — solid grey */
  opacity: 1;
  border-radius: 50%;
  transition:
    background 0.3s,
    width 0.3s,
    height 0.3s;
}
.amenities1
  .amenity-highlight-pagination.swiper-pagination-bullets
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background: #bb9d56; /* Figma active dot — gold */
  opacity: 1;
}

@media (max-width: 1200px) {
  .amenities1 .amenities1__grid {
    min-height: 660px;
  }
  .amenities1 .amenities1__card-wrap {
    top: 300px;
    width: 52%;
    left: 22%;
  }
  .amenities1 .amenity-highlight-swiper {
    height: 268px;
  }
}

@media (max-width: 991px) {
  .amenities1 .amenities1__grid {
    min-height: 600px;
  }
  .amenities1 .amenities1__card-wrap {
    top: 270px;
    width: 66%;
    left: 15%;
  }
  .amenities1 .amenity-highlight-swiper {
    height: 240px;
  }
  .amenities1 .amenities1__card-text {
    padding: 1.75rem clamp(1.4rem, 3vw, 2.25rem);
  }
}

@media (max-width: 768px) {
  .amenities1 .amenities1__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .amenities1 .amenities1__photo {
    height: 320px;
  }

  .amenities1 .amenities1__content {
    padding: clamp(2.5rem, 8vw, 3.5rem) clamp(1.25rem, 6vw, 2rem)
      clamp(3.5rem, 10vw, 4.5rem);
  }

  .amenities1 .amenities1__card-wrap {
    position: static;
    transform: none;
    width: 100%;
    max-width: 440px;
    margin: 2rem auto 0;
    left: auto;
    top: auto;
  }

  .amenities1 .amenities1__card-inner {
    flex-direction: column; /* dots drop below the card, not beside it */
    align-items: stretch;
    gap: 1.25rem;
    /* drop the zoom-in scale on mobile: while scaling it insets the card
       (image gets white side gaps). Keep AOS's opacity fade, no scale. */
    transform: none !important;
  }

  .amenities1 .amenities1__card {
    flex-direction: column;
  }

  .amenities1 .amenity-highlight-swiper {
    height: 380px;
    width: 100%; /* fill full card width — flex-stretch can leave a gap */
    flex: 0 0 auto;
  }

  .amenities1 .amenities1__card-text {
    flex: 0 0 auto;
    padding: 1.5rem 1.6rem;
  }

  .amenities1 .amenities1__card-photo {
    flex: 1 1 auto;
    min-height: 180px;
  }

  .amenities1 .amenities1__card-inner .amenity-highlight-pagination {
    position: static !important; /* override Swiper's absolute horizontal pagination */
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    display: flex !important;
    flex-direction: row !important; /* horizontal dots… */
    justify-content: center !important; /* …centered below the card */
    align-items: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .amenities1 .amenities1__photo {
    height: 260px;
  }

  .amenities1 .amenity-highlight-swiper {
    height: 360px;
  }

  .amenities1 .amenities1__card-title {
    font-size: 1.4rem;
  }
}

/* =========================================================
   AMENITIES LIST + THEATRE IMAGE
   ========================================================= */
/* Layout mirrors Figma section 891:3300 (1920x741):
   left content 47% (#F0EEE6, inset 262px), right theatre image 53%.
   Icons in soft taupe circles, sans-serif titles, bare long-arrow nav. */
.amenities2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.amenities2__left {
  flex: 0 0 47%;
  max-width: 47%;
  background: #f0eee6;
  display: flex;
  align-items: center;
  min-height: 700px;
}

.amenities2__right {
  flex: 0 0 53%;
  max-width: 53%;
  position: relative;
  min-height: 700px;
}

.amenities2__content {
  width: 100%;
  padding: 3rem clamp(1.5rem, 4vw, 3rem) 3rem clamp(1.75rem, 13.6vw, 262px);
}

.amenity-list-swiper {
  width: 100%;
  overflow: hidden;
}

.amenities2__stack {
  display: flex;
  flex-direction: column;
  gap: clamp(2.25rem, 3.4vw, 3.25rem);
}

.amenities2__row {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.5vw, 2.9rem);
}

.amenities2__icon {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(139, 133, 112, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenities2__icon img {
  width: 46px;
  height: 46px;
  display: block;
}

.amenities2__icon--bi {
  color: #171717;
  font-size: 1.75rem;
}

.amenities2__text {
  flex: 1 1 auto;
  min-width: 0;
}

.amenities2__title {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 1.3vw, 1.25rem);
  font-weight: 500;
  color: #171717;
  line-height: 1.2;
  margin: 0 0 0.45rem;
}

.amenities2__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.72;
  margin: 0;
  max-width: 340px;
}

.amenities2__nav {
  display: flex;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 4.5vw, 4.5rem);
}

.amenities2__arrow {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #171717;
  display: inline-flex;
  align-items: center;
  transition:
    color 0.3s,
    opacity 0.3s,
    transform 0.3s var(--ease-soft);
}
.amenities2__arrow svg {
  display: block;
  width: 40px;
  height: 10px;
}
.amenities2__arrow:hover {
  transform: translateX(3px);
}
.amenities2__arrow.amenity-list-prev:hover {
  transform: translateX(-3px);
}
.amenities2__arrow.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
}

.amenities2__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991.98px) {
  .amenities2__left,
  .amenities2__right {
    min-height: 580px;
  }
  .amenities2__content {
    padding: 3rem clamp(1.5rem, 4vw, 3rem) 3rem clamp(1.75rem, 8vw, 4rem);
  }
}

@media (max-width: 767.98px) {
  .amenities2 {
    flex-direction: column;
  }

  .amenities2__left,
  .amenities2__right {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .amenities2__left {
    min-height: auto;
  }

  .amenities2__content {
    padding: clamp(2.75rem, 9vw, 3.75rem) clamp(1.5rem, 6vw, 2.25rem);
  }

  .amenities2__right {
    min-height: 50vh;
    height: 60vw;
  }
}

@media (max-width: 575.98px) {
  .amenities2__row {
    gap: 1.15rem;
  }

  .amenities2__icon {
    width: 54px;
    height: 54px;
  }

  .amenities2__icon img {
    width: 38px;
    height: 38px;
  }

  .amenities2__icon--bi {
    font-size: 1.5rem;
  }

  .amenities2__right {
    height: 70vw;
    min-height: 260px;
  }
}

/* =========================================================
   GALLERY
   ========================================================= */
/* Layout mirrors Figma section 891:3328 (1920x787):
   left-aligned "— Gallery" heading at x=250, landscape 3:2 slides (700x467,
   30px gap) that bleed off the right edge, long-arrow nav bottom-left. */
.gallery {
  background: var(--rb-white);
  padding: var(--section-pad-y) 0;
  overflow: hidden;
}

.gallery-inner {
  padding-left: clamp(1.25rem, 13.1vw, 252px);
}

.gallery-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(1.75rem, 2.5vw, 2rem);
}

.gallery-header-line {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--rb-gold);
  flex-shrink: 0;
}

.gallery-header-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.6vw, 2.5rem);
  font-weight: 500;
  color: var(--rb-gold);
  margin: 0;
  line-height: 1;
}

.gallery-swiper {
  width: 100%;
  overflow: hidden;
}

.gallery-swiper .swiper-slide {
  height: auto;
}

.gallery-slide-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 700 / 467;
  overflow: hidden;
  background: var(--rb-cream-2);
}

.gallery-slide-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-soft);
}

.gallery-slide-inner:hover img {
  transform: scale(1.04);
}

.gallery-nav {
  display: flex;
  gap: 1.5rem;
  margin-top: clamp(1.5rem, 2.4vw, 2rem);
}

.gallery-arrow {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #171717;
  display: inline-flex;
  align-items: center;
  transition:
    color 0.3s,
    opacity 0.3s,
    transform 0.3s var(--ease-soft);
}
.gallery-arrow svg {
  display: block;
  width: 40px;
  height: 10px;
}
.gallery-arrow.gallery-swiper-next:hover {
  transform: translateX(3px);
}
.gallery-arrow.gallery-swiper-prev:hover {
  transform: translateX(-3px);
}
.gallery-arrow.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
}

/* =========================================================
   ABOUT US
   ========================================================= */
/* ---- About Us (Figma node 891:3449 — 1920x800 dark band) ---- */
.about {
  background: #2d251f;
  overflow: hidden;
}

.about__inner {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  min-height: 800px;
}

/* blueprint line-art watermark, bottom-left (Figma x0 y293 w553 h553) */
.about__blueprint {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28.8%; /* 553 / 1920 */
  max-width: 553px;
  height: auto;
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}

/* text block — Figma x450 (23.44%) y141, width 680 (35.4%) */
.about__text {
  position: absolute;
  left: 23.44%;
  top: 17.6%; /* 141 / 800 */
  width: 35.4%;
  max-width: 680px;
  z-index: 2;
}

.about__eyebrow {
  margin-bottom: 3.7rem;
}

.about__rule {
  display: block;
  width: 50px;
  height: 1px;
  background: #bb9d56;
  margin-bottom: 0.75rem;
}

.about__title {
  font-family: var(--font-display);
  font-weight: 500;
  color: #bb9d56;
  font-size: clamp(2rem, 2.1vw, 2.5rem); /* ~40px */
  line-height: 1;
  letter-spacing: 0.5px;
  margin: 0;
}

.about__subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  color: #e0e1e2;
  font-size: clamp(1.35rem, 1.46vw, 1.75rem); /* ~28px */
  line-height: 1.1;
  letter-spacing: 0.2px;
  margin: 0 0 0.35rem;
}

.about__lede {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 300;
  color: #cfd0d1;
  font-size: clamp(0.95rem, 0.83vw, 1rem); /* ~16px */
  line-height: 1.5;
  margin: 0 0 2.6rem;
}

.about__para {
  font-family: var(--font-body);
  color: rgba(224, 225, 226, 0.72);
  font-weight: 300;
  font-size: clamp(0.98rem, 0.89vw, 1.06rem); /* ~17px */
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.about__cta {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.9rem 1.9rem;
  border: 1px solid rgba(187, 157, 86, 0.7);
  color: #bb9d56;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-decoration: none;
  transition:
    background var(--dur-m) var(--ease-soft),
    color var(--dur-m) var(--ease-soft),
    border-color var(--dur-m) var(--ease-soft);
}

.about__cta:hover {
  background: #bb9d56;
  border-color: #bb9d56;
  color: #2d251f;
}

/* pool image — Figma x1233 (64.2%) y60 (7.5%) w537 (27.97%) h680 (85%) */
.about__image-wrap {
  position: absolute;
  left: 64.22%;
  top: 7.5%;
  width: 27.97%;
  max-width: 537px;
  height: 85%;
  overflow: hidden;
  z-index: 1;
}

.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-m) var(--ease-soft);
}

.about__image-wrap:hover .about__image {
  transform: scale(1.035);
}

/* ---- responsive: stack below lg ---- */
@media (max-width: 991.98px) {
  .about__inner {
    min-height: 0;
    padding: clamp(2.75rem, 8vw, 4.5rem) clamp(1.25rem, 5vw, 3rem);
    display: flex;
    flex-direction: column-reverse;
    gap: 2.5rem;
    align-items: stretch;
  }

  .about__blueprint {
    opacity: 0.28;
    width: 45%;
  }

  .about__text,
  .about__image-wrap {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 640px;
  }

  .about__image-wrap {
    height: auto;
    aspect-ratio: 537 / 620;
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .about__inner {
    gap: 2rem;
  }

  .about__image-wrap {
    aspect-ratio: 4 / 3.4;
  }

  .about__eyebrow {
    margin-bottom: 1.4rem;
  }

  .about__lede {
    margin-bottom: 1.5rem;
  }

  .about__cta {
    width: 100%;
    text-align: center;
  }
}

/* =========================================================
   LOCATION
   ========================================================= */
/* ---- Location Advantages (Figma node 891:3494 — 1920x850, 50/50) ---- */
.location {
  background: #faf6f3;
  overflow: hidden;
}
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1920px;
  margin: 0 auto;
  min-height: 850px;
}

/* left — full-bleed map */
.location__map {
  display: block;
  overflow: hidden;
  position: relative;
}
.location__map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--dur-l) var(--ease-soft);
}
.location__map:hover .location__map-img {
  transform: scale(1.03);
}
.location__map-frame {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  display: block;
}

/* right — advantages panel */
.location__panel {
  position: relative;
  background: #faf6f3;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 3rem clamp(2rem, 4vw, 3.5rem) 3rem clamp(2rem, 5.2vw, 100px);
}
.location__watermark {
  position: absolute;
  right: -4%;
  top: 41%;
  transform: translateY(-50%);
  width: 70%;
  max-width: 640px;
  opacity: 1; /* SVG has baked-in 0.2 alpha → ~0.2 effective, matches Figma */
  pointer-events: none;
  user-select: none;
}
.location__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 602px;
}

/* heading */
.location__head {
  margin-bottom: 2rem;
}
.location__rule {
  display: block;
  width: 50px;
  height: 1px;
  background: #bb9d56;
  margin-bottom: 1.4rem;
}
.location__title {
  font-family: var(--font-display);
  font-weight: 500;
  color: #bb9d56;
  font-size: clamp(2rem, 2.1vw, 2.5rem);
  line-height: 1;
  letter-spacing: 0.5px;
  margin: 0;
}

/* accordion — Bootstrap collapse component (smooth height animation).
   Neutralise Bootstrap's chrome via its CSS vars, then style to Figma. */
.loc-acc.accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-color: inherit;
  --bs-accordion-border-color: transparent;
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-color: #333;
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-active-color: #333;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-btn-icon: none;
  --bs-accordion-btn-active-icon: none;
}
.loc-acc .accordion-item {
  background: transparent;
  border: 0;
}
.loc-acc .accordion-header {
  margin: 0;
}
.loc-acc__btn.accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.17);
  border-radius: 0;
  padding: 0.78rem 0;
  box-shadow: none;
  cursor: pointer;
  text-align: left;
}
.loc-acc__btn.accordion-button:not(.collapsed) {
  background: transparent;
  color: #333;
  box-shadow: none;
}
.loc-acc__btn.accordion-button:focus {
  border-color: rgba(51, 51, 51, 0.17);
  box-shadow: none;
}
.loc-acc__btn.accordion-button::after {
  display: none; /* remove Bootstrap chevron — we use +/- */
}
.loc-acc__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.125rem; /* 18px */
  color: #333;
  letter-spacing: 0.2px;
  transition: color 0.25s var(--ease-soft);
}
.loc-acc__btn:hover .loc-acc__label {
  color: #bb9d56;
}

/* +/- icon: horizontal bar always shown; vertical stem hides when expanded.
   Bootstrap adds .collapsed to closed buttons, so expanded = :not(.collapsed). */
.loc-acc__icon {
  position: relative;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.loc-acc__icon::before,
.loc-acc__icon::after {
  content: "";
  position: absolute;
  background: #333;
}
.loc-acc__icon::before {
  /* horizontal */
  top: 50%;
  left: 0;
  width: 15px;
  height: 2px;
  transform: translateY(-50%);
}
.loc-acc__icon::after {
  /* vertical (plus stem) */
  left: 50%;
  top: 0;
  width: 2px;
  height: 15px;
  transform: translateX(-50%);
  transition:
    opacity 0.3s var(--ease-soft),
    transform 0.3s var(--ease-soft);
}
.loc-acc__btn.accordion-button:not(.collapsed) .loc-acc__icon::after {
  opacity: 0;
  transform: translateX(-50%) scaleY(0);
}

/* expandable content — Bootstrap animates height; closed panels are
   display:none, so normal padding is safe (no collapsed sliver). */
.loc-acc__body.accordion-body {
  padding: 0;
}
.loc-acc__list {
  list-style: none;
  margin: 0;
  padding: 1.9rem 0 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.loc-acc__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.loc-acc__place {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1 1 auto;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem; /* ~15px */
  color: #333;
  letter-spacing: 0.1px;
}
.loc-acc__place::before {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 1.875C6.89453 1.875 4.375 4.27305 4.375 7.22656C4.375 10.625 8.125 16.0105 9.50195 17.8707C9.55911 17.9492 9.63402 18.0131 9.72058 18.0572C9.80713 18.1012 9.90288 18.1242 10 18.1242C10.0971 18.1242 10.1929 18.1012 10.2794 18.0572C10.366 18.0131 10.4409 17.9492 10.498 17.8707C11.875 16.0113 15.625 10.6277 15.625 7.22656C15.625 4.27305 13.1055 1.875 10 1.875Z' stroke='%236f6f6f' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 9.375C11.0355 9.375 11.875 8.53553 11.875 7.5C11.875 6.46447 11.0355 5.625 10 5.625C8.96447 5.625 8.125 6.46447 8.125 7.5C8.125 8.53553 8.96447 9.375 10 9.375Z' stroke='%236f6f6f' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/contain no-repeat;
}
.loc-acc__dist {
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: #333;
  letter-spacing: 0.1px;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .location__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .location__map {
    aspect-ratio: 16 / 11;
    order: -1;
  }
  .location__panel {
    display: block;
    padding: clamp(2.5rem, 7vw, 3.5rem) clamp(1.25rem, 5vw, 2.5rem);
  }
  .location__watermark {
    opacity: 0.32;
    right: -10%;
    width: 80%;
  }
  .location__inner {
    max-width: 640px;
    margin: 0 auto;
  }
}

@media (max-width: 575.98px) {
  .location__map {
    aspect-ratio: 4 / 3.2;
  }
  .location__label,
  .loc-acc__label {
    font-size: 1rem;
  }
  .loc-acc__place,
  .loc-acc__dist {
    font-size: 0.9rem;
  }
}

/* =========================================================
   CONTACT
   ========================================================= */
/* ---- Contact / Enquiry (Figma node 891:3327 — 1920x502 gradient band) ---- */
.contact {
  position: relative;
  overflow: hidden;
  min-height: 502px;
  /* solid #8b8570 base + faint texture ghost + 80% gold gradient overlay */
  background:
    linear-gradient(
      90deg,
      rgba(139, 133, 112, 0.9) 0%,
      rgba(187, 157, 86, 0.9) 100%
    ),
    url("../images/contact-texture.jpg") center/cover no-repeat,
    #8b8570;
  padding: clamp(3.25rem, 7vw, 6.25rem) 0 clamp(3.5rem, 8vw, 7.5rem);
  text-align: center;
}
.contact__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

/* heading */
.contact__head {
  margin-bottom: clamp(2rem, 3.6vw, 3.4rem);
}
.contact__rule {
  display: block;
  width: 50px;
  height: 1px;
  background: #fff;
  margin: 0 auto 0.85rem;
}
.contact__title {
  font-family: var(--font-display);
  font-weight: 500;
  color: #fff;
  font-size: clamp(1.9rem, 2.1vw, 2.5rem); /* ~40px */
  line-height: 1;
  letter-spacing: 0.5px;
  margin: 0;
}
.contact__subtitle {
  font-family: var(--font-body);
  font-weight: 600;
  color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 2.5rem); /* ~40px */
  line-height: 1.15;
  letter-spacing: 0.2px;
  margin: 0 auto clamp(2.4rem, 4.6vw, 4rem);
  max-width: 1050px;
}

/* form row: 3 underline inputs + white submit */
.contact__form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 1.6rem;
  max-width: 1014px;
  margin: 0 auto;
}
.contact__field {
  flex: 1 1 220px;
  text-align: left;
}
.contact__field input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 0;
  padding: 0.35rem 0 1.5rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem; /* ~15px */
  color: #fff;
  letter-spacing: 0.2px;
  transition: border-color 0.3s var(--ease-soft);
}
.contact__field input::placeholder {
  color: #fff;
  opacity: 0.92;
}
.contact__field input:focus {
  outline: none;
  border-bottom-color: #fff;
}
.was-validated .contact__field input:invalid {
  border-bottom-color: #ffb4ab;
}
.contact-error {
  display: none;
  margin-top: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #ffb4ab;
}
.was-validated .contact__field input:invalid ~ .contact-error {
  display: block;
}
.contact__submit {
  flex: 0 0 auto;
  background: #fff;
  color: #555;
  border: 0;
  border-radius: 0;
  padding: 0.72rem 1.15rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem; /* ~12px */
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.3s var(--ease-soft),
    color 0.3s var(--ease-soft);
}
.contact__submit:hover {
  background: #2d251f;
  color: #fff;
}

.contact .form-success {
  display: none;
  flex: 0 0 100%;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.4rem;
  padding: 0.85rem 1.15rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
}
.contact .form-success i {
  color: #fff;
  font-size: 1.1rem;
}
.contact .form-success.is-visible {
  display: flex;
}

@media (max-width: 767.98px) {
  .contact__form {
    flex-direction: column;
    align-items: stretch;
    gap: 1.6rem;
    max-width: 420px;
  }
  .contact__field {
    flex: 1 1 auto;
  }
  .contact__submit {
    width: 100%;
    padding: 0.9rem 1.55rem;
  }
  .gallery-inner {
    padding-left: clamp(1.25rem, 6.1vw, 252px);
  }
}

/* =========================================================
   FOOTER (content — base rules live in shared stylesheet)
   ========================================================= */
/* ---- Footer (Figma node 891:3589 — 1920x476 dark band) ---- */
.site-footer .footer-inner {
  max-width: 1082px; /* 1018 content + 2×32px padding */
  margin: 0 auto;
  padding: 1.75rem 2rem;
  text-align: center;
}

.site-footer .footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2.45rem; /* logo bottom → QR (~39px) */
}
.site-footer .footer-logo img {
  width: 413px;
  max-width: 100%;
  height: auto;
}

.site-footer .footer-qr-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-bottom: 1.25rem; /* QR → RERA (~20px) */
}
.site-footer .footer-qr-img {
  display: block;
  width: 120px;
  height: 120px;
}

.site-footer .footer-rera {
  margin: 0 auto 2.45rem; /* RERA → disclaimer (~39px) */
  max-width: 520px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.66rem; /* ~10px */
  line-height: 1.75;
  color: #fff;
}
.site-footer .footer-rera-nos {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer .footer-disclaimer {
  max-width: 1018px;
  margin: 0 auto 1.5rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem; /* ~14px */
  line-height: 1.65;
  color: #f9f5ef;
}

.site-footer .footer-copyright {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem; /* ~14px */
  line-height: 1.5;
  color: #f9f5ef;
}

@media (max-width: 575.98px) {
  .site-footer .footer-qr-row {
    gap: 2rem;
  }
  .site-footer .footer-disclaimer,
  .site-footer .footer-copyright {
    font-size: 0.8rem;
  }
}

/* =========================================================
   ENQUIRY MODAL (opens on every CTA)
   ========================================================= */
.enquiry-modal .modal-dialog {
  max-width: 460px;
}
.enquiry-modal__content {
  position: relative;
  border: none;
  border-radius: 6px;
  background: linear-gradient(160deg, #2a2018 0%, #17110c 72%);
  color: var(--rb-text-light);
  padding: clamp(2rem, 5vw, 2.85rem);
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8);
}
.enquiry-modal__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rb-gold), transparent);
}
.enquiry-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition:
    border-color 0.3s var(--ease-soft),
    transform 0.45s var(--ease-soft);
}
.enquiry-modal__close:hover {
  border-color: var(--rb-gold);
  transform: rotate(90deg);
}
.enquiry-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1.5px;
  background: var(--rb-text-light);
}
.enquiry-modal__close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.enquiry-modal__close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.enquiry-modal__head {
  text-align: center;
  margin-bottom: 1.85rem;
}
.enquiry-modal__rule {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--rb-gold);
  margin: 0 auto 1rem;
}
.enquiry-modal__title {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--rb-gold);
  font-size: clamp(1.6rem, 4vw, 2rem);
  line-height: 1;
  margin: 0 0 0.55rem;
}
.enquiry-modal__sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--rb-text-light-70);
  margin: 0;
  line-height: 1.5;
}

.enquiry-modal__form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.enquiry-field {
  display: flex;
  flex-direction: column;
}
.enquiry-field input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  padding: 0.6rem 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--rb-text-light);
  letter-spacing: 0.3px;
  transition: border-color 0.3s var(--ease-soft);
}
.enquiry-field input::placeholder {
  color: rgba(246, 242, 233, 0.55);
}
.enquiry-field input:focus {
  outline: none;
  border-bottom-color: var(--rb-gold);
}
.was-validated .enquiry-field input:invalid {
  border-bottom-color: #e0736b;
}
.enquiry-error {
  display: none;
  margin-top: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  color: #e88a82;
  letter-spacing: 0.2px;
}
.was-validated .enquiry-field input:invalid ~ .enquiry-error {
  display: block;
}

.enquiry-modal__submit {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
}
.enquiry-modal__success {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.3rem;
  padding: 0.8rem 1rem;
  border-radius: 4px;
  background: rgba(198, 161, 91, 0.12);
  border: 1px solid rgba(198, 161, 91, 0.35);
  color: var(--rb-gold-2);
  font-family: var(--font-body);
  font-size: 0.85rem;
}
.enquiry-modal__success.is-visible {
  display: flex;
}
.enquiry-modal__success i {
  color: var(--rb-gold);
}

.enquiry-modal.modal + .modal-backdrop.show,
.modal-backdrop.show {
  opacity: 0.72;
}

/* =========================================================
   Form submit loader — shows after submit, before thankyou page
   ========================================================= */
.form-loader {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(23, 17, 12, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.form-loader.is-active {
  display: flex;
}

.form-loader__box {
  text-align: center;
  color: var(--rb-text-light, #f6f2e9);
}

.form-loader__spinner {
  display: block;
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border: 3px solid rgba(198, 161, 91, 0.25);
  border-top-color: var(--rb-gold, #c6a15b);
  border-radius: 50%;
  animation: formLoaderSpin 0.8s linear infinite;
}

.form-loader__text {
  margin: 0;
  font-family: var(--font-display, "Cormorant Garamond", serif);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--rb-gold-2, #dcbf85);
}

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

@media (prefers-reduced-motion: reduce) {
  .form-loader__spinner {
    animation-duration: 1.6s;
  }
}

/* =========================================================
   Fixed CTA buttons — reference (kumarplumeria) layout
   Desktop: Download Brochure bottom-left · Enquire Now bottom-right
   Mobile:  full-width split bottom bar (Enquire | Brochure)
   ========================================================= */

/* -- Desktop corner buttons -- */
.desk-fix-btn {
  position: fixed;
  bottom: 14px;
  z-index: 1050;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--rb-gold-2), var(--rb-gold-deep));
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--rb-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.72rem 1.6rem;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 12px 26px -12px rgba(0, 0, 0, 0.7);
  transition: background 0.35s var(--ease-soft), transform 0.35s var(--ease-soft);
}
.desk-fix-btn i {
  font-size: 1rem;
}
.desk-fix-btn:hover {
  background: var(--rb-gold-2);
  color: var(--rb-dark);
  transform: translateY(-2px);
}
.desk-fix-brochure {
  left: 14px;
}
.desk-fix-enquire {
  right: 14px;
}

.pulseanimation {
  animation: pulse-cust 2s infinite;
}
@keyframes pulse-cust {
  0%   { box-shadow: 0 0 0 0 rgba(198, 161, 91, 0.65); }
  70%  { box-shadow: 0 0 0 14px rgba(198, 161, 91, 0); }
  100% { box-shadow: 0 0 0 0 rgba(198, 161, 91, 0); }
}

/* -- Mobile full-width split bar -- */
.fixed-footer-cust {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1050;
  padding: 8px 0;
  background: linear-gradient(135deg, var(--rb-gold-2), var(--rb-gold-deep));
  box-shadow: 0 -8px 24px -14px rgba(0, 0, 0, 0.8);
}
.fixed-footer-cust .row {
  align-items: stretch;
}
.fixed-footer-cust .pd0 {
  padding-left: 0;
  padding-right: 0;
}
.fixed-footer-cust .div-line {
  position: relative;
  display: flex;
  align-items: center;
}
.fixed-footer-cust .div-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 55%;
  width: 1px;
  background: rgba(0, 0, 0, 0.28);
}
.fixed-footer-cust .fix-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 8px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--rb-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.fixed-footer-cust .fix-link i {
  margin-right: 6px;
  font-size: 0.9rem;
}

/* keep the back-to-top button clear of the fixed CTAs */
.back-to-top {
  bottom: 74px;
}

@media (prefers-reduced-motion: reduce) {
  .pulseanimation {
    animation: none;
  }
}
