/* ===========================================================
   Trump Towers Hyderabad — brand tokens
   Black #241f2f · Charcoal #4d4d4f · Gray #a5a4a4 · Porcelain #dbd8d6
   Gold #cdb278 · Gold Foil gradient
   Display/Luxury serif: Didot · Body/UI: Montserrat
   =========================================================== */

@font-face {
  font-family: 'Didot';
  src: url('assets/fonts/Didot.otf') format('opentype');
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('assets/fonts/Montserrat-Light.otf') format('opentype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('assets/fonts/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}

:root {
  --black: #14121a;
  --brand-black: #241f2f;
  --charcoal: #4d4d4f;
  --gray: #a5a4a4;
  --porcelain: #dbd8d6;
  --white: #ffffff;
  --gold: #cdb278;
  --gold-foil: linear-gradient(135deg, #e9d9b0 0%, #cdb278 45%, #9c7a3f 100%);
  --cbsp-navy: #012169;
  --cbsp-blue: #1f69ff;

  --text-on-dark: #f2f0ec;
  --text-on-dark-muted: #b9b6b0;
  --text-on-light: #241f2f;
  --text-on-light-muted: #63666a;

  --font-display: 'Didot', 'Times New Roman', serif;
  --font-body: 'Montserrat', 'Segoe UI', Arial, sans-serif;

  --container: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--black);
  color: var(--text-on-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
ul { list-style: none; }

.section-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.section-lede {
  max-width: 680px;
  font-weight: 300;
  font-size: 16px;
  color: var(--text-on-dark-muted);
}
.section-lede.small { font-size: 13px; }

/* ===================== LAYOUT HELPERS ===================== */
.section { padding: 48px 24px; }
@media (min-width: 640px) { .section { padding: 64px 32px; } }
@media (min-width: 1024px) { .section { padding: 110px 40px; } }

.section-inner { max-width: var(--container); margin: 0 auto; }
.section-dark { background: var(--brand-black); }
.section-black { background: var(--black); }
.section-light {
  background: var(--porcelain);
  color: var(--text-on-light);
}
.section-light .section-lede { color: var(--text-on-light-muted); }

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow .3s ease;
  background: linear-gradient(to bottom, rgba(20,18,26,0.65), transparent);
}
.site-header.is-scrolled {
  background: rgba(20, 18, 26, 0.96);
  padding: 12px 24px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-img { height: 40px; width: auto; filter: invert(1); }

.main-nav {
  display: none;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-on-dark);
  opacity: 0.88;
  transition: opacity .2s;
}
.main-nav a:hover { opacity: 1; color: var(--gold); }
.main-nav a.nav-cta {
  border: 1px solid var(--gold);
  padding: 9px 18px;
  color: var(--gold);
  opacity: 1;
}
.main-nav a.nav-cta:hover { background: var(--gold); color: var(--brand-black); }

@media (min-width: 900px) {
  .main-nav { display: flex; }
  .nav-toggle { display: none; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--white);
  display: block;
}

.main-nav.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 74px;
  right: 16px;
  height: auto;
  width: auto;
  min-width: 210px;
  max-width: 260px;
  background: var(--brand-black);
  border: 1px solid rgba(205,178,120,0.25);
  border-radius: 4px;
  padding: 6px 0;
  gap: 0;
  align-items: stretch;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.main-nav.is-open a:not(.nav-cta) {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  opacity: 1;
}
.main-nav.is-open a.nav-cta {
  margin: 12px 16px 6px;
  padding: 12px 18px;
  border-radius: 3px;
  background: var(--gold-foil);
  color: var(--brand-black);
  text-align: center;
  border: none;
  transition: filter .25s ease;
}
.main-nav.is-open a.nav-cta:hover { filter: brightness(1.12); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,26,0.35) 0%, rgba(20,18,26,0.25) 40%, rgba(20,18,26,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 90px;
  width: 100%;
}
@media (min-width: 640px) { .hero-content { padding: 0 32px 110px; } }

.eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}
.hero-logo {
  width: clamp(220px, 34vw, 420px);
  height: auto;
  filter: invert(1);
  margin-bottom: 26px;
}
.hero-tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 14px;
  max-width: 16ch;
}
.hero-subhead {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--porcelain);
  max-width: 46ch;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-microcopy {
  margin-top: 22px;
  max-width: calc(100% - 90px);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
@media (min-width: 640px) { .hero-microcopy { max-width: calc(100% - 130px); } }

.hero-credit-block {
  position: absolute;
  z-index: 2;
  bottom: 96px;
  right: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.hero-credit {
  filter: invert(1);
  opacity: 0.85;
}
.hero-credit-tribeca { width: 62px; }
.hero-credit-ira { width: 74px; }
@media (min-width: 640px) {
  .hero-credit-block { bottom: 100px; right: 32px; gap: 10px; }
  .hero-credit-tribeca { width: 92px; }
  .hero-credit-ira { width: 110px; }
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 3px;
  background: var(--gold-foil);
  color: var(--brand-black);
  transition: filter .25s ease, box-shadow .25s ease, transform .2s ease;
  text-align: center;
}
.btn:hover {
  filter: brightness(1.12);
  box-shadow: 0 8px 24px rgba(205,178,120,0.35);
  transform: translateY(-1px);
}
.btn:active { transform: translateY(0); filter: brightness(1.05); }
.btn-gold, .btn-ghost { background: var(--gold-foil); color: var(--brand-black); }

.hero-rera-inline {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--gold);
}
@media (min-width: 640px) { .hero-rera-inline { font-size: 13px; } }

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px; height: 46px;
  background: rgba(255,255,255,0.35);
  overflow: hidden;
  display: none;
}
@media (min-width: 900px) { .scroll-cue { display: block; } }
.scroll-cue span {
  position: absolute; top: -46px; left: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollCue 2.2s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { top: -46px; }
  60% { top: 46px; }
  100% { top: 46px; }
}

