/* ═══════════════════════════════════════════════════
   BULWARK GROUP — Premium Real Estate Website
   Colour Palette:
     White:       #FFFFFF
     Off-white:   #F8F6F2
     Cream:       #F2EDE4
     Charcoal:    #2C2C2C
     Gold:        #C9A96E
     Near-black:  #1A1A1A
     Mid-grey:    #6B6B6B
═══════════════════════════════════════════════════ */

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

:root {
  --white:      #FFFFFF;
  --off-white:  #F8F6F2;
  --cream:      #F2EDE4;
  --green:      #2C2C2C;
  --green-light:#3A3A3A;
  --gold:       #C9A96E;
  --gold-light: #E2C99A;
  --black:      #1A1A1A;
  --grey:       #6B6B6B;
  --grey-light: #ADADAD;
  --border:     #E5E0D8;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h: 80px;
  --max-w: 1280px;
  --section-pad: 100px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── SCROLL REVEAL ANIMATIONS ──────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ── SHARED SECTION ELEMENTS ───────────────────── */
.section-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--grey);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.tag-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--grey);
  max-width: 560px;
}

.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-tag { justify-content: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── BUTTONS ───────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.3s var(--ease-out);
}
.btn-primary:hover {
  background: #b8945a;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  border: 1.5px solid var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-out);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--black);
  transition: gap 0.3s;
}
.link-arrow:hover { gap: 16px; }
.link-arrow .arrow { font-size: 16px; }

/* ══════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s, box-shadow 0.4s, height 0.3s;
}
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 68px;
}
#navbar.hero-light .nav-links a,
#navbar.hero-light .nav-logo {
  color: var(--white);
}
#navbar.hero-light .nav-links a:not(.nav-cta)::after {
  background: var(--white);
}
#navbar.scrolled .nav-links a,
#navbar.scrolled .nav-logo {
  color: var(--black);
}
#navbar.scrolled .nav-links a.nav-cta {
  border-color: var(--black);
  color: var(--black);
}
#navbar.scrolled .nav-hamburger span {
  background: var(--black);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* Logo image — two versions: light (on dark/hero) and dark (on white nav) */
.nav-logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s;
}
/* On hero (transparent nav): show the logo with a brightness filter so it's visible on dark */
.nav-logo-img--light {
  display: block;
  filter: brightness(0) invert(1);
}
.nav-logo-img--dark {
  display: none;
}
/* When navbar scrolls to white background, flip to the coloured logo */
#navbar.scrolled .nav-logo-img--light {
  display: none;
}
#navbar.scrolled .nav-logo-img--dark {
  display: block;
  filter: none;
}
/* Inner pages always show dark logo */
#navbar.page-nav .nav-logo-img--light {
  display: none;
}
#navbar.page-nav .nav-logo-img--dark {
  display: block;
  filter: none;
}

/* Mobile menu logo */
.mobile-menu-header {
  padding: 8px 0 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.mobile-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Footer logo */
.footer-logo-wrap {
  display: inline-block;
  margin-bottom: 20px;
}
.footer-logo-img {
  height: 100px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  /* Logo is dark/gold — invert to white for dark footer */
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transition: opacity 0.3s;
}
.footer-logo-wrap:hover .footer-logo-img {
  opacity: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--white);
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a:not(.nav-cta):hover { color: var(--gold-light); }

.nav-links a.nav-cta {
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--white);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.nav-links a.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--white);
  display: block;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  padding: 0 40px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-menu.open {
  max-height: 320px;
  padding: 24px 40px 32px;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu .mobile-link {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu .mobile-link:hover {
  color: var(--gold);
  padding-left: 8px;
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.05);
  animation: heroZoom 8s var(--ease-out) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.70) 0%,
    rgba(44, 44, 44, 0.45) 60%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 760px;
}
.hero-headline em {
  font-style: italic;
  font-weight: 300;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 80px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* Ticker */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 44px;
  background: rgba(160, 160, 160, 0.88);
  backdrop-filter: blur(8px);
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 3;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(30,30,30,0.9);
  text-transform: uppercase;
}
.ticker-dot { color: var(--gold); font-size: 7px; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════
   BRAND STATEMENT
══════════════════════════════════════════════════ */
.section-statement {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.statement-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: start;
}

.statement-tag {
  padding-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--grey);
  text-transform: uppercase;
}
.statement-tag .tag-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 16px;
}

