/* ================================================================
   GRACE DEVELOPERS — Atmiya Centria
   Main Stylesheet  |  Netlify-ready
   ================================================================ */

/* ── GOOGLE FONTS ─────────────────────────────────────────────── */
/* Fonts are loaded via <link> tags in each HTML file. No @import needed here. */

/* ── DESIGN TOKENS ────────────────────────────────────────────── */
:root {
  --gold: #C9A84C;
  --gold-lt: #E8D198;
  --gold-pale: #F8F3E6;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --gold-line: rgba(201, 168, 76, 0.22);
  --navy: #0C1824;
  --navy2: #162031;
  --navy3: #1E2F46;
  --cream: #F9F6EF;
  --offwhite: #FDFBF7;
  --txt: #0C1824;
  --txt2: #5A6677;
  --txt3: #96A1AE;
  --white: #FFFFFF;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Jost', sans-serif;
  --mono: 'DM Mono', monospace;

  --nav-h: 112px;
  --max-w: 1280px;
  --pad-x: clamp(20px, 5vw, 64px);
  --pad-section: clamp(64px, 8vw, 104px);
  --transition: 0.24s ease;
}

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

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

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--txt);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* ── LAYOUT HELPERS ───────────────────────────────────────────── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section {
  padding: var(--pad-section) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-full {
  padding: var(--pad-section) var(--pad-x);
}

.bg-navy {
  background: var(--navy);
}

.bg-cream {
  background: var(--cream);
}

.bg-offwhite {
  background: var(--offwhite);
}

.bg-white {
  background: var(--white);
}

.bg-gold-pale {
  background: var(--gold-pale);
}

/* ── TYPOGRAPHY ───────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.eyebrow--dark {
  color: var(--navy);
}

.eyebrow--dark::before {
  background: var(--navy);
}

.eyebrow--white {
  color: rgba(255, 255, 255, 0.55);
}

.eyebrow--white::before {
  background: rgba(255, 255, 255, 0.4);
}

.h-display {
  font-family: var(--serif);
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.015em;
}

.h-section {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.h-card {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  line-height: 1.15;
}

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

em.white {
  font-style: italic;
  color: #fff;
}

.body-sm {
  font-size: 13px;
  line-height: 1.85;
  font-weight: 300;
}

.body-md {
  font-size: 14px;
  line-height: 1.9;
  font-weight: 300;
}

.label {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--txt3);
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 32px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

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

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover {
  background: var(--navy2);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.5);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(12, 24, 36, 0.25);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: #fff;
}

/* ── NAVIGATION ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  background: rgba(12, 24, 36, 0.97);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: box-shadow var(--transition);
  /* backdrop-filter moved to ::before so it doesn't make
     the nav a containing block for position:fixed children */
}

.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.nav__inner {
  position: relative;
  z-index: 1;
}


/* ── PAGE HERO styles moved to Phase 3 section below ── */


/* ── HERO (HOME) ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__slide.active {
  opacity: 0.35;
}

.hero__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(12, 24, 36, 0.95) 38%, rgba(12, 24, 36, 0.55) 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px var(--pad-x) 80px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero__pill span {
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero__h1 {
  color: #fff;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: clamp(13px, 1.4vw, 15px);
  color: rgba(255, 255, 255, 0.46);
  line-height: 1.85;
  max-width: 460px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.hero__stat {
  padding-right: 40px;
}

.hero__stat:not(:last-child) {
  border-right: 1px solid rgba(201, 168, 76, 0.1);
}

.hero__stat:not(:first-child) {
  padding-left: 40px;
}

.stat-n {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 48px);
  color: var(--gold);
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-l {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 6px;
  display: block;
}

/* Hero project card */
.hero__card {
  background: rgba(12, 24, 36, 0.88);
  border: 1px solid rgba(201, 168, 76, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero__card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  opacity: 0.75;
  display: block;
}

.hero__card-body {
  padding: 24px;
}

.hero-chip {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

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

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero-cname {
  font-family: var(--serif);
  font-size: 24px;
  color: #fff;
  margin-bottom: 4px;
}

.hero-cloc {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.36);
  margin-bottom: 18px;
}

.hero-div {
  height: 1px;
  background: rgba(201, 168, 76, 0.18);
  margin-bottom: 18px;
}

.hero-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-from {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.5);
  margin-bottom: 4px;
}

.hero-price {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold);
}

.hero-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.hero-tag {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.2);
  z-index: 3;
  animation: bob 2.2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 30px;
  background: rgba(201, 168, 76, 0.28);
}

@keyframes bob {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* Slide indicators */
.hero__dots {
  position: absolute;
  bottom: 32px;
  right: var(--pad-x);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero__dot {
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition);
}

.hero__dot.active {
  background: var(--gold);
  width: 36px;
}

/* ── TICKER ───────────────────────────────────────────────────── */
.ticker {
  background: var(--gold);
  overflow: hidden;
  height: 44px;
  display: flex;
  align-items: center;
}

.ticker__track {
  display: flex;
  animation: ticker 36s linear infinite;
  white-space: nowrap;
}

.ticker__track:hover {
  animation-play-state: paused;
}

.ticker__item {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticker__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--navy3);
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── HIGHLIGHTS STRIP ─────────────────────────────────────────── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.highlight-box {
  background: var(--offwhite);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background var(--transition);
}

.highlight-box:hover {
  background: #fff;
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 168, 76, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 18px;
}

.highlight-title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--txt);
  margin-bottom: 8px;
}

.highlight-body {
  font-size: 12px;
  color: var(--txt2);
  line-height: 1.7;
  font-weight: 300;
}

/* ── AMENITY CARDS ────────────────────────────────────────────── */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.amenity-card {
  position: relative;
  overflow: hidden;
  cursor: default;
}

.amenity-card__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.amenity-card:hover .amenity-card__img {
  transform: scale(1.04);
}

