/* ====================================================================
   CENTRO MAR — Main Stylesheet
   Premium Beachfront Development · Angola
   ==================================================================== */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* === CUSTOM PROPERTIES === */
:root {
  --navy:       #0C1C2C;
  --navy-mid:   #1A3448;
  --gold:       #B8965A;
  --gold-light: #D4B278;
  --gold-pale:  #EDD9B4;
  --sand:       #EDE0CD;
  --warm-white: #F8F4EE;
  --white:      #FFFFFF;
  --text-dark:  #1C1C1C;
  --text-body:  #3C3C3C;
  --text-muted: #7A7A7A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --nav-h:       80px;
  --max-w:       1320px;
  --pad:         2rem;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t:    0.45s var(--ease);
}

/* === BASE === */
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-body);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  color: var(--text-dark);
}
em { font-style: italic; }

.h-xl {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.04;
}
.h-lg {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.h-md {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 400;
}
.h-sm {
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  font-weight: 400;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.2rem;
}

.body-text {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--text-body);
}
.body-text + .body-text { margin-top: 1.1em; }

/* === UTILITIES === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section { padding: 7rem 0; }
.tc { text-align: center; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.95rem 2.4rem;
  border: 1px solid transparent;
  transition: var(--t);
  cursor: pointer;
}
.btn--gold  { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn--dark  { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--dark:hover { background: var(--navy); color: var(--white); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn--sm { padding: 0.65rem 1.5rem; font-size: 0.66rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--t);
}
.link-arrow::after { content: '→'; font-size: 1rem; }
.link-arrow:hover { gap: 0.9rem; }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  transition: background var(--t), box-shadow var(--t);
}
.nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 40px rgba(0,0,0,0.25);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--white);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav__links a {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color var(--t);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a.active { color: var(--gold); }
.nav__cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--gold);
  transition: background var(--t), border-color var(--t) !important;
}
.nav__cta:hover { background: var(--gold-light) !important; border-color: var(--gold-light) !important; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--t);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* === HERO (home) === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,28,44,.3) 0%, rgba(12,28,44,.55) 50%, rgba(12,28,44,.72) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 var(--pad);
  max-width: 960px;
}
.hero__eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 1.4rem;
  display: block;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 12vw, 10rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.82);
  margin-bottom: 3rem;
  line-height: 1.5;
}
.hero__actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,.5);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2.2s ease infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  50.1%{ transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* === PAGE HERO (sub-pages) === */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4.5rem;
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,28,44,.18) 0%, rgba(12,28,44,.68) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.page-hero__content .eyebrow { color: var(--gold-pale); }
.page-hero__content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.06;
}

/* === INTRO SECTION === */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}
.intro__text h2 { margin-bottom: 2rem; margin-top: 0.4rem; }
.intro__text .body-text { margin-bottom: 1.2rem; }
.intro__text .link-arrow { margin-top: 2rem; }
.intro__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2rem;
}
.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: 160px;
  line-height: 1.5;
}

/* === HIGHLIGHTS === */
.highlights { background: var(--navy); }
.highlights .eyebrow { color: var(--gold-pale); }
.highlights h2 { color: var(--white); margin: 0.4rem 0 4rem; }
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.h-card {
  border-top: 1px solid rgba(184,150,90,.25);
  padding: 2.5rem 2rem 2.5rem 0;
  margin-right: 2rem;
}
.h-card:last-child { margin-right: 0; padding-right: 0; }
.h-card__dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; margin-bottom: 1.5rem; }
.h-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}
.h-card p { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,.55); }

/* === SPLIT SECTIONS === */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 72vh;
  padding: 0;
}
.split__img { position: relative; overflow: hidden; }
.split__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.split__img:hover img { transform: scale(1.04); }
.split__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem;
}
.split__body.bg-navy { background: var(--navy); }
.split__body.bg-warm  { background: var(--warm-white); }
.split__body.bg-sand  { background: var(--sand); }
.split__body.bg-navy .eyebrow { color: var(--gold-pale); }
.split__body.bg-navy h2  { color: var(--white); }
.split__body.bg-navy .body-text { color: rgba(255,255,255,.72); }
.split__body h2 { margin: 0.4rem 0 1.8rem; }
.split__body .body-text { margin-bottom: 1.2rem; }
.split__body .body-text + .body-text { margin-top: 0; }