.statement-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 28px;
}

.statement-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 32px;
  max-width: 600px;
}

/* ══════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════ */
.section-stats {
  background: #757575;
  padding: 0;
}
.stats-bar {
  display: flex;
  align-items: stretch;
  max-width: var(--max-w);
  margin: 0 auto;
}
.stat-item {
  flex: 1;
  padding: 48px 32px;
  text-align: center;
}
.stat-num {
  display: inline;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  margin-top: 10px;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  margin: 32px 0;
}

/* ══════════════════════════════════════════════════
   PROJECTS
══════════════════════════════════════════════════ */
.section-projects {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}

/* Large featured card spans full width */
.project-card--large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.project-card--large .card-img-wrap {
  height: 480px;
}
.project-card--large .card-body {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-card--large .card-title {
  font-size: 2.2rem;
}
.project-card--large .card-desc {
  font-size: 1rem;
  margin-bottom: 28px;
}

/* Base card */
.project-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.project-card:not(.project-card--large):hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.1);
}

.card-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.card-img {
  transition: transform 0.6s var(--ease-out);
}
.project-card:hover .card-img {
  transform: scale(1.04);
}
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(100,100,100,0.35), transparent 60%);
}

.card-status {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  z-index: 1;
}
.card-status--active {
  background: var(--gold);
  color: var(--white);
}
.card-status--upcoming {
  background: rgba(255,255,255,0.9);
  color: var(--black);
  border: 1px solid rgba(26,26,26,0.2);
}

.card-body {
  padding: 32px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--grey);
  letter-spacing: 0.04em;
}
.card-type {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,169,110,0.1);
  padding: 4px 10px;
  border: 1px solid rgba(201,169,110,0.3);
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.2;
}

.card-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--grey);
  margin-bottom: 24px;
}

.card-specs {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spec-val {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--black);
  font-weight: 400;
  line-height: 1;
}
.spec-key {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-light);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  transition: gap 0.3s, color 0.3s;
}
.card-cta:hover { gap: 16px; color: var(--gold); }

.projects-footer {
  text-align: center;
  padding-top: 16px;
}

/* ══════════════════════════════════════════════════
   QUOTE SECTION
══════════════════════════════════════════════════ */
.section-quote {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.quote-bg {
  position: absolute;
  inset: 0;
}
.quote-img {
  transform: scale(1.02);
  transition: transform 8s linear;
}
.section-quote:hover .quote-img {
  transform: scale(1.06);
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.72);
}
.quote-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  max-width: 800px;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 0.6;
  margin-bottom: 8px;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
}
.quote-attr {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════
   COMMUNITIES / LOCATION
══════════════════════════════════════════════════ */
.section-communities {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.communities-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.map-visual {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  height: 520px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.12);
}
.map-img { width: 100%; height: 100%; }

.map-pin {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  z-index: 2;
}
.pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.3);
  flex-shrink: 0;
  margin-top: 3px;
  animation: pinPulse 2.5s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(201,169,110,0.3); }
  50%       { box-shadow: 0 0 0 8px rgba(201,169,110,0); }
}
.pin-label {
  background: rgba(255,255,255,0.95);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  backdrop-filter: blur(8px);
}
.pin-label small { color: var(--gold); font-weight: 500; }

.map-pin-1 { top: 20%; left: 55%; }
.map-pin-2 { top: 45%; left: 30%; }
.map-pin-3 { top: 65%; left: 60%; }

/* Reasons */
.communities-reasons { display: flex; flex-direction: column; gap: 0; }
.reason-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.reason-item:first-child { padding-top: 0; }
.reason-item:last-child { border-bottom: none; }
.reason-icon {
  width: 48px;
  height: 48px;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: background 0.3s;
}
.reason-item:hover .reason-icon {
  background: var(--black);
  color: var(--gold);
}
.reason-copy h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 6px;
}
.reason-copy p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--grey);
}