.amenity-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 24, 36, 0.88) 0%, transparent 55%);
}

.amenity-card__label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
}

.amenity-card__name {
  font-family: var(--serif);
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px;
}

.amenity-card__sub {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.7);
}

.amenity-list {
  list-style: none;
  margin-top: 44px;
}

.amenity-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
}

.amenity-list li::before {
  content: '◇';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── FEATURES ─────────────────────────────────────────────────── */
.features-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.features-2col__img {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.features-2col__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.features-2col:hover .features-2col__img img {
  transform: scale(1.03);
}

.features-2col__body {
  background: var(--navy);
  padding: var(--pad-section) clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-tabs {
  display: flex;
  gap: 4px;
  margin: 28px 0 32px;
}

.feature-tab {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  color: var(--txt3);
  cursor: pointer;
  transition: all var(--transition);
}

.feature-tab:hover,
.feature-tab.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 300;
  line-height: 1.6;
}

.feature-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ── FLOOR PLANS ──────────────────────────────────────────────── */
.plans-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.plan-tab {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--txt3);
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
}

.plan-tab:hover,
.plan-tab.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.plan-view {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.plan-view.active {
  display: grid;
}

.plan-card {
  background: #fff;
  overflow: hidden;
}

.plan-card__img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: center;
  background: #f8f6f0;
  padding: 20px;
  cursor: zoom-in;
  transition: transform 0.4s ease;
}

.plan-card:hover .plan-card__img {
  transform: scale(1.02);
}

.plan-card__info {
  padding: 20px 22px;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.plan-card__config {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 4px;
}

.plan-card__area {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── LOCATION ─────────────────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.location-map {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

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

.location-info {
  background: var(--navy);
  padding: var(--pad-section) clamp(32px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.loc-group {
  margin-bottom: 32px;
}

.loc-group-title {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.5);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.loc-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.loc-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.loc-name {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
}

.loc-dist {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--gold);
}

/* ── GALLERY GRID ─────────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  gap: 4px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.gal-filter {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  color: var(--txt3);
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
}

.gal-filter:hover {
  background: rgba(12, 24, 36, 0.06);
  color: var(--navy);
  border-color: rgba(12, 24, 36, 0.2);
}

.gal-filter.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

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

.gal-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gal-item.tall {
  grid-row: span 2;
  aspect-ratio: unset;
}

.gal-item.wide {
  grid-column: span 2;
  aspect-ratio: unset;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.gal-item:hover img {
  transform: scale(1.06);
}

.gal-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 36, 0);
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gal-item:hover .gal-item__overlay {
  background: rgba(12, 24, 36, 0.45);
}

.gal-item__zoom {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.25s ease;
}

.gal-item:hover .gal-item__zoom {
  opacity: 1;
  transform: scale(1);
}

.gal-item__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(12, 24, 36, 0.75);
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 10px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
}

.lightbox__close:hover {
  color: var(--gold);
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color var(--transition);
  padding: 20px;
  line-height: 1;
}

.lightbox__prev {
  left: 16px;
}

.lightbox__next {
  right: 16px;
}

.lightbox__prev:hover,
.lightbox__next:hover {
  color: var(--gold);
}

.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.35);
}

/* ── CONTACT SECTION ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-left {
  background: var(--navy);
  padding: var(--pad-section) clamp(32px, 5vw, 64px);
  border-right: 1px solid rgba(201, 168, 76, 0.07);
}

.contact-right {
  background: var(--gold-pale);
  padding: var(--pad-section) clamp(32px, 5vw, 64px);
}

.contact-body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.85;
  font-weight: 300;
  margin: 16px 0 36px;
  max-width: 400px;
}

.cinfo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cinfo-row {
  display: flex;
  gap: 16px;
}

.cinfo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold);
  margin-top: 2px;
}

.cinfo-lbl {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.48);
  margin-bottom: 4px;
  display: block;
}

.cinfo-val {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* Form */
.form-title {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--navy);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 13px;
  color: var(--txt2);
  font-weight: 300;
  margin-bottom: 28px;
}

.cform {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cinput,
.cselect,
.ctextarea {
  font-family: var(--sans);
  font-size: 13px;
  padding: 14px 18px;
  border: 1px solid rgba(12, 24, 36, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  outline: none;
  width: 100%;
  border-radius: 0;
  transition: border var(--transition), background var(--transition);
}

.cinput::placeholder,
.ctextarea::placeholder {
  color: rgba(12, 24, 36, 0.35);
}

.cinput:focus,
.cselect:focus,
.ctextarea:focus {
  border-color: var(--navy);
  background: #fff;
}

.ctextarea {
  resize: vertical;
  min-height: 110px;
}

.cselect {
  appearance: none;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230C1824' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
}

.cbtn {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 16px 32px;
  cursor: pointer;
  transition: background var(--transition);
  width: 100%;
  margin-top: 4px;
}

.cbtn:hover {
  background: var(--navy3);
}

.cbtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-note {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  color: rgba(12, 24, 36, 0.36);
  text-align: center;
}

/* RERA badge */
.rera-badge {
  margin-top: 36px;
  padding: 18px 22px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.18);
}

.rera-label {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.5);
  margin-bottom: 6px;
}

.rera-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--gold);
}

/* ── CTA BANNER ───────────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 80px var(--pad-x);
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(201, 168, 76, 0.07);
  padding: 64px var(--pad-x) 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 260px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}

.footer-body {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.27);
  line-height: 1.8;
  font-weight: 300;
}

.footer-addr {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1.75;
  margin-top: 16px;
}

.footer-col-h {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.5);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copy {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.17);
}

.footer-rera {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.08em;
  color: rgba(201, 168, 76, 0.3);
}

/* ── ANIMATIONS ───────────────────────────────────────────────── */
.anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-d1 {
  transition-delay: 0.1s;
}

.anim-d2 {
  transition-delay: 0.2s;
}

.anim-d3 {
  transition-delay: 0.3s;
}

.anim-d4 {
  transition-delay: 0.4s;
}

.anim-d5 {
  transition-delay: 0.5s;
}

/* ── RESPONSIVE: TABLET ≤ 1023px ─────────────────────────────── */
@media (max-width: 1023px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__card {
    max-width: 420px;
    margin-top: 40px;
  }

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

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

  .features-2col {
    grid-template-columns: 1fr;
  }

  .features-2col__img {
    min-height: 320px;
  }

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

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

  .gal-item.wide {
    grid-column: span 1;
  }

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

  .contact-left {
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.07);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .plan-view {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── RESPONSIVE: MOBILE ≤ 767px ──────────────────────────────── */
@media (max-width: 767px) {
  :root {
    --pad-x: 20px;
    --pad-section: clamp(48px, 8vw, 64px);
    --nav-h: 68px;
  }

  .nav__logo-img {
    height: 40px;
  }

  .hero__inner {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .hero__stats {
    flex-direction: column;
    gap: 18px;
  }

  .hero__stat {
    padding-left: 0 !important;
    padding-right: 0;
    border-right: none !important;
  }

  .hero__card {
    max-width: 100%;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    justify-content: center;
  }

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

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }

  .gal-item {
    aspect-ratio: 1 / 1;    /* square crop on mobile — consistent, no surprises */
  }

  .gal-item.tall,
  .gal-item.wide {
    grid-row: span 1;
    grid-column: span 1;    /* all items equal size on mobile */
    aspect-ratio: 1 / 1;
  }

  .cform-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: auto;
    max-width: 100%;
  }

  .plan-view {
    grid-template-columns: 1fr;
  }

  .plan-card__img {
    height: 220px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .page-hero {
    min-height: 260px;
  }
}

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

  .gal-item.wide {
    grid-column: auto;
  }
}

/* ================================================================
   PHASE 3 EXTENSIONS — New component styles for rebuilt pages
   ================================================================ */

/* ── CONTAINER ────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ── SECTION MODIFIERS ────────────────────────────────────────── */
.section {
  padding: var(--pad-section) 0;
}

.section--cream {
  background: var(--cream);
}

.section--navy {
  background: var(--navy);
}

.section--white {
  background: var(--white);
}

/* ── NEW NAV SYSTEM ───────────────────────────────────────────── */
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
  gap: 1px;
}

.nav__brand-g {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.nav__brand-d {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.nav__link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.nav__link.active {
  color: var(--gold);
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.nav__link--cta {
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.45);
  padding: 8px 20px;
  transition: all var(--transition);
}

.nav__link--cta:hover {
  background: var(--gold);
  color: var(--navy);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 510;
  background: transparent;
  border: none;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;   /* must stay below .nav__inner (z-index:1) so menu links are tappable */
}

.nav__overlay.is-open {
  display: block;
}

body.menu-open {
  overflow: hidden;
}

.nav--scrolled {
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

/* ── NEW HERO SYSTEM (Slideshow) ──────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-h);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.hero__slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(12, 24, 36, 0.82) 40%, rgba(12, 24, 36, 0.5) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: var(--max-w);
  width: 100%;
  padding: 0 var(--pad-x);
}

.hero__eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: clamp(14px, 1.4vw, 16px);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 520px;
}

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

.hero__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

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

/* ── BEM BUTTON VARIANTS ──────────────────────────────────────── */
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}

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

.btn--navy {
  background: var(--navy);
  color: #fff;
}

.btn--navy:hover {
  background: var(--navy3);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(12, 24, 36, 0.28);
}

.btn--ghost:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn--outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--outline-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn--outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--sm {
  padding: 10px 22px;
  font-size: 9px;
}

/* ── TYPOGRAPHY HELPERS ───────────────────────────────────────── */
.h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-top: 12px;
}

.h2--light {
  color: #fff;
}

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

.label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--txt3);
  display: block;
  margin-bottom: 8px;
}

.label--gold {
  color: var(--gold);
}

.body-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--txt);
  font-weight: 300;
  margin-bottom: 16px;
}