/* === ZONE GRID === */
.zone-grid-section { background: var(--sand); }
.zone-grid-section h2 { margin: 0.4rem 0 4rem; }
.zone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(184,150,90,.2);
  margin-bottom: 4rem;
}
.z-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(184,150,90,.2);
  transition: background var(--t);
}
.z-card:hover { background: rgba(255,255,255,.65); }
.z-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 300;
  color: rgba(184,150,90,.28);
  line-height: 1;
  margin-bottom: 1rem;
}
.z-card h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; margin-bottom: 0.8rem; }
.z-card p  { font-size: 0.87rem; line-height: 1.78; color: var(--text-muted); }

/* === GALLERY PREVIEW === */
.gallery-preview h2 { margin: 0.4rem 0 4rem; }
.g-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}
.g-item {
  position: relative;
  overflow: hidden;
  display: block;
}
.g-item--portrait { aspect-ratio: 3 / 4; }
.g-item--landscape { aspect-ratio: 4 / 3; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.g-item:hover img { transform: scale(1.07); }
.g-item__cap {
  position: absolute;
  inset: 0;
  background: rgba(12,28,44,.42);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
}
.g-item:hover .g-item__cap { opacity: 1; }
.g-item__cap span {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.55);
  padding-bottom: 2px;
}

/* === AMENITIES LIST === */
.a-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.8rem; }
.a-list li {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,.72);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.6;
}
.a-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 1px;
  background: var(--gold);
}

/* === INVEST TEASER === */
.invest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}
.i-points { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; margin-top: 1rem; }
.i-points li {
  font-size: 0.9rem;
  color: var(--text-body);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.65;
}
.i-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 1px;
  background: var(--gold);
}
.invest-img { overflow: hidden; aspect-ratio: 4 / 5; }
.invest-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.invest-img:hover img { transform: scale(1.04); }

/* === CTA BANNER === */
.cta-banner {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  padding: 7rem 0;
  overflow: hidden;
}
.cta-banner__bg { position: absolute; inset: 0; }
.cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12,28,44,.88) 0%, rgba(12,28,44,.5) 100%);
}
.cta-banner__inner {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
}
.cta-banner__inner .eyebrow { color: var(--gold-pale); }
.cta-banner__inner h2 { color: var(--white); margin: 0.4rem 0 1.8rem; }
.cta-banner__inner .body-text { color: rgba(255,255,255,.78); margin-bottom: 2.8rem; }
.cta-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* === FOOTER === */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 6rem 0 3rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 3rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.footer__tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.footer__loc {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__col a { font-size: 0.88rem; color: rgba(255,255,255,.52); transition: color var(--t); }
.footer__col a:hover { color: var(--gold); }
.footer__col p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.4rem; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.73rem;
  color: rgba(255,255,255,.3);
  letter-spacing: 0.04em;
}

/* === ABOUT PAGE === */
.about-pillars { background: var(--sand); }
.about-pillars h2 { margin: 0.4rem 0 4rem; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3.5rem; }
.pillar { border-top: 1px solid rgba(184,150,90,.35); padding-top: 2rem; }
.pillar h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.9rem; }
.pillar p  { font-size: 0.88rem; line-height: 1.82; color: var(--text-muted); }
.about-quote { background: var(--navy); }
blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255,255,255,.88);
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}
blockquote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2rem;
}

/* === RESIDENCES PAGE === */
.res-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  padding: 0;
}
.res-type.flip { direction: rtl; }
.res-type.flip > * { direction: ltr; }
.res-type__img { overflow: hidden; }
.res-type__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.res-type__img:hover img { transform: scale(1.04); }
.res-type__body {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.res-type__body.dark { background: var(--navy); }
.res-type__body.dark .eyebrow { color: var(--gold-pale); }
.res-type__body.dark h2   { color: var(--white); }
.res-type__body.dark .body-text { color: rgba(255,255,255,.72); }
.res-type__body h2 { margin: 0.4rem 0 1.6rem; }
.res-type__body .body-text { margin-bottom: 1.2rem; }

.specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2.5rem 0; padding: 2rem 0; border-top: 1px solid rgba(184,150,90,.22); border-bottom: 1px solid rgba(184,150,90,.22); }
.spec__v { display: block; font-family: var(--font-display); font-size: 1.8rem; font-weight: 300; color: var(--gold); margin-bottom: 0.3rem; }
.spec__l { font-size: 0.7rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-muted); }

.feat-list { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.5rem; }
.feat-list li {
  font-size: 0.88rem;
  color: var(--text-body);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.6;
}
.feat-list.light li { color: rgba(255,255,255,.68); }
.feat-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 1px;
  background: var(--gold);
}