/* ══════════════════════════════════════════════════
   AMENITIES
══════════════════════════════════════════════════ */
.section-amenities {
  background: var(--off-white);
}
.amenities-inner {
  padding: var(--section-pad) 0;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  background: var(--border);
}
.amenity-item {
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px 20px;
  text-align: center;
  transition: background 0.3s, transform 0.3s var(--ease-out);
  cursor: default;
}
.amenity-item:hover {
  background: var(--black);
  transform: translateY(-4px);
  position: relative;
  z-index: 1;
}
.amenity-item:hover span {
  color: rgba(255,255,255,0.85);
}
.amenity-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: color 0.3s;
}
.amenity-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  transition: stroke 0.3s;
}
.amenity-item:hover .amenity-icon svg {
  stroke: rgba(255,255,255,0.9);
}
.amenity-item span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--grey);
  text-transform: uppercase;
  transition: color 0.3s;
}

/* ══════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════ */
.section-about {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-stack {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 540px;
  border-radius: 2px;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 230px;
  height: 280px;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.about-badge {
  position: absolute;
  top: 40px;
  left: -24px;
  background: var(--gold);
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(201,169,110,0.35);
}
.badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.badge-text {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
  line-height: 1.5;
}

.about-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 20px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--off-white);
  border-left: 3px solid var(--gold);
}
.pillar-icon { font-size: 1.3rem; line-height: 1; flex-shrink: 0; }
.pillar strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 5px;
}
.pillar p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--grey);
  margin: 0;
}

/* ══════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════ */
.section-testimonials {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px 36px;
  border-top: 3px solid var(--gold);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.08);
}

.t-stars {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.t-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--black);
  margin-bottom: 28px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.t-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 3px;
}
.t-author span {
  font-size: 0.75rem;
  color: var(--grey);
}

/* ══════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════ */
.section-contact {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
}
.contact-bg-img { object-position: center 30%; }
.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,26,26,0.92) 0%, rgba(44,44,44,0.80) 55%, rgba(26,26,26,0.5) 100%);
}
.contact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.contact-headline em {
  font-style: italic;
  color: var(--gold);
}
.contact-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-detail-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.2s;
}
.contact-detail-link:hover { color: var(--gold); }
.contact-detail-link svg { flex-shrink: 0; opacity: 0.7; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  padding: 48px 44px;
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 32px;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 18px 16px 8px;
  border: 1px solid var(--border);
  background: var(--off-white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--black);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group input::placeholder { color: transparent; }
.form-group label {
  position: absolute;
  left: 16px;
  top: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-light);
  pointer-events: none;
  transition: transform 0.2s, color 0.2s, font-size 0.2s;
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label {
  transform: translateY(-6px);
  font-size: 9px;
  color: var(--gold);
}
.form-group select ~ label {
  transform: translateY(-6px);
  font-size: 9px;
  color: var(--gold);
}

.btn-submit {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s, transform 0.3s var(--ease-out);
  margin-top: 8px;
}
.btn-submit:hover {
  background: #b8945a;
  transform: translateY(-2px);
}
.btn-submit.success {
  background: #2E7D52;
}

.form-note {
  text-align: center;
  font-size: 11px;
  color: var(--grey-light);
  margin-top: 14px;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
  background: var(--black);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 52px;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-logo .logo-mark {
  background: var(--gold);
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.08);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  padding: 6px 0;
}
.footer-contact-list svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
  opacity: 0.8;
}
.footer-contact-list a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-contact-list a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold); }

.footer-picaro {
  text-align: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 12px;
}
.footer-picaro p {
  font-size: 11px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.04em;
}
.footer-picaro a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-picaro a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 900;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.55);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }
  .container { padding: 0 28px; }
  .nav-inner { padding: 0 28px; }

  .projects-grid { grid-template-columns: 1fr; }
  .project-card--large {
    grid-template-columns: 1fr;
  }
  .project-card--large .card-img-wrap { height: 360px; }
  .project-card--large .card-body { padding: 36px; }

  .statement-grid { grid-template-columns: 1fr; gap: 20px; }
  .statement-tag { padding-top: 0; }

  .communities-layout { grid-template-columns: 1fr; gap: 48px; }
  .map-visual { height: 380px; }

  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-accent { display: none; }
  .about-badge { top: 24px; left: 16px; }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 36px 32px; }

  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 40px; }

  .amenities-grid { grid-template-columns: repeat(4, 1fr); }

  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }

  .stats-bar { flex-wrap: wrap; }
  .stat-item { flex: 1 1 200px; }
  .stat-divider { display: none; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 640px)
