/* ==========================================================================
   BluBay by ORA Land — Landing Page Styles
   ========================================================================== */

/* Landing page fonts */
@font-face {
  font-family: "Norm";
  src: url("../font/TTNorms-Regular.otf") format("opentype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  /* Compensates for TT Norms' smaller x-height so body text reads larger */
  size-adjust: 110%;
}

@font-face {
  font-family: "Helve";
  src: url("../font/HELVE28_0.TTF") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  /* Compensates for Helve's smaller x-height so headings read larger */
  size-adjust: 107%;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
  font-size: 18px;
}

@media (max-width: 1200px) {
  html {
    font-size: 17px;
  }
}

@media (max-width: 960px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 430px) {
  html {
    font-size: 13px;
  }
}

body {
  font-family: "Norm", sans-serif;
  background: #2b0a13;
  color: #f5eee2;
  overflow-x: hidden;
  width: 100%;
  min-width: 0;
}

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

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

ul {
  list-style: none;
}

:root {
  /* The Monogram Collection — brochure palette: deep wine + champagne gold + cream */
  --gold: #9c7d3e;
  --gold-l: #9c7d3e;
  --gold-dk: #9c7d3e;
  --forest: #4a1524;
  --dark: #2b0a13;
  --dark2: #3d1120;
  --wine: #4a1524;
  --wine-l: #5c1c30;
  --cream: #ece4d6;
  --lagoon: #c2a165;
  --muted: rgba(245, 238, 226, 0.58);
  --border: rgba(194, 161, 101, 0.18);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8000;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#cur,
#cur-r {
  display: none;
}

@media (pointer: fine) {
  body {
    cursor: none;
  }
  #cur {
    display: block;
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    top: 0;
    left: 0;
    will-change: transform;
  }
  #cur-r {
    display: block;
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    top: 0;
    left: 0;
    will-change: transform;
    transition:
      width 0.25s,
      height 0.25s;
  }
}

#pcvs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  /* Star-dust / golden particle overlay removed per client request
     (was rendering over the images). */
  display: none;
}

#loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.7s,
    visibility 0.7s;
}

#loader.gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.l-logo {
  font-family: "Helve", sans-serif;
  font-size: 3.8rem;
  color: var(--gold);
  letter-spacing: 12px;
  margin-bottom: 34px;
  overflow: hidden;
}

.l-logo-img {
  height: 100px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .l-logo-img {
    height: 48px;
    max-width: 160px;
  }
}

.l-logo span {
  display: inline-block;
  transform: translateY(110%);
  animation: slideUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.l-logo span:nth-child(2) {
  animation-delay: 0.06s;
}

.l-logo span:nth-child(3) {
  animation-delay: 0.12s;
}

.l-bar-wrap {
  width: 180px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.l-bar {
  height: 100%;
  background: var(--gold);
  width: 0;
  animation: loadBar 2.2s ease forwards;
}

.l-tag {
  font-size: 0.48rem;
  letter-spacing: 5px;
  color: var(--muted);
  margin-top: 10px;
  text-transform: uppercase;
  text-align: center;
  padding: 0 16px;
}

/* ── NAV ── */

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 20px 60px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  transition:
    opacity 0.5s,
    padding 0.4s,
    background 0.4s;
  min-height: auto;
}

#nav .n-links,
#nav .n-ham {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

/* Prevent stuck state from flashing on initial Safari paint */

#nav.stuck-init-lock .n-links,
#nav.stuck-init-lock .n-ham {
  opacity: 0 !important;
  pointer-events: none !important;
}

#nav.stuck .n-links,
#nav.stuck .n-ham {
  opacity: 1;
  pointer-events: all;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(0deg);
  opacity: 0.92;
  transition: opacity 0.3s;
}

.nav-logo-img:hover {
  opacity: 1;
}

.nav-oraland-mobile {
  display: none;
}

.nav-logo-img.blubay {
  height: 120px;
  line-height: 0;
  display: block;
}

/* ── MOBILE NAV: blubay same size as oraland, space-between layout ── */

@media (max-width: 960px) {
  .nav-logo-img.blubay {
    height: 70px;
  }
  /* Hide the oraland logo that's grouped next to blubay on left */
  .n-logo-group .nav-oraland-mobile {
    display: none !important;
  }
  /* Show the oraland logo in n-right on mobile */
  .n-right .n-logo {
    display: flex !important;
    align-items: center;
  }
  .n-right .nav-logo-img.oraland {
    display: block !important;
    height: 24px;
  }
}

.nav-logo-img.oraland {
  height: 30px;
}

.n-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

#nav.stuck {
  background: rgba(43, 10, 19, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0 60px;
  border-bottom-color: var(--border);
  padding: 12px 60px;
}

.n-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.n-links {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.n-links a {
  font-size: 0.64rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 300;
  transition: color 0.3s;
  position: relative;
}

.n-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s;
}

.n-links a:hover {
  color: var(--gold);
}

.n-links a:hover::after {
  width: 100%;
}

.n-ham {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.n-ham span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition:
    transform 0.3s,
    opacity 0.3s,
    width 0.3s,
    background 0.3s;
}

/* refined taper — shorter middle bar */
.n-ham span:nth-child(2) {
  width: 18px;
}

.n-ham:hover span {
  background: var(--gold-l);
  width: 24px;
}

/* ══════════════════════════════════════════════════════════
   PREMIUM FULL-WIDTH OFF-CANVAS MENU
══════════════════════════════════════════════════════════ */

#drawer {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: max(22px, env(safe-area-inset-top)) 26px
    max(30px, env(safe-area-inset-bottom));
  background:
    radial-gradient(
      130% 70% at 82% -10%,
      rgba(194, 161, 101, 0.16),
      transparent 58%
    ),
    linear-gradient(158deg, #2b0a13 0%, #3d1120 52%, #220711 100%);
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease,
    visibility 0.55s;
}

#drawer.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}

/* gold hairline crowning the panel */
#drawer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(194, 161, 101, 0.6),
    transparent
  );
}

/* ── header: brand mark + close ── */
.d-head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(194, 161, 101, 0.16);
}

.d-logo {
  height: 40px;
  width: auto;
  display: block;
}

#d-close {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(194, 161, 101, 0.4);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

#d-close span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: var(--gold-l);
  transition: background 0.3s;
}

#d-close span:first-child {
  transform: rotate(45deg);
}

#d-close span:last-child {
  transform: rotate(-45deg);
}

#d-close:hover {
  border-color: var(--gold-l);
  background: rgba(194, 161, 101, 0.12);
  transform: rotate(90deg);
}

/* ── links: large serif, staggered reveal ── */
.d-nav {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}

.d-nav ul {
  width: 100%;
}

.d-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 0.5s ease,
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#drawer.open .d-nav li {
  opacity: 1;
  transform: none;
}

#drawer.open .d-nav li:nth-child(1) {
  transition-delay: 0.1s;
}
#drawer.open .d-nav li:nth-child(2) {
  transition-delay: 0.16s;
}
#drawer.open .d-nav li:nth-child(3) {
  transition-delay: 0.22s;
}
#drawer.open .d-nav li:nth-child(4) {
  transition-delay: 0.28s;
}
#drawer.open .d-nav li:nth-child(5) {
  transition-delay: 0.34s;
}
#drawer.open .d-nav li:nth-child(6) {
  transition-delay: 0.4s;
}
#drawer.open .d-nav li:nth-child(7) {
  transition-delay: 0.46s;
}

.d-nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 15px 4px;
  text-decoration: none;
  transition: padding-left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.d-idx {
  font-family: "Norm", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: rgba(194, 161, 101, 0.55);
  min-width: 22px;
  transition: color 0.3s;
}

.d-txt {
  font-family: "Helve", sans-serif;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(245, 238, 226, 0.9);
  transition: color 0.3s;
}

#drawer .d-nav a:hover {
  padding-left: 12px;
}
#drawer .d-nav a:hover .d-txt {
  color: var(--gold-l) !important;
}
#drawer .d-nav a:hover .d-idx {
  color: var(--gold) !important;
}

/* ── footer: CTA + contact ── */
.d-foot {
  flex: 0 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(194, 161, 101, 0.16);
  text-align: center;
}

.d-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  background: linear-gradient(135deg, var(--gold-l), var(--gold));
  color: var(--dark);
  padding: 16px 28px;
  font-family: "Norm", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 10px 30px -10px rgba(194, 161, 101, 0.5);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    filter 0.3s;
}

.d-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(194, 161, 101, 0.6);
  filter: brightness(1.05);
}

.d-phone {
  display: inline-block;
  font-family: "Helve", sans-serif;
  font-size: 1.15rem;
  color: var(--gold-l);
  letter-spacing: 1px;
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.3s;
}
#drawer .d-foot .d-phone:hover {
  color: #fff !important;
}

.d-rera {
  font-family: "Norm", sans-serif;
  font-size: 0.56rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 238, 226, 0.4);
}

/* ── backdrop (fades in beneath the panel) ── */
#d-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 9998;
  pointer-events: none;
  transition: background 0.4s;
}

#d-bg.show {
  background: rgba(0, 0, 0, 0.55);
  pointer-events: all;
}

/* ── SHARED ── */

.stag {
  font-family: "Helve", sans-serif;
  font-size: 16px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 16px;
  display: block;
}

/* Every section eyebrow tag + heading uses the Helve display face */
h2,
.stag {
  font-family: "Helve", sans-serif !important;
}
h2 {
  line-height: 1.25 !important;
}
.stag {
  line-height: 1.6 !important;
}

.btn-o {
  font-size: 0.54rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  padding: 13px 30px;
  border: 1px solid var(--gold);
  cursor: pointer;
  font-family: "Norm", sans-serif;
  font-weight: 400;
  transition: all 0.3s;
  display: none;
}

.btn-o:hover {
  background: rgba(201, 168, 76, 0.1);
}

/* ── REVEAL ── */

.rev {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}

.rev.on {
  opacity: 1;
  transform: translateY(0);
}

.rev-l {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}

.rev-l.on {
  opacity: 1;
  transform: translateX(0);
}

.rev-r {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}

.rev-r.on {
  opacity: 1;
  transform: translateX(0);
}

.rev-s {
  opacity: 0;
  transform: scale(0.97);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}

.rev-s.on {
  opacity: 1;
  transform: scale(1);
}

/* ════════════════════════════
   HERO — FULL BLEED (from index - Copy.html)
════════════════════════════ */

#hero {
  position: relative;
  width: 100vw;
  overflow: hidden;
  z-index: 10;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #1f0710;
}

/* ── BANNER CAROUSEL ── */
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-track {
  display: flex;
  will-change: transform;
}
.hero-slide {
  flex: 0 0 100%;
  min-width: 0;
}
.hero-slide picture {
  display: block;
  width: 100%;
}
.hero-slide img {
  display: block;
  width: 100%;
  height: auto;
}

/* Prev / next arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(20, 6, 11, 0.3);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* optical centering: the ←/→ glyph ink sits ~0.14em below the line-box
     center, so it lands low in the circle — raise it back to true center */
  padding-bottom: 0.28em;
  cursor: pointer;
  z-index: 6;
  transition:
    background 0.35s,
    color 0.35s,
    border-color 0.35s,
    transform 0.35s;
}
.hero-prev {
  left: 26px;
}
.hero-next {
  right: 26px;
}
.hero-arrow:hover {
  background: var(--gold);
  color: #2b0a13;
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.06);
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 6;
}
.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition:
    background 0.35s,
    transform 0.35s;
}
.hero-dots button.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ════════════════════════════
   SECTION 2 — INTRO SPLIT (from index.html)
════════════════════════════ */

#intro {
  position: relative;
  z-index: 10;
  background: var(--dark);
  padding: 0 0 0 60px;
  overflow: hidden;
}

.intro-split {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  align-items: center;
  gap: 40px;
}

.intro-carousel {
  position: relative;
  overflow: hidden;
  height: 480px;
  min-width: 0;
}

.intro-content {
  min-width: 0;
}

.ic-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s;
}

.ic-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

.ic-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center center;
  -o-object-position: center center;
  display: block;
  /* Safari fix: force the image to respect the parent height */
  position: absolute;
  top: 0;
  left: 0;
}

.ic-slide {
  position: relative;
}

.ic-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to right, transparent 70%, var(--dark) 100%) */
}

.ic-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.ic-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(201, 168, 76, 0.3);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}

.ic-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.intro-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark);
}

.intro-content .stag {
  margin-bottom: 14px;
}

.intro-content h2 {
  font-family: "Helve", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 22px;
}

.intro-content h2 em {
  color: var(--gold);
  font-style: italic;
}

.intro-content p {
  font-size: 18px;
  line-height: 1.2em;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 14px;
  max-width: 1000px;
}

.intro-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
  opacity: 0.5;
}

.intro-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 16px;
  margin-top: 32px;
}

.intro-stat {
  padding: 0;
  background: none;
  border: none;
  cursor: default;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}

.intro-stat-val {
  font-family: "Helve", sans-serif;
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}

.intro-stat-unit {
  font-size: 17px;
  letter-spacing: 2px;
  color: rgba(201, 168, 76, 0.7);
  /* text-transform: uppercase; */
  font-weight: 400;
  margin-top: 2px;
  min-height: 14px;
}

/* Collapse the reserved gap when a stat has no unit text */
.intro-stat-unit:empty {
  display: none;
  min-height: 0;
  margin-top: 0;
}

.intro-stat-lbl {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 300;
  /* auto margin pins the caption to the bottom of the (equal-height) cell so
     every label in a row shares one baseline; padding keeps a min gap above it */
  /* margin-top: auto; */
  padding-top: 8px;
  line-height: 1.6;
}

@media (max-width: 960px) {
  #intro {
    position: relative;
    z-index: 10;
    background: var(--dark);
    padding: 0;
    overflow: hidden;
  }
  .intro-split {
    gap: 0;
  }
  .intro-carousel {
    padding: 10px 0px 0px 0px;
  }

  .intro-stat-lbl{
    font-size: 11px !important;
  }
}

/* ════════════════════════════
   LOCATION SECTION
════════════════════════════ */

#location {
  position: relative;
  z-index: 10;
  background: var(--forest);
  padding: 110px 60px;
  border-top: 1px solid var(--border);
}

.loc-head {
  margin-bottom: 52px;
}

.loc-head h2 {
  font-family: "Helve", sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
}

.loc-head h2 em {
  color: var(--gold);
  font-style: italic;
}

.loc-head p {
  font-size: 0.64rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 10px;
  line-height: 1.9;
  max-width: 580px;
}

.loc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

/* left — site image panel */

.loc-img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  width: 100%;
}

#locMapTrack {
  display: flex;
  width: 100%;
  height: 100%;
}

.loc-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
}

.loc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.loc-img-wrap:hover img {
  transform: scale(1.04);
}

/* right — map panel */

.loc-map-wrap {
  position: relative;
  background: var(--dark);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  min-height: 500px;
}

.loc-map-frame {
  flex: 1;
  position: relative;
  min-height: 380px;
}

.loc-map-frame iframe {
  width: 100%;
  height: 60%;
  border: 0;
  display: block;
  filter: grayscale(0.2) contrast(1.05);
}

/* map disclaimer */

.map-disclaimer {
  flex-shrink: 0;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: var(--muted);
  font-weight: 300;
  text-align: right;
}

/* distances strip */

.loc-distances {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 16px;
}

.loc-dist {
  padding: 18px 14px;
  text-align: center;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.loc-dist:hover {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  border-color: rgba(201, 168, 76, 0.35);
}

.loc-dist-val {
  font-family: "Helve", sans-serif;
  font-size: 28px;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}

.loc-dist-unit {
  font-size: 14px;
  letter-spacing: 2px;
  color: rgba(201, 168, 76, 0.65);
  text-transform: uppercase;
  margin-top: 1px;
}

.loc-dist-lbl {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 300;
  margin-top: 6px;
  line-height: 1.6;
}

@media (max-width: 960px) {
  #location {
    padding: 80px 20px;
  }
  .loc-split {
    grid-template-columns: 1fr;
  }
  /* .loc-img-wrap {
    min-height: 320px;
    height: 320px !important;
  } */
  .loc-map-wrap {
    height: auto !important;
  }
  .loc-map-frame {
    min-height: 300px;
  }
  .loc-distances {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .loc-distances {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ════════════════════════════
   KARJAT SECTION — grid layout
════════════════════════════ */

#karjat {
  position: relative;
  z-index: 10;
  background: var(--dark);
  padding: 110px 60px;
}

.karjat-head {
  margin-bottom: 52px;
}

.karjat-head h2 {
  font-family: "Helve", sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2.8rem);
  font-weight: 300;
}

.karjat-head h2 em {
  color: var(--gold);
  font-style: italic;
}

.karjat-head p {
  font-size: 0.64rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 10px;
  line-height: 1.9;
  max-width: 600px;
}

/* 3-column grid for karjat cards */

.karjat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.kj-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  background: var(--forest);
}