/* === AMENITIES PAGE === */
.amen-section { padding: 6rem 0; }
.amen-section:nth-child(even) { background: var(--sand); }
.amen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.amen-grid.flip .amen-img { order: 2; }
.amen-grid.flip .amen-body { order: 1; }
.amen-img { overflow: hidden; aspect-ratio: 4 / 3; }
.amen-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.amen-img:hover img { transform: scale(1.04); }
.amen-body h2 { margin: 0.4rem 0 1.6rem; }
.amen-body .body-text { margin-bottom: 1.2rem; }
.amen-feats { display: flex; flex-direction: column; gap: 0.55rem; margin-top: 1.5rem; }
.amen-feats li { font-size: 0.88rem; padding-left: 1.2rem; position: relative; color: var(--text-body); }
.amen-feats li::before { content: ''; position: absolute; left: 0; top: 0.65em; width: 5px; height: 1px; background: var(--gold); }

/* === MASTERPLAN PAGE === */
.mp-overview { background: var(--sand); padding: 5rem 0; }
.mp-overview__img { max-height: 560px; width: 100%; object-fit: cover; object-position: center; }
.mp-zones { padding: 6rem 0; }
.mp-zone {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 3rem;
  padding: 4.5rem 0;
  border-bottom: 1px solid rgba(184,150,90,.15);
  align-items: start;
}
.mp-zone:last-child { border-bottom: none; }
.mp-zone__num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(184,150,90,.22);
  line-height: 1;
}
.mp-zone__body h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; margin-bottom: 1rem; }
.mp-zone__body .eyebrow { margin-bottom: 0.8rem; }
.mp-zone__body p { font-size: 0.95rem; line-height: 1.85; color: var(--text-body); max-width: 700px; }
.mp-phase { background: var(--navy); }
.mp-phase h2 { color: var(--white); margin: 0.4rem 0 3.5rem; }
.mp-phase .eyebrow { color: var(--gold-pale); }
.phases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.phase { border-top: 1px solid rgba(255,255,255,.12); padding-top: 2rem; }
.phase__n { font-family: var(--font-display); font-size: 3rem; font-weight: 300; color: rgba(184,150,90,.35); display: block; margin-bottom: 0.8rem; line-height: 1; }
.phase h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; color: var(--white); margin-bottom: 0.8rem; }
.phase p  { font-size: 0.87rem; line-height: 1.8; color: rgba(255,255,255,.5); }

/* === GALLERY PAGE === */
.gallery-page { padding: 5rem 0; }
.gallery-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(184,150,90,.3);
  color: var(--text-muted);
  transition: var(--t);
  background: transparent;
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.g-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.g-grid-3 .g-item { aspect-ratio: 4 / 3; }

/* === LOCATION PAGE === */
.loc-facts { background: var(--navy); }
.loc-facts .eyebrow { color: var(--gold-pale); }
.loc-facts h2 { color: var(--white); margin: 0.4rem 0 4rem; }
.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.fact { border-top: 1px solid rgba(255,255,255,.1); padding-top: 2rem; }
.fact__v { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; color: var(--gold); display: block; margin-bottom: 0.4rem; }
.fact__l { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.5); display: block; margin-bottom: 0.8rem; }
.fact p  { font-size: 0.87rem; line-height: 1.75; color: rgba(255,255,255,.45); }
.map-placeholder {
  background: var(--sand);
  padding: 5rem 0;
}
.map-box {
  width: 100%;
  height: 420px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(0,0,0,.08);
}

/* === INVESTMENT PAGE === */
.inv-why { background: var(--sand); }
.inv-why h2 { margin: 0.4rem 0 4rem; }
.reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.reason {
  background: var(--white);
  padding: 2.5rem;
}
.reason__n { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; color: rgba(184,150,90,.35); display: block; margin-bottom: 1rem; line-height: 1; }
.reason h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; margin-bottom: 0.8rem; }
.reason p  { font-size: 0.87rem; line-height: 1.82; color: var(--text-muted); }
.inv-disclaimer { background: var(--navy); }
.inv-disclaimer .eyebrow { color: var(--gold-pale); }
.inv-disclaimer p { color: rgba(255,255,255,.58); font-size: 0.88rem; line-height: 1.8; max-width: 760px; }