══════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --section-pad: 56px; --nav-h: 64px; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 0 20px; padding-top: 80px; }
  .hero-scroll-hint { display: none; }

  .hero-headline { font-size: clamp(2.2rem, 10vw, 3.5rem); }

  .section-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-top-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 12px; }

  .mobile-menu { top: 64px; }

  .contact-form-wrap { padding: 28px 24px; }

  .about-img-main { height: 360px; }

  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }

  .whatsapp-float { bottom: 20px; right: 20px; }

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

/* ══════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════ */
.page-nav .nav-links a,
.page-nav .nav-logo { color: var(--black) !important; }
.page-nav .nav-links a:not(.nav-cta)::after { background: var(--gold) !important; }
.page-nav .nav-links a.nav-cta { border-color: var(--black) !important; color: var(--black) !important; }
.page-nav .nav-hamburger span { background: var(--black) !important; }

.page-hero {
  position: relative;
  height: 540px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center 40%;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero--tall { height: 680px; }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.72) 0%, rgba(44,44,44,0.48) 60%, rgba(0,0,0,0.2) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

/* ── INNER PAGE SECTION ─────────────────────────── */
.inner-page-section { padding: var(--section-pad) 0; }

/* ── ACTIVE NAV LINK ────────────────────────────── */
.nav-links a.active-link { color: var(--gold) !important; }

/* ── BTN GHOST DARK ─────────────────────────────── */
.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 0.3s, background 0.3s;
}
.btn-ghost-dark:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ── CTA STRIP ──────────────────────────────────── */
.section-cta-strip {
  background: var(--black);
  padding: 72px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-strip-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-strip-sub { font-size: 0.95rem; color: rgba(255,255,255,0.6); }
.cta-strip-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ══════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════ */

/* Team avatar — elegant circular monogram */
.team-img-wrap--avatar {
  background: linear-gradient(135deg, var(--black) 0%, #333 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  position: relative;
  overflow: hidden;
}
.team-img-wrap--avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(201,169,110,0.18) 0%, transparent 60%);
}
.team-avatar-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.2);
}
/* Legacy placeholder support */
.team-img-wrap--placeholder {
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-initials-avatar {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
}
.section-mv { padding: var(--section-pad) 0; background: var(--off-white); }
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mv-card {
  background: var(--white);
  padding: 44px 36px;
  border-top: 3px solid var(--gold);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.mv-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.08); }
.mv-icon { font-size: 2.2rem; margin-bottom: 20px; }
.mv-card h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; margin-bottom: 14px; }
.mv-card p { font-size: 0.9rem; line-height: 1.75; color: var(--grey); }

.apart-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.apart-item {
  background: var(--white);
  padding: 44px 36px;
  transition: background 0.3s;
}
.apart-item:hover { background: var(--off-white); }
.apart-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 16px;
}
.apart-item h4 { font-weight: 600; font-size: 1rem; margin-bottom: 10px; }
.apart-item p { font-size: 0.875rem; line-height: 1.7; color: var(--grey); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.team-grid--four {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--off-white);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out);
}
.team-card:hover { transform: translateY(-4px); }
.team-img-wrap { height: 320px; overflow: hidden; }
.team-img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s var(--ease-out); }
.team-card:hover .team-img { transform: scale(1.04); }
.team-info { padding: 28px; }
.team-info h4 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400; margin-bottom: 6px; }
.team-info span { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 14px; }
.team-info p { font-size: 0.85rem; line-height: 1.7; color: var(--grey); }

/* ══════════════════════════════════════════════════
   PROJECTS PAGE
══════════════════════════════════════════════════ */
.projects-full-grid { display: flex; flex-direction: column; gap: 32px; }
.proj-full-card {
  display: grid;
  grid-template-columns: 480px 1fr;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.3s;
  border: 1px solid var(--border);
}
.proj-full-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.proj-full-img { position: relative; height: 360px; overflow: hidden; }
.proj-full-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.proj-full-card:hover .proj-full-img img { transform: scale(1.04); }
.proj-full-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.proj-full-specs {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 20px 0 28px;
}

