/* ════════════════════════════════════════════════════════
   STERLINGCREST v2 — Ultra-Luxury Real Estate
   styles.css
   Bootstrap 5 grid used for layout; ALL visual design custom
   ════════════════════════════════════════════════════════ */


/* ──────────────────────────────────────
   1. DESIGN TOKENS
──────────────────────────────────────── */
:root {
  /* Core palette */
  --ink:        #060606;
  --ink-soft:   #0f0f0f;
  --ink-mid:    #1a1a1a;
  --ink-card:   #141414;
  --gold:       #B8933E;
  --gold-lt:    #D4AA5A;
  --gold-pale:  #EDD89A;
  --gold-dk:    #8E6E28;
  --ivory:      #FAFAF7;
  --parchment:  #F4EFE5;
  --cream:      #EDE7D9;
  --stone:      #5C574F;   /* darkened for better contrast on light bg */
  --stone-lt:   #8A857C;
  --white:      #FFFFFF;
  --err:        #c0392b;
  --ok:         #27ae60;

  /* Fonts */
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-ui:      'Raleway', -apple-system, sans-serif;
  --f-logo:    'Cinzel', serif;

  /* Spacing scale */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: clamp(5rem, 8vw, 8rem);
  --sp-2xl: clamp(6rem, 12vw, 11rem);

  /* Transitions */
  --ease-lux: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 180ms;
  --t-mid:  380ms;
  --t-slow: 650ms;

  /* Shadows */
  --sh-card:  0 2px 24px rgba(0,0,0,0.07);
  --sh-hover: 0 12px 56px rgba(0,0,0,0.13);
  --sh-gold:  0 0 36px rgba(184,147,62,0.22);
}


/* ──────────────────────────────────────
   2. RESET & BASE
──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-ui);
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none; /* custom cursor on desktop */
}

@media (pointer: coarse) { body { cursor: auto; } }

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; transition: color var(--t-fast); }
ul   { list-style: none; padding: 0; margin: 0; }
button { font-family: var(--f-ui); cursor: none; border: none; background: none; }
input, select { font-family: var(--f-ui); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Override Bootstrap's default link color */
a, a:hover { text-decoration: none; }


/* ──────────────────────────────────────
   3. GRAIN TEXTURE (luxury texture layer)
──────────────────────────────────────── */
.grain-layer {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.028;
  pointer-events: none;
  z-index: 10;
}


/* ──────────────────────────────────────
   4. CUSTOM CURSOR
──────────────────────────────────────── */
.c-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 50ms, opacity var(--t-fast);
}

.c-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(184,147,62,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 100ms var(--ease-lux),
              width var(--t-mid) var(--ease-out),
              height var(--t-mid) var(--ease-out),
              opacity var(--t-mid);
}

.c-ring.hover {
  width: 56px; height: 56px;
  border-color: var(--gold);
  background: rgba(184,147,62,0.05);
}

@media (pointer: coarse) { .c-dot, .c-ring { display: none; } }


/* ──────────────────────────────────────
   5. SCROLL PROGRESS
──────────────────────────────────────── */
.scroll-prog {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dk), var(--gold-pale));
  z-index: 10000;
  width: 0%;
  transition: width 80ms linear;
}


/* ──────────────────────────────────────
   6. PRELOADER
──────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.7s var(--ease-lux), visibility 0.7s;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
}

.preloader__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.preloader__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.pl-mark {
  color: var(--gold);
  font-size: 1.4rem;
  animation: plPulse 1.6s ease-in-out infinite;
}

@keyframes plPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.88); }
}

.pl-name {
  font-family: var(--f-logo);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
}

.preloader__bar {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}

.preloader__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--gold-dk), var(--gold-pale));
  transition: width 0.1s linear;
}

.preloader__tag {
  font-family: var(--f-ui);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}


/* ──────────────────────────────────────
   7. NAVIGATION
──────────────────────────────────────── */
.sc-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--t-mid) var(--ease-lux),
              box-shadow var(--t-mid) var(--ease-lux);
}