.kj-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
}

.kj-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  flex-shrink: 0;
}

.kj-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.75s cubic-bezier(0.25, 1, 0.5, 1);
}

.kj-card:hover .kj-img img {
  transform: scale(1.07);
}

.kj-body {
  padding: 24px 22px;
  flex: 1;
}

.kj-num {
  font-size: 0.44rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.kj-desc {
  font-size: 0.54rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.9;
}

/* ── TOURISM SECTION ── */

#karjat-tourism {
  position: relative;
  z-index: 10;
  background: var(--forest);
  padding: 60px 60px;
  border-top: 1px solid var(--border);
}

.tourism-head {
  margin-bottom: 52px;
}

.tourism-head h2 {
  font-family: "Helve", sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2.8rem);
  font-weight: 300;
}

.tourism-head h2 em {
  color: var(--gold);
  font-style: italic;
}

.tourism-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tour-card {
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--dark);
  transition:
    border-color 0.3s,
    transform 0.3s;
  cursor: default;
}

.tour-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
}

.tour-img {
  width: 100%;
  min-height: 118px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 26px 22px;
}
.tour-img .tour-cat {
  margin-bottom: 0;
}
.tour-img .tour-drivers-label {
  margin-bottom: 0;
}

.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.25, 1, 0.5, 1);
}

.tour-card:hover .tour-img img {
  transform: scale(1.07);
}

.tour-body {
  padding: 22px 20px;
}

.tour-cat {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.tour-drivers-label {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  margin-bottom: 6px;
}

.tour-drivers {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 14px;
}

.tour-opp-label {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}

.tour-opp {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.9;
}

.tour-opp li {
  padding: 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.tour-opp li::before {
  content: "";
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* ── GROWTH STATS SECTION ── */

#karjat-stats {
  position: relative;
  z-index: 10;
  background: var(--dark);
  padding: 110px 60px;
  border-top: 1px solid var(--border);
}

.kstats-head {
  margin-bottom: 52px;
  /* border: 1px solid var(--border); */
  padding: 32px 36px;
}

.kstats-head h2 {
  font-family: "Helve", sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2.8rem);
  font-weight: 300;
}

.kstats-head h2 em {
  color: var(--gold);
  font-style: italic;
}

.kstats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.kstat-card {
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--forest);
  transition:
    border-color 0.3s,
    transform 0.3s;
  cursor: default;
  display: flex;
  flex-direction: column;
}

.kstat-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
}

.kstat-img {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.kstat-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.75s cubic-bezier(0.25, 1, 0.5, 1);
}

.kstat-card:hover .kstat-img img {
  transform: scale(1.07);
}

.kstat-body {
  padding: 24px 22px;
  flex: 1;
}

.kstat-cat {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.kstat-desc {
  font-size: 0.56rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.9;
}

/* ── REDESIGN: "Life, Exactly As Planned" — light band with large gold
        numeral watermarks (deliberately distinct from the dark icon-box +
        bullet-list cards of the section directly above) ── */
#karjat-stats {
  background: #ece4d6;
}
.kstats-head {
  text-align: center;
  padding: 0;
}
.kstats-head h2 {
  color: #3a1f27;
}
.kstats-grid {
  max-width: 1120px;
  margin: 0 auto;
  gap: 22px;
}
.kstat-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #f4eddd 0%, #e6ddca 100%) !important;
  border: 1px solid rgba(156, 125, 62, 0.22) !important;
  border-radius: 2px;
  padding: 46px 32px 36px;
  text-align: left;
  box-shadow: 0 12px 34px -24px rgba(74, 21, 36, 0.55) !important;
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.4s ease;
}
.kstat-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 26px 50px -26px rgba(74, 21, 36, 0.5) !important;
}
/* thin gold accent that wipes across the top on hover */
.kstat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), rgba(194, 161, 101, 0));
  transition: width 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 2;
}
.kstat-card:hover::after {
  width: 100%;
}
/* the number becomes a large faint watermark in the corner */
.kstat-num {
  position: absolute;
  top: -14px;
  right: 10px;
  margin: 0;
  font-family: "Helve", sans-serif;
  font-weight: 600;
  font-size: 7.2rem;
  line-height: 1;
  color: rgba(156, 125, 62, 0.13);
  pointer-events: none;
  transition: color 0.5s ease;
  z-index: 0;
}
.kstat-card:hover .kstat-num {
  color: rgba(156, 125, 62, 0.22);
}
.kstat-body {
  position: relative;
  z-index: 1;
  padding: 0;
}
/* small gold rule above the label to anchor the text */
.kstat-body::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}
.kstat-card .kstat-cat {
  font-size: 15px !important;
  letter-spacing: 2.5px;
  color: var(--gold-dk) !important;
  margin-bottom: 14px;
}
.kstat-card .kstat-desc {
  font-size: 14.5px !important;
  line-height: 1.85 !important;
  color: rgba(58, 26, 34, 0.75) !important;
}
.kstat-card .kstat-desc strong {
  color: var(--gold-dk) !important;
  font-weight: 600;
}

@media (max-width: 1400px) {
  .tourism-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .intro-split {
    grid-template-columns: 1fr;
  }
  .intro-carousel {
    min-height: 320px;
  }
  .intro-content {
    padding: 48px 28px;
  }
  .intro-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .intro-stat:nth-child(3n) {
    border-right: none;
  }
  #karjat {
    padding: 80px 20px;
  }
  .karjat-grid {
    grid-template-columns: 1fr 1fr;
  }
  #karjat-tourism {
    padding: 80px 20px;
  }
  .tourism-grid {
    grid-template-columns: 1fr 1fr;
  }
  #karjat-stats {
    padding: 80px 20px;
  }
  .kstats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .intro-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .karjat-grid {
    grid-template-columns: 1fr;
  }
  .tourism-grid {
    grid-template-columns: 1fr;
  }
  .kstats-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════
   SECTION 4 — WHY INVEST
════════════════════════════ */

/* ════════════════════════════
   SECTION 5 — AMENITIES
════════════════════════════ */

/* ══════════════════════════════════════
   AMENITIES
══════════════════════════════════════ */

#amenities {
  position: relative;
  z-index: 10;
  background: var(--dark);
  padding: 100px 0 110px;
}

.am-head {
  padding: 0 60px 52px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.am-head-left h2 {
  font-family: "Helve", sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.8rem);
  font-weight: 300;
}

.am-head-left h2 em {
  color: var(--gold);
  font-style: italic;
}

.am-hint {
  font-size: 0.52rem;
  letter-spacing: 3px;
  color: var(--gold);
}

.am-strip-wrap {
  position: relative;
  height: 480px;
}

.am-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  background: rgba(43, 10, 19, 0.72);
  color: var(--gold);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    border-color 0.25s;
  line-height: 1;
  /* optical centering: raise the ←/→ glyph so it sits at the true center */
  padding-bottom: 0.28em;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.am-arrow-prev {
  left: 16px;
}

.am-arrow-next {
  right: 16px;
}

.am-arrow:hover {
  background: rgba(201, 168, 76, 0.22);
  border-color: var(--gold);
}

.am-track {
  overflow: hidden;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: -webkit-grab;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.am-track.is-dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.am-track::-webkit-scrollbar {
  height: 2px;
}

.am-track::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.2);
  border-radius: 2px;
}

.am-row {
  display: flex;
  gap: 16px;
  width: max-content;
}

@keyframes amScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.am-card {
  width: 420px;
  height: 480px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.am-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.am-card:hover img {
  transform: scale(1.09);
}

.am-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(43, 10, 19, 0.95) 0%,
    rgba(43, 10, 19, 0.1) 50%,
    transparent 100%
  );
}

.am-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 1;
}

.am-name {
  font-family: "Helve", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 4px;
}

/* ════════════════════════════
   SECTION 6 — FEATURE SPLIT
════════════════════════════ */

/* ════════════════════════════
   SECTION 7 — FIVE REALMS
════════════════════════════ */

/* ════════════════════════════
   SECTION 9 — VIRTUAL TOUR
════════════════════════════ */

#vtour {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  overflow: hidden;
}

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

.vt-bg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-object-fit: cover;
  display: block;
  pointer-events: none;
  /* Safari: force hardware layer */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

.vt-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(43, 10, 19, 0.35) 0%,
    rgba(43, 10, 19, 0.75) 100%
  );
}

/* ════════════════════════════
   SECTION 10 — GALLERY
════════════════════════════ */

/* ════════════════════════════
   SECTION 11 — MASTERPLAN
════════════════════════════ */

/* ════════════════════════════
   SECTION 12 — PRICING (Image + Plot Selector Style)
════════════════════════════ */

/* #pricing {
      position: relative;
      z-index: 10;
      background: var(--dark);
      padding: 60px 60px;
      overflow: hidden
    }

    .pricing-inner {
      max-width: 900px;
      margin: 0 auto
    }

    /* ── header ── */

/* .pricing-head {
      text-align: center;
      margin-bottom: 24px
    } */

/* .pricing-head .sec-tag {
      display: block;
      margin-bottom: 8px
    } */

/* .pricing-head h2 {
      font-family: "Helve", sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 300;
      margin-bottom: 6px
    } */

/* .pricing-head h2 em {
      color: var(--gold);
      font-style: italic
    } */

/* .pricing-head .sub-text {
      font-size: .52rem;
      color: var(--muted);
      letter-spacing: 2px;
      font-weight: 300
    } */

/* ── main layout ── */

/* .pricing-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      align-items: stretch
    } */

/* LEFT — plot image */

/* .pricing-img-side {
      position: relative;
      overflow: hidden;
      min-height: 300px;
      background: var(--forest)
    } */

/* .pricing-img-side img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      opacity: .8;
      transition: opacity .4s, transform .9s cubic-bezier(.25, 1, .5, 1)
    } */

/* .pricing-img-side:hover img {
      transform: scale(1.04)
    } */

/* .pricing-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(43, 10, 19, .82) 0%, rgba(43, 10, 19, .1) 55%, transparent 100%);
      pointer-events: none
    } */

/* .pricing-img-badge {
      position: absolute;
      bottom: 18px;
      left: 20px;
      right: 20px;
      z-index: 2
    } */

/* .pricing-img-badge-tag {
      font-size: .42rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 400;
      display: block;
      margin-bottom: 4px
    } */

/* .pricing-img-badge-title {
      font-family: "Helve", sans-serif;
      font-size: 1.15rem;
      font-weight: 300;
      color: #fff;
      line-height: 1.2
    } */

/* RIGHT — plot selector panel */

/* .pricing-selector {
      background: var(--forest);
      border: 1px solid var(--border);
      padding: 26px 24px;
      display: flex;
      flex-direction: column;
      justify-content: center
    } */

/* .ps-title {
      font-size: 10px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 400;
      margin-bottom: 12px
    } */

/* dropdown */

/* .ps-dropdown-wrap {
      position: relative;
      margin-bottom: 20px
    } */

/* .ps-dropdown-wrap::after {
      content: '∨';
      position: absolute;
      right: 4px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--gold);
      pointer-events: none;
      font-size: .8rem;
      line-height: 1
    } */

/* .ps-dropdown {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(201, 168, 76, .35);
      color: #fff;
      font-family: "Norm", sans-serif;
      font-size: .6rem;
      font-weight: 400;
      letter-spacing: 1.5px;
      padding: 8px 24px 8px 0;
      appearance: none;
      -webkit-appearance: none;
      cursor: pointer;
      outline: none;
      transition: border-color .3s
    } */

/* .ps-dropdown:focus {
      border-bottom-color: var(--gold)
    } */

/* .ps-dropdown option {
      background: var(--forest);
      color: #fff;
      font-size: 13px
    } */

/* plot size + price display */

/* .ps-display {
      margin-bottom: 16px
    } */

/* .ps-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 10px;
      flex-wrap: wrap
    } */

/* .ps-col-label {
      font-size: 9px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .4);
      font-weight: 300;
      margin-bottom: 4px;
      display: block
    } */

/* .ps-col-val {
      font-family: "Helve", sans-serif;
      font-size: 1.5rem;
      font-weight: 300;
      color: #fff;
      line-height: 1
    } */

/* .ps-col-val.gold {
      color: var(--gold)
    } */

/* gold divider */

/* .ps-divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(to right, rgba(201, 168, 76, .35), transparent);
      margin: 14px 0
    } */

/* features */

/* .ps-features {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 18px
    } */

/* .ps-feat {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: var(--muted);
      font-weight: 300
    } */

/* .ps-feat::before {
      content: '';
      width: 3px;
      height: 3px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0
    } */

/* CTA */

/* .ps-cta {
      width: 100%;
      background: var(--gold);
      color: var(--dark);
      border: none;
      padding: 11px 16px;
      font-family: "Norm", sans-serif;
      font-size: .48rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 700;
      cursor: pointer;
      transition: background .3s;
      display: block;
      text-align: center
    } */

/* .ps-cta:hover {
      background: var(--gold-l)
    } */

/*
    .ps-note {
      font-size: .4rem;
      color: rgba(255, 255, 255, .2);
      letter-spacing: 1px;
      margin-top: 8px;
      text-align: center
    } */

/* ── responsive pricing ── */

/* @media(max-width:960px) {
      #pricing {
        padding: 48px 20px
      } */

/* .pricing-layout {
        grid-template-columns: 1fr;
        gap: 8px
      } */

/* .pricing-img-side {
        min-height: 200px
      } */

/* .pricing-selector {
        padding: 22px 18px
      }
    } */

*/
  /* ════════════════════════════
   SECTION 13 — PROCESS
════════════════════════════ */

  #process {
  position: relative;
  z-index: 10;
  background: var(--forest);
  /* padding: 110px 60px */
}

#process {
  padding-top: 110px;
  padding-bottom: 110px;
}

.proc-head {
  text-align: center;
  margin-bottom: 72px;
}

.proc-head h2 {
  font-family: "Helve", sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 12px;
}

.proc-head h2 em {
  color: var(--gold);
  font-style: italic;
}

.proc-head p {
  font-size: 0.64rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
  line-height: 2.2;
}

.proc-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  max-width: 1250px;
  margin: 0 auto;
}

.proc-row::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(201, 168, 76, 0.25),
    rgba(201, 168, 76, 0.25),
    transparent
  );
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  background: var(--forest);
  font-family: "Helve", sans-serif;
  font-size: 1.65rem;
  color: var(--gold);
  font-weight: 300;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.step:hover .step-circle {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

.step-title {
  font-family: "Helve", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.54rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.2px;
}

.step-desc-box {
  border: 1px solid rgba(194, 161, 101, 0.4);
  border-radius: 10px;
  padding: 16px 18px;
  background: rgba(194, 161, 101, 0.05);
  flex: 1 1 auto;
}

.step-cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.54rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 9px 18px;
  font-family: "Norm", sans-serif;
  font-weight: 600;
  transition: background 0.3s;
  white-space: nowrap;
  text-align: center;
  display: none;
}

.step-cta:hover {
  background: var(--gold-l);
}

/* ════════════════════════════
   SECTION 14 — INVEST
════════════════════════════ */

/* ════════════════════════════
   SECTION 15 — FAQ
════════════════════════════ */

.faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  gap: 16px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-item.open .faq-body {
  max-height: 220px;
}

/* ════════════════════════════
   SECTION 16 — CONTACT
════════════════════════════ */

#contact {
  position: relative;
  z-index: 10;
  padding: 110px 60px;
  overflow: hidden;
  background: #2b0a13;
}

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

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.18) saturate(0.5);
}

.contact-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(43, 10, 19, 0.92) 0%,
    rgba(43, 10, 19, 0.6) 100%
  );
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
}

.contact-left h2 {
  font-family: "Helve", sans-serif;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 18px;
}

.contact-left h2 em {
  color: var(--gold);
  font-style: italic;
}