.body-text--light {
  color: rgba(255, 255, 255, 0.85);
}

.body-text--center {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ── SPACING UTILITIES ────────────────────────────────────────── */
.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-56 {
  margin-top: 56px;
}

/* ── VISIBILITY ───────────────────────────────────────────────── */
.hide-mobile {
  display: inline;
}

/* ── ANIMATION DELAYS (BEM) ───────────────────────────────────── */
.anim--delay-1 {
  transition-delay: 0.12s;
}

.anim--delay-2 {
  transition-delay: 0.24s;
}

.anim--delay-3 {
  transition-delay: 0.36s;
}

.anim--delay-4 {
  transition-delay: 0.48s;
}

/* ── TICKER ───────────────────────────────────────────────────── */
.ticker {
  background: var(--navy2);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  overflow: hidden;
  padding: 14px 0;
}

.ticker__inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
}

.ticker__inner span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.45);
  padding: 0 24px;
}

.ticker__sep {
  color: var(--gold) !important;
  opacity: 0.6;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── PAGE HERO (inner pages, new system) ──────────────────────── */
.page-hero {
  padding-top: var(--nav-h);
  min-height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 24, 36, 0.9) 0%, rgba(12, 24, 36, 0.4) 60%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px var(--pad-x) 56px;
}

.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
  margin-top: 12px;
}

.page-hero__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 12px;
  max-width: 560px;
  font-weight: 300;
  line-height: 1.75;
}

/* ── INTRO GRID (Home) ────────────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-grid__text {}

.intro-grid__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* ── HIGHLIGHTS / STATS GRID ──────────────────────────────────── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.highlight-card {
  background: var(--navy2);
  padding: 40px 28px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.highlight-card:hover {
  background: var(--navy3);
}

.highlight-card__num {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 52px);
  color: var(--gold);
  line-height: 1;
}

.highlight-card__label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* ── AMENITY GRID ─────────────────────────────────────────────── */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amenity-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.08);
  overflow: hidden;
}