.sc-nav.scrolled {
  background: rgba(6,6,6,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(184,147,62,0.1), 0 8px 40px rgba(0,0,0,0.4);
}

.sc-nav__wrap {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem,4vw,3rem);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.sc-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  color: var(--white);
}

.sc-nav__emblem {
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

.sc-nav__brand {
  display: block;
  font-family: var(--f-logo);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 1.15;
}

.sc-nav__sub {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  line-height: 1;
}

/* Desktop nav links */
.sc-nav__links {
  display: none;
  align-items: center;
  gap: 0.1rem;
}

@media (min-width: 1024px) { .sc-nav__links { display: flex; } }

.sc-nav__lnk {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.9rem;
  position: relative;
  transition: color var(--t-fast);
}

.sc-nav__lnk::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.9rem;
  right: 0.9rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid) var(--ease-out);
}

.sc-nav__lnk:hover { color: var(--white); }
.sc-nav__lnk:hover::after { transform: scaleX(1); }
.sc-nav__lnk.active { color: var(--gold-lt); }
.sc-nav__lnk.active::after { transform: scaleX(1); }

/* Right actions */
.sc-nav__right {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) { .sc-nav__right { display: flex; } }

.sc-nav__phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  transition: color var(--t-fast);
}

.sc-nav__phone:hover { color: var(--gold-lt); }

/* Hamburger */
.sc-nav__burger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0.4rem;
  cursor: none;
}

@media (min-width: 1024px) { .sc-nav__burger { display: none; } }

.sc-nav__burger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transform-origin: center;
  transition: transform var(--t-mid) var(--ease-lux), opacity var(--t-mid);
}

.sc-nav__burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.sc-nav__burger.open span:nth-child(2) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile drawer */
.sc-nav__drawer {
  display: none;
  flex-direction: column;
  background: rgba(6,6,6,0.98);
  backdrop-filter: blur(20px);
  padding: 1.5rem clamp(1.25rem,4vw,3rem) 2.5rem;
  border-top: 1px solid rgba(184,147,62,0.12);
  gap: 0;
}

.sc-nav__drawer.open { display: flex; }

.sc-nav__mob {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--t-fast);
}

.sc-nav__mob:hover { color: var(--gold-lt); }

.sc-nav__mob--cta {
  margin-top: 1.25rem;
  color: var(--gold);
  border-bottom: none;
  font-size: 0.75rem;
}


/* ──────────────────────────────────────
   8. BUTTONS
──────────────────────────────────────── */
.sc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2.4rem;
  font-family: var(--f-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: all var(--t-mid) var(--ease-lux);
  white-space: nowrap;
  border-radius: 0;
}

/* Shimmer sweep on hover */
.sc-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.14) 50%, transparent 100%);
  transition: left var(--t-mid) var(--ease-lux);
}
.sc-btn:hover::before { left: 140%; }

.sc-btn--gold {
  background: var(--gold);
  border: 1.5px solid var(--gold);
   color: #fff;
}
.sc-btn--gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: var(--sh-gold);
  color: #fff;
}

.sc-btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.sc-btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.sc-btn--outline-dark {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--ink);
}
.sc-btn--outline-dark:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--sh-gold);
}

.sc-btn--sm   { padding: 0.65rem 1.5rem; font-size: 0.68rem; }
.sc-btn--full { width: 100%; }


/* ──────────────────────────────────────
   9. DESIGN SYSTEM ATOMS
──────────────────────────────────────── */
.sc-eyebrow {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.sc-eyebrow--gold { color: var(--gold-lt); }

.sc-rule {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.5rem;
  justify-content: inherit; /* inherits from parent text-align */
}

.sc-rule::before,
.sc-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,147,62,0.4));
  max-width: 80px;
}

.sc-rule::before { background: linear-gradient(to left, transparent, rgba(184,147,62,0.4)); }

.sc-rule span {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold);
  padding: 0 0.75rem;
  letter-spacing: 0.1em;
}

.sc-sec-hdr { text-align: center; margin-bottom: clamp(2.5rem,4vw,4.5rem); }