.contact-left p {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.4px;
  font-weight: 300;
  line-height: 2.2;
  margin-bottom: 36px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.ci-val {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  letter-spacing: 0.4px;
}

.ci-val a {
  font-size: 18px;
}

.ci-val a:hover {
  color: var(--gold);
}

.whatsapp-float {
  position: fixed;
  /* Sticky/Floating */
  bottom: 50px;
  right: 0px;
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: #000;
  border-radius: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 32px;
  z-index: 99999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

@media (max-width: 960px) {
  .whatsapp-float {
    bottom: 68px;
    /* clear the sticky enquire bar (~52px) */
    right: 0;
  }
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.contact-form {
  background: rgba(5, 10, 20, 0.94);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  padding: 44px 36px;
}

.cf-title {
  font-family: "Helve", sans-serif;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 15px;
}

.cf-sub {
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
  font-weight: 300;
}

.cf-row {
  margin-bottom: 13px;
}

.cf-row label {
  display: block;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}

.cf-row input,
.cf-row select,
.cf-row textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 11px 13px;
  color: #fff;
  font-family: "Norm", sans-serif;
  font-size: 0.58rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: auto;
  appearance: auto;
}

.cf-row input::placeholder,
.cf-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.cf-row input:focus,
.cf-row select:focus,
.cf-row textarea:focus {
  border-color: var(--gold);
}

.cf-row select {
  cursor: pointer;
}

.cf-row select option {
  background: #2b0a13;
}

.cf-row textarea {
  resize: none;
  min-height: 76px;
}

.phone-wrap {
  display: flex;
  gap: 10px;
}

.phone-wrap input {
  flex: 1;
}

.cf-btn {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 14px;
  font-family: "Norm", sans-serif;
  font-size: 0.54rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.3s,
    opacity 0.3s;
  margin-top: 4px;
}

.cf-btn:hover {
  background: var(--gold-l);
}

.cf-success {
  display: none;
  text-align: center;
  padding: 20px;
  font-family: "Helve", sans-serif;
  font-size: 1.1rem;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  margin-top: 12px;
  line-height: 1.7;
}

.form-select {
  width: 100%;
  height: 50px;
  padding: 0 18px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 14px;
  outline: none;
  appearance: none;
  cursor: pointer;
}

/* .form-select option{
    background:#350e1a;
    color:#fff;
} */

.form-select:focus {
  border-color: var(--gold);
}

/* ════════════════════════════
   SECTION 17 — OTHER PROJECTS
════════════════════════════ */

/* ════════════════════════════
   ABOUT ORA GROUP
════════════════════════════ */

#about-ora {
  position: relative;
  z-index: 10;
  background: var(--forest);
  padding: 110px 60px;
}

.about-ora-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-ora-top {
  margin-bottom: 52px;
}

.about-ora-top h2 {
  font-family: "Helve", sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2.8rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 22px;
  line-height: 1.1;
}

.about-ora-top p {
  font-size: 0.65rem;
  line-height: 2.3;
  color: var(--muted);
  font-weight: 300;
  max-width: 1100px;
}

.ora-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}

.ora-stat {
  padding: 8px 4px;
  transition: none;
}

.ora-stat:hover {
}

.ora-stat-val {
  font-family: "Helve", sans-serif;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 1px;
}

.ora-sup {
  font-size: 1.1rem;
  color: var(--gold);
}

.ora-stat-lbl {
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.9;
}

@media (max-width: 960px) {
  #about-ora {
    padding: 80px 20px;
  }
  .ora-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ora-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ════════════════════════════
   PROJECT PARTNERS
════════════════════════════ */

#partners {
  position: relative;
  z-index: 10;
  background: var(--dark);
  padding: 110px 60px;
}

.partners-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.partners-head {
  margin-bottom: 56px;
}

.partners-head h2 {
  font-family: "Helve", sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
}

.partners-head h2 em {
  color: var(--gold);
  font-style: italic;
}

/* ── 5-card grid matching invest-cards style ── */

.partners-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.partners-card {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  border: 1px solid var(--border);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    border-color 0.35s,
    transform 0.35s;
  cursor: default;
}

.partners-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}

.partners-card:hover::before {
  opacity: 2;
}

.partners-card > * {
  position: relative;
  z-index: 1;
}

/* logo area */

.pc-logo-wrap {
  height: 60px;
  display: flex;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.pc-logo {
  max-height: 60px;
  max-width: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* brand wordmarks */

/* card body */

.pc-tag {
  font-size: 14px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-top: 4px;
}

.pc-desc {
  font-size: 0.56rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 2;
  flex: 1;
}

/* responsive */

@media (max-width: 1200px) {
  .partners-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  #partners {
    padding: 80px 20px;
  }
  .partners-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .partners-cards {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════
   FOOTER
════════════════════════════ */

footer {
  position: relative;
  z-index: 10;
  background: var(--forest);
  padding: 70px 60px 32px;
  border-top: 1px solid var(--border);
}

.ft-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ft-logo {
  height: 54px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
}

.ft-brand-desc {
  font-size: 0.58rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 2.1;
  margin-bottom: 18px;
}

.ft-social {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.ft-soc svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  display: block;
}

.ft-soc {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--muted);
  transition:
    color 0.25s,
    border-color 0.25s,
    background 0.25s;
}

.ft-soc:hover {
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.5);
  background: rgba(201, 168, 76, 0.06);
}

.ft-col h4 {
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.ft-col li {
  font-size: 14px;
  color: var(--muted);
  padding: 5px 0;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.25s;
}

.ft-col li a {
  color: inherit;
  text-decoration: none;
}

.ft-col li:hover {
  color: var(--gold);
}

.ft-maharera {
  width: 241px;
  height: 78px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  margin-top: -30px;
  margin-bottom: 25px;
}

.ft-maharera img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ft-disclaimer {
  padding: 22px 0;
  margin-bottom: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ft-disclaimer p {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.4px;
}

.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
}

.ft-copy {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 2px;
  font-weight: 300;
}

.ft-policies {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ft-policies a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 1px;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.25s;
}

.ft-policies a:hover {
  color: var(--gold);
}

.ft-pol-sep {
  font-size: 0.48rem;
  color: rgba(255, 255, 255, 0.18);
}

.ft-col a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}

.ft-col a:hover {
  color: var(--gold);
}

#sticky {
  display: none;
}

@media (max-width: 960px) {
  #sticky {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 600;
    background: var(--gold);
    padding: 16px 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.54rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dark);
    font-weight: 700;
    font-family: "Norm", sans-serif;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
    width: 100%;
  }
  #sticky:hover {
    background: var(--gold-l);
  }
}

/* ── KEYFRAMES ── */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

@keyframes loadBar {
  to {
    width: 100%;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* ════════════════════════════
   RESPONSIVE ≤ 960px
════════════════════════════ */

@media (max-width: 960px) {
  #nav {
    padding: 12px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #nav.stuck {
    padding: 9px 12px;
  }
  .n-links {
    display: none;
  }
  .n-ham {
    display: flex;
  }
  #hero {
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  /* intro responsive (from index.html) */
  .intro-split {
    grid-template-columns: 1fr;
  }
  .intro-carousel {
    height: 320px;
  }
  /* .ic-slide::after {
        background: linear-gradient(to bottom, transparent 70%, var(--dark) 100%)
      } */
  .intro-content {
    padding: 48px 20px;
  }
  #vtour,
  #process,
  #contact {
    padding: 80px 20px;
  }

  #amenities {
    padding: 80px 0 90px;
  }
  .am-head {
    padding: 0 20px 40px;
  }
  .am-track {
    padding: 0 20px 16px;
  }

  .proc-row {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .proc-row::before {
    display: none;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .ft-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  footer {
    padding: 52px 20px 90px;
  }
  .ft-grid {
    grid-template-columns: 1fr;
  }

  /* ── Touch optimizations ── */
  .n-ham,
  #d-close,
  .am-arrow,
  .am-card,
  .faq-q,
  .loc-slide {
    -webkit-tap-highlight-color: transparent;
  }
  .n-ham {
    min-width: 44px;
    min-height: 44px;
  }
  #d-close {
    min-width: 44px;
    min-height: 44px;
  }
  .faq-q {
    min-height: 48px;
  }
  .d-cta {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #sticky {
    min-height: 52px;
  }
  .ft-logo {
    height: 46px;
    margin-bottom: 16px;
  }
  .ft-social {
    gap: 10px;
    margin-top: 12px;
    margin-bottom: 8px;
  }
  .ft-disclaimer {
    padding: 18px 0;
  }
  .ft-bottom {
    gap: 14px;
    padding-top: 18px;
  }
  .ft-policies {
    flex-wrap: wrap;
    gap: 8px;
  }
  .ora-stats-grid {
    gap: 26px 20px;
  }
  .ora-stat-val {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .proc-row {
    grid-template-columns: 1fr;
  }

  .ft-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════
   ENQUIRY POPUP MODAL
════════════════════════════ */

#eq-overlay {
  position: fixed;
  inset: 0;
  z-index: 99000;
  background: rgba(30, 8, 14, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.5s;
}

#eq-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ── POPUP PANEL ── */

#eq-panel {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--forest);
  border: 1px solid rgba(201, 168, 76, 0.22);
  padding: 44px 36px 32px;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(100vh - 40px);
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 168, 76, 0.2) transparent;
}

#eq-panel::-webkit-scrollbar {
  width: 3px;
}

#eq-panel::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.2);
  border-radius: 3px;
}

#eq-overlay.open #eq-panel {
  transform: translateY(0) scale(1);
}

/* corner accent lines */

#eq-panel::before,
#eq-panel::after {
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.35;
  display: none;
}

#eq-panel::before {
  top: 16px;
  left: 16px;
  border-width: 1px 0 0 1px;
}

#eq-panel::after {
  bottom: 16px;
  right: 16px;
  border-width: 0 1px 1px 0;
}

/* ── CLOSE BUTTON ── */

#eq-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--muted);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.25s,
    color 0.25s;
  font-family: "Norm", sans-serif;
}

#eq-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── POPUP HEADER ── */

.eq-tag {
  font-size: 0.64rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: block;
  margin-bottom: 10px;
}

.eq-title {
  font-family: "Helve", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 6px;
  color: #fff;
}

.eq-title em {
  color: var(--gold);
  font-style: italic;
}

/* gold divider */

.eq-div {
  width: 44px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 15px;
}

/* ── FORM FIELDS ── */

.eq-field {
  margin-bottom: 20px;
  position: relative;
}

.eq-field label {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 5px;
}

.eq-field input,
.eq-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: "Norm", sans-serif;
  font-size: 0.64rem;
  font-weight: 300;
  letter-spacing: 1px;
  padding: 10px 0 10px;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.eq-field input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.eq-field input:focus,
.eq-field select:focus {
  border-bottom-color: var(--gold);
}

.eq-field input.err {
  border-bottom-color: rgba(201, 168, 76, 0.55);
}

/* Stop the browser's autofill white/blue background flash */

.eq-field input:-webkit-autofill,
.eq-field input:-webkit-autofill:hover,
.eq-field input:-webkit-autofill:focus,
.eq-field input:-webkit-autofill:active {
  -webkit-text-fill-color: #fff !important;
  -webkit-box-shadow: 0 0 0 1000px #4a1524 inset !important;
  box-shadow: 0 0 0 1000px #4a1524 inset !important;
  caret-color: #fff;
  transition: background-color 9999s ease-in-out 0s;
}

.eq-field input:autofill {
  -webkit-text-fill-color: #fff !important;
  box-shadow: 0 0 0 1000px #4a1524 inset !important;
}

.eq-sel-wrap {
  position: relative;
}

.eq-sel-wrap::after {
  content: "▾";
  position: absolute;
  right: 2px;
  bottom: 10px;
  color: var(--gold);
  pointer-events: none;
  font-size: 0.8rem;
  line-height: 1;
}

.eq-field select {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.35);
  padding-right: 20px;
}

.eq-field select option {
  background: #4a1524;
  color: #fff;
  font-family: "Norm", sans-serif;
  font-size: 13px;
}

.eq-field select option:disabled {
  color: rgba(255, 255, 255, 0.4);
}

.eq-field select.chosen {
  color: #fff;
}

/* phone row */

.eq-phone-row {
  display: flex;
  gap: 0;
  align-items: flex-end;
}

/* Popup form country code wrapper */

.eq-cc-wrap {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.3s;
}

.eq-phone-row:focus-within .eq-cc-wrap {
  border-bottom-color: var(--gold);
}

.eq-cc-wrap::after {
  content: "▾";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 12px;
  pointer-events: none;
}

.eq-phone-cc {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.6rem;
  font-weight: 300;
  padding: 10px 20px 10px 0;
  letter-spacing: 0.5px;
  background: transparent;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  width: auto;
  max-width: 115px;
}

.eq-phone-cc option {
  background: #4a1524;
  color: #fff;
  font-size: 13px;
}

/* ── Custom dropdown (always opens DOWNWARD, unlike native <select>) ── */

.eq-custom-trigger {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.35);
  font-family: "Norm", sans-serif;
  font-size: 0.64rem;
  font-weight: 300;
  letter-spacing: 1px;
  padding: 10px 20px 10px 0;
  cursor: pointer;
  user-select: none;
  outline: none;
  transition: border-color 0.3s;
}

.eq-custom-trigger.chosen {
  color: #fff;
}

.eq-custom-trigger:focus,
.eq-custom-trigger.open {
  border-bottom-color: var(--gold);
}

.eq-custom-list {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 6px;
  background: #4a1524;
  border: 1px solid rgba(201, 168, 76, 0.28);
  max-height: 220px;
  overflow-y: auto;
  z-index: 60;
  display: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.eq-custom-list.open {
  display: block;
}

.eq-custom-list .eq-opt {
  padding: 10px 14px;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: #fff;
  cursor: pointer;
  font-family: "Norm", sans-serif;
}

.eq-custom-list .eq-opt:hover,
.eq-custom-list .eq-opt.active {
  background: rgba(201, 168, 76, 0.18);
}

.eq-custom-list .eq-opt.disabled {
  display: none;
}

/* Country-code trigger sits inline, sized like the old select */

.eq-cc-wrap .eq-custom-trigger.eq-phone-cc-trigger {
  width: auto;
  max-width: 115px;
  white-space: nowrap;
  flex-shrink: 0;
  border-bottom: none;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.75);
  padding: 10px 20px 10px 0;
}

.eq-cc-list {
  left: 0;
  right: auto;
  min-width: 150px;
  white-space: nowrap;
}

/* Contact form country code select wrapper */

.cf-cc-wrap {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.3s;
}

.phone-wrap:focus-within .cf-cc-wrap {
  border-bottom-color: var(--gold);
}

.cf-cc-wrap::after {
  content: "▾";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 12px;
  pointer-events: none;
}

.cf-phone-cc {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-family: "Norm", sans-serif;
  padding: 10px 20px 10px 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  width: auto;
  max-width: 115px;
}

.cf-phone-cc option {
  background: #4a1524;
  color: #fff;
  font-size: 13px;
}

.eq-phone-row input {
  flex: 1;
}

/* ── CONSENT ── */

.eq-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0 28px;
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  letter-spacing: 0.3px;
  line-height: 1.8;
  cursor: pointer;
}

.eq-consent input[type="checkbox"] {
  display: none;
}

.eq-check-box {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition:
    border-color 0.25s,
    background 0.25s;
}

.eq-consent.checked .eq-check-box {
  background: var(--gold);
  border-color: var(--gold);
}

.eq-check-box::after {
  content: "";
  display: block;
  width: 6px;
  height: 4px;
  border: 1.5px solid var(--dark);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg) translate(0px, -1px);
  opacity: 0;
  transition: opacity 0.2s;
}

.eq-consent.checked .eq-check-box::after {
  opacity: 1;
}

/* ── SUBMIT ── */

#eq-submit {
  width: 100%;
  font-family: "Norm", sans-serif;
  font-size: 0.54rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dark);
  background: var(--gold);
  border: none;
  padding: 15px 24px;
  cursor: pointer;
  transition:
    background 0.3s,
    opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

#eq-submit:hover {
  background: var(--gold-l);
}

#eq-submit:disabled {
  opacity: 0.5;
  cursor: default;
}

#eq-submit .eq-arr {
  font-size: 0.85rem;
  transition: transform 0.3s;
}

#eq-submit:hover .eq-arr {
  transform: translateX(4px);
}

/* ── SUCCESS ── */

#eq-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.eq-success-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  animation: eq-pop 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes eq-pop {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.eq-success-t {
  font-family: "Helve", sans-serif;
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 8px;
}

.eq-success-s {
  font-size: 0.54rem;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 2;
}

/* ── POPUP RESPONSIVE ── */

@media (max-width: 520px) {
  #eq-panel {
    padding: 40px 20px 28px;
  }
  .eq-title {
    font-size: 1.45rem;
  }
}

/* ── POPUP CURSOR FIX — restore normal cursor inside popup ── */

#eq-overlay,
#eq-overlay * {
  cursor: auto !important;
}

#eq-overlay button,
#eq-overlay label,
#eq-overlay select,
#eq-overlay input[type="checkbox"] {
  cursor: pointer !important;
}

/* Also fix the gold ring cursor — use difference blend so it's visible on all backgrounds */

#cur-r {
  mix-blend-mode: difference !important;
}