.amenity-card__img-wrap {
  height: 200px;
  overflow: hidden;
}

.amenity-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.amenity-card:hover .amenity-card__img-wrap img {
  transform: scale(1.05);
}

.amenity-card__body {
  padding: 20px;
}

.amenity-card__title {
  font-family: var(--serif);
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}

.amenity-card__desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.7;
}

/* ── GALLERY PREVIEW ──────────────────────────────────────────── */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.gallery-preview__item {
  height: 260px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease;
}

.gallery-preview__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 36, 0.2);
  transition: background 0.3s ease;
}

.gallery-preview__item:hover {
  transform: scale(1.02);
}

.gallery-preview__item:hover::after {
  background: rgba(12, 24, 36, 0);
}

/* ── CTA STRIP ────────────────────────────────────────────────── */
.cta-strip {
  background: var(--navy);
  position: relative;
  padding: 80px var(--pad-x);
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-strip__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-strip__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── FOOTER (New system) ──────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding: 64px var(--pad-x) 32px;
}

.footer__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.footer__brand {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* brand-name removed — logo only */
.footer__logo-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.footer__tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.75;
  font-weight: 300;
  text-align: left;
}

.footer__socials {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  justify-content: flex-start;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  transition: all var(--transition);
}

.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer__col {}

.footer__col-title {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.5);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--transition);
}

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

.footer__address {
  font-style: normal;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__address a {
  color: rgba(255, 255, 255, 0.28);
  transition: color var(--transition);
}

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

.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid rgba(201, 168, 76, 0.07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom p {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.18);
}

.footer__rera {
  color: rgba(201, 168, 76, 0.3) !important;
}

/* ── ABOUT PAGE ───────────────────────────────────────────────── */
.about-intro {
  max-width: 600px;
}

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

.about-split--reverse {
  direction: rtl;
}

.about-split--reverse>* {
  direction: ltr;
}

.about-split__image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.about-split__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.stat-card {
  background: var(--navy2);
  padding: 32px 24px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-card__num {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--gold);
  line-height: 1;
}

.stat-card__label {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.team-card {
  padding: 40px;
  background: var(--offwhite);
  border: 1px solid rgba(12, 24, 36, 0.07);
  text-align: center;
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
}

.team-card__name {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 4px;
}

.team-card__role {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.team-card__bio {
  font-size: 13px;
  color: var(--txt2);
  line-height: 1.75;
}

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

.value-card {
  padding: 36px 28px;
  border: 1px solid rgba(12, 24, 36, 0.09);
}

.value-card__icon {
  margin-bottom: 20px;
}

.value-card__title {
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 12px;
}

.value-card__text {
  font-size: 13px;
  color: var(--txt2);
  line-height: 1.75;
}

/* ── PROJECTS PAGE ────────────────────────────────────────────── */
.proj-brand-logo {
  margin-bottom: 20px;
}

.proj-brand-logo__img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
}

.cta-strip__title-group {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-project-logo {
  height: 88px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.proj-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.proj-quick-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(12, 24, 36, 0.09);
  margin-top: 28px;
}

.qf-item {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(12, 24, 36, 0.07);
  border-right: 1px solid rgba(12, 24, 36, 0.07);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.qf-item:nth-child(even) {
  border-right: none;
}

.qf-label {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--txt3);
}

.qf-val {
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
}

.proj-gallery-main img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  margin-bottom: 4px;
}

.proj-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.proj-gallery-thumbs img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.feature-item {
  border: 1px solid rgba(12, 24, 36, 0.07);
  overflow: hidden;
}

.feature-item__img {
  height: 220px;
  overflow: hidden;
}

.feature-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-item:hover .feature-item__img img {
  transform: scale(1.05);
}

.feature-item__body {
  padding: 28px 24px;
}

.feature-item__body h3 {
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-item__body p {
  font-size: 13px;
  color: var(--txt2);
  line-height: 1.75;
}

.amenity-list {
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.08);
}

.amenity-list__title {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.amenity-list__items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.amenity-list__items span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  letter-spacing: 0.04em;
}

/* Plan Tabs */
.plan-tabs {
  display: flex;
  gap: 0;
  border: 1px solid rgba(12, 24, 36, 0.1);
  width: fit-content;
}

.plan-tab {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 32px;
  background: transparent;
  color: var(--txt2);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.plan-tab.active {
  background: var(--navy);
  color: var(--gold);
}

.plan-pane {
  display: none;
  margin-top: 32px;
}

.plan-pane.active {
  display: block;
}

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

.plan-card {
  border: 1px solid rgba(12, 24, 36, 0.09);
  overflow: hidden;
}

.plan-card__img img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  background: #fff;
  padding: 16px;
}

.plan-card__info {
  padding: 20px 22px;
  display: flex;
  /* flex-direction: column; */
  gap: 6px;
  align-items: flex-start;
  justify-content: space-between;
}

.plan-card__type {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--navy);
}

.plan-card__area {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 10px;
}

/* Location */
.location-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.location-split__img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.location-split__info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.location-point {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(12, 24, 36, 0.07);
}

.location-point__icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.location-point strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.location-point p {
  font-size: 13px;
  color: var(--txt2);
}

/* ── GALLERY PAGE ─────────────────────────────────────────────── */
.gal-filter {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid rgba(12, 24, 36, 0.1);
  width: fit-content;
  margin: 0 auto;
}

.gal-filter-btn {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 28px;
  background: transparent;
  color: var(--txt2);
  border: none;
  border-right: 1px solid rgba(12, 24, 36, 0.1);
  cursor: pointer;
  transition: all var(--transition);
}

.gal-filter-btn:last-child {
  border-right: none;
}

.gal-filter-btn:hover {
  background: rgba(12, 24, 36, 0.06);
  color: var(--navy);
  border-color: rgba(12, 24, 36, 0.2);
}

.gal-filter-btn.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

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

.gal-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--navy2);
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gal-item:hover img {
  transform: scale(1.06);
}