.sc-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}

.sc-title em { font-style: italic; color: inherit; font-weight: 200; }
.sc-title--wh { color: var(--white); }
.sc-title--wh em { color: var(--gold-pale); }

.sc-sub {
  font-family: var(--f-ui);
  font-size: 1rem;
  font-weight: 400;
  color: var(--stone);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
}


/* ──────────────────────────────────────
   10. REVEAL ANIMATIONS
──────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--d, 0s);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 1s var(--ease-lux);
  transition-delay: var(--d, 0s);
}

.reveal-up.visible,
.reveal-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-fade {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ──────────────────────────────────────
   11. HERO
──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: heroKenBurns 14s var(--ease-lux) forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

.hero__grad {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6,6,6,0.92) 0%, rgba(6,6,6,0.55) 45%, rgba(6,6,6,0.35) 100%),
    linear-gradient(to right, rgba(6,6,6,0.65) 0%, transparent 70%);
  z-index: 1;
}

.hero__grain {
  position: absolute; inset: 0; z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.03;
  pointer-events: none;
}

/* Vertical side label */
.hero__vert {
  display: none;
  position: absolute;
  right: 1.75rem;
  bottom: 50%;
  transform: translateY(50%) rotate(90deg);
  transform-origin: center center;
  z-index: 5;
  font-family: var(--f-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}

@media (min-width: 1200px) { .hero__vert { display: block; } }

/* Hero body */
.hero__body {
  position: relative;
  z-index: 5;
  max-width: 1340px;
  margin: 0 auto;
  width: 100%;
  padding: 6rem clamp(1.25rem,4vw,3rem) clamp(8rem,14vw,13rem);
}

/* Availability badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(184,147,62,0.45);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.92);
  font-family: var(--f-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  margin-bottom: 2rem;
}

.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: badgePulse 2.2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(184,147,62,0.4); }
  50%      { opacity: 0.7; box-shadow: 0 0 0 4px rgba(184,147,62,0); }
}

/* Headline system */
.hero__head { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1.75rem; }

.hero__h-sm {
  font-family: var(--f-ui);
  font-size: clamp(0.82rem, 1.4vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

.hero__h-md {
  font-family: var(--f-display);
  font-size: clamp(3.2rem, 6.5vw, 5.8rem);
  font-weight: 300;
  font-style: normal;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__h-md em {
  font-style: italic;
  color: var(--gold-pale);
  font-weight: 300;
}

.hero__h-xl {
  font-family: var(--f-display);
  font-size: clamp(4rem, 8.5vw, 8rem);
  font-weight: 500;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.hero__sub {
  font-family: var(--f-ui);
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Glass stat card */
.hero__stats {
  position: absolute;
  right: clamp(1.25rem,4vw,3rem);
  bottom: clamp(1.5rem,3vw,3rem);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(6,6,6,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(184,147,62,0.2);
  padding: 1.4rem 2rem;
}

.hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.75rem;
  text-align: center;
}

.hstat:first-child { padding-left: 0; }
.hstat:last-child  { padding-right: 0; }

.hstat__n {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 400;
  color: var(--gold-lt);
  line-height: 1;
}

.hstat__l {
  font-family: var(--f-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  margin-top: 0.3rem;
}

.hstat__div {
  width: 1px;
  height: 34px;
  background: rgba(184,147,62,0.22);
  flex-shrink: 0;
}

/* Scroll cue */
.hero__scroll {
  position: absolute;
  left: clamp(1.25rem,4vw,3rem);
  bottom: clamp(1.5rem,3vw,3rem);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2.2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%,100% { opacity: 0.5; transform: scaleY(1); transform-origin: top; }
  50%      { opacity: 1;   transform: scaleY(0.6); }
}

.hero__scroll span {
  font-family: var(--f-ui);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  writing-mode: vertical-rl;
}

/* Mobile hero adjustments */
@media (max-width: 640px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .sc-btn { justify-content: center; }
  .hero__stats {
    position: relative;
    right: auto; bottom: auto;
    width: 100%;
    justify-content: space-around;
    margin: 0;
    padding: 1.2rem 1rem;
    border: none;
    border-top: 1px solid rgba(184,147,62,0.2);
  }
  .hstat { padding: 0 0.75rem; }
  .hstat__div { height: 28px; }
  .hero__scroll { display: none; }
}

@media (min-width: 641px) and (max-width: 1023px) {
  .hero__stats { bottom: 4.5rem; }
}

.hero-price {
  margin-top: 10px;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}

.price-highlight {
  color: #B8933E;
  font-weight: 600;
}

.hero-highlights {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 20px;
}

.hl-sep {
  color: #B8933E;
}

/* ──────────────────────────────────────
   12. MARQUEE BAND
──────────────────────────────────────── */
.mqband {
  background: var(--ink-soft);
  border-top:    1px solid rgba(184,147,62,0.12);
  border-bottom: 1px solid rgba(184,147,62,0.12);
  padding: 0.95rem 0;
  overflow: hidden;
}

.mqtrack { overflow: hidden; white-space: nowrap; }

.mqinner {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  animation: mqScroll 42s linear infinite;
  white-space: nowrap;
}

.mqinner span {
  font-family: var(--f-ui);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}

.mqinner em {
  color: var(--gold);
  font-style: normal;
  font-size: 0.45rem;
  flex-shrink: 0;
}

@keyframes mqScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.mqband:hover .mqinner { animation-play-state: paused; }


/* ──────────────────────────────────────
   13. CREDENTIALS SECTION
──────────────────────────────────────── */
.creds {
  padding: var(--sp-xl) 0;
  background: var(--parchment);
  position: relative;
}

.cred-card {
  padding: 2.25rem 1.75rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.055);
  height: 100%;
  position: relative;
  transition: transform var(--t-mid) var(--ease-lux),
              box-shadow var(--t-mid) var(--ease-lux);
  overflow: hidden;
}

.cred-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dk), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid) var(--ease-out);
}

.cred-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-hover);
}

.cred-card:hover::after { transform: scaleX(1); }

.cred-card__ico {
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.cred-card h3 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.cred-card p {
  font-family: var(--f-ui);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--stone);
  line-height: 1.75;
}


/* ──────────────────────────────────────
   14. PROPERTIES SECTION
──────────────────────────────────────── */
.props {
  padding: var(--sp-xl) 0;
  background: var(--ivory);
}

/* Filter bar */
.pf-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: clamp(2rem,3.5vw,3.5rem);
}