/* ══════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE OPTIMISATION  ≤ 480px
══════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
  /* ── LOADER ── */
  .l-logo {
    font-size: 2.6rem;
    letter-spacing: 8px;
  }
  .l-tag {
    font-size: 0.42rem;
    letter-spacing: 2px;
    padding: 0 20px;
    text-align: center;
  }
  /* ── NAV ── */
  #nav {
    padding: 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
  #nav.stuck {
    padding: 8px 10px;
  }
  .n-logo-group .nav-oraland-mobile {
    display: none !important;
  }
  .nav-logo-img.blubay {
    height: 70px;
  }
  .n-right .n-logo {
    display: flex !important;
    align-items: center;
  }
  .n-right .nav-logo-img.oraland {
    display: block !important;
    height: 22px;
  }
  .n-right {
    gap: 8px;
  }
  /* ── HERO ── */
  #hero {
    background: #1f0710;
    margin-top: -8px;
  }
  .hero-slide img {
    width: 100%;
    height: auto;
    display: block;
  }
  .hero-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
  .hero-prev {
    left: 12px;
  }
  .hero-next {
    right: 12px;
  }
  .hero-enquire {
    display: none;
  }
  /* ── INTRO ── */
  #intro {
    padding: 0;
  }
  .intro-content {
    padding: 36px 10px 48px;
  }
  .intro-content h2 {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }
  .intro-content p {
    font-size: 0.88rem;
    line-height: 1.7;
  }
  .intro-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .intro-stat {
    padding: 18px 12px;
  }
  .intro-carousel {
    height: 400px;
    margin: 0 16px;
    /* background: var(--dark); */
  }
  .ic-slide img {
    object-fit: cover;
  }
  /* ── VIRTUAL TOUR ── */
  #vtour {
    padding: 50px 16px;
  }
  #vtour h2 {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  /* ── AMENITIES ── */
  #amenities {
    padding: 60px 0 70px;
  }
  .am-head {
    padding: 0 16px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .am-head-left h2 {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }
  .am-strip-wrap {
    height: 400px;
  }
  .am-track {
    padding: 0;
  }
  .am-row {
    gap: 4px;
  }
  .am-card {
    width: 300px;
    height: 400px;
    padding: 16px 12px;
  }

  .am-name {
    font-size: 0.62rem;
    letter-spacing: 1.5px;
  }
  /* ── LOCATION ── */
  #location {
    padding: 60px 16px;
  }

  .loc-distances {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .loc-img-wrap {
    /* min-height: 220px; */
    height: 100% !important;
  }
  .loc-map-frame {
    min-height: 240px;
  }
  /* ── KARJAT TOURISM ── */
  #karjat-tourism {
    padding: 60px 16px;
  }
  .tourism-grid {
    grid-template-columns: 1fr;
  }

  /* ── KARJAT STATS ── */
  #karjat-stats {
    padding: 60px 16px;
  }
  .kstats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ── PARTNERS ── */
  #partners {
    padding: 60px 16px;
  }
  .partners-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pc-logo-wrap {
    padding: 16px;
  }
  .partners-head h2 {
    font-size: clamp(1.3rem, 6vw, 2rem);
  }
  /* ── ABOUT ORA ── */
  #about-ora {
    padding: 60px 16px;
  }
  .ora-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }
  .ora-stat-val {
    font-size: 1.8rem;
  }
  /* ── PROCESS ── */
  #process {
    padding: 60px 16px;
  }
  .proc-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .step-cta {
    padding: 7px 14px;
    font-size: 0.46rem;
    letter-spacing: 1.5px;
  }
  /* ── CONTACT FORM ── */
  #contact {
    padding: 60px 16px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-left h2 {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }
  .contact-info {
    gap: 12px;
    margin-top: 24px;
  }
  .contact-form {
    padding: 28px 16px;
  }
  .cf-title {
    font-size: 0.55rem;
    letter-spacing: 2px;
  }
  .cf-row input,
  .cf-row select,
  .cf-row textarea {
    font-size: 14px;
    padding: 12px 0;
  }
  .cf-btn {
    padding: 16px;
    font-size: 0.52rem;
  }

  /* ── ENQUIRY POPUP ── */
  #eq-panel {
    padding: 36px 16px 24px;
  }
  .eq-title {
    font-size: 1.3rem;
  }

  .eq-field label {
    font-size: 0.44rem;
    letter-spacing: 1.5px;
  }
  .eq-field input,
  .eq-field select {
    font-size: 14px;
    padding: 10px 0;
  }
  .eq-custom-trigger {
    font-size: 14px;
    padding: 10px 20px 10px 0;
  }
  #eq-submit {
    padding: 14px 20px;
    font-size: 0.52rem;
  }
  /* ── GALLERY ── */

  /* ── MASTERPLAN ── */

  /* ── REALMS ── */

  /* ── FEATURES ── */

  /* ── OTHER PROJECTS ── */

  /* ── FOOTER ── */
  footer {
    padding: 48px 16px 100px;
  }
  .ft-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ft-logo {
    height: 40px;
  }
  .ft-brand-desc {
    font-size: 0.78rem;
  }
  .ft-social {
    gap: 8px;
  }
  .ft-policies {
    flex-wrap: wrap;
    gap: 8px;
  }

  .ft-disclaimer {
    padding: 16px 0;
    font-size: 16px;
  }
  /* ── STICKY BOTTOM BAR ── */
  #sticky {
    font-size: 0.5rem;
    padding: 14px 16px;
  }
  /* ── WHATSAPP FLOAT ── */

  /* ── SECTION HEADINGS (global) ── */

  .stag {
    font-size: 0.42rem;
    letter-spacing: 2px;
  }

  /* ── INTRO CONTENT: override inline font-size ── */
  .intro-content p,
  .loc-head p {
    font-size: 0.88rem !important;
    line-height: 1.7 !important;
  }
  /* ── KARJAT ── */
  #karjat {
    padding: 60px 16px;
  }
  .karjat-head h2 {
    font-size: clamp(1.3rem, 6vw, 2rem);
  }
  .kj-body {
    padding: 18px 14px;
  }
  .kj-num {
    font-size: 12px;
    letter-spacing: 2.5px;
  }

  .kj-desc {
    font-size: 12px;
    line-height: 1.9;
  }
  /* ── WHY INVEST ── */

  /* ── INVEST ── */

  /* ── FAQ ── */

  /* ── REALMS ── */
}

/* ══════════════════════════════════════════════════════════
   SMALL MOBILE  ≤ 375px
══════════════════════════════════════════════════════════ */

@media (max-width: 375px) {
  .intro-stats-grid {
    grid-template-columns: 1fr;
  }
  .kstats-grid {
    grid-template-columns: 1fr;
  }
  .partners-cards {
    grid-template-columns: 1fr;
  }
  .ora-stats-grid {
    grid-template-columns: 1fr;
  }
  .loc-distances {
    grid-template-columns: 1fr;
  }
  .am-card {
    width: 260px;
    height: 370px;
  }

  #eq-panel {
    padding: 28px 12px 20px;
  }
  .contact-form {
    padding: 22px 12px;
  }
}

/* ── Responsive: JV partners grid ── */
@media (max-width: 960px) {
  .jv-partners > div[style*="grid"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .jv-partners > div[style*="grid"] {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   THE MONOGRAM COLLECTION — Premium retheme accents & luxury hover effects
   ========================================================================== */

/* Champagne selection */
::selection {
  background: var(--gold);
  color: #2b0a13;
}

/* Refined gold scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #2b0a13;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-dk), var(--gold));
  border-radius: 10px;
}

/* Subtle wine gradient wash behind body for depth */
#hero .hero-bg,
section {
  position: relative;
}

/* ---- Premium image-card hover: lift + gold frame + gloss sweep ---- */
.am-card,
.kj-card,
.tour-card,
.kstat-card,
.partners-card,
.intro-carousel {
  position: relative;
  transition:
    transform 0.55s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.55s ease,
    border-color 0.45s ease;
}
.am-card::after,
.kj-card::after,
.tour-card::after,
.kstat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid transparent;
  transition:
    border-color 0.45s ease,
    box-shadow 0.45s ease;
  z-index: 3;
}
.am-card:hover,
.kj-card:hover,
.tour-card:hover,
.kstat-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 26px 60px -22px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(194, 161, 101, 0.25);
}
.am-card:hover::after,
.kj-card:hover::after,
.tour-card:hover::after,
.kstat-card:hover::after {
  border-color: rgba(194, 161, 101, 0.55);
  box-shadow: inset 0 0 0 1px rgba(230, 205, 148, 0.2);
}

/* Gentle image zoom on card hover */
.am-card img,
.kj-img img,
.tour-img img,
.kstat-img img {
  transition:
    transform 1.1s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.6s ease;
}
.am-card:hover img,
.kj-card:hover .kj-img img,
.tour-card:hover .tour-img img,
.kstat-card:hover .kstat-img img {
  transform: scale(1.08);
  filter: saturate(1.05) brightness(1.03);
}

/* Gloss sweep across image cards */
.am-card::before,
.kj-img::before,
.tour-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 247, 230, 0.18) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  z-index: 4;
  pointer-events: none;
  transition: left 0.8s ease;
}
.kj-img,
.tour-img {
  position: relative;
  overflow: hidden;
}
.am-card:hover::before,
.kj-card:hover .kj-img::before,
.tour-card:hover .tour-img::before {
  left: 130%;
}

/* ---- Buttons: champagne fill sweep ---- */
.hero-enq-btn,
.cf-btn,
.step-cta,
.btn-o,
#eq-submit {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.4s ease,
    color 0.4s ease;
}
.hero-enq-btn::after,
.cf-btn::after,
.step-cta::after,
.btn-o::after,
#eq-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--gold), var(--gold-l));
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}
.hero-enq-btn:hover,
.cf-btn:hover,
.step-cta:hover,
.btn-o:hover,
#eq-submit:hover {
  color: #2b0a13;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -14px rgba(194, 161, 101, 0.6);
}
.hero-enq-btn:hover::after,
.cf-btn:hover::after,
.step-cta:hover::after,
.btn-o:hover::after,
#eq-submit:hover::after {
  transform: translateX(0);
}

/* ---- Stat blocks: gold glow on hover ---- */
.intro-stat,
.ora-stat,
.loc-dist {
  transition:
    transform 0.45s cubic-bezier(0.19, 1, 0.22, 1),
    color 0.4s ease;
}
.intro-stat:hover,
.ora-stat:hover,
.loc-dist:hover {
  transform: translateY(-6px);
}
.intro-stat:hover .intro-stat-val,
.ora-stat:hover .ora-stat-val,
.loc-dist:hover .loc-dist-val {
  color: var(--gold-l);
  text-shadow: 0 0 24px rgba(230, 205, 148, 0.35);
}

/* ---- Nav links: elegant gold underline reveal ---- */
.n-links a {
  position: relative;
}
.n-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.n-links a:hover {
  color: var(--gold-l);
}
.n-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Section tag + headings accent */
.stag {
  color: var(--gold) !important;
  letter-spacing: 3px;
}
em {
  color: var(--gold);
  font-style: italic;
}

/* Whatsapp float refined pulse already themed via var */
.whatsapp-float:hover {
  transform: scale(1.1) rotate(6deg);
}

/* ==========================================================================
   MONOGRAM — branded placeholders for image slots + decorative icons
   ========================================================================== */

/* Elegant wine damask-style placeholder behind every image slot.
   If a photo loads, it sits on top; if it fails (faded via JS), this shows. */
.ic-slide,
.am-card,
.kj-img,
.tour-img,
.kstat-img,
.loc-slide,
.contact-bg {
  background-color: #3d1120;
  background-image:
    radial-gradient(
      circle at 30% 30%,
      rgba(194, 161, 101, 0.1),
      transparent 55%
    ),
    radial-gradient(
      circle at 75% 80%,
      rgba(194, 161, 101, 0.08),
      transparent 55%
    ),
    linear-gradient(135deg, #4a1524 0%, #2b0a13 100%);
  background-size: cover;
}

/* Faded (broken) images reveal the placeholder underneath */
img.img-fallback {
  opacity: 0 !important;
}

/* Decorative gold monogram icons used in privilege / pillar cards */
.kj-icon,
.tour-icon,
.kstat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 150px;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  color: var(--gold);
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(230, 205, 148, 0.16),
      transparent 60%
    ),
    linear-gradient(135deg, #4a1524 0%, #2b0a13 100%);
  text-shadow: 0 0 30px rgba(230, 205, 148, 0.35);
  letter-spacing: 2px;
  transition:
    transform 0.6s cubic-bezier(0.19, 1, 0.22, 1),
    color 0.5s ease,
    text-shadow 0.5s ease;
}
.kj-card:hover .kj-icon,
.tour-card:hover .tour-icon,
.kstat-card:hover .kstat-icon {
  transform: scale(1.12) rotate(4deg);
  color: var(--gold-l);
  text-shadow: 0 0 40px rgba(230, 205, 148, 0.6);
}

/* keep vtour video framed on wine ground */
#vtour,
.vt-bg {
  background: #2b0a13;
}

/* ==========================================================================
   MONOGRAM — loader wordmark + hero overlay readability fixes
   ========================================================================== */
.l-logo {
  font-size: clamp(1.5rem, 6.5vw, 2.8rem) !important;
  letter-spacing: 6px !important;
  white-space: nowrap;
  max-width: 92vw;
}
.l-logo span {
  animation-delay: 0s;
}

/* Dark vignette behind centered hero copy for legibility over bright imagery */
.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    rgba(28, 7, 13, 0.72) 0%,
    rgba(28, 7, 13, 0.45) 45%,
    transparent 75%
  );
}

/* Hero is now a full-bleed banner carousel — banner images are shown as-is. */
#hero {
  background: #1f0710;
}

/* ── NAVBAR: always fixed & visible (solid bar + links from the very top) ── */
#nav {
  background: rgba(43, 10, 19, 0.94);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 12px 60px;
}
#nav .n-links,
#nav .n-ham {
  opacity: 1 !important;
  pointer-events: all !important;
}
/* Footer monogram logo (replaces the text wordmark) */
.ftr-logo-img {
  height: 92px;
  width: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .ftr-logo-img {
    height: 70px;
  }
}

/* Brand logos in the navbar (Monogram left, Veena right) */
.nav-logo-img.monogram {
  height: 48px;
  width: auto;
  filter: none;
  opacity: 1;
  display: block;
}
.nav-logo-img.veena {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  /* Lightened per client request */
  opacity: 0.72;
  display: block;
}
@media (max-width: 960px) {
  #nav {
    padding: 8px 16px;
    position: fixed; /* already fixed; ensures it's the positioning context */
  }
  .nav-logo-img.monogram {
    height: 34px;
  }
  .nav-logo-img.veena {
    height: 46px;
  }
  /* Veena logo centered on mobile (monogram left, hamburger right) */
  .n-right .n-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }
}

/* ── Section-end hairline: a centered gold divider closing every section ── */
body > section:not(#hero) {
  position: relative;
}
body > section:not(#hero)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1100px, 86%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(156, 125, 62, 0.5),
    transparent
  );
  pointer-events: none;
  z-index: 20;
}

/* ==========================================================================
   THE MONOGRAM COLLECTION — LIGHT THEME
   Cream/ivory base (like the brochure interior pages). Maroon is kept ONLY as
   an accent: hero cover, nav bar, "Your Private Invitation" (process), the
   contact block, the footer, and the location address panel.
   ========================================================================== */
:root {
  --muted: rgba(58, 26, 34, 0.6);
  --border: rgba(74, 21, 36, 0.16);
}
body {
  background: #ece4d6;
  color: #3a1f27;
  /* fixed navbar offset — everything (incl. the banner) starts below the nav.
       JS refines this to the exact nav height on load/resize. */
  padding-top: 72px;
}
@media (max-width: 960px) {
  body {
    padding-top: 58px;
  }
}
/* the fixed nav bar area reads as the deep-maroon brand ground behind it */
html {
  background: #24070f;
}
/* soften the film-grain over light bg */
body::before {
  opacity: 0.03;
}

/* Headings that were hardcoded light -> dark on cream */
.about-ora-top h2 {
  color: #3a1f27;
}

/* Section eyebrow: deeper gold for contrast on cream */
.stag {
  color: var(--gold-dk);
}