/* Project Detail */
.proj-specs-bar {
  background: #757575;
  padding: 0;
}
.proj-specs-inner {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
}
.proj-spec-item {
  flex: 1;
  padding: 28px 24px;
  text-align: center;
  min-width: 140px;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.proj-spec-item:last-child { border-right: none; }
.ps-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}
.ps-val {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 400;
}
.ps-val--price { color: var(--gold); font-size: 1rem; }

.proj-detail-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: start;
}
.proj-highlights { margin-top: 36px; }
.proj-highlights h4 { font-weight: 600; font-size: 0.95rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey); }
.highlights-list { display: flex; flex-direction: column; gap: 10px; }
.highlights-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--black); line-height: 1.5; }
.hl-check { color: var(--gold); font-weight: 700; flex-shrink: 0; }

.proj-gallery { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.proj-gallery-img { width: 100%; height: 180px; object-fit: cover; }
.proj-gallery-img--main { height: 280px; }

.proj-enquiry-card { background: var(--off-white); padding: 36px; }

.other-projects-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.other-proj-card { display: block; overflow: hidden; background: var(--off-white); transition: transform 0.3s var(--ease-out); }
.other-proj-card:hover { transform: translateY(-4px); }
.other-proj-img { height: 180px; position: relative; overflow: hidden; }
.other-proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease-out); }
.other-proj-card:hover .other-proj-img img { transform: scale(1.05); }
.other-proj-info { padding: 20px; }
.other-proj-info h4 { font-family: var(--font-serif); font-size: 1.2rem; margin: 10px 0 4px; }
.other-proj-info p { font-size: 0.8rem; color: var(--grey); }

/* ══════════════════════════════════════════════════
   NRI PAGE
══════════════════════════════════════════════════ */
.nri-trust-bar { background: var(--off-white); border-bottom: 1px solid var(--border); }
.nri-trust-inner {
  display: flex;
  align-items: center;
  padding: 28px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 0;
  overflow-x: auto;
}
.trust-item { flex: 1; text-align: center; padding: 8px 16px; min-width: 120px; }
.trust-num { display: block; font-family: var(--font-serif); font-size: 2rem; color: var(--black); font-weight: 400; line-height: 1; }
.trust-label { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey); margin-top: 6px; }
.trust-div { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

.nri-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.nri-roi-box {
  display: flex;
  align-items: stretch;
  background: #757575;
  margin-top: 36px;
  overflow: hidden;
}
.roi-item { flex: 1; padding: 32px 24px; text-align: center; }
.roi-num { display: block; font-family: var(--font-serif); font-size: 2rem; color: var(--gold); font-weight: 400; line-height: 1; margin-bottom: 10px; }
.roi-label { font-size: 11px; color: rgba(255,255,255,0.6); line-height: 1.5; letter-spacing: 0.06em; }
.roi-div { width: 1px; background: rgba(255,255,255,0.2); margin: 20px 0; }

.nri-why-img { position: relative; }
.nri-img-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  padding: 12px 18px;
  display: flex;
  gap: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-top: 60px;
}
.process-step { padding: 28px 20px; background: var(--white); border: 1px solid var(--border); }
.process-arrow { display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.3rem; padding: 0 4px; align-self: center; }
.step-num { font-family: var(--font-serif); font-size: 2.5rem; color: var(--gold); opacity: 0.4; font-weight: 300; line-height: 1; margin-bottom: 14px; }
.step-body h4 { font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; }
.step-body p { font-size: 0.8rem; line-height: 1.65; color: var(--grey); }

.legal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.legal-card { padding: 36px 28px; border: 1px solid var(--border); transition: border-color 0.3s, transform 0.3s var(--ease-out); }
.legal-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.legal-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: var(--cream);
  border-radius: 50%;
}
.legal-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.legal-card h4 { font-weight: 600; font-size: 1rem; margin-bottom: 10px; }
.legal-card p { font-size: 0.85rem; line-height: 1.7; color: var(--grey); }

.countries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 48px;
}
.country-pill {
  padding: 12px 24px;
  border: 1.5px solid var(--border);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.3s, background 0.3s, color 0.3s;
  cursor: default;
}
.country-pill:hover { border-color: var(--black); background: var(--black); color: var(--white); }

/* Testimonials dark variant */
.testimonial-card--dark {
  background: rgba(255,255,255,0.07);
  border-top-color: var(--gold);
}
.testimonial-card--dark .t-quote { color: rgba(255,255,255,0.85); }
.testimonial-card--dark .t-author strong { color: var(--white); }
.testimonial-card--dark .t-author span { color: rgba(255,255,255,0.5); }
.testimonial-card--dark { border-top: 3px solid var(--gold); }