.pf-btn {
  font-family: var(--f-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  border: 1.5px solid rgba(0,0,0,0.14);
  padding: 0.6rem 1.6rem;
  background: transparent;
  cursor: none;
  transition: all var(--t-mid) var(--ease-lux);
}

.pf-btn:hover      { border-color: var(--gold); color: var(--gold); }
.pf-btn.active     { background: var(--ink); border-color: var(--ink); color: var(--gold); }


/* ── PROPERTY CARDS ── */
.pc { display: block; overflow: hidden; position: relative; }

.pc__wrap {
  position: relative;
  overflow: hidden;
}

.pc__img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease-lux);
}

.pc:hover .pc__img { transform: scale(1.05); }

/* Image heights */
.pc--feat  .pc__img { height: clamp(360px, 55vw, 680px); }
.pc--half  .pc__img { height: clamp(200px, 27vw, 340px); }
.pc--grid  .pc__img { height: clamp(260px, 28vw, 380px); }

/* Dark veil overlay */
.pc__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(6,6,6,0.94) 0%,
    rgba(6,6,6,0.55) 45%,
    rgba(6,6,6,0.12) 100%);
  transition: opacity var(--t-mid) var(--ease-lux);
}

.pc:hover .pc__veil { opacity: 1; }

/* Card info overlay */
.pc__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem 1.75rem 1.5rem;
  z-index: 2;
  transform: translateY(4px);
  transition: transform var(--t-mid) var(--ease-out);
}

.pc:hover .pc__info { transform: translateY(0); }