/* ---- LIGHT CARDS (previously maroon placeholders) ---- */
.ic-slide,
.am-card,
.kj-img,
.tour-img,
.kstat-img {
  background-color: #e4ddcd;
  background-image:
    radial-gradient(
      circle at 30% 28%,
      rgba(156, 125, 62, 0.1),
      transparent 55%
    ),
    radial-gradient(
      circle at 76% 80%,
      rgba(156, 125, 62, 0.07),
      transparent 55%
    ),
    linear-gradient(135deg, #efe8da 0%, #e0d8c6 100%);
  border: 1px solid rgba(74, 21, 36, 0.08);
}
.kj-icon,
.tour-icon,
.kstat-icon {
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(156, 125, 62, 0.16),
      transparent 62%
    ),
    linear-gradient(135deg, #efe8da 0%, #e2dac9 100%);
  color: var(--gold-dk);
  text-shadow: 0 2px 16px rgba(156, 125, 62, 0.25);
}
.kj-card:hover .kj-icon,
.tour-card:hover .tour-icon,
.kstat-card:hover .kstat-icon {
  color: var(--gold);
  text-shadow: 0 2px 22px rgba(194, 161, 101, 0.45);
}

/* Card text -> dark on light cards */
.am-name {
  color: #3a1f27;
}
.kj-num,
.tour-cat,
.tour-opp-label,
.kstat-cat {
  color: var(--gold-dk);
}
.kj-desc,
.kstat-desc,
.tour-drivers {
  color: rgba(58, 26, 34, 0.72);
}
.tour-drivers-label {
  color: rgb(58 26 34 / 83%);
}
.tour-opp,
.tour-opp li {
  color: rgba(58, 26, 34, 0.72);
}

/* Light card hover shadow */
.am-card:hover,
.kj-card:hover,
.tour-card:hover,
.kstat-card:hover {
  box-shadow:
    0 24px 50px -24px rgba(74, 21, 36, 0.35),
    0 0 0 1px rgba(194, 161, 101, 0.35);
}
.am-card:hover::after,
.kj-card:hover::after,
.tour-card:hover::after,
.kstat-card:hover::after {
  border-color: rgba(156, 125, 62, 0.6);
}

/* boxed stat header on cream */
/* .kstats-head { border-color: rgba(74,21,36,.16); } */

/* Intro carousel dots on cream */
.ic-dots .dot,
.ic-dots span {
  border-color: rgba(74, 21, 36, 0.35) !important;
}

/* ---- MAROON ACCENT: "Your Private Invitation" (process) ---- */
#process {
  background: var(--forest);
}
#process .proc-head h2 {
  color: #f5eee2;
}
#process .proc-head p {
  color: rgba(245, 238, 226, 0.72);
}
#process .stag {
  color: var(--gold-l);
}
#process .step-title {
  color: #f5eee2;
}
#process .step-desc {
  color: rgba(245, 238, 226, 0.7);
}

/* ---- MAROON ACCENT: contact ---- */
#contact .stag {
  color: var(--gold-l);
}
#contact .contact-left h2 {
  color: #f5eee2;
}
#contact .contact-left p,
#contact .ci-val,
#contact .ci-val a {
  color: rgba(245, 238, 226, 0.82);
}

/* ---- MAROON ACCENT: location address panel keeps light text ---- */
.loc-slide p {
  color: rgba(245, 238, 226, 0.72) !important;
}

/* vtour behind video -> cream so it doesn't read as a maroon band */
#vtour,
.vt-bg {
  background: #ece4d6;
}

/* Flip content SECTION backgrounds to cream (accents #hero/#process/#contact/footer/nav stay maroon) */
#intro,
#amenities,
#location,
#karjat,
#karjat-tourism,
#karjat-stats,
#about-ora {
  background: #ece4d6 !important;
}
.intro-content {
  background: transparent !important;
}

/* Privilege / pillar / highlight cards -> light tiles on cream */
.kj-card,
.tour-card,
.kstat-card {
  background: #efe8da !important;
  border: 1px solid rgba(74, 21, 36, 0.1);
}
.loc-map-wrap {
  background: #e4ddcd !important;
}

/* dividers that used light-on-dark now need to read on cream */
.intro-divider,
.am-head-left .stag + h2 {
}

/* Amenity cards are now light tiles — drop the dark photo-legibility overlay.
   (When real amenity photos are added, restore a bottom scrim + light label.) */
.am-card::after {
  background: none !important;
}
.am-name {
  color: #3a1f27;
  text-shadow: none;
}
.am-info {
  text-shadow: none;
}

/* ==========================================================================
   MONOGRAM — LIGHT THEME CONTRAST PASS
   Warmer base, cards that actually read as cards, deeper "bronze" gold on
   light areas, motif-filled placeholders, and a visible hero button.
   ========================================================================== */

/* Warmer, slightly deeper ivory base (less "white") */
body {
  background: #e7ddc9;
  color: #3a1f27;
}
#intro,
#amenities,
#location,
#karjat,
#karjat-tourism,
#karjat-stats,
#about-ora {
  background: #e7ddc9 !important;
}
#vtour,
.vt-bg {
  background: #e7ddc9;
}

/* ---- Cards: deeper linen + border + soft shadow so they lift off the page ---- */
.kj-card,
.tour-card,
.kstat-card {
  background: #d8cbb2 !important;
  border: 1px solid rgba(74, 21, 36, 0.14);
  box-shadow: 0 14px 34px -22px rgba(74, 21, 36, 0.4);
}
.loc-map-wrap {
  background: #d8cbb2 !important;
}

/* Placeholder image slots: deeper linen + centred gold monogram watermark */
.ic-slide,
.am-card,
.kj-img,
.tour-img,
.kstat-img {
  background-color: #d3c6ac;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cg fill='none' stroke='%239c7d3e' stroke-width='1' opacity='0.28'%3E%3Cpath d='M45 20c8 11 8 20 0 27-8-7-8-16 0-27zM45 70c-8-11-8-20 0-27 8 7 8 16 0 27zM20 45c11-8 20-8 27 0-7 8-16 8-27 0zM70 45c-11 8-20 8-27 0 7-8 16-8 27 0z'/%3E%3Ccircle cx='45' cy='45' r='3'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(150deg, #ddd0b6 0%, #cdbfa2 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size:
    88px 88px,
    cover;
  border: 1px solid rgba(74, 21, 36, 0.12);
}

/* Icon tiles: deeper linen so the gold reads */
.kj-icon,
.tour-icon,
.kstat-icon {
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(156, 125, 62, 0.22),
      transparent 62%
    ),
    linear-gradient(150deg, #ddd0b6 0%, #cdbfa2 100%);
  color: #8a6a2f;
  text-shadow: 0 2px 14px rgba(138, 106, 47, 0.3);
}

/* ---- Deeper "bronze" gold for text on the cream sections ---- */
.intro-content h2 em,
.loc-head h2 em,
.karjat-head h2 em,
.tourism-head h2 em,
.kstats-head h2 em,
.about-ora-top h2 em {
  color: #9c7d3e;
}

.intro-stat-val,
.loc-dist-val,
.ora-stat-val,
.ora-stat-val .ora-sup {
  color: #9c7d3e;
}

.intro-stat-unit,
.loc-dist-unit {
  color: rgba(156, 125, 62, 0.85);
}

.kj-num,
.tour-cat,
.tour-opp-label,
.kstat-cat,
.am-hint,
.intro-content .stag,
#amenities .stag,
#location .stag,
#karjat .stag,
#karjat-tourism .stag,
#karjat-stats .stag,
#about-ora .stag {
  color: #6c511a;
}

/* section dividers on cream */
.intro-divider,
.loc-head h2 + .divider {
  background: rgba(156, 125, 62, 0.5);
}

/* ---- Hero button: solid gold, clearly visible (fill-sweep still on hover) ---- */
.hero-enq-btn {
  background: var(--gold) !important;
  color: #2b0a13 !important;
  border: 1px solid var(--gold) !important;
  font-weight: 600;
  letter-spacing: 3px;
}
.hero-enq-btn:hover {
  color: #2b0a13 !important;
  box-shadow: 0 16px 40px -14px rgba(194, 161, 101, 0.7);
}

/* keep gold bright on the maroon accent zones */
#hero em,
#process h2 em,
#contact .contact-left h2 em,
footer em,
.loc-slide .stag,
.loc-slide em {
  color: var(--gold-l);
}

/* ==========================================================================
   MONOGRAM — FOOTER (logo · RERA + QR · disclaimer · copyright)
   ========================================================================== */
footer {
  background: var(--wine, #4a1524) !important;
  padding: 64px 60px 34px !important;
}
.ftr-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Project logo */
.ftr-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 6px;
}
.ftr-logo .ftr-the {
  font-family: "Helve", sans-serif;
  font-style: italic;
  font-size: 15px;
  color: var(--gold-l);
}
.ftr-logo .ftr-name {
  font-family: "Helve", sans-serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: 8px;
  color: #f5eee2;
  padding-left: 8px;
}
.ftr-logo .ftr-sub {
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--gold);
}
.ftr-tag {
  font-family: "Helve", sans-serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(245, 238, 226, 0.62);
  margin-top: 12px;
}

.ftr-rule {
  width: 100%;
  max-width: 760px;
  height: 1px;
  margin: 34px auto;
  background: linear-gradient(
    to right,
    transparent,
    rgba(194, 161, 101, 0.4),
    transparent
  );
}

/* RERA + QR row */
.ftr-rera {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
  text-align: left;
  max-width: 980px;
  margin: 0 auto;
}
.ftr-rera-left {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: nowrap;
  flex: 1 1 auto;
  min-width: 0;
}
.ftr-rera-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ftr-rera-logo img {
  height: 96px;
  width: auto;
  display: block;
}
/* Vertical divider between QR and logo */
.ftr-rera-div {
  align-self: stretch;
  width: 1px;
  min-height: 130px;
  flex-shrink: 0;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(194, 161, 101, 0.4),
    transparent
  );
}
@media (max-width: 760px) {
  .ftr-rera {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  /* Logo first, then divider, then RERA text + QR */
  .ftr-rera-logo {
    order: 1;
  }
  .ftr-rera-div {
    order: 2;
    width: 100%;
    max-width: 240px;
    min-height: 0;
    height: 1px;
    align-self: center;
    margin: 0 auto;
    background: linear-gradient(
      to right,
      transparent,
      rgba(194, 161, 101, 0.4),
      transparent
    );
  }
  .ftr-rera-left {
    order: 3;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .ftr-rera-text {
    text-align: center;
    max-width: 100%;
  }
  .ftr-rera-logo img {
    height: 72px;
  }
}
.ftr-rera-badge img {
  height: 66px;
  width: auto;
  border-radius: 4px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.5);
}
.ftr-rera-text {
  max-width: 420px;
}
.ftr-rera-eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.ftr-rera-no {
  font-family: "Helve", sans-serif;
  font-size: 1.35rem;
  color: #f5eee2;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.ftr-rera-text a {
  font-size: 13px;
  color: var(--gold-l);
  border-bottom: 1px solid rgba(194, 161, 101, 0.35);
  padding-bottom: 2px;
  transition:
    color 0.3s,
    border-color 0.3s;
}
.ftr-rera-text a:hover {
  color: #fff;
  border-color: var(--gold);
}
.ftr-rera-note {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(245, 238, 226, 0.55);
  margin-top: 10px;
}
.ftr-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.ftr-qr-img {
  width: 118px;
  height: 118px;
  background: #fff;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ftr-qr-img img {
  width: 100%;
  height: 100%;
  display: block;
}
.ftr-qr span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Disclaimer */
.ftr-disclaimer {
  font-size: 11.5px;
  line-height: 1.9;
  color: rgba(245, 238, 226, 0.48);
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

/* Copyright */
.ftr-copy {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(194, 161, 101, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(245, 238, 226, 0.5);
}
.ftr-copy a {
  color: rgba(245, 238, 226, 0.5);
  transition: color 0.25s;
}
.ftr-copy a:hover {
  color: var(--gold);
}

@media (max-width: 700px) {
  footer {
    padding: 48px 22px 26px !important;
  }
  .ftr-rera {
    gap: 26px;
  }
  .ftr-copy {
    justify-content: center;
    text-align: center;
  }
}

/* ==========================================================================
   MONOGRAM — CONFIGURATION (premium 4 BHK brochure card + Check Price)
   ========================================================================== */
#configuration {
  position: relative;
  z-index: 10;
  padding: 110px 60px 104px;
  background:
    radial-gradient(
      ellipse 60% 80% at 50% 0%,
      rgba(194, 161, 101, 0.12),
      transparent 60%
    ),
    linear-gradient(160deg, #3a1120 0%, #24070f 100%);
  border-top: 1px solid rgba(194, 161, 101, 0.18);
}
/* header sits on the dark band -> light type */
#configuration .sec-head h2 {
  color: #f5eee2;
}
#configuration .stag {
  color: var(--gold-l) !important;
}
#configuration .sec-head p {
  color: rgba(245, 238, 226, 0.68);
}

.config-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
/* single 4 BHK residence -> center the lone card */
.config-grid--single {
  grid-template-columns: minmax(0, 430px);
  justify-content: center;
}
.config-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 52px 40px 44px;
  background: #ffffff;
  border: 1px solid rgba(156, 125, 62, 0.28);
  box-shadow: 0 18px 44px -28px rgba(74, 21, 36, 0.5);
  cursor: default;
  transition:
    transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}
/* carpet area line */
.config-area {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 12px;
  font-family: "Norm", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #3a1f27;
}
.config-area-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dk);
}
/* inset gold hairline frame — the luxury "double border" detail */
.config-card::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(156, 125, 62, 0.22);
  pointer-events: none;
  transition: border-color 0.45s ease;
}
.config-card:hover {
  transform: translateY(-8px);
  border-color: rgba(156, 125, 62, 0.6);
  box-shadow:
    0 40px 74px -34px rgba(74, 21, 36, 0.55),
    0 0 0 1px rgba(194, 161, 101, 0.18);
}
.config-card:hover::before {
  border-color: rgba(156, 125, 62, 0.45);
}

/* decorative monogram mark */
.config-mark {
  font-size: 30px;
  color: var(--gold-dk);
  line-height: 1;
  margin-bottom: 18px;
  text-shadow: 0 2px 14px rgba(156, 125, 62, 0.28);
  transition:
    transform 0.6s cubic-bezier(0.19, 1, 0.22, 1),
    color 0.5s ease;
  display: none;
}
.config-card:hover .config-mark {
  transform: scale(1.15) rotate(6deg);
  color: var(--gold);
}

.config-tag {
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-dk);
  font-weight: 600;
  margin-bottom: 10px;
}
.config-type {
  font-family: "Helve", sans-serif;
  font-weight: 600;
  /* font-size: clamp(3.2rem, 7vw, 4.4rem); */
  line-height: 1;
  color: #3a1f27;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 2rem;
}
.config-type span {
  font-family: "Norm", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 5px;
  color: var(--gold-dk);
}
.config-divider {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 22px 0 24px;
}
.config-feats {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  display: none;
}
.config-feats li {
  position: relative;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(58, 26, 34, 0.78);
  padding-left: 22px;
  max-width: 260px;
}
.config-feats li::before {
  content: "\2726";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--gold-dk);
  font-size: 11px;
}
.config-price {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: "Helve", sans-serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-dk);
  margin-bottom: 24px;
}
.config-price-lbl {
  font-family: "Norm", sans-serif;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgb(58 26 34 / 70%);
}
.config-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Norm", sans-serif;
  color: var(--gold-dk);
  background: transparent;
  border: 1px solid var(--gold-dk);
  padding: 14px 34px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition:
    color 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.config-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, var(--gold), var(--gold-l));
  transform: translateX(-101%);
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}
.config-cta:hover {
  color: #2b0a13;
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -16px rgba(0, 0, 0, 0.7);
}
.config-cta:hover::before {
  transform: translateX(0);
}
.config-cta-arr {
  transition: transform 0.4s ease;
}
.config-cta:hover .config-cta-arr {
  transform: translateX(5px);
}

/* subtle elevation + ribbon for the most-requested residence */
.config-featured {
  border-color: rgba(194, 161, 101, 0.55);
  box-shadow: 0 30px 60px -34px rgba(0, 0, 0, 0.7);
}
.config-ribbon {
  position: absolute;
  top: 18px;
  right: -34px;
  transform: rotate(45deg);
  background: linear-gradient(120deg, var(--gold), var(--gold-l));
  color: #2b0a13;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 40px;
  box-shadow: 0 6px 14px -6px rgba(0, 0, 0, 0.6);
  z-index: 3;
  display: none;
}

@media (max-width: 720px) {
  #configuration {
    padding: 74px 20px 80px;
  }
  .config-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }
  .config-card {
    padding: 46px 30px 40px;
  }
}

/* ==========================================================================
   MONOGRAM — GALLERY TABS (Elevation / Unit Plan) + blurred floor plans
   ========================================================================== */
.gal-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 40px;
  padding: 5px;
  width: max-content;
  max-width: 92%;
  border: 1px solid rgba(156, 125, 62, 0.3);
  border-radius: 999px;
  background: rgba(156, 125, 62, 0.06);
}
.gal-tab {
  font-family: "Norm", sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-dk);
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 11px 30px;
  cursor: pointer;
  transition:
    background 0.35s,
    color 0.35s,
    box-shadow 0.35s;
}
.gal-tab:hover {
  color: #3a1f27;
}
.gal-tab.active {
  color: #2b0a13;
  background: linear-gradient(120deg, var(--gold), var(--gold-l));
  box-shadow: 0 10px 22px -12px rgba(74, 21, 36, 0.5);
}
.gal-panel[hidden] {
  display: none;
}