.gal-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 36, 0);
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
}

.gal-item:hover .gal-item__overlay {
  background: rgba(12, 24, 36, 0.48);
}

.gal-item__overlay svg {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.25s ease;
}

.gal-item:hover .gal-item__overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lb-open {
  overflow: hidden;
}

.lb-fade {
  opacity: 0;
  transition: opacity 0.18s ease;
}

.lightbox__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 90vw;
}

.lightbox__img {
  max-width: 86vw;
  max-height: 84vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.lightbox__caption {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 16px;
  text-transform: uppercase;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.lightbox__close:hover {
  color: var(--gold);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.45);
  padding: 24px;
  transition: color var(--transition);
}

.lightbox__prev {
  left: 0;
}

.lightbox__next {
  right: 0;
}

.lightbox__nav:hover {
  color: var(--gold);
}

/* ── CONTACT PAGE ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.contact-info {
  padding: 64px;
}

.contact-info__items {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
}

.ci-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(12, 24, 36, 0.07);
}

.ci-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid rgba(12, 24, 36, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.ci-item strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.ci-item p {
  font-size: 13px;
  color: var(--txt2);
  line-height: 1.6;
}

.ci-item a {
  color: var(--txt2);
  transition: color var(--transition);
}

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

.contact-info__rera {
  border-top: 1px solid rgba(12, 24, 36, 0.07);
  padding-top: 24px;
}

.rera-box {
  padding: 20px;
  background: var(--offwhite);
  border: 1px solid rgba(12, 24, 36, 0.07);
  font-size: 12px;
  line-height: 1.8;
  color: var(--txt2);
  margin-top: 12px;
}

.rera-box strong {
  color: var(--navy);
}

.rera-disclaimer {
  font-size: 11px;
  color: var(--txt3);
  margin-top: 8px;
}

.contact-form-wrap {
  background: var(--offwhite);
  padding: 64px;
  border-left: 1px solid rgba(12, 24, 36, 0.07);
}

.cform {
  display: flex;
  flex-direction: column;
}

.cform__title {
  font-family: var(--serif);
  font-size: 26px;
  margin-bottom: 28px;
}

.cform__row {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cform__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cform__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.cform__label {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--txt3);
  margin-bottom: 8px;
}

.cform__label span {
  color: var(--gold);
}

.cform__input,
.cform__select,
.cform__textarea {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--navy);
  padding: 13px 16px;
  border: 1px solid rgba(12, 24, 36, 0.15);
  background: #fff;
  outline: none;
  border-radius: 0;
  transition: border var(--transition);
}

.cform__input::placeholder,
.cform__textarea::placeholder {
  color: rgba(12, 24, 36, 0.3);
}

.cform__input:focus,
.cform__select:focus,
.cform__textarea:focus {
  border-color: var(--navy);
  background: #fff;
}

.cform__select {
  appearance: none;
  cursor: pointer;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230C1824' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right 16px center;
}

.cform__textarea {
  resize: vertical;
  min-height: 120px;
}

.cform__feedback {
  font-size: 13px;
  color: #2d7a4a;
  background: rgba(45, 122, 74, 0.08);
  border: 1px solid rgba(45, 122, 74, 0.2);
  padding: 12px 16px;
  margin-top: 12px;
}

.cform__feedback.success {
  color: #2d7a4a;
}

.cform__response-note {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--txt3);
  text-align: center;
  margin-top: 14px;
}

/* Map */
.map-section {
  height: 420px;
}

.map-section__inner {
  height: 100%;
  width: 100%;
}

.map-section__inner iframe {
  display: block;
}

/* ── RESPONSIVE UPDATES ───────────────────────────────────────── */
@media (max-width: 1023px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-split--reverse {
    direction: ltr;
  }

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

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

  .proj-overview {
    grid-template-columns: 1fr;
  }

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

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

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

  .location-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-preview {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .contact-form-wrap {
    border-left: none;
    border-top: 1px solid rgba(12, 24, 36, 0.07);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .cta-strip__inner {
    flex-direction: column;
    text-align: left;
  }

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

@media (max-width: 767px) {
  .nav__menu {
    display: none;
    position: fixed;     /* fixed to viewport — safe now backdrop-filter lives on .nav::before */
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 24, 36, 0.99);
    z-index: 490;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .nav__menu.is-open {
    display: flex;
  }

  .nav__menu .nav__link {
    font-family: var(--serif);
    font-size: 28px;
    letter-spacing: 0;
    text-transform: none;
    color: #ffffff;          /* full white for readability */
  }

  .nav__menu .nav__link:hover {
    color: var(--gold);
  }

  .nav__menu .nav__link.active {
    color: var(--gold);
  }

  .nav__menu .nav__link--cta {
    border: none;
    padding: 0;
    color: var(--gold);
  }

  .nav__hamburger {
    display: flex;
    padding: 14px 8px 14px 16px;  /* min 44px tap target for mobile */
  }

  .hero__title {
    font-size: clamp(40px, 10vw, 60px);
  }

  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__ctas .btn {
    justify-content: center;
  }

  .gallery-preview {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

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

  .contact-info,
  .contact-form-wrap {
    padding: 40px 24px;
  }

  .cform__row--2 {
    grid-template-columns: 1fr;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hide-mobile {
    display: none;
  }

  .cta-strip {
    padding: 60px var(--pad-x);
  }

  .page-hero {
    min-height: 280px;
  }

  .intro-grid__image img {
    height: 260px;
  }
}

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

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

  .gallery-preview {
    grid-template-columns: 1fr;
  }

  .lightbox__nav {
    display: none;
  }
}

/* ================================================================
   NEW DESIGN SYSTEM — Components from original Grace design
   ================================================================ */

/* ── NAV LOGO IMAGE ───────────────────────────────────────────── */
.nav__logo-img {
  height: 96px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.nav__brand {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0;
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 2px;
}

.nav__brand-g {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  display: block;
}

.nav__brand-d {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  display: block;
}

/* ── HERO 2 (two-column original design) ─────────────────────── */
.hero2 {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}

.hero2__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 96px) clamp(24px, 5vw, 64px) clamp(48px, 8vw, 96px) var(--pad-x);
  position: relative;
  z-index: 2;
}

.hero2__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 7px 14px;
  margin-bottom: 28px;
  width: fit-content;
}

.hero2__pill span {
  width: 20px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.hero2__h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
}

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

.hero2__sub {
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero2__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero2__stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  padding-top: 36px;
}

.hero2__stat {
  display: flex;
  flex-direction: column;
  padding-right: 36px;
}

.hero2__stat:not(:first-child) {
  padding-left: 36px;
  border-left: 1px solid rgba(201, 168, 76, 0.1);
}

.hero2__stat-n {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero2__stat-l {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 5px;
}

.hero2__stat-note {
  display: block;
  font-size: 7px;
  letter-spacing: 0.12em;
  color: rgba(201, 168, 76, 0.4);
  text-transform: none;
  margin-top: 3px;
}

/* ── HERO RIGHT — single image with overlay ──────────────────── */
.hero2__right {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background image — 60% opacity, gentle zoom on hover */
.hero2__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.60;
  pointer-events: none;
  z-index: 1;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}

.hero2__right:hover .hero2__bg-img {
  transform: scale(1.04);
  opacity: 0.45;
}

/* Geometric SVG sits above image */
.hero2__geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

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

/* ── INFO CARD — pinned bottom-left, hidden until hover ──────── */
.hero2__featured {
  position: absolute;
  bottom: 36px;
  left: 36px;
  z-index: 3;
  width: 300px;
  max-width: calc(100% - 56px);

  background: rgba(10, 18, 34, 0.92);
  border: 1px solid rgba(201, 168, 76, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 22px 24px 18px;
  cursor: pointer;

  /* Hidden by default — sitting 16px below final position */
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  will-change: transform, opacity;

  transition: opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* Reveal on hover — fade in + float up */
.hero2__right:hover .hero2__featured {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Card self-hover glow */
.hero2__right:hover .hero2__featured:hover {
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(201, 168, 76, 0.45);
  border-color: rgba(201, 168, 76, 0.5);
}

/* Mobile — card always visible in flow */
@media (hover: none) {
  .hero2__featured {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: auto !important;
    max-width: 380px !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    margin: 0 auto;
  }
}

.hero2__feat-chip {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.hero2__feat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero2__feat-name {
  font-family: var(--serif);
  font-size: 26px;
  color: #fff;
  margin-bottom: 4px;
}

.hero2__feat-loc {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 18px;
}

.hero2__feat-line {
  height: 1px;
  background: rgba(201, 168, 76, 0.18);
  margin-bottom: 18px;
}

.hero2__feat-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero2__feat-from {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.5);
  margin-bottom: 4px;
}

.hero2__feat-price {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold);
}

.hero2__feat-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.hero2__feat-tag {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.38);
}

.hero2__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.2);
  z-index: 4;
  animation: bob 2.2s ease-in-out infinite;
}

.hero2__scroll-line {
  width: 1px;
  height: 30px;
  background: rgba(201, 168, 76, 0.3);
}

/* ── GOLD TICKER ──────────────────────────────────────────────── */
.ticker-gold {
  background: var(--gold);
  overflow: hidden;
  height: 46px;
  display: flex;
  align-items: center;
}

.ticker-gold__wrap {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 36s linear infinite;
}

.ticker-gold__wrap:hover {
  animation-play-state: paused;
}

.ticker-gold__item {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.ticker-gold__sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--navy2);
  opacity: 0.5;
}

/* ── EYEBROW 2 & SECTION H2 ───────────────────────────────────── */
.eyebrow2 {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 18px;
  display: block;
}

.eyebrow2--gold {
  color: var(--gold);
}

.eyebrow2--dark {
  color: var(--txt3);
}

.section-h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 24px;
}

.section-h2--light {
  color: #fff;
}

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

/* ── ABOUT2 (navy two-column) ─────────────────────────────────── */
.about2 {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: var(--pad-section) var(--pad-x);
  max-width: 100%;
}

.about2__left {}

.about2__body {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 18px;
}

.about2__certs {
  display: flex;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  margin: 28px 0;
}

.about2__cert {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about2__cert-num {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.about2__cert-lbl {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.about2__pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 4px;
}

.about2__pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about2__pillar-icon {
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
  text-align: center;
}

.about2__pillar-title {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 3px;
}

.about2__pillar-body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  font-weight: 300;
}

.about2__right {}

/* ── JCARD (founder/leader card) ─────────────────────────────── */
.jcard {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.16);
  padding: 32px 28px;
  margin-top: 8px;
}

.jcard__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.jcard__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold) 0%, #A07830 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy);
  font-weight: 600;
}