/* ===================== STATEMENT ===================== */
.statement {
  background: var(--black);
  padding: 70px 24px;
  text-align: center;
}
.statement-inner { max-width: 780px; margin: 0 auto; }
.statement-eyebrow {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-weight: 500;
}
.statement-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.4;
  color: var(--porcelain);
  margin-bottom: 24px;
}
.statement-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-on-dark-muted);
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}
@media (min-width: 720px) { .statement-body { text-align: center; } }

/* ===================== FACTS STRIP ===================== */
.facts-strip {
  background: var(--brand-black);
  border-top: 1px solid rgba(205,178,120,0.25);
  border-bottom: 1px solid rgba(205,178,120,0.25);
  padding: 36px 24px;
}
.facts-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: center;
}
@media (min-width: 720px) { .facts-grid { grid-template-columns: repeat(5, 1fr); } }
.fact { display: flex; flex-direction: column; gap: 6px; }
.fact-num {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  color: var(--gold);
}
.fact-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}
.facts-disclaimer {
  max-width: var(--container);
  margin: 20px auto 0;
  text-align: center;
  font-size: 11px;
  font-style: italic;
  color: var(--gray);
}

/* ===================== ARCHITECTURE ===================== */
.section-architecture {
  background: var(--white);
  color: var(--text-on-light);
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .section-architecture { grid-template-columns: 1.1fr 1fr; align-items: center; } }
.architecture-media { background: var(--white); }
.architecture-media img { width: 100%; display: block; }
.architecture-content {
  padding: 40px 24px 56px;
}
@media (min-width: 640px) { .architecture-content { padding: 48px 32px 64px; } }
@media (min-width: 900px) { .architecture-content { padding: 48px; } }
.architecture-content .section-eyebrow { color: var(--cbsp-navy); }
.architecture-text {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.4vw, 26px);
  line-height: 1.5;
  color: var(--text-on-light);
  max-width: 46ch;
}

/* ===================== BRAND BANNER ===================== */
.brand-banner { line-height: 0; }
.brand-banner img { width: 100%; display: block; }