/* Unit-plan slider (same mechanic as the elevation gallery) */
.uplan-viewport {
  margin: 0 auto;
  padding: 0 60px;
  overflow: hidden;
}
.uplan-track {
  display: flex;
  gap: 16px;
  will-change: transform;
}
.uplan-card {
  flex: 0 0 calc((100% - 16px) / 2);
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(156, 125, 62, 0.28);
  background: #e4ddcd;
}
.uplan-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* the teaser: floor plans stay blurred until "View Plan" is requested */
  filter: blur(9px) saturate(0.9);
  transform: scale(1.08);
  transition:
    filter 0.5s ease,
    transform 0.7s ease;
}
.uplan-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(
    180deg,
    rgba(43, 10, 19, 0.35),
    rgba(43, 10, 19, 0.62)
  );
  transition: background 0.4s ease;
}
.uplan-card:hover .uplan-overlay {
  background: linear-gradient(
    180deg,
    rgba(43, 10, 19, 0.42),
    rgba(43, 10, 19, 0.7)
  );
}
.uplan-card:hover .uplan-img {
  transform: scale(1.12);
}
.uplan-name {
  font-family: "Helve", sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #f7f0e3;
  line-height: 1.3;
  max-width: 240px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.uplan-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Norm", sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: #2b0a13;
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 12px 30px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 0.35s,
    transform 0.35s,
    box-shadow 0.35s;
}
.uplan-cta::after {
  content: "\2192";
}
.uplan-cta:hover {
  background: var(--gold-l);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -16px rgba(74, 21, 36, 0.6);
}
@media (max-width: 900px) {
  .uplan-viewport {
    padding: 0 28px;
  }
}
@media (max-width: 560px) {
  .uplan-viewport {
    padding: 0 18px;
  }
  .uplan-track {
    gap: 12px;
  }
  .uplan-card {
    flex-basis: 100%;
  }
  .gal-tab {
    padding: 10px 22px;
    font-size: 11px;
    letter-spacing: 2px;
  }
}

/* ==========================================================================
   MONOGRAM — AMENITIES ICON GRID (circular badges, premium hover)
   ========================================================================== */
#amenities {
  padding-bottom: 40px;
}
/* Amenities are a 4-at-a-time transform slider (viewport clips, track slides) */
.amen-viewport {
  max-width: 1240px;
  margin: 0 auto;
  padding: 6px 60px 0;
  overflow: hidden;
}
.amen-grid {
  display: flex;
  gap: 18px;
  will-change: transform;
}
.amen-item {
  flex: 0 0 calc((100% - 90px) / 6 - 1px); /* exactly 6 per view (−1px guards against a peeking 7th) */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
  padding: 8px 4px;
}
.amen-ico {
  position: relative;
  overflow: hidden;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 31px;
  color: #9c7d3e;
  background: radial-gradient(circle at 50% 38%, #f0e8d7, #dccfb4);
  border: 1px solid rgba(156, 125, 62, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 8px 22px -16px rgba(74, 21, 36, 0.5);
  transition:
    transform 0.55s cubic-bezier(0.19, 1, 0.22, 1),
    color 0.45s ease,
    box-shadow 0.55s ease,
    border-color 0.45s ease;
}
.amen-ico::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 0;
  background: linear-gradient(145deg, #5c1c30 0%, #2b0a13 100%);
  transform: scale(0);
  opacity: 0;
  transition:
    transform 0.55s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.4s ease;
}
.amen-ico i {
  position: relative;
  z-index: 1;
  transition: transform 0.55s cubic-bezier(0.19, 1, 0.22, 1);
}
.amen-item:hover .amen-ico {
  color: var(--gold-l);
  border-color: var(--gold);
  transform: translateY(-9px) scale(1.04);
  box-shadow:
    0 24px 46px -18px rgba(74, 21, 36, 0.6),
    0 0 0 5px rgba(194, 161, 101, 0.15);
}
.amen-item:hover .amen-ico::before {
  transform: scale(1);
  opacity: 1;
}
.amen-item:hover .amen-ico i {
  transform: rotate(-6deg) scale(1.14);
}
.amen-lbl {
  font-size: 13px;
  line-height: 1.4;
  color: #3a1f27;
  font-weight: 500;
  max-width: 140px;
  transition: color 0.4s ease;
}
.amen-item:hover .amen-lbl {
  color: #9c7d3e;
}
@media (max-width: 1100px) {
  .amen-item {
    flex-basis: calc((100% - 54px) / 4);
  }
} /* 4 per view */
@media (max-width: 680px) {
  .amen-viewport {
    padding: 6px 18px 0;
  }
  .amen-item {
    flex-basis: calc((100% - 18px) / 2);
  }
  .amen-ico {
    width: 76px;
    height: 76px;
    font-size: 24px;
  }
} /* 2 per view */
@media (max-width: 420px) {
  .amen-item {
    flex-basis: 100%;
  }
} /* 1 per view */

/* ==========================================================================
   MONOGRAM — GALLERY (slider + fancybox)
   ========================================================================== */
#gallery {
  padding-bottom: 96px;
}
.gal-card {
  display: block;
  position: relative;
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 40px -26px rgba(74, 21, 36, 0.5);
}
.gal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 1.05s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.6s ease;
}
.gal-card:hover img {
  transform: scale(1.09);
  filter: brightness(0.92);
}
.gal-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.55);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(43, 10, 19, 0.55);
  border: 1px solid var(--gold);
  color: var(--gold-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.19, 1, 0.22, 1);
}
.gal-card:hover .gal-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Fancybox: match brand */
.fancybox__container {
  --fancybox-bg: rgba(30, 8, 14, 0.94);
}
.fancybox__toolbar,
.fancybox__nav .f-button {
  color: var(--gold-l);
}

/* ==========================================================================
   MONOGRAM — GALLERY (mosaic grid + fancybox)
   ========================================================================== */
#gallery {
  padding: 0 0 96px;
}
.gallery-grid {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 215px;
  gap: 14px;
}
.gal-tile {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 16px 40px -28px rgba(74, 21, 36, 0.55);
}
.gal-tile:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.gal-tile:nth-child(6) {
  grid-column: span 2;
}
.gal-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 1.05s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.6s ease;
}
.gal-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(43, 10, 19, 0.55), transparent 55%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.gal-tile:hover img {
  transform: scale(1.08);
  filter: brightness(0.9);
}
.gal-tile:hover::after {
  opacity: 1;
}
.gal-tile:hover .gal-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ==========================================================================
   MONOGRAM — GALLERY: hide the ambient gold particle "star dust"
   The #pcvs particle canvas is fixed behind the whole page. Giving the
   gallery an opaque background and lifting it above the canvas (z-index 1)
   keeps the star dust from showing through this section.
   ========================================================================== */
#gallery {
  position: relative;
  z-index: 2;
  background: #e7ddc9;
}

/* ==========================================================================
   MONOGRAM — GALLERY: "Artist's Impression" badge on elevation renders
   ========================================================================== */
/* .gal-panel[data-panel="elevation"] .gal-tile::before {
  content: "Artist's Impression";
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 4;
  padding: 5px 11px;
  font-family: "Norm", sans-serif;
  font-size: 9.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-l);
  background: rgba(43, 10, 19, 0.58);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 3px;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  pointer-events: none;
} */

/* "Representative Image" badge on every gallery tile (bottom-right) */
.gal-track .gal-tile::before {
  content: "Representative Image";
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 4;
  padding: 5px 11px;
  font-family: "Norm", sans-serif;
  font-size: 9.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: #ccac6a;
  background: rgba(43, 10, 19, 0.938);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 3px;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  pointer-events: none;
}

/* ==========================================================================
   MONOGRAM — CENTERED SECTION HEADINGS (all sections)
   ========================================================================== */
.sec-head {
  max-width: 780px;
  margin: 0 auto 48px;
  padding: 0 24px;
  text-align: center;
}
.sec-head p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 12px;
}
.sec-divider,
.intro-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 18px auto 0 !important;
}

.intro-content,
.loc-head,
.karjat-head,
.tourism-head,
.kstats-head,
.proc-head,
.about-ora-top {
  text-align: center;
}
.intro-content {
  text-align: left;
}
.intro-content .intro-divider {
  margin: 18px 0 0 !important;
}
.intro-content .intro-stats-grid {
  text-align: left;
}

/* "The Best Is No Place To Stop" + "Life, Exactly As Planned" — centre card copy */
.tour-body,
.kstat-body {
  text-align: center;
}
.tour-opp li {
  justify-content: center;
}

/* amenities / gallery headers -> stacked & centred */
.am-head {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}
.am-head-left {
  text-align: center;
}
.am-hint {
  text-align: center;
}

/* about-ora legacy paragraph centred + constrained */
.about-ora-top p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.loc-head p,
.karjat-head p {
  margin-left: auto;
  margin-right: auto;
}

/* keep hero + footer + contact-left copy as designed (not forced-centered) */

/* ==========================================================================
   MONOGRAM — RESPONSIVE PASS (fix mobile overflow & layout)
   ========================================================================== */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}
img,
video,
iframe {
  max-width: 100%;
}

/* ---------- Tablet & below ---------- */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 190px;
    padding: 0 28px;
  }
  .gal-tile:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gal-tile:nth-child(6) {
    grid-column: span 1;
  }
  .amen-viewport {
    padding: 6px 28px 0;
  }
}

/* ---------- Phone ---------- */
@media (max-width: 640px) {
  /* Global side padding trim */
  #intro,
  #location,
  #karjat-tourism,
  #karjat-stats,
  #about-ora,
  #process,
  #contact {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .am-head {
    padding: 0 20px 34px;
  }

  /* Hero copy fit */
  .hero-copy h1 {
    font-size: clamp(2.2rem, 13vw, 3.4rem) !important;
    letter-spacing: 3px !important;
  }
  .hero-copy span[style*="letter-spacing:14px"],
  .hero-copy span[style*="letter-spacing: 14px"] {
    letter-spacing: 8px !important;
  }

  /* Stacks */
  .intro-split {
    grid-template-columns: 1fr !important;
    display: grid !important;
    gap: 24px;
    padding: 25px 0;
  }
  /* .intro-carousel {
    height: 300px;
  } */
  .loc-split {
    grid-template-columns: 1fr !important;
    display: grid !important;
    gap: 16px;
  }
  
  .loc-map-wrap {
    height: 340px !important;
  }
  .contact-inner {
    grid-template-columns: 1fr !important;
    display: grid !important;
    gap: 32px;
  }
  .contact-form {
    width: 100%;
  }

  /* Stat grids -> 2 cols */
  .intro-stats-grid,
  .ora-stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 26px 14px !important;
  }
  .loc-distances {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Pillars / highlight cards -> single column */
  .karjat-grid {
    grid-template-columns: 1fr !important;
  }

  /* Process steps + Configuration -> one-at-a-time swipe slider */
  .proc-row,
  .config-grid {
    display: flex !important;
    grid-template-columns: none !important;
    max-width: none !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .proc-row::-webkit-scrollbar,
  .config-grid::-webkit-scrollbar {
    display: none;
  }
  .proc-row::before {
    display: none !important;
  }
  .proc-row .step,
  .config-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
  }

  /* show the prev/next buttons on all mobile card sliders
     (!important so it beats the later base `.mslide-nav{display:none}` rule) */
  .mslide-nav {
    display: flex !important;
  }

  /* "No Place To Stop" + "Exactly As Planned" -> one-at-a-time swipe slider */
  .tourism-grid,
  .kstats-grid {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    scroll-padding: 0 20px;
    padding-bottom: 6px;
  }
  .tourism-grid::-webkit-scrollbar,
  .kstats-grid::-webkit-scrollbar {
    display: none;
  }
  .tourism-grid,
  .kstats-grid {
    scrollbar-width: none;
  }
  .tour-card,
  .kstat-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
  }
  /* editorial dividers don't apply in the one-at-a-time slider */
  .kstat-card + .kstat-card {
    border-left: none !important;
  }
  /* prev/next buttons for the "No Place To Stop" slider (mobile only)
       — id specificity so it beats the base `.tour-nav{display:none}` rule
       regardless of source order */
  #karjat-tourism .tour-nav {
    display: flex;
  }

  /* Gallery -> tidy 2-col, no oversized spans */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 10px;
    padding: 0 18px;
  }
  .gal-tile:nth-child(1),
  .gal-tile:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gal-tile:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  /* AMENITIES -> transform slider handles all widths; just size up the icons */
  .amen-item {
    padding: 22px 12px;
  }
  .amen-ico {
    width: 118px;
    height: 118px;
    font-size: 44px;
  }
  .amen-lbl {
    font-size: 15px;
    max-width: 220px;
  }
  .am-hint::after {
    content: "  ·  swipe →";
    color: var(--gold);
  }

  /* Footer stack */
  .ftr-rera {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .ftr-rera-text {
    text-align: center;
  }
  .ftr-copy {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* Headings size trim */
  .sec-head h2,
  .loc-head h2,
  .tourism-head h2,
  .kstats-head h2,
  .proc-head h2,
  .about-ora-top h2,
  .intro-content h2,
  .am-head h2,
  .contact-left h2 {
    font-size: clamp(1.5rem, 7vw, 2.2rem) !important;
  }
}

@media (max-width: 380px) {
  .intro-stats-grid,
  .ora-stats-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* Center the contact heading/copy too (all-sections centered request) */
.contact-left {
  text-align: center;
}
.contact-left .contact-info > div {
  justify-content: center;
}
.contact-left > div[style*="flex"] {
  justify-content: center;
}

/* ==========================================================================
   MONOGRAM — GALLERY SLIDER (3 per view) + centred nav buttons
   ========================================================================== */
#gallery {
  padding: 40px 0 40px;
  border-top: 1px solid var(--border);
}
.gal-viewport {
  margin: 0 auto;
  padding: 0 60px;
  overflow: hidden;
}
.gal-track {
  display: flex;
  gap: 16px;
  will-change: transform;
}
.gal-track .gal-tile {
  /* match the unit-plan slide size: 2 per view, 4/3 */
  flex: 0 0 calc((100% - 16px) / 2);
  /* aspect-ratio: 4 / 3; */
  height: auto;
  grid-column: auto !important;
  grid-row: auto !important;
}

/* Shared circular slider buttons */
.gal-nav,
.amen-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}
/* "No Place To Stop" nav — hidden on desktop (grid), shown only in the mobile slider */
.tour-nav,
.mslide-nav {
  display: none;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}
.gal-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(156, 125, 62, 0.5);
  background: transparent;
  color: #9c7d3e;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  /* optical centering: raise the ←/→ glyph so it sits at the true center */
  padding-bottom: 0.28em;
  transition:
    background 0.35s,
    color 0.35s,
    border-color 0.35s,
    transform 0.35s,
    box-shadow 0.35s;
}
.gal-btn:hover {
  background: linear-gradient(145deg, #5c1c30, #2b0a13);
  color: var(--gold-l);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -14px rgba(74, 21, 36, 0.6);
}

/* amenities is a slider at all widths -> nav always visible */
.amen-nav {
  display: flex;
}

@media (max-width: 900px) {
  .gal-viewport {
    padding: 0 28px;
  }
  .gal-track .gal-tile {
    flex-basis: calc((100% - 16px) / 2);
  }
}
@media (max-width: 640px) {
  .gal-viewport {
    padding: 0 18px;
  }
  .gal-track {
    gap: 12px;
  }
  .gal-track .gal-tile {
    flex-basis: 100%;
  }
  .amen-nav {
    display: flex;
  }
}

/* ==========================================================================
   MONOGRAM — FORM REDESIGN (maroon theme, no black) + larger fields
   ========================================================================== */
.contact-form {
  background: linear-gradient(
    165deg,
    #571c2e 0%,
    #3d1120 55%,
    #2b0a13 100%
  ) !important;
  border: 1px solid rgba(194, 161, 101, 0.3) !important;
  border-radius: 8px;
  box-shadow: 0 34px 80px -34px rgba(0, 0, 0, 0.65) !important;
  padding: 48px 20px !important;
}
#eq-panel {
  background: linear-gradient(
    165deg,
    #571c2e 0%,
    #3d1120 55%,
    #2b0a13 100%
  ) !important;
  border: 1px solid rgba(194, 161, 101, 0.3) !important;
  border-radius: 10px;
}
.cf-title,
.eq-title {
  color: var(--gold-l) !important;
  font-size: 1.4rem !important;
}
.cf-sub {
  color: rgba(245, 238, 226, 0.6) !important;
  font-size: 0.7rem !important;
}
.eq-tag {
  color: var(--gold) !important;
}