.jcard__name {
  font-family: var(--serif);
  font-size: 22px;
  color: #fff;
  line-height: 1.1;
}

.jcard__title {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.jcard__body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 14px;
}

.jcard__quote {
  border-left: 2px solid rgba(201, 168, 76, 0.3);
  padding: 14px 18px;
  margin: 20px 0;
  background: rgba(201, 168, 76, 0.04);
}

.jcard__quote p {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
}

.jcard__quote-attr {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.5);
  margin-top: 10px;
}

.jcard__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  margin-top: 20px;
}

.jcard__fact {
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  border-right: 1px solid rgba(201, 168, 76, 0.06);
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-right: 16px;
  padding-left: 4px;
}

.jcard__fact:nth-child(even) {
  border-right: none;
  padding-left: 16px;
  padding-right: 4px;
}

.jcard__fact-num {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold);
  line-height: 1;
}

.jcard__fact-lbl {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

.jcard__linkedin {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.6);
  margin-top: 18px;
  transition: color var(--transition);
}

.jcard__linkedin:hover {
  color: var(--gold);
}

.jcard__linkedin svg {
  flex-shrink: 0;
}

/* ── VALUES 2 (navy 4-card grid) ─────────────────────────────── */
.values2 {
  background: linear-gradient(160deg, var(--navy2) 0%, var(--navy) 100%);
  padding: var(--pad-section) var(--pad-x);
}