/* ===================== RESIDENCE CONFIG CARDS ===================== */
.config-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 720px) { .config-grid { grid-template-columns: repeat(4, 1fr); } }
.config-card {
  border: 1px solid rgba(205,178,120,0.3);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.config-name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
}
.config-size {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.5px;
}
.config-note {
  font-size: 12px;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.3px;
}
.config-disclaimer {
  margin-top: 28px;
  font-size: 12px;
  color: var(--gray);
  font-style: italic;
  max-width: 680px;
}

.space-experience {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(205,178,120,0.2);
}
.space-experience-lede {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--porcelain);
  max-width: 640px;
  line-height: 1.4;
  margin-bottom: 24px;
}
.space-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.space-tag-list li {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--text-on-dark);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 14px;
}
.residences-cta { margin-top: 36px; }

/* ===================== IMAGE SPLIT SECTIONS ===================== */
.section-image-split {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--black);
}
@media (min-width: 900px) {
  .section-image-split { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .section-image-split.reverse { direction: rtl; }
  .section-image-split.reverse .split-content { direction: ltr; }
  .section-image-split.reverse .split-media { direction: ltr; }
}
.split-media { min-height: 320px; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.split-content {
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 640px) { .split-content { padding: 64px 48px; } }

.amenity-list {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}
.amenity-list li {
  font-size: 14px;
  color: var(--text-on-dark);
  padding-left: 22px;
  position: relative;
}
.amenity-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 10px; height: 1px;
  background: var(--gold);
}

/* ===================== GALLERY ===================== */
.gallery-grid {
  max-width: 1400px;
  margin: 40px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); padding: 0 32px; }
}
@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.gallery-grid img {
  width: 100%; height: 280px; object-fit: cover;
  transition: transform .5s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ===================== SITE PLAN / FLOOR PLANS ===================== */
.site-plan-frame {
  max-width: 1400px;
  margin: 40px auto 0;
  padding: 0 24px;
}
@media (min-width: 640px) { .site-plan-frame { padding: 0 32px; } }
.site-plan-frame img { width: 100%; border: 1px solid rgba(205,178,120,0.25); }

.floorplan-grid {
  max-width: 1400px;
  margin: 40px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .floorplan-grid { grid-template-columns: repeat(2, 1fr); padding: 0 32px; }
}
@media (min-width: 1024px) {
  .floorplan-grid { grid-template-columns: repeat(3, 1fr); }
}
.floorplan-grid img { border: 1px solid rgba(205,178,120,0.2); background: #fff; }

/* ===================== LOCATION ===================== */
.location-layout {
  max-width: var(--container);
  margin: 40px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .location-layout { padding: 0 32px; } }
@media (min-width: 980px) {
  .location-layout { grid-template-columns: 1.1fr 1fr; align-items: start; }
}
.map-frame {
  width: 100%; height: 360px;
  border: 1px solid var(--porcelain);
}
@media (min-width: 980px) { .map-frame { height: 520px; } }

.location-lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 560px) { .location-lists { grid-template-columns: 1fr 1fr; } }

.loc-col h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
  color: var(--text-on-light);
  margin-bottom: 12px;
  margin-top: 24px;
}
.loc-col h3:first-child { margin-top: 0; }
.loc-list { display: flex; flex-direction: column; gap: 8px; }
.loc-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--text-on-light-muted);
  border-bottom: 1px dotted rgba(99,102,106,0.3);
  padding-bottom: 6px;
}
.loc-list li span:last-child { color: var(--text-on-light); font-weight: 500; white-space: nowrap; }

#location { background: var(--porcelain); color: var(--text-on-light); }
#location .section-lede { color: var(--text-on-light-muted); }

.market-note {
  margin-top: 44px;
  font-size: 13px;
  color: var(--text-on-light-muted);
  max-width: 780px;
  border-top: 1px solid rgba(99,102,106,0.25);
  padding-top: 20px;
}

/* ===================== INDIA STORY / DEMAND PROOF ===================== */
.india-timeline {
  max-width: var(--container);
  margin: 40px auto 0;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
@media (min-width: 640px) { .india-timeline { padding: 0 32px; } }
.india-timeline span {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.2vw, 22px);
  color: var(--text-on-dark-muted);
}
.india-timeline span.is-current { color: var(--gold); }
.india-timeline .arrow { color: var(--gray); font-family: var(--font-body); font-size: 14px; }