/* labels */
.cf-row label,
.eq-field label {
  color: var(--gold) !important;
  font-size: 11px !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase;
  margin-bottom: 8px !important;
}

/* inputs — unified maroon-panel style */
.cf-row input,
.cf-row select,
.eq-field input,
.eq-field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.055) !important;
  border: 1px solid rgba(194, 161, 101, 0.28) !important;
  border-bottom: 1px solid rgba(194, 161, 101, 0.28) !important;
  border-radius: 7px !important;
  color: #f6efe3 !important;
  font-size: 1rem !important;
  padding: 14px 16px !important;
  transition:
    border-color 0.3s,
    background 0.3s,
    box-shadow 0.3s;
}
.cf-row input::placeholder,
.eq-field input::placeholder {
  color: rgba(246, 239, 227, 0.42) !important;
}
.cf-row input:focus,
.eq-field input:focus {
  outline: none;
  border-color: var(--gold) !important;
  background: rgba(255, 255, 255, 0.09) !important;
  box-shadow: 0 0 0 3px rgba(194, 161, 101, 0.12) !important;
}
.cf-row input:-webkit-autofill,
.eq-field input:-webkit-autofill {
  -webkit-text-fill-color: #f6efe3 !important;
}

/* consent + buttons */
.eq-consent span {
  color: rgba(246, 239, 227, 0.68) !important;
  font-size: 12.5px !important;
}
.cf-btn,
#eq-submit {
  background: linear-gradient(120deg, var(--gold), var(--gold-l)) !important;
  color: #2b0a13 !important;
  font-weight: 600 !important;
  border: none !important;
  border-radius: 7px !important;
  font-size: 0.9rem !important;
  letter-spacing: 2px !important;
  padding: 16px !important;
}

/* ==========================================================================
   MONOGRAM — LARGER TYPOGRAPHY across the landing page
   ========================================================================== */
html {
  font-size: 19.5px;
}
@media (max-width: 1200px) {
  html {
    font-size: 18.5px;
  }
}
@media (max-width: 960px) {
  html {
    font-size: 17.5px;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 16.5px;
  }
}

/* body / section paragraphs (many are inline font-size:16px) */
p[style*="font-size: 16px"],
p[style*="font-size:16px"] {
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
}
.sec-head p,
.loc-head p,
.karjat-head p,
.about-ora-top p {
  font-size: 1.05rem;
  line-height: 1.7;
}
.contact-left p {
  font-size: 1rem !important;
}
.kj-desc,
.kstat-desc,
.tour-drivers,
.tour-opp,
.tour-opp li,
.step-desc {
  font-size: 0.95rem !important;
  line-height: 1.75 !important;
}
.amen-lbl {
  font-size: 15px;
}
.intro-stat-lbl,
.ora-stat-lbl,
.loc-dist-lbl {
  font-size: 13px;
}
.stag {
  font-size: 15px !important;
}
.tour-cat,
.kj-num,
.kstat-cat,
.tour-opp-label {
  font-size: 16px !important;
}
.ci-val,
.ci-val a {
  font-size: 1rem !important;
}
.ftr-disclaimer,
.ftr-rera-note {
  font-size: 12.5px !important;
}

/* ==========================================================================
   MONOGRAM — FORMS: white + black theme (no maroon)
   Applies to the enquiry popup (#eq-panel) and the contact-section form.
   ========================================================================== */

/* Neutralise the maroon-tinted popup backdrop */
#eq-overlay {
  background: rgba(12, 12, 12, 0.9) !important;
}

/* Panel: dark wine gradient with golden border */
#eq-panel,
.contact-form {
  background: linear-gradient(160deg, #3a1120 0%, #24070f 100%) !important;
  border: 1px solid var(--gold) !important;
  border-radius: 12px !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
/* Corner accents + divider: gold on the dark panel */
#eq-panel::before,
#eq-panel::after {
  border-color: var(--gold-l) !important;
  opacity: 0.5 !important;
}
.eq-div {
  background: linear-gradient(90deg, var(--gold-l), rgba(230, 205, 148, 0)) !important;
}

/* Headings + tags → light gold */
.eq-tag {
  color: rgba(240, 228, 196, 0.75) !important;
}
.cf-title,
.eq-title {
  color: #f0e4c4 !important;
}
.eq-title em,
.cf-sub em {
  color: #ffffff !important;
  font-style: italic;
}
.cf-sub {
  color: rgba(240, 228, 196, 0.65) !important;
}

/* Labels */
.cf-row label,
.eq-field label {
  color: rgba(240, 228, 196, 0.85) !important;
}

/* Inputs: solid white so they stay legible over the whole gradient */
.cf-row input,
.cf-row select,
.cf-row textarea,
.eq-field input,
.eq-field select {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.22) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.22) !important;
  border-radius: 8px !important;
  color: #111 !important;
}
.cf-row input::placeholder,
.cf-row textarea::placeholder,
.eq-field input::placeholder {
  color: rgba(0, 0, 0, 0.4) !important;
}
.eq-field select,
.eq-field select.chosen {
  color: #111 !important;
}
.cf-row input:focus,
.cf-row select:focus,
.cf-row textarea:focus,
.eq-field input:focus,
.eq-field select:focus {
  border-color: #000 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1) !important;
}
.cf-row select option,
.eq-field select option {
  background: #fff !important;
  color: #111 !important;
}
.eq-sel-wrap::after {
  color: #111 !important;
}
/* Autofill: keep white bg + dark text (was maroon) */
.cf-row input:-webkit-autofill,
.eq-field input:-webkit-autofill,
.eq-field input:-webkit-autofill:hover,
.eq-field input:-webkit-autofill:focus,
.eq-field input:autofill {
  -webkit-text-fill-color: #111 !important;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  caret-color: #111;
}

/* Close button → light gold */
#eq-close {
  color: rgba(240, 228, 196, 0.8) !important;
  border-color: rgba(230, 205, 148, 0.35) !important;
}
#eq-close:hover {
  color: #ffffff !important;
  border-color: var(--gold-l) !important;
}

/* Consent (over dark golden panel) → light text, gold checkbox */
.eq-consent span {
  color: rgba(240, 228, 196, 0.8) !important;
}
.eq-check-box {
  border-color: rgba(230, 205, 148, 0.55) !important;
}
.eq-consent.checked .eq-check-box {
  background: var(--gold-l) !important;
  border-color: var(--gold-l) !important;
}
.eq-check-box::after {
  border-color: #33270f !important;
}

/* Submit buttons: bright gold button on the dark golden panel */
.cf-btn,
#eq-submit {
  background: linear-gradient(120deg, #e6cd94, #c2a165) !important;
  color: #33270f !important;
  border: 1px solid rgba(230, 205, 148, 0.85) !important;
  border-radius: 8px !important;
}
.cf-btn:hover,
#eq-submit:hover {
  background: linear-gradient(120deg, #f0dca6, #d4b273) !important;
  color: #2b0a13 !important;
  box-shadow: 0 16px 40px -14px rgba(0, 0, 0, 0.5) !important;
}

/* Success states → readable on the dark golden panel */
.cf-title.cf-success,
.cf-success {
  color: #f0e4c4 !important;
  border-color: rgba(230, 205, 148, 0.3) !important;
}
.eq-success-t {
  color: #f0e4c4 !important;
}
.eq-success-icon {
  color: var(--gold-l) !important;
}
.eq-success-s {
  color: rgba(240, 228, 196, 0.72) !important;
}

/* ==========================================================================
   MONOGRAM — FIXED BOTTOM CTAs (Download Brochure + Enquire Now) + mobile lead
   form + submit loader
   ========================================================================== */

/* Fixed bottom CTAs — desktop: two floating buttons (left / right corners) */
#fixed-cta {
  position: fixed;
  z-index: 400;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  pointer-events: none;
}
.fc-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 10px;
  font-family: "Norm", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid var(--gold);
  box-shadow: 0 14px 34px -14px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background 0.3s,
    color 0.3s;
}
.fc-btn span {
  line-height: 1;
}
.fc-btn i {
  font-size: 20px;
  line-height: 1;
}
.fc-brochure {
  background: rgba(43, 10, 19, 0.92);
  color: #e6cd94;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.fc-brochure:hover {
  background: #2b0a13;
  transform: translateY(-3px);
}
.fc-enquire {
  background: linear-gradient(120deg, #c2a165, #e6cd94);
  color: #2b0a13;
}
.fc-enquire:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -14px rgba(74, 21, 36, 0.6);
}

/* Mobile: full-width bottom bar with the two CTAs side by side */
@media (max-width: 640px) {
  body {
    padding-bottom: 62px;
  }
  #fixed-cta {
    left: 0;
    right: 0;
    bottom: 0;
    gap: 1;
    padding: 8px;
    background: rgba(43, 10, 19, 0.97);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(194, 161, 101, 0.3);
  }
  .fc-btn {
    flex: 1 1 0;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    padding: 8px 6px;
    font-size: 10px;
    letter-spacing: 1px;
    border-radius: 8px;
  }
  .fc-btn i {
    font-size: 23px;
  }
  .fc-brochure {
    background: transparent;
    border-color: rgba(194, 161, 101, 0.5);
  }
}

/* Mobile-only lead form directly below the banner */
#mobile-lead {
  display: none;
}
@media (max-width: 640px) {
  #mobile-lead {
    display: block;
    background: linear-gradient(160deg, #3a1120 0%, #24070f 100%);
    padding: 45px 20px 40px;
    text-align: center;
    border-bottom: 1px solid rgba(194, 161, 101, 0.18);
  }
  .ml-title {
    font-family: "Helve", sans-serif;
    font-weight: 600;
    color: #f5eee2;
    font-size: 1.9rem;
    line-height: 1.1;
    margin: 0 0 6px;
  }
  .ml-sub {
    color: rgba(245, 238, 226, 0.65);
    font-size: 13px;
    margin-bottom: 20px;
  }
  .ml-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto;
  }
  .ml-form input[type="text"],
  .ml-form input[type="tel"],
  .ml-form input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    border-radius: 4px;
    border: 1px solid rgba(194, 161, 101, 0.3);
    background: rgba(255, 255, 255, 0.06);
    color: #f5eee2;
    font-size: 15px;
  }
  .ml-form input::placeholder {
    color: rgba(245, 238, 226, 0.5);
  }
  .ml-form input.err {
    border-color: rgba(201, 168, 76, 0.9) !important;
  }
  .ml-consent {
    color: rgba(245, 238, 226, 0.7);
    font-size: 11px;
    text-align: left;
  }
  .ml-btn {
    margin-top: 6px;
    padding: 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: linear-gradient(120deg, var(--gold), var(--gold-l));
    color: #2b0a13;
    font-family: "Norm", sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
  }
}

/* Full-screen submit loader */
#submit-loader {
  position: fixed;
  inset: 0;
  z-index: 99500;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: rgba(28, 7, 13, 0.88);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
#submit-loader.on {
  display: flex;
}
.sl-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid rgba(194, 161, 101, 0.25);
  border-top-color: var(--gold);
  animation: slspin 0.9s linear infinite;
}
@keyframes slspin {
  to {
    transform: rotate(360deg);
  }
}
.sl-text {
  color: var(--gold-l);
  font-family: "Norm", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
}

/* ==========================================================================
   MONOGRAM — THANK YOU PAGE
   ========================================================================== */
/* no fixed nav on this page -> drop the shared body offset */
body.ty-page {
  padding: 0 !important;
  background: #1f0710;
  overflow-x: hidden;
}
.secton-thankyou {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  background:
    radial-gradient(
      ellipse 70% 60% at 50% 0%,
      rgba(194, 161, 101, 0.14),
      transparent 60%
    ),
    linear-gradient(160deg, #3a1120 0%, #24070f 55%, #1f0710 100%);
  position: relative;
  overflow: hidden;
}
/* subtle damask texture behind the card */
.secton-thankyou::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23c2a165' stroke-width='0.6' opacity='0.10'%3E%3Cpath d='M60 12c10 14 10 26 0 34-10-8-10-20 0-34zM60 108c-10-14-10-26 0-34 10 8 10 20 0 34zM12 60c14-10 26-10 34 0-8 10-20 10-34 0zM108 60c-14 10-26 10-34 0 8-10 20-10 34 0z'/%3E%3Ccircle cx='60' cy='60' r='4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
}
.ty-card {
  position: relative;
  z-index: 1;
  max-width: 620px;
  width: 100%;
  text-align: center;
  padding: 56px 44px 52px;
  border: 1px solid rgba(194, 161, 101, 0.28);
  border-radius: 2px;
  background: linear-gradient(
    160deg,
    rgba(74, 21, 36, 0.4) 0%,
    rgba(28, 7, 13, 0.5) 100%
  );
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.8);
  animation: tyRise 0.7s cubic-bezier(0.25, 1, 0.5, 1) both;
}
@keyframes tyRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ty-logo {
  height: 74px;
  width: auto;
  display: block;
  margin: 0 auto 22px;
}
.ty-divider {
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 30px;
}
.ty-check {
  width: 78px;
  height: 78px;
  margin: 0 auto 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #2b0a13;
  background: radial-gradient(circle at 50% 35%, var(--gold-l), var(--gold));
  box-shadow:
    0 0 0 8px rgba(194, 161, 101, 0.14),
    0 16px 34px -14px rgba(194, 161, 101, 0.5);
  animation: tyPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s both;
}
@keyframes tyPop {
  from {
    opacity: 0;
    transform: scale(0.4);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.thankyou-title {
  font-family: "Helve", sans-serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  line-height: 1.05;
  color: #f7f0e3;
  margin: 0;
}
.thankyou-title-em {
  font-family: "Helve", sans-serif;
  font-weight: 300;
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  color: var(--gold-l);
  margin: 8px 0 0;
}
.thankyou-title-em em {
  font-style: italic;
}
.thankyou-subtitle {
  color: rgba(245, 238, 226, 0.72);
  font-family: "Norm", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  max-width: 440px;
  margin: 20px auto 34px;
}
.ty-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Norm", sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-l);
  text-decoration: none;
  padding: 14px 34px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  transition:
    background 0.35s,
    color 0.35s,
    transform 0.35s,
    box-shadow 0.35s;
}
.ty-btn:hover {
  background: linear-gradient(120deg, var(--gold), var(--gold-l));
  color: #2b0a13;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -14px rgba(194, 161, 101, 0.5);
}
.ty-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
/* pre-filled gold variant for the brochure download */
.ty-btn-gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-l));
  color: #2b0a13;
}
.ty-btn-gold:hover {
  color: #2b0a13;
  box-shadow: 0 18px 36px -14px rgba(194, 161, 101, 0.6);
}
@media (max-width: 560px) {
  .ty-card {
    padding: 44px 24px 40px;
  }
  .ty-logo {
    height: 58px;
  }
  .ty-check {
    width: 66px;
    height: 66px;
    font-size: 27px;
  }
}

/* ==========================================================================
   MONOGRAM — FORM VALIDATION MESSAGES + DUPLICATE-LEAD POPUP
   ========================================================================== */
/* inline (bootstrap-style) field error messages */
.invalid-feedback {
  display: none;
  width: 100%;
  margin: 6px 2px 0;
  text-align: left;
  font-family: "Norm", sans-serif;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.3px;
  color: #ff7b6b;
}
input.is-invalid {
  border-color: #ff7b6b !important;
  box-shadow: 0 0 0 2px rgba(255, 123, 107, 0.14) !important;
}

/* duplicate-lead popup */
#dup-popup {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(28, 7, 13, 0.78);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
#dup-popup.on {
  display: flex;
}
.dup-card {
  position: relative;
  max-width: 420px;
  width: 100%;
  text-align: center;
  padding: 44px 34px 38px;
  border: 1px solid rgba(194, 161, 101, 0.35);
  border-radius: 2px;
  background: linear-gradient(160deg, #3a1120 0%, #24070f 100%);
  box-shadow: 0 40px 80px -36px rgba(0, 0, 0, 0.8);
  animation: tyRise 0.45s cubic-bezier(0.25, 1, 0.5, 1) both;
}
.dup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(245, 238, 226, 0.6);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}
.dup-close:hover {
  color: var(--gold-l);
}
.dup-icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 16px;
  text-shadow: 0 0 26px rgba(230, 205, 148, 0.4);
}
.dup-title {
  font-family: "Helve", sans-serif;
  font-weight: 600;
  font-size: 1.7rem;
  color: #f7f0e3;
  margin: 0 0 10px;
}
.dup-text {
  font-family: "Norm", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 238, 226, 0.72);
  margin: 0 0 24px;
}
.dup-btn {
  font-family: "Norm", sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: #2b0a13;
  background: linear-gradient(120deg, var(--gold), var(--gold-l));
  border: none;
  border-radius: 999px;
  padding: 13px 40px;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.dup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(194, 161, 101, 0.5);
}