/* === CONTACT PAGE === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 7rem; align-items: start; }
.contact-info h2 { margin: 0.4rem 0 1.8rem; }
.contact-info .body-text { margin-bottom: 2.5rem; }
.c-detail { margin-bottom: 2rem; }
.c-detail__lbl { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.3rem; }
.c-detail__val { font-size: 0.95rem; color: var(--text-dark); }
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: var(--white);
  padding: 0.85rem 1.8rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background var(--t);
  margin-top: 2rem;
}
.wa-btn:hover { background: #1da851; }

.contact-form { padding: 3.5rem; background: var(--white); }
.contact-form h3 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 400; margin-bottom: 2.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1.4rem; }
.fg label { display: block; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.17em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.45rem; }
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 0.82rem 1rem;
  border: 1px solid rgba(0,0,0,.13);
  background: var(--warm-white);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color var(--t);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.8rem; line-height: 1.6; }
.form-success { padding: 1rem 1.2rem; background: rgba(184,150,90,.1); border-left: 3px solid var(--gold); color: var(--text-dark); font-size: 0.88rem; margin-top: 1rem; display: none; }

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lb__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.93); }
.lb__wrap { position: relative; z-index: 1; max-width: 90vw; }
.lb__img { max-width: 90vw; max-height: 88vh; object-fit: contain; display: block; }
.lb__close { position: absolute; top: -2.5rem; right: 0; color: rgba(255,255,255,.7); font-size: 1.1rem; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; transition: color var(--t); }
.lb__close:hover { color: var(--white); }
.lb__prev, .lb__next { position: fixed; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,.7); font-size: 1.8rem; width: 50px; height: 80px; display: flex; align-items: center; justify-content: center; transition: color var(--t); z-index: 2; }
.lb__prev { left: 1.5rem; }
.lb__next { right: 1.5rem; }
.lb__prev:hover, .lb__next:hover { color: var(--white); }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

.highlights__grid .reveal:nth-child(2),
.zone-grid .reveal:nth-child(2),
.g-grid-4 .reveal:nth-child(2),
.pillars-grid .reveal:nth-child(2),
.facts-grid .reveal:nth-child(2),
.reasons-grid .reveal:nth-child(2)
{ transition-delay: .1s; }

.highlights__grid .reveal:nth-child(3),
.zone-grid .reveal:nth-child(3),
.g-grid-4 .reveal:nth-child(3),
.pillars-grid .reveal:nth-child(3),
.facts-grid .reveal:nth-child(3),
.reasons-grid .reveal:nth-child(3)
{ transition-delay: .2s; }

.highlights__grid .reveal:nth-child(4),
.zone-grid .reveal:nth-child(4),
.g-grid-4 .reveal:nth-child(4)
{ transition-delay: .3s; }

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .highlights__grid { grid-template-columns: 1fr 1fr; }
  .zone-grid { grid-template-columns: 1fr 1fr; }
  .g-grid-4 { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .g-grid-3 { grid-template-columns: 1fr 1fr; }
  .phases-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 960px) {
  :root { --pad: 1.5rem; }

  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform var(--t);
    z-index: 1000;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 0.9rem; }
  .nav__toggle { display: flex; }

  .intro__grid { grid-template-columns: 1fr; gap: 4rem; }
  .intro__stats { grid-template-columns: repeat(4, 1fr); }

  .split { grid-template-columns: 1fr; min-height: auto; }
  .split__img { aspect-ratio: 16 / 9; }
  .split__body { padding: 4rem 2rem; }

  .invest-grid { grid-template-columns: 1fr; gap: 3rem; }
  .invest-img { aspect-ratio: 16 / 9; }

  .res-type { grid-template-columns: 1fr; min-height: auto; }
  .res-type.flip { direction: ltr; }
  .res-type__img { aspect-ratio: 16 / 9; }
  .res-type__body { padding: 4rem 2rem; }

  .amen-grid { grid-template-columns: 1fr; gap: 3rem; }
  .amen-grid.flip .amen-img, .amen-grid.flip .amen-body { order: unset; }

  .about-vision__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-vision__img { aspect-ratio: 16 / 9; }
  .pillars-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  .loc-grid { grid-template-columns: 1fr; gap: 3rem; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .reasons-grid { grid-template-columns: 1fr 1fr; }
  .inv-grid { grid-template-columns: 1fr; gap: 3rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2.5rem 1.5rem; }

  .mp-zone { grid-template-columns: auto 1fr; }
  .mp-zone__num { font-size: 3rem; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (max-width: 640px) {
  :root { --pad: 1.2rem; }
  .section { padding: 5rem 0; }
  .hero__actions { flex-direction: column; align-items: center; }
  .intro__stats { grid-template-columns: 1fr 1fr; }
  .zone-grid { grid-template-columns: 1fr; border-left: none; border-top: 1px solid rgba(184,150,90,.2); }
  .z-card { border-right: none; border-bottom: 1px solid rgba(184,150,90,.15); }
  .z-card:last-child { border-bottom: none; }
  .g-grid-4 { grid-template-columns: 1fr 1fr; }
  .g-grid-3 { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
  .specs { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; }
  .lb__prev { left: 0.5rem; }
  .lb__next { right: 0.5rem; }
}