.footprint-stat {
  max-width: var(--container);
  margin: 34px auto 0;
  padding: 24px 24px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;
}
@media (min-width: 640px) { .footprint-stat { padding: 24px 32px 0; } }
.footprint-num {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 36px);
  color: var(--white);
}
.footprint-label {
  font-size: 13px;
  color: var(--text-on-dark-muted);
}

.demand-proof {
  max-width: var(--container);
  margin: 34px auto 0;
  padding: 28px 24px;
  border-top: 1px solid rgba(205,178,120,0.25);
  border-bottom: 1px solid rgba(205,178,120,0.25);
}
@media (min-width: 640px) { .demand-proof { padding: 28px 32px; } }
.demand-proof-eyebrow {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.demand-proof-stat {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 28px);
  color: var(--white);
  margin-bottom: 10px;
}
.demand-proof-note {
  font-size: 12px;
  color: var(--gray);
  font-style: italic;
  max-width: 640px;
}

/* ===================== TRACK RECORD / PORTFOLIO ===================== */
.portfolio-grid {
  max-width: 1400px;
  margin: 40px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); padding: 0 32px; }
}
@media (min-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(4, 1fr); }
}
.portfolio-card { position: relative; }
.portfolio-card img { width: 100%; height: 320px; object-fit: cover; }
.portfolio-card figcaption {
  padding: 14px 4px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.portfolio-card figcaption strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
}
.portfolio-card figcaption span {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}
.portfolio-note {
  max-width: 1400px;
  margin: 20px auto 0;
  padding: 0 24px;
  font-size: 12px;
  color: var(--gray);
  font-style: italic;
}
@media (min-width: 640px) { .portfolio-note { padding: 0 32px; } }

.stat-row {
  max-width: var(--container);
  margin: 56px auto 0;
  padding: 40px 24px 0;
  border-top: 1px solid rgba(205,178,120,0.25);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: center;
}
@media (min-width: 640px) { .stat-row { grid-template-columns: repeat(4, 1fr); padding: 40px 32px 0; } }
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  color: var(--gold);
}
.stat span:last-child {
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-on-dark-muted);
}

/* ===================== TEAM ===================== */
.team-grid {
  max-width: var(--container);
  margin: 40px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(3, 1fr); padding: 0 32px; } }
.team-card { display: flex; flex-direction: column; gap: 16px; }
.team-logo { height: 44px; width: auto; object-fit: contain; object-position: left; filter: invert(1); }
.team-card p { font-size: 14px; color: var(--text-on-dark-muted); }
.team-photo { border: 1px solid rgba(205,178,120,0.25); }
.team-role-title { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.team-role-name { font-family: var(--font-display); font-size: 22px; color: var(--white); }

/* ===================== TRIBECA ABOUT ===================== */
.tribeca-about {
  max-width: var(--container);
  margin: 64px auto 0;
  padding: 48px 24px 0;
  border-top: 1px solid rgba(205,178,120,0.2);
}
@media (min-width: 640px) { .tribeca-about { padding: 56px 32px 0; } }
.tribeca-about-eyebrow {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.tribeca-about-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-on-dark-muted);
  max-width: 700px;
  margin-bottom: 36px;
}
.tribeca-credentials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 640px) { .tribeca-credentials { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.tribeca-credential {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tribeca-credential span { font-size: 12px; color: var(--text-on-dark-muted); }
.tribeca-credential strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
  color: var(--gold);
}
.tribeca-projects {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .tribeca-projects { grid-template-columns: repeat(3, 1fr); } }
.tribeca-projects img { width: 100%; height: 200px; object-fit: cover; }
.tribeca-projects figcaption {
  padding: 10px 2px 0;
  font-size: 12px;
  color: var(--text-on-dark-muted);
}

/* ===================== OWNERSHIP THESIS ===================== */
.thesis-grid {
  max-width: var(--container);
  margin: 40px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .thesis-grid { grid-template-columns: repeat(2, 1fr); padding: 0 32px; } }
@media (min-width: 1024px) { .thesis-grid { grid-template-columns: repeat(5, 1fr); } }
.thesis-item { display: flex; flex-direction: column; gap: 8px; }
.thesis-num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
}
.thesis-name {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--white);
}
.thesis-item p { font-size: 13px; color: var(--text-on-dark-muted); line-height: 1.6; }