/* ==========================================================================
   Restore the normal system cursor (custom gold-dot cursor disabled)
   ========================================================================== */
@media (pointer: fine) {
  body {
    cursor: auto !important;
  }
}
#cur,
#cur-r {
  display: none !important;
}

/* ==========================================================================
   MOBILE / TOUCH — disable all hover effects except the amenities icon.
   On touch devices :hover states get "stuck" after a tap. We neutralise
   every hover-driven visual change here; .amen-item hover is intentionally
   left untouched so the amenities icon keeps its interaction.
   ========================================================================== */
@media (hover: none) {
  /* Cards: cancel lift, shadow, border, gloss sweep & image zoom */
  .am-card:hover,
  .kj-card:hover,
  .tour-card:hover,
  .kstat-card:hover,
  .partners-card:hover,
  .intro-carousel:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: var(--border) !important;
  }
  .am-card:hover::after,
  .kj-card:hover::after,
  .tour-card:hover::after,
  .kstat-card:hover::after {
    border-color: transparent !important;
    box-shadow: none !important;
  }
  .am-card:hover img,
  .kj-card:hover .kj-img img,
  .tour-card:hover .tour-img img,
  .kstat-card:hover .kstat-img img,
  .loc-img-wrap:hover img {
    transform: none !important;
    filter: none !important;
  }
  .am-card:hover::before,
  .kj-card:hover .kj-img::before,
  .tour-card:hover .tour-img::before {
    left: -75% !important;
  }
  .partners-card:hover::before {
    opacity: 0 !important;
  }
  .kj-card:hover .kj-icon,
  .tour-card:hover .tour-icon,
  .kstat-card:hover .kstat-icon {
    transform: none !important;
    color: var(--gold) !important;
    text-shadow: 0 0 30px rgba(230, 205, 148, 0.35) !important;
  }

  /* Buttons: cancel fill sweep, lift & recolour */
  .hero-enq-btn:hover,
  .cf-btn:hover,
  .step-cta:hover,
  .btn-o:hover,
  #eq-submit:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  .hero-enq-btn:hover::after,
  .cf-btn:hover::after,
  .step-cta:hover::after,
  .btn-o:hover::after,
  #eq-submit:hover::after {
    transform: translateX(-101%) !important;
  }
  .hero-arrow:hover {
    background: rgba(20, 6, 11, 0.3) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.55) !important;
    transform: translateY(-50%) !important;
  }
  .whatsapp-float:hover {
    transform: none !important;
  }
  .step:hover .step-circle {
    background: var(--forest) !important;
    border-color: var(--border) !important;
  }

  /* Stat blocks & location distances: cancel lift + glow */
  .intro-stat:hover,
  .ora-stat:hover,
  .loc-dist:hover {
    transform: none !important;
  }
  .intro-stat:hover .intro-stat-val,
  .ora-stat:hover .ora-stat-val,
  .loc-dist:hover .loc-dist-val {
    color: var(--gold) !important;
    text-shadow: none !important;
  }

  /* Nav & text links: cancel underline reveal + recolour */
  .n-links a:hover::after {
    transform: scaleX(0) !important;
  }
  .n-links a:hover,
  .ci-val a:hover,
  .ft-soc:hover,
  .ft-col li:hover,
  .ft-col a:hover,
  .ft-policies a:hover {
    color: inherit !important;
  }
  .ft-soc:hover {
    border-color: var(--border) !important;
    background: transparent !important;
  }

  /* Slider arrows: cancel gold fill on tap */
  .am-arrow:hover {
    background: rgba(43, 10, 19, 0.72) !important;
    border-color: rgba(201, 168, 76, 0.5) !important;
  }

  /* Location distance chip: cancel gold background */
  .loc-dist:hover {
    background: transparent !important;
    border: none !important;
  }
}

/* ==========================================================================
   LANDING PAGE — remove all italic type.
   Scoped to the landing page (body without .ty-page) so the thank-you
   page keeps its intentional italic title.
   ========================================================================== */
body:not(.ty-page) em,
body:not(.ty-page) .ftr-the,
body:not(.ty-page) .ftr-tag,
body:not(.ty-page) .config-price {
  font-style: normal !important;
}

/* ==========================================================================
   Remove hover effect from all text — links & text values stay static on
   hover (no colour change, underline reveal, or glow). Buttons, cards and
   images keep their motion.
   ========================================================================== */
.n-links a:hover {
  color: rgba(255, 255, 255, 0.7) !important;
}
.n-links a:hover::after {
  width: 0 !important;
  transform: scaleX(0) !important;
}
#drawer a:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}
.ci-val a:hover {
  color: inherit !important;
}
.ft-col li:hover {
  color: var(--muted) !important;
}
.ft-col a:hover {
  color: inherit !important;
}
.ft-policies a:hover {
  color: rgba(255, 255, 255, 0.32) !important;
}
.gal-tab:hover:not(.active) {
  color: var(--gold-dk) !important;
}
.intro-stat:hover .intro-stat-val,
.ora-stat:hover .ora-stat-val,
.loc-dist:hover .loc-dist-val {
  color: var(--gold) !important;
  text-shadow: none !important;
}

/* ==========================================================================
   Increase body-copy font size for readability. The site's original body
   copy was set very small (0.5–0.65rem ≈ 8–10px); these bring prose,
   descriptions, form labels and footer copy up to a readable ~15–16px.
   Headings are left untouched (Helve at their own clamp() sizes),
   as are uppercase eyebrow tags and button labels (intentionally compact).
   ========================================================================== */
/* Body copy uses Norm (the brochure font) at a normal weight so it
   reads clearly — the original 300 weight looked faint. */
.sec-head p,
.loc-head p,
.karjat-head p,
.proc-head p,
.about-ora-top p,
.contact-left p,
.intro-content p,
.kj-desc,
.kstat-desc,
.pc-desc,
.step-desc,
.ft-brand-desc,
.am-hint,
.am-name,
.ci-val,
.ft-col li,
.config-feats li {
  font-weight: 400 !important;
}
/* Section intro paragraphs */
.sec-head p,
.loc-head p,
.karjat-head p,
.proc-head p,
.about-ora-top p,
.contact-left p {
  font-size: 1.08rem !important;
  line-height: 1.8;
}
.intro-content p {
  font-size: 1rem !important;
  line-height: 1.8;
}
/* Card & section descriptions */
.kj-desc,
.kstat-desc,
.pc-desc,
.step-desc,
.ft-brand-desc {
  font-size: 1rem !important;
  line-height: 1.75;
}
.am-hint {
  font-size: 1rem !important;
}
.am-name {
  font-size: 0.95rem !important;
}
.ft-disclaimer p {
  font-size: 0.82rem !important;
  line-height: 1.75;
}
/* Contact info + footer + config values */
.ci-val {
  font-size: 17px !important;
}
.ci-val a {
  font-size: 21px !important;
}
.ft-col li {
  font-size: 16px !important;
}
.ft-policies a {
  font-size: 14.5px !important;
}
.config-feats li {
  font-size: 16px !important;
}
.cf-sub {
  font-size: 18px !important;
}
/* Form labels & input text (enquiry popup + contact form) */
.eq-field label,
.eq-field select,
.eq-field input,
.cf-row input,
.cf-row textarea {
  font-size: 0.75rem !important;
}

/* ==========================================================================
   "The Best Is No Place To Stop" — cleaner card layout.
   Wine header cap (title text, no watermark) over a left-aligned body.
   ========================================================================== */
/* Header cap: solid wine gradient, drop the decorative diamond pattern that
   was bleeding through the text; gold title + cream tagline for contrast. */
.tour-img {
  background-color: #4a1524 !important;
  background-image: linear-gradient(
    150deg,
    #4a1524 0%,
    #2b0a13 100%
  ) !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  border-bottom: 1px solid rgba(201, 168, 76, 0.4) !important;
  min-height: 0 !important;
  padding: 28px 26px !important;
  gap: 7px !important;
  align-items: flex-start !important;
  text-align: left !important;
}
.tour-img .tour-cat,
.tour-img .tour-drivers-label {
  text-align: left !important;
  width: 100%;
}
.tour-img .tour-cat {
  color: var(--gold-l) !important;
  letter-spacing: 3px !important;
}
.tour-img .tour-drivers-label {
  color: rgba(245, 238, 226, 0.72) !important;
}
/* Body: left-aligned throughout so the copy and the pointers line up. */
.tour-body {
  text-align: left !important;
  padding: 24px 26px 28px !important;
}
.tour-drivers,
.tour-opp-label,
.tour-opp {
  text-align: left !important;
}
.tour-opp li {
  justify-content: flex-start !important;
  text-align: left !important;
  /* Highlight the pointers: strong dark text on the light card */
  color: #2b0a13 !important;
  font-weight: 600 !important;
  opacity: 1 !important;
}
.tour-opp li::before {
    width: 10px !important;
    height: 10px !important;
    background: var(--gold-dk) !important;
    border-radius: 50% !important;
    opacity: 1 !important;
    box-shadow: none !important;
    margin-top: 9px !important;
}
/* Drop the image-card gloss sweep on the text header cap */
.tour-img::before {
  display: none !important;
}

/* ==========================================================================
   "Owning A Monogram Address Is Effortless" — restyle the step markers
   (the numbered pointers) into premium gold badges with a soft halo.
   ========================================================================== */
#process .step-circle {
  width: 78px;
  height: 78px;
  border: none;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-l) 100%);
  color: #2b0a13;
  font-weight: 500;
  box-shadow:
    0 12px 28px -10px rgba(0, 0, 0, 0.55),
    0 0 0 6px rgba(201, 168, 76, 0.14);
}
#process .step:hover .step-circle {
  background: linear-gradient(135deg, var(--gold-l) 0%, var(--gold) 100%);
  border: none;
  transform: translateY(-4px);
  box-shadow:
    0 18px 34px -12px rgba(0, 0, 0, 0.6),
    0 0 0 8px rgba(201, 168, 76, 0.2);
}
.step-circle {
  transition:
    background 0.3s,
    box-shadow 0.35s,
    transform 0.35s !important;
}
/* Brighten the connector line so it reads on the wine ground */
.proc-row::before {
  background: linear-gradient(
    to right,
    transparent,
    rgba(201, 168, 76, 0.45),
    rgba(201, 168, 76, 0.45),
    transparent
  ) !important;
}

/* ==========================================================================
   FIXED CTA BAR — add a Call button (stacked above Enquire on desktop) and
   hide the whole bar while the hero banner is in view.
   ========================================================================== */
.fc-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}
.fc-call {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 401;
  pointer-events: auto;
  width: 54px;
  height: 54px;
  padding: 0;
  border-radius: 50%;
  text-decoration: none;
  background: rgba(43, 10, 19, 0.92);
  color: var(--gold-l);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.fc-call:hover {
  background: #2b0a13;
  transform: translateY(-3px);
}
.fc-call {
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    visibility 0.45s,
    background 0.3s;
}
.fc-call.cta-hidden {
  opacity: 0;
  transform: translateY(200%);
  visibility: hidden;
  pointer-events: none;
}
/* Slide the bar away while the banner is visible; reveal after scrolling past */
#fixed-cta {
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    visibility 0.45s;
}
#fixed-cta.cta-hidden {
  opacity: 0;
  transform: translateY(170%);
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 640px) {
  /* Brochure | Enquire share the bottom bar as two equal halves. */
  #fixed-cta {
    align-items: stretch;
  }
  #fixed-cta > .fc-brochure {
    flex: 1 1 0;
    min-width: 0;
  }
  .fc-actions {
    display: flex;
    flex-direction: row;
    flex: 1 1 0;
    min-width: 0;
    gap: 8px;
  }
  .fc-actions .fc-btn {
    flex: 1 1 0;
    min-width: 0;
  }
  #fixed-cta .fc-btn {
    gap: 7px;
    padding: 9px 4px;
  }
  #fixed-cta .fc-btn i {
    font-size: 17px;
  }
  #fixed-cta .fc-btn span {
    white-space: nowrap;
  }
  .fc-call {
    right: 11px;
    bottom: 113px;
    background: rgba(43, 10, 19, 0.97);
    border-color: rgba(194, 161, 101, 0.5);
    /* transform: rotate(270deg); */
  }
}

/* ══════════════════════════════════════
   Client change batch — 2026-07-07
   Contact CTA/emphasis · intro stat sizing ·
   connectivity dropdown beside the map.
   Uses the existing landing-page palette.
══════════════════════════════════════ */

/* Prominent contact phone number */
#contact .ci-phone a {
  font-family: "Helve", sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  color: var(--gold-l);
  letter-spacing: 0.3px;
  display: inline-block;
  line-height: 1.2;
}
#contact .ci-phone a:hover {
  color: #fff;
}

/* Highlighted site address */
#contact .ci-address {
  position: relative;
  padding: 14px 16px 14px 18px;
  border: 1px solid rgba(194, 161, 101, 0.35);
  border-left: 3px solid var(--gold);
  background: rgba(194, 161, 101, 0.07);
  line-height: 1.65;
}
#contact .ci-address-lbl {
  display: block;
  font-family: "Norm", sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

/* Primary CTA (replaces the brochure button in the contact block) */
.cta-primary {
  display: inline-block;
  cursor: pointer;
  border: 0;
  font-family: "Norm", sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: #2b0a13;
  background: var(--gold);
  padding: 14px 30px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.cta-primary:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
}

/* Enlarged stat units — "West" / "Density" */
.intro-stat-unit--lg {
  font-size: 1.35rem !important;
  color: var(--gold-l) !important;
  font-weight: 400 !important;
  letter-spacing: 1px !important;
}

/* Connectivity accordion in the left address panel */
.loc-slide--acc {
  scrollbar-width: thin;
  scrollbar-color: rgba(194, 161, 101, 0.5) transparent;
}
.loc-slide--acc::-webkit-scrollbar {
  width: 5px;
}
.loc-slide--acc::-webkit-scrollbar-thumb {
  background: rgba(194, 161, 101, 0.45);
  border-radius: 3px;
}
.loc-acc {
  margin-top: 4px;
}
.loc-acc details {
  border-top: 1px solid rgba(194, 161, 101, 0.22);
}
.loc-acc details:last-child {
  border-bottom: 1px solid rgba(194, 161, 101, 0.22);
}
.loc-acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 2px;
  font-family: "Norm", sans-serif;
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-l);
  font-weight: 500;
}
.loc-acc summary::-webkit-details-marker {
  display: none;
}
.loc-acc-x {
  transition: transform 0.3s ease;
  color: var(--gold);
  font-size: 13px;
}
.loc-acc details.is-open .loc-acc-x {
  transform: rotate(180deg);
}
.loc-acc ul {
  list-style: none;
  margin: 0;
  padding: 0 2px 12px;
  box-sizing: border-box;
}
.loc-acc li {
  position: relative;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(245, 238, 226, 0.8);
  font-weight: 300;
  padding: 4px 0 4px 16px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.loc-acc li .loc-place {
  flex: 1;
}
.loc-acc li .loc-time {
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}
.loc-acc li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 11px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.7;
}

/* ==========================================================================
   "The Best Is No Place To Stop" — image top box for the tour cards.
   Overrides the maroon text-header treatment when the top box holds an image.
   ========================================================================== */
.tour-img.has-img {
  padding: 0 !important;
  gap: 0 !important;
  min-height: 0 !important;
  height: 210px !important;
  background: #2b0a13 !important;
  display: block !important;
  border-bottom: 1px solid rgba(201, 168, 76, 0.4) !important;
}
.tour-img.has-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
@media (max-width: 700px) {
  .tour-img.has-img {
    height: 180px !important;
  }
}
/* Larger, bolder titles for the FIRST card only:
   "Bespoke Residences" / "Life, Exactly As Planned" */
.tourism-grid .tour-card .tour-body .tour-cat {
  font-size: 16px !important;
  font-weight: 800 !important;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.tourism-grid .tour-card .tour-body .tour-drivers-label {
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

/* ── Inline emphasis ──
   The bundled fonts (TT Norms Regular, Helve) are single-weight files declared
   as `font-weight: 100 900`, so the browser believes every weight exists and
   never synthesises a bold face — plain <strong> renders identical to body
   text. `.hl` fakes the weight with a hairline stroke and lifts the colour so
   the phrase actually reads as highlighted. */
.hl {
  font-weight: 700;
  -webkit-text-stroke: 0.4px currentColor;
  color: #17110a;
}

/* Contact sits on maroon (#2b0a13) — black would disappear, so highlight up. */
#contact .hl {
  color: #fdf8ef;
}