/* Featured card info — larger */
.pc--feat .pc__info { padding: 2.25rem 2.25rem 2rem; }

.pc__loc {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--f-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 0.6rem;
}

.pc__name {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.pc--feat .pc__name { font-size: clamp(1.5rem, 2.5vw, 2.1rem); }

.pc__name em {
  font-style: italic;
  font-weight: 200;
  color: var(--gold-pale);
}

.pc__meta {
  font-family: var(--f-ui);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
  margin-bottom: 1.1rem;
  display: none;
}

.pc--feat .pc__meta { display: block; }

.pc__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.pc__price {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--gold-pale);
}

.pc--feat .pc__price { font-size: clamp(1.5rem, 2.5vw, 2rem); }

.pc__cta {
  font-family: var(--f-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-lt);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color var(--t-fast), color var(--t-fast);
}

.pc__cta:hover { border-color: var(--gold-lt); color: var(--white); }

/* Badge */
.pc__tag {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 3;
  font-family: var(--f-ui);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.38rem 0.85rem;
  background: rgba(6,6,6,0.8);
  backdrop-filter: blur(6px);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
}

.pc__tag--gold { background: var(--gold); color: var(--ink); border-color: transparent; }

/* Filter hidden state */
.pc.hidden { display: none; }


/* ──────────────────────────────────────
   15. ADVANTAGE SECTION (dark)
──────────────────────────────────────── */
.adv {
  padding: var(--sp-2xl) 0;
  background: var(--ink-mid);
  position: relative;
  overflow: hidden;
}

/* Subtle radial gold glow */
.adv::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(184,147,62,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.adv__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.025; pointer-events: none;
}

.adv__intro {
  font-family: var(--f-ui);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 460px;
}

/* Award bar */
.adv__awards {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.adv__award { display: flex; flex-direction: column; gap: 0.2rem; }

.adv__award-n {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold-lt);
  line-height: 1;
}

.adv__award-l {
  font-family: var(--f-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.58);
  text-transform: uppercase;
}

.adv__award-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
}

/* Advantage numbered list */
.adv-list { padding: 0; }

.adv-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 1.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--t-mid);
  list-style: none;
}

.adv-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.adv-item__n {
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold-lt);
  min-width: 28px;
  padding-top: 0.25rem;
  flex-shrink: 0;
}

.adv-item__body h3 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.adv-item__body p {
  font-family: var(--f-ui);
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}


/* ──────────────────────────────────────
   16. PROCESS SECTION
──────────────────────────────────────── */
.proc {
  padding: var(--sp-xl) 0;
  background: var(--parchment);
}

.proc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}