/* ══════════════════════════════════════════════════
   NRI HOME SECTION
══════════════════════════════════════════════════ */
.section-nri-home { padding: var(--section-pad) 0; background: var(--off-white); }
.nri-home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.nri-home-img { position: relative; }
.nri-home-photo { width: 100%; height: 540px; object-fit: cover; }
.nri-flag-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(201,169,110,0.35);
}
.flag-text { font-size: 13px; font-weight: 600; color: var(--white); line-height: 1.5; }
.nri-home-points { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.nri-point { display: flex; align-items: center; gap: 14px; }
.nri-point-icon {
  width: 26px; height: 26px;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}
.nri-point span { font-size: 0.9rem; color: var(--black); }

/* ══════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════ */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 0; margin: 36px 0; }
.contact-info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-card:first-child { border-top: 1px solid var(--border); }
.ci-icon {
  width: 48px; height: 48px;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: background 0.3s;
}
.contact-info-card:hover .ci-icon { background: var(--black); color: var(--gold); }
.contact-info-card h4 { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.contact-info-card a { font-size: 1rem; color: var(--black); font-weight: 500; display: block; margin-bottom: 4px; }
.contact-info-card span { font-size: 0.9rem; color: var(--black); display: block; margin-bottom: 4px; line-height: 1.5; }
.contact-info-card p { font-size: 0.8rem; color: var(--grey-light); }
.map-embed-wrap { overflow: hidden; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ══════════════════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════════════════ */
.blog-featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: 32px;
  transition: box-shadow 0.3s;
}
.blog-featured-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.blog-featured-img { position: relative; height: 420px; overflow: hidden; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.blog-featured-card:hover .blog-featured-img img { transform: scale(1.04); }
.blog-featured-body { padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; }
.blog-cat {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  z-index: 1;
}
.blog-meta { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--grey); margin-bottom: 16px; }
.meta-dot { color: var(--gold); }
.blog-featured-title { font-family: var(--font-serif); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 400; line-height: 1.25; margin-bottom: 18px; }
.blog-featured-excerpt { font-size: 0.9rem; line-height: 1.75; color: var(--grey); margin-bottom: 28px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 32px; }
.blog-card {
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  display: block;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.08); }
.blog-card-img { position: relative; height: 220px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 28px 24px; }
.blog-card-title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 400; line-height: 1.3; margin-bottom: 10px; color: var(--black); }
.blog-card-excerpt { font-size: 0.85rem; line-height: 1.7; color: var(--grey); }
.blog-body h2 { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 400; margin: 40px 0 16px; }
.blog-body p { font-size: 1rem; line-height: 1.85; color: var(--grey); margin-bottom: 20px; }
.blog-body ul { padding-left: 20px; margin-bottom: 20px; }
.blog-body ul li { font-size: 0.95rem; line-height: 1.7; color: var(--grey); margin-bottom: 8px; }
.blog-body strong { color: var(--black); }

.newsletter-form {
  display: flex;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}
.newsletter-form input { border: none !important; border-radius: 0 !important; }

/* ══════════════════════════════════════════════════
   PRIVACY PAGE
══════════════════════════════════════════════════ */
.privacy-body h2 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; margin: 44px 0 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.privacy-body p { font-size: 0.95rem; line-height: 1.85; color: var(--grey); margin-bottom: 16px; }
.privacy-body ul { padding-left: 20px; margin-bottom: 16px; }
.privacy-body ul li { font-size: 0.9rem; line-height: 1.75; color: var(--grey); margin-bottom: 6px; }
.privacy-body strong { color: var(--black); }
.privacy-body a { color: var(--gold); }