/* ===================== WHO IS IT FOR ===================== */
#who-is-it-for { background: var(--porcelain); color: var(--text-on-light); }
#who-is-it-for .section-lede { color: var(--text-on-light-muted); font-style: italic; }
.who-inner { max-width: 900px; }
.who-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 720px) { .who-grid { grid-template-columns: repeat(2, 1fr); } }
.who-col h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--text-on-light);
  margin-bottom: 18px;
  line-height: 1.35;
}
.who-list { display: flex; flex-direction: column; gap: 12px; }
.who-list li {
  font-size: 14px;
  color: var(--text-on-light-muted);
  padding-left: 20px;
  position: relative;
}
.who-yes li::before {
  content: '+'; position: absolute; left: 0; color: var(--cbsp-navy); font-weight: 600;
}
.who-no li::before {
  content: '\2212'; position: absolute; left: 0; color: var(--text-on-light-muted);
}
.who-close {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(99,102,106,0.25);
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
  color: var(--text-on-light);
}

/* ===================== ADVISORY (CBSP, navy section) ===================== */
.section-navy { background: var(--cbsp-navy); color: var(--white); }
.brokerage-inner { text-align: center; max-width: 680px; }
.cbsp-logo { height: 90px; width: auto; margin: 0 auto 30px; }
#advisory .section-eyebrow { color: var(--gold); }
#advisory .section-title { color: var(--white); }
#advisory .section-lede { color: rgba(255,255,255,0.78); }
.brokerage-rera {
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.7);
}

/* ===================== ENQUIRE ===================== */
.enquire-inner { text-align: center; }
.enquire-inner .section-lede { margin: 0 auto; }
.enquire-close {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 32px);
  line-height: 1.35;
  color: var(--porcelain);
  margin-bottom: 36px;
}

.form-card {
  margin: 44px auto 0;
  max-width: 640px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(205,178,120,0.25);
  border-radius: 2px;
  padding: 32px 24px;
  text-align: left;
}
@media (min-width: 640px) { .form-card { padding: 40px; } }

.contact-divider {
  margin-top: 48px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}
.contact-cards {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
}
@media (min-width: 640px) { .contact-cards { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  border: 1px solid rgba(205,178,120,0.3);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .2s, background .2s;
}
.contact-card:hover { border-color: var(--gold); background: rgba(205,178,120,0.06); }
.contact-label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
}
.contact-value { font-size: 15px; color: var(--white); }
.office-address {
  margin-top: 30px;
  font-size: 12px;
  color: var(--text-on-dark-muted);
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}

/* ===================== FOOTER ===================== */
.site-footer { background: var(--black); padding: 56px 24px 32px; }
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 30px;
}
@media (min-width: 720px) {
  .footer-top { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-cbsp-logo { height: 40px; width: auto; flex-shrink: 0; }
@media (min-width: 480px) { .footer-cbsp-logo { height: 46px; } }
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 18px 28px;
}
@media (min-width: 480px) { .footer-links { grid-template-columns: repeat(3, auto); } }
@media (min-width: 720px) { .footer-links { display: flex; flex-wrap: wrap; gap: 22px; } }
.footer-links a {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(205,178,120,0.35);
  transition: color .2s, border-color .2s;
}
.footer-links a:hover { color: var(--gold); border-color: var(--gold); }

.footer-disclaimer {
  font-size: 11px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 16px;
  max-width: 980px;
}
.footer-bottom {
  font-size: 11px;
  color: var(--text-on-dark-muted);
  margin-top: 20px;
}

/* ===================== WHATSAPP FAB ===================== */
.whatsapp-fab {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 90;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
}

/* ===================== TO-TOP FAB ===================== */
.to-top-fab {
  position: fixed;
  bottom: 84px; right: 22px;
  z-index: 90;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-black);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.to-top-fab.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top-fab:hover { background: var(--gold); color: var(--brand-black); }