@media (min-width: 768px) {
  .proc-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Connector line on desktop */
@media (min-width: 768px) {
  .proc-grid::before {
    content: '';
    position: absolute;
    top: 2.9rem;
    left: calc(12.5% + 1.6rem);
    right: calc(12.5% + 1.6rem);
    height: 1px;
    background: linear-gradient(to right, var(--gold), rgba(184,147,62,0.15));
    z-index: 0;
  }
}

.proc-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(1.5rem,3vw,2.5rem) clamp(1rem,2vw,1.5rem);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

@media (min-width: 768px) {
  .proc-step { border-bottom: none; }
}

.proc-step__n {
  font-family: var(--f-display);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  display: block;
}

.proc-step__ico {
  width: 4rem; height: 4rem;
  background: var(--white);
  border: 1.5px solid rgba(184,147,62,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: all var(--t-mid) var(--ease-lux);
}

.proc-step:hover .proc-step__ico {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: var(--sh-gold);
  transform: translateY(-4px);
}

.proc-step h3 {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.proc-step p {
  font-family: var(--f-ui);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--stone);
  line-height: 1.78;
}

/* Mobile process: horizontal grid layout */
@media (max-width: 767px) {
  .proc-step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0.5rem 1rem;
    text-align: left;
    padding: 1.5rem 0;
  }
  .proc-step__n   { grid-column: 1; grid-row: 1; margin-bottom: 0; }
  .proc-step__ico { grid-column: 1; grid-row: 2; margin: 0; width: 3rem; height: 3rem; }
  .proc-step h3   { grid-column: 2; grid-row: 1; }
  .proc-step p    { grid-column: 2; grid-row: 2; }
}


/* ──────────────────────────────────────
   17. TESTIMONIALS (cinematic dark)
──────────────────────────────────────── */
.testi {
  padding: var(--sp-2xl) 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.testi::before {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  bottom: -400px; left: -300px;
  background: radial-gradient(circle, rgba(184,147,62,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.testi__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.022; pointer-events: none;
}

.testi .sc-sec-hdr { margin-bottom: clamp(2.5rem,5vw,5rem); }
.testi .sc-sub { color: rgba(255,255,255,0.62); }

/* Testimonial card */
.tcard {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2.5rem 2rem 2rem;
  height: 100%;
  position: relative;
  transition: transform var(--t-mid) var(--ease-lux),
              border-color var(--t-mid) var(--ease-lux),
              box-shadow var(--t-mid) var(--ease-lux);
  overflow: hidden;
}

.tcard:hover {
  transform: translateY(-5px);
  border-color: rgba(184,147,62,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.tcard__qm {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  font-family: var(--f-display);
  font-size: 6rem;
  font-weight: 400;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
}

.tcard__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.tcard__txt {
  font-family: var(--f-display);
  font-size: 1.08rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tcard__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.tcard__av {
  width: 42px; height: 42px;
  background: rgba(184,147,62,0.12);
  border: 1px solid rgba(184,147,62,0.3);
  color: var(--gold-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 500;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.tcard__nm {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  font-style: normal;
  margin-bottom: 0.2rem;
}

.tcard__rl {
  font-family: var(--f-ui);
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.06em;
}


/* ──────────────────────────────────────
   18. ENQUIRY — SPLIT LAYOUT
──────────────────────────────────────── */
.enq {
  display: flex;
  flex-direction: column;
  min-height: 700px;
}

@media (min-width: 900px) {
  .enq { flex-direction: row; min-height: 640px; }
}

/* Dark left panel */
.enq__left {
  background: var(--ink-soft);
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
  padding: var(--sp-xl) clamp(1.25rem,4vw,3rem);
}

.enq__left::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(184,147,62,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.enq__left-inner {
  max-width: 500px;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .enq__left {
    flex: 0 0 45%;
    padding: var(--sp-2xl) clamp(2rem,5vw,5rem);
  }
}

@media (min-width: 1200px) {
  .enq__left {
    flex: 0 0 42%;
  }
}

.enq__desc {
  font-family: var(--f-ui);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 400px;
}

.enq__trust {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 3rem;
}

.enq__trust li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--f-ui);
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
}

.enq__trust li svg { color: var(--gold); flex-shrink: 0; }

.enq__bigstat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 2rem;
  margin-top: auto;
}

.enq__bignum {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--gold-pale);
  line-height: 1;
  letter-spacing: -0.02em;
}

.enq__bignum sup {
  font-size: 0.45em;
  vertical-align: super;
  font-weight: 400;
  color: var(--gold);
}

.enq__biglbl {
  font-family: var(--f-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Right: form */
.enq__right {
  flex: 1;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-xl) clamp(1.25rem,4vw,3rem);
}

.enq__form-wrap {
  width: 100%;
  max-width: 480px;
  background: var(--white);
  padding: clamp(2rem,4vw,3.5rem);
  box-shadow: 0 4px 60px rgba(0,0,0,0.08);
}

.enq__form-head {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 2rem;
  line-height: 1.2;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding-bottom: 1.5rem;
}

.enq__form { display: flex; flex-direction: column; gap: 1.5rem; }

/* Floating label fields */
.fld {
  position: relative;
  display: flex;
  flex-direction: column;
}

.fld__inp {
  width: 100%;
  padding: 1.15rem 1rem 0.45rem;
  font-family: var(--f-ui);
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(0,0,0,0.18);
  outline: none;
  transition: border-color var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
}

.lp-midform__inp {
  background-color: #ffffff !important;
}


.fld__inp:focus { border-color: var(--gold); }
.fld__inp.err   { border-color: var(--err); }

.fld__lbl {
  position: absolute;
  top: 0.9rem;
  left: 1rem;
  font-family: var(--f-ui);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--stone);
  pointer-events: none;
  transition: all var(--t-fast) var(--ease-lux);
}

/* Float label on focus/filled */
.fld__inp:focus       + .fld__lbl,
.fld__inp:not(:placeholder-shown) + .fld__lbl {
  top: 0.15rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dk);
}

/* Pre-floated labels for selects */
.fld__lbl--up {
  top: 0.15rem !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--gold-dk) !important;
}

.fld__sel {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238C8479' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: none;
}

.fld__err {
  font-family: var(--f-ui);
  font-size: 0.68rem;
  color: var(--err);
  font-weight: 400;
  padding: 0.2rem 1rem 0;
  min-height: 1.2em;
}

/* Submit spinner */
.btn-spin {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.sc-btn.loading .btn-txt  { opacity: 0.5; }
.sc-btn.loading .btn-spin { display: block; }

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

/* Form success */
.form-ok {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(39,174,96,0.07);
  border: 1.5px solid rgba(39,174,96,0.3);
  color: #1a7a3c;
  font-family: var(--f-ui);
  font-size: 0.88rem;
  font-weight: 400;
  margin-top: 0.5rem;
  animation: fadeUp 0.4s var(--ease-out) forwards;
}

.form-ok[hidden] { display: none; }
.form-ok svg { color: var(--ok); flex-shrink: 0; }


/* ──────────────────────────────────────
   19. FOOTER
──────────────────────────────────────── */
.sc-foot {
  background: var(--ink-soft);
  border-top: 3px solid var(--gold-dk);
}

.sc-foot__body {
  padding: clamp(3.5rem,6vw,5.5rem) 0 clamp(2.5rem,4vw,4rem);
}

.sc-foot__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.sc-foot__tag {
  font-family: var(--f-ui);
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 1.75rem;
}

.sc-foot__soc {
  display: flex;
  gap: 0.6rem;
}

.sc-foot__soc-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.6);
  transition: all var(--t-fast);
}

.sc-foot__soc-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.sc-foot__col-h {
  font-family: var(--f-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.sc-foot__lnks {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.sc-foot__lnks a {
  font-family: var(--f-ui);
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast);
}

.sc-foot__lnks a:hover { color: var(--white); }

.sc-foot__btm {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 0;
}

.sc-foot__btm-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem,4vw,3rem);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: center;
}

@media (min-width: 768px) {
  .sc-foot__btm-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.sc-foot__btm p {
  font-family: var(--f-ui);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}


/* ──────────────────────────────────────
   20. WHATSAPP FAB
──────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem 0.75rem 0.9rem;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform var(--t-mid) var(--ease-out),
              box-shadow var(--t-mid) var(--ease-out);
  cursor: none;
}

.wa-fab:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  color: var(--white);
}

.wa-fab__lbl {
  font-family: var(--f-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .wa-fab { padding: 0.9rem; border-radius: 50%; }
  .wa-fab__lbl { display: none; }
}


/* ──────────────────────────────────────
   21. UTILITY ANIMATIONS
──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Override Bootstrap container max-width */
.container { max-width: 1340px !important; }

/* Override Bootstrap's default link colors */
a, a:visited { text-decoration: none; }

/* Fix Bootstrap overriding cursor on buttons */
button { cursor: none !important; }
@media (pointer: coarse) { button { cursor: pointer !important; } }


/* ──────────────────────────────────────
   22. TRUST STRIP
──────────────────────────────────────── */
.trust-strip {
  background: var(--parchment);
  border-top: 1px solid rgba(184,147,62,.18);
  border-bottom: 1px solid rgba(184,147,62,.18);
  padding: 0.9rem 1rem;
  overflow: hidden;
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0;
  max-width: 1340px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 1.4rem;
  color: var(--stone);
  font-family: var(--f-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.trust-sep {
  width: 1px;
  height: 1.1rem;
  background: rgba(184,147,62,.30);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .trust-strip__inner { gap: 0; }
  .trust-item { padding: 0.35rem 0.9rem; font-size: 0.68rem; }
  .trust-sep:nth-child(6) { display: none; } /* hide 3rd separator on mobile */
}

@media (max-width: 480px) {
  .trust-strip { padding: 0.7rem 0.5rem; }
  .trust-item { padding: 0.3rem 0.65rem; font-size: 0.65rem; letter-spacing: 0.06em; }
}


/* ──────────────────────────────────────
   23. PRIVATE PROPERTY COLLECTION
──────────────────────────────────────── */
.ppc {
  position: relative;
  background: var(--ink-soft);
  padding: 7rem 0 6rem;
  overflow: hidden;
  isolation: isolate;
}

/* Radial gold glow — mirrors .adv */
.ppc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 60%, rgba(184,147,62,.10) 0%, transparent 70%);
  pointer-events: none;
}

.ppc__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: .5;
  pointer-events: none;
  z-index: -1;
}

/* Decorative gold rule for centered section headers */
.sc-rule--center {
  justify-content: center;
}

.ppc .sc-title--wh {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 1.5rem;
}

.ppc__body {
  font-family: var(--f-serif);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,.78);
  max-width: 680px;
  margin: 0 auto 1rem;
}

.ppc__sub {
  font-family: var(--f-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 2.2rem;
}

/* Pillars row */
.ppc__pillars {
  list-style: none;
  padding: 0;
  margin: 3.5rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(184,147,62,.20);
  padding-top: 2.5rem;
}

.ppc__pillars li {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.5rem;
  text-align: center;
}

.ppc__pillar-sep {
  width: 1px;
  height: 2.8rem;
  background: rgba(184,147,62,.25);
  flex-shrink: 0;
}

.ppc__pillar-n {
  font-family: var(--f-serif);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.ppc__pillar-l {
  font-family: var(--f-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  white-space: nowrap;
}

@media (max-width: 767px) {
  .ppc { padding: 5rem 0 4.5rem; }
  .ppc__pillars { gap: 1.5rem 0; }
  .ppc__pillars li { padding: 0 1.2rem; }
  .ppc__pillar-sep:nth-child(6) { display: none; }
  .ppc__pillar-l { font-size: 0.68rem; white-space: normal; max-width: 80px; }
}

@media (max-width: 480px) {
  .ppc__pillars { flex-wrap: wrap; gap: 1.8rem; }
  .ppc__pillar-sep { display: none; }
  .ppc__pillars li { padding: 0 0.8rem; }
  .ppc__pillar-l { white-space: normal; max-width: 90px; }
}

.lp-res__price {
  font-weight: 600;
  color: #B8933E;
}
.amenities-text {
  font-size: 16px;
}
.eoi-text {
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
  color: #B8933E;
}
.lp-map__pin {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.lp-map__pin svg {
  width: 32px;
  height: 32px;
  stroke-width: 2.2;
}

/* ===== Residence Cards PERFECT CENTER FIX ===== */

.lp-res__grid{
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;   /* exact center */
  align-items: stretch !important;
  gap: 28px !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.lp-res__card{
  flex: 0 0 340px !important;
  max-width: 340px !important;
  width: 340px !important;
  margin: 0 !important;
}

/* agar sirf 1 ya 2 card ho tab bhi center */
.lp-res .container{
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

/* tablet */
@media (max-width: 991px){
  .lp-res__card{
    flex: 0 0 320px !important;
    max-width: 320px !important;
    width: 320px !important;
  }
}

/* mobile */
@media (max-width: 767px){
  .lp-res__grid{
    justify-content: center !important;
    gap: 20px !important;
  }

  .lp-res__card{
    width: 100% !important;
    max-width: 420px !important;
    flex: unset !important;
    margin: 0 auto !important;
  }
}

/* small mobile */
@media (max-width: 480px){
  .lp-res__card{
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* 350px tak */
@media (max-width: 350px){
  .lp-res__card{
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
  }
}