/* ══════════════════════════════════════════════════
   RESPONSIVE ADDITIONS
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: 1fr 1fr 1fr; }
  .process-arrow { display: none; }
  .nri-why-grid { grid-template-columns: 1fr; gap: 48px; }
  .nri-home-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 48px; }
  .proj-full-card { grid-template-columns: 1fr; }
  .proj-full-img { height: 280px; }
  .proj-detail-grid { grid-template-columns: 1fr; }
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-img { height: 280px; }
  .blog-featured-body { padding: 36px; }
  .mv-grid { grid-template-columns: 1fr; }
  .apart-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-grid--four { grid-template-columns: 1fr 1fr; }
  .legal-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .other-projects-row { grid-template-columns: 1fr 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .nri-trust-inner { padding: 20px; }
}

@media (max-width: 640px) {
  .page-hero { height: 420px; }
  .page-hero--tall { height: 520px; }
  .process-steps { grid-template-columns: 1fr; }
  .apart-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-grid--four { grid-template-columns: 1fr; }
  .legal-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .other-projects-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nri-roi-box { flex-direction: column; }
  .roi-div { height: 1px; width: auto; margin: 0 20px; }
  .proj-specs-inner { flex-wrap: wrap; }
  .proj-spec-item { flex: 1 1 50%; }
  .proj-detail-grid { gap: 40px; }
  .nri-flag-badge { right: 0; bottom: 0; }
  .nri-home-photo { height: 360px; }
  .blog-featured-body { padding: 24px; }
  .mv-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { width: 100%; }
  .trust-div { display: none; }
}

/* ══════════════════════════════════════════════════
   TESTIMONIAL CAROUSEL
══════════════════════════════════════════════════ */
.testimonials-carousel-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}
.testimonials-carousel {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
}
.testimonials-carousel .testimonial-card {
  flex: 0 0 calc(33.333% - 19px);
  min-width: 0;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--black);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  font-size: 18px;
}
.carousel-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
}
.carousel-dot.active { background: var(--gold); transform: scale(1.3); }
@media (max-width: 1024px) {
  .testimonials-carousel .testimonial-card { flex: 0 0 calc(50% - 14px); }
}
@media (max-width: 640px) {
  .testimonials-carousel .testimonial-card { flex: 0 0 100%; }
}

/* ══════════════════════════════════════════════════
   PROXIMITY GRID — Clean Aligned Design
══════════════════════════════════════════════════ */
.proximity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 16px;
}
.proximity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.proximity-item:nth-child(even) { border-right: none; }
.proximity-item:nth-last-child(-n+2) { border-bottom: none; }
.proximity-item:hover { background: var(--off-white); }
.prox-place {
  flex: 1;
  font-size: 0.82rem;
  color: var(--black);
  font-weight: 400;
  line-height: 1.4;
}
.prox-time {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
  background: rgba(201,169,110,0.1);
  padding: 3px 8px;
  border: 1px solid rgba(201,169,110,0.25);
}

/* ══════════════════════════════════════════════════
   DOWNLOAD BROCHURE BUTTON
══════════════════════════════════════════════════ */
.btn-brochure {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-out);
}
.btn-brochure:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════
   PROJECT DETAIL — Equal column alignment
══════════════════════════════════════════════════ */
.proj-detail-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}
.proj-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  align-self: start;
}
.proj-enquiry-card {
  background: var(--off-white);
  padding: 36px;
}

/* ══════════════════════════════════════════════════
   NRI PAGE — Investment Tabs
══════════════════════════════════════════════════ */
.investment-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 48px;
  margin-top: -20px;
}
.inv-tab {
  padding: 16px 36px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  font-family: var(--font-sans);
}
.inv-tab:hover { color: var(--black); }
.inv-tab.active { color: var(--black); border-bottom-color: var(--gold); }
.inv-tab-content { display: none; }
.inv-tab-content.active { display: block; }

/* ══════════════════════════════════════════════════
   MEDIA CENTRE (Blog Renamed)
══════════════════════════════════════════════════ */
.media-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 40px;
}
.media-tab {
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.3s, border-color 0.3s;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  font-family: var(--font-sans);
}
.media-tab:hover { color: var(--black); }
.media-tab.active { color: var(--black); border-bottom-color: var(--gold); }
.media-tab-content { display: none; }
.media-tab-content.active { display: block; }

/* ══════════════════════════════════════════════════
   CONTACT PAGE — Grey form boxes, full-width map
══════════════════════════════════════════════════ */
.contact-form-wrap--grey {
  background: #f5f5f5;
  padding: 48px 44px;
  border: 1px solid var(--border);
}
.map-full-width {
  width: 100%;
  margin-top: 60px;
  border: none;
  display: block;
}