.values2__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}

.values2__intro {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
  font-weight: 300;
  align-self: end;
}

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

.vcard2 {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.08);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background var(--transition);
}

.vcard2:hover {
  background: rgba(255, 255, 255, 0.06);
}

.vcard2__num {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.26em;
  color: rgba(201, 168, 76, 0.35);
  margin-bottom: 20px;
}

.vcard2__line {
  width: 28px;
  height: 1px;
  background: rgba(201, 168, 76, 0.3);
  margin-bottom: 20px;
}

.vcard2__title {
  font-family: var(--serif);
  font-size: 20px;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.vcard2__body {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
  font-weight: 300;
}

/* ── HIGHLIGHTS GRID (Why Grace / testimonials) ───────────────── */
.hlgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hlcard {
  background: var(--white);
  border: 1px solid rgba(12, 24, 36, 0.07);
  padding: 36px 32px;
  position: relative;
}

.hlcard__quote {
  font-family: var(--serif);
  font-size: 60px;
  color: var(--gold);
  line-height: 0.6;
  margin-bottom: 20px;
  opacity: 0.4;
}

.hlcard__text {
  font-size: 16px;
  color: var(--txt);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 24px;
  font-style: italic;
}

.hlcard__name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.hlcard__role {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── FOOTER LOGO ──────────────────────────────────────────────── */
.footer__logo-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.9;
}

.footer__brand-addr {
  font-style: normal;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.8;
  margin-top: 14px;
  margin-bottom: 4px;
  font-weight: 300;
  text-align: left;
}

/* (founder-detail styles moved below) */

/* ── GALLERY FILTER TAB COLORS ────────────────────────────────── */
.gal-filter-btn {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 24px;
  cursor: pointer;
  background: transparent;
  color: var(--txt3);
  border: 1px solid rgba(12, 24, 36, 0.12);
  transition: all var(--transition);
}

.gal-filter-btn:hover {
  background: rgba(12, 24, 36, 0.06);
  color: var(--navy);
  border-color: rgba(12, 24, 36, 0.2);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.gal-filter-btn.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
  box-shadow: inset 0 -2px 0 var(--gold);
}

/* ── CTA STRIP ────────────────────────────────────────────────── */
.cta-strip {
  background: var(--navy);
  padding: var(--pad-section) var(--pad-x);
}

.cta-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-strip__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── GALLERY PREVIEW ──────────────────────────────────────────── */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  height: 280px;
}

.gallery-preview__item {
  background-size: cover;
  background-position: center;
  transition: opacity var(--transition);
}

.gallery-preview__item:hover {
  opacity: 0.85;
}

/* ── FOUNDER DETAIL (3-column about page) ────────────────────── */
.founder-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.founder-detail__col {}

.founder-detail__h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

/* ── COMPLETED PROJECTS GRID ─────────────────────────────────── */
.completed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.comp-card {
  border: 1px solid rgba(12, 24, 36, 0.09);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.comp-card:hover {
  box-shadow: 0 8px 40px rgba(12, 24, 36, 0.1);
}

.comp-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.comp-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.comp-card:hover .comp-card__img-wrap img {
  transform: scale(1.04);
}

.comp-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: #2d7a4a;
  color: #fff;
  padding: 5px 12px;
}

.comp-card__body {
  padding: 24px 24px 28px;
}

.comp-card__loc {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.comp-card__name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.15;
}

.comp-card__desc {
  font-size: 15px;
  color: var(--txt);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 18px;
}

.comp-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.comp-card__tags span {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--txt3);
  border: 1px solid rgba(12, 24, 36, 0.1);
  padding: 4px 10px;
}

.comp-card__tag--delivered {
  border-color: rgba(45, 122, 74, 0.3) !important;
  color: #2d7a4a !important;
  background: rgba(45, 122, 74, 0.06);
}

/* ── PROJECT PHASES GRID ──────────────────────────────────────── */
.phases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.phase-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(201, 168, 76, 0.18);
  padding: 40px 40px 36px;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.phase-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 168, 76, 0.38);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.phase-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 28px;
}

.phase-card__badge--delivered {
  background: rgba(45, 122, 74, 0.18);
  color: #6fcf97;
  border: 1px solid rgba(45, 122, 74, 0.35);
}

.phase-card__badge--oc {
  background: rgba(201, 168, 76, 0.14);
  color: var(--gold);
  border: 1px solid var(--gold-line);
}

.phase-card__num {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 8px;
}

.phase-card__title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.phase-card__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 32px;
}

.phase-card__facts {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.phase-card__fact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.phase-card__fact-lbl {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.phase-card__fact-val {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.01em;
}

/* ── FORM HONEYPOT ────────────────────────────────────────────── */
.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

/* ── CONTACT PAGE (new layout) ───────────────────────────────── */
.contact-intro-strip {
  background: var(--navy2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  padding: 0;
}

.contact-intro-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.cis-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 24px;
  border-right: 1px solid rgba(201, 168, 76, 0.08);
  transition: background var(--transition);
}

.cis-item:last-child {
  border-right: none;
}

.cis-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.cis-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.cis-item__label {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.45);
  margin-bottom: 6px;
}

.cis-item__val {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.cis-item__val a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.cis-item__val a:hover {
  color: var(--gold);
}

/* Contact main grid */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-addresses {}

.caddr-card {
  border: 1px solid rgba(12, 24, 36, 0.1);
  padding: 28px;
  margin-bottom: 24px;
  background: var(--white);
  transition: border-color var(--transition);
}

.caddr-card:hover {
  border-color: rgba(12, 24, 36, 0.2);
}

.caddr-card--gold {
  border-color: rgba(201, 168, 76, 0.2);
  background: var(--gold-pale);
}

.caddr-card__badge {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--txt3);
  margin-bottom: 10px;
  display: block;
}

.caddr-card__badge--gold {
  color: var(--gold);
}

.caddr-card__title {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}

.caddr-card__addr {
  font-style: normal;
  font-size: 13px;
  color: var(--txt2);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 14px;
}

.caddr-card__dir {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid rgba(12, 24, 36, 0.2);
  padding-bottom: 1px;
  transition: color var(--transition);
}

.caddr-card__dir:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.caddr-card__dir--gold {
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.4);
}

.caddr-card__dir--gold:hover {
  color: #A07830;
}

/* RERA box */
.crera-box {
  border: 1px solid rgba(12, 24, 36, 0.09);
  padding: 24px;
  background: var(--offwhite);
  margin-top: 8px;
}

.crera-row {
  font-size: 12px;
  color: var(--navy);
  line-height: 1.9;
  margin-bottom: 4px;
}

.crera-row strong {
  font-weight: 600;
  color: var(--txt);
}

.crera-disclaimer {
  font-size: 11px;
  color: var(--txt3);
  line-height: 1.7;
  margin-top: 10px;
  font-weight: 300;
}

.price-sub {
  display: block;
  font-size: 12px;
  margin-top: 0;
  /* remove gap */
  line-height: 1;
  /* tighten spacing */
}

/* ── RESPONSIVE (new components) ─────────────────────────────── */
@media (max-width: 1023px) {
  .hero2 {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero2__left {
    padding: 80px var(--pad-x) 40px;
  }

  .hero2__right {
    min-height: 380px;
  }

  .about2 {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .values2__top {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .hlgrid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .founder-detail__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .gallery-preview {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .contact-intro-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cis-item:nth-child(even) {
    border-right: none;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .founder-detail {
    grid-template-columns: 1fr 1fr;
  }

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

  .phases-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .completed-grid {
    grid-template-columns: 1fr;
  }

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

  .phase-card {
    padding: 28px 24px 24px;
  }
}

@media (max-width: 767px) {
  .hero2__h1 {
    font-size: clamp(38px, 10vw, 54px);
  }

  .hero2__stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero2__stat {
    border-left: none !important;
    padding-left: 0 !important;
    padding-right: 24px;
  }

  .about2__certs {
    flex-direction: column;
    gap: 20px;
  }

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

  .founder-detail__grid {
    grid-template-columns: 1fr;
  }

  /* gallery preview — let the item heights drive layout on mobile */
  .gallery-preview {
    height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .gallery-preview__item {
    height: 150px;
  }

  .cta-strip__inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .jcard__fact:nth-child(even) {
    border-right: none;
    padding-left: 4px;
  }

  .jcard__fact {
    border-right: none;
  }

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

  .founder-detail {
    grid-template-columns: 1fr;
  }

  .contact-intro-strip__grid {
    grid-template-columns: 1fr;   /* single column — fully readable on small screens */
  }

  .cis-item {
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    padding: 18px 20px;
    gap: 16px;
  }

  .cis-item:nth-child(even) {
    border-right: none;           /* reset the tablet even-item rule */
  }

  .cis-item:last-child {
    border-bottom: none;
  }

  .cis-item__val {
    font-size: 13px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PROJECT PAGE — mobile layout fixes
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* Phases: stack to 1 column */
  .phases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Project gallery thumbs: stay 3-col but shorter */
  .proj-gallery-thumbs img {
    height: 80px;
  }

  /* Quick-facts table: stretch to full width, 2 cols is fine */
  .proj-quick-facts {
    font-size: 13px;
  }

  .qf-item {
    padding: 12px 14px;
  }

  /* Plan tabs: fill width, wrap if needed */
  .plan-tabs {
    width: 100%;
    flex-wrap: wrap;
  }

  .plan-tab {
    flex: 1 1 auto;
    text-align: center;
    padding: 10px 16px;
    font-size: 9px;
  }

  /* Plan cards: single column, reduced image height */
  .plan-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .plan-card__img img {
    height: 200px;
  }

  /* Amenity list: tighter padding */
  .amenity-list {
    padding: 20px 16px;
  }

  .amenity-list__items span {
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE CONSOLIDATION — overrides and clean-ups  ≤ 767px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* ── Section breathing room ───────────────────────────────── */
  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .cta-strip {
    padding: 52px var(--pad-x);
  }

  /* ── Page-hero height: enough to breathe, not swamp the screen */
  .page-hero {
    min-height: 240px;
  }

  /* ── Contact intro strip: readable text on mobile ─────────── */
  .cis-item__val {
    color: rgba(255, 255, 255, 0.8);
  }

  .cis-item__val a {
    color: rgba(255, 255, 255, 0.8);
  }

  /* ── Contact form: full padding, stacked fields ───────────── */
  .contact-form-wrap {
    padding: 40px 20px;
  }

  .cform__row--2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* ── Footer: tighten up on small screens ──────────────────── */
  .footer {
    padding: 48px var(--pad-x) 28px;
  }

  /* ── Gallery filter tabs: wrap cleanly ───────────────────── */
  .gal-filter {
    gap: 8px;
    flex-wrap: wrap;
  }

  /* ── Explore Full Gallery button: ensure visibility ─────── */
  .btn--ghost {
    color: var(--navy);
    border-color: rgba(12, 24, 36, 0.35);
    padding: 14px 28px;
  }

  /* ── Map section: proper height on mobile ───────────────── */
  .map-section__inner {
    height: 260px;
  }

  /* ── Nav logo: keep it compact on mobile ─────────────────── */
  .nav__logo-img {
    height: 36px !important;
    width: auto;
  }
}