/* =====================================================
   DC DEVELOPMENTS - Main Stylesheet
   Color Palette:
   - Dark Charcoal: #2C2420
   - Rust Orange: #AD5315
   - White: #FFFFFF
   - Light Grey: #F5F4F2
   - Medium Grey: #E8E6E3
   ===================================================== */

:root {
  --dark: #2C2420;
  --dark-alt: #3a3535;
  --orange: #AD5315;
  --orange-hover: #c4601a;
  --white: #FFFFFF;
  --light: #F5F4F2;
  --grey: #E8E6E3;
  --text-dark: #1a1614;
  --text-muted: #777;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --nav-height: 80px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.85;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }
.flex { display: flex; }
.gap-4 { gap: 1rem; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.mt-8 { margin-top: 2rem; }
.mt-4 { margin-top: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.hidden { display: none !important; }
.text-orange { color: var(--orange); }
.mr-2 { margin-right: 0.5rem; }
.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--dark);
  height: var(--nav-height);
  transition: box-shadow 0.3s;
  /* Allow logo box to overflow below the navbar bar */
  overflow: visible;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: var(--nav-height);
  padding: 0 2rem 0 0;
  max-width: 1400px;
  margin: 0 auto;
  overflow: visible;
  position: relative;
}

.logo-wrap {
  flex-shrink: 0;
  /* Pull the wrap to the very top so the box overflows below the navbar */
  align-self: flex-start;
  margin-top: 0;
}

.logo-box {
  background: #ffffff;
  /* Wide padding gives the big-rectangle feel */
  padding: 14px 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* No shadow — sharp flat cutout against dark header */
  box-shadow: none;
  border-radius: 0;
  line-height: 0;
  /* Extend below the navbar */
  position: relative;
  top: 0;
  /* Total height = navbar (80px) + ~60px overflow = ~140px */
  height: 128px;
  width: 104px;
}

/* Header logo image — large inside the tall box */
.logo-img {
  display: block;
  height: 96px;
  width: auto;
  max-width: 88px;
  object-fit: contain;
}

/* Footer logo image */
.footer-logo-img {
  display: block;
  height: 110px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  /* Pin nav to exact vertical center of the 80px dark bar */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  justify-content: center;
  pointer-events: none; /* let clicks fall through the transparent area */
}

.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 0.5rem 0.75rem;
  transition: color 0.2s;
  position: relative;
  font-weight: 500;
  text-transform: uppercase;
  pointer-events: auto; /* re-enable clicks on actual links */
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: #fff;
}

/* Right-side group: search icon + mobile hamburger */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  height: var(--nav-height);
  flex-shrink: 0;
  z-index: 1; /* sit above the absolute nav overlay */
}

.search-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.search-btn:hover { color: #fff; }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  /* Self-center on the 80px navbar */
  height: var(--nav-height);
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

/* ===== PAGE OFFSET ===== */
main {
  padding-top: var(--nav-height);
}

/* ===== PAGE HEADER ===== */
.page-header {
  text-align: center;
  padding: 4rem 2rem 3rem;
  background: #fff;
}

.page-header-dot {
  display: none;
}

/* Show orange dot only on pages that opt in */
.page-header--dot .page-header-dot {
  display: block;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.page-title-line {
  width: 60px;
  height: 2px;
  background: var(--orange);
  margin: 0 auto;
}

/* ===== HERO ===== */
.hero-section {
  min-height: calc(100vh - var(--nav-height));
  background: var(--dark);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,36,32,0.75);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: #fff;
  margin-bottom: 2.5rem;
  line-height: 1.1;
}

.btn-outline-hero {
  display: inline-block;
  border: 1px solid var(--orange);
  color: #fff;
  padding: 0.6rem 1.8rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  font-weight: 500;
  transition: all 0.3s;
  margin-top: 4.5rem;
}

.btn-outline-hero:hover {
  background: rgba(173,83,21,0.15);
  border-color: var(--orange);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 0.85rem 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-primary:hover { background: var(--orange-hover); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--dark);
  color: var(--dark);
  padding: 0.85rem 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  transition: all 0.3s;
}

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

.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--dark);
  padding: 0.85rem 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-white:hover { background: var(--grey); }

.btn-white-outline {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 0.85rem 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  background: transparent;
  transition: all 0.3s;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-white-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-dark {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  padding: 0.85rem 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  border: 1px solid var(--dark);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.btn-dark:hover { background: var(--dark-alt); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.btn-link:hover { opacity: 0.7; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 0.85rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-whatsapp:hover { background: #1ebe57; }

.btn-sm-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-sm-primary:hover { background: var(--orange-hover); }

.btn-sm-outline {
  display: inline-block;
  border: 1px solid var(--dark);
  color: var(--dark);
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

/* ===== INTRO SECTION ===== */
.intro-section {
  padding: 6rem 2rem;
  background: #fff;
}

.intro-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.intro-divider {
  width: 50px;
  height: 1px;
  background: var(--dark);
  margin: 1.5rem auto;
}

.intro-text {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #555;
  max-width: 720px;
  margin: 0 auto 1rem;
}

/* ===== PROJECTS GRID ===== */
.projects-grid-section {
  background: #fff;
}

/* ── Upper grid: DC Town tall-left | Les 2 Triangles + The Oranges stacked right ── */
.projects-upper-grid {
  display: grid;
  /* Two equal columns, two equal rows → right column gets two 50%-height cells */
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  /* Total height of the upper block */
  height: 860px;
  gap: 0;
}

/* DC Town: occupies both rows of the left column */
.pcard-dc-town {
  grid-column: 1;
  grid-row: 1 / 3;   /* span both rows */
}

/* Right-column cards each take one row */
.pcard-right {
  grid-column: 2;
}

/* ── Shared card styles ── */
.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* The image fill: stretch to fill the card entirely */
.project-placeholder {
  position: absolute;
  inset: 0;
  background: var(--dark-alt);
  transition: transform 0.55s ease;
}

.project-card:hover .project-placeholder {
  transform: scale(1.04);
}

/* Dark gradient overlay always present at the bottom */
.project-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,10,8,0.82) 0%,
    rgba(14,10,8,0.45) 35%,
    transparent 65%
  );
  pointer-events: none;
}

/* ── Project colour themes (placeholder backgrounds) ── */
.dc-town-bg {
  background: linear-gradient(160deg, #3a3535 0%, #2C2420 60%, #1e1815 100%);
}
.les2-bg {
  background: linear-gradient(160deg, #4a4040 0%, #3a3535 100%);
}
.oranges-bg {
  background: linear-gradient(160deg, #6a4530 0%, #3a3535 100%);
}
.grid-bg {
  background: linear-gradient(160deg, #3a3535 0%, #2C2420 100%);
}

/* ── Overlay text — always visible at bottom-left ── */
.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem 1.75rem 1.5rem;
  z-index: 2;
  /* Slide description in on hover */
}

.project-overlay-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #fff;
  margin-bottom: 0;
  text-transform: uppercase;
  line-height: 1.3;
}

/* Larger title for DC Town (big card) */
.pcard-dc-town .project-overlay-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
}

.project-overlay-text {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin-top: 0.6rem;
  margin-bottom: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.3s ease;
}

.project-card:hover .project-overlay-text {
  max-height: 120px;
}

.project-overlay-dash {
  display: block;
  color: var(--orange);
  font-size: 1rem;
  margin-top: 0.5rem;
  line-height: 1;
}

/* ── The Grid Row ── */
.the-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 460px;
}

.grid-text-col {
  padding: 4rem 3.5rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.grid-text {
  font-size: 0.85rem;
  line-height: 1.85;
  color: #555;
  margin-bottom: 0.75rem;
}

.grid-img-col {
  background: var(--dark-alt);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.grid-img-col .project-placeholder {
  position: absolute;
  inset: 0;
  transition: transform 0.55s ease;
}

.grid-img-col:hover .project-placeholder {
  transform: scale(1.04);
}

/* ===== STATS ===== */
.stats-section {
  background: var(--dark);
  position: relative;
}

.stats-orange-bar {
  height: 2px;
  background: var(--orange);
}

.stats-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  padding: 4rem 2rem;
  gap: 0;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.15);
  margin: 0 4rem;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  background: var(--dark);
  position: relative;
}

.video-placeholder {
  height: 560px;
  background: var(--dark-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.play-btn {
  width: 70px;
  height: 70px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.play-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
  transform: scale(1.05);
}

.play-btn i { margin-left: 4px; }

/* ===== ABOUT ===== */
.about-text-section {
  padding: 5rem 2rem;
  background: #fff;
}

.about-content {
  display: block;
  max-width: 820px;
  margin: 0 auto;
}

.about-heading {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.6;
  color: var(--orange);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.about-body p {
  font-size: 0.84rem;
  line-height: 1.4;
  color: #444;
  margin-bottom: 1rem;
}

.highlighted-text {
  color: var(--orange) !important;
  font-weight: 500;
}

/* ===== BELIEFS ===== */
.beliefs-section {
  background: #3a3535;
  padding: 5rem 2rem;
}

.beliefs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.beliefs-heading {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--orange);
  line-height: 1.75;
  text-transform: uppercase;
}

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

.belief-item {
  border: none;
  border-bottom: 1px solid rgba(173,83,21,0.6);
  padding: 0.5rem 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  line-height: 1.85;
  transition: color 0.2s;
}

.belief-item:first-child {
  border-top: 1px solid rgba(173,83,21,0.6);
}

.belief-item:hover {
  color: #fff;
}

/* ===== STAY CONNECTED ===== */
.stay-connected {
  padding: 4rem 2rem;
  background: var(--light);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.stay-text {
  font-size: 0.83rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.95;
}

.social-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  border: 1px solid #ccc;
  padding: 0.75rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.2s;
}

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

/* ===== FOOTER ===== */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--grey);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 3rem 2rem;
}

.footer-logo svg { display: block; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 1rem 3rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.78rem;
  color: #666;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text-dark); }

.newsletter-form {
  display: flex;
  border: 1px solid var(--grey);
}

.newsletter-input {
  flex: 1;
  padding: 0.65rem 1rem;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  background: #fff;
  min-width: 200px;
}

.newsletter-btn {
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 0 1.25rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-btn:hover { background: var(--dark-alt); }

.footer-bottom {
  border-top: 1px solid var(--grey);
  text-align: center;
  padding: 1rem;
  font-size: 0.72rem;
  color: #888;
}

/* ===== WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ===== SEARCH ===== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,16,14,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

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

.search-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}

.search-close:hover { color: #fff; }

.search-inner { width: 100%; max-width: 600px; padding: 2rem; }

.search-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-family: var(--font-body);
  font-size: 2rem;
  padding: 1rem 0;
  outline: none;
  letter-spacing: 0.05em;
}

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

/* ===== PROJECTS PAGE ===== */
.section-pad { padding: 5rem 2rem; }

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-dark);
}

.section-heading.text-white { color: #fff; }
.section-heading.text-center { text-align: center; }

.alt-bg { background: var(--light); }

/* ===== PROJECTS PAGE — NEW LAYOUT ===== */

/* Outer section wrapper — white bg, bottom border */
.proj-section {
  background: #fff;
  border-bottom: 1px solid #e8e4e0;
}

/* Inner two-column row */
.proj-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 2rem;
}

/* DC Town special row: title col narrower, list col wider */
.proj-row--dctown {
  grid-template-columns: 2fr 3fr;
  align-items: center;
  padding: 4rem 2rem 3rem;
}

/* Column: title + learn more (DC Town left) */
.proj-col--title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.75rem;
}

/* DC Town serif title */
.proj-serif-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  line-height: 1.1;
  margin: 0;
}

.dctown-logo-title {
  display: block;
  width: 200px;
  height: auto;
  object-fit: contain;
  margin-left: -22px; /* compensate PNG left whitespace to align with LEARN MORE */
}

/* Generic text column */
.proj-col--text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

/* Image column */
.proj-col--img {
  position: relative;
}

/* Dark image placeholder */
.proj-dark-img {
  position: relative;
  width: 100%;
  height: 380px;
  background: var(--dark-alt);
  overflow: hidden;
}

/* Background tints per project */
.proj-dark-img.grid-bg    { background: linear-gradient(135deg, #3a3535, #2C2420); }
.proj-dark-img.les2-bg    { background: linear-gradient(135deg, #4a4040, #3a3535); }
.proj-dark-img.oranges-bg { background: linear-gradient(135deg, #5a4030, #3a3535); }

/* Slider dots row pinned to bottom of image */
.proj-slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  display: inline-block;
}

.dot--active {
  background: #fff;
}

/* Heading (THE GRID / LES 2 TRIANGLES / THE ORANGES) */
.proj-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-dark);
  margin: 0 0 0.5rem;
}

/* Body paragraphs */
.proj-desc {
  font-size: 0.85rem;
  line-height: 2.0;
  color: #555;
  margin: 0;
}

/* Dash list — default (DC Town wide, 2-col) */
.proj-dash-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 1.5rem;
}

/* Dash list — single column for short lists */
.proj-dash-list--small {
  columns: 1;
}

.proj-dash-list li {
  font-size: 0.8rem;
  color: #555;
  padding: 0.28rem 0 0.28rem 1.1rem;
  position: relative;
  line-height: 1.5;
  break-inside: avoid;
}

.proj-dash-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.7rem;
  top: 0.35rem;
}

/* LEARN MORE link */
.proj-learn-more {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 2px;
  margin-top: 0.5rem;
  transition: opacity 0.2s;
}

.proj-learn-more:hover {
  opacity: 0.75;
}

/* Orange horizontal divider under DC Town */
.proj-orange-divider {
  width: 60px;
  height: 2px;
  background: var(--orange);
  margin: 0 auto 3rem;
}

/* Keep old project-features-list for project detail pages */
.project-features-list {
  list-style: none;
  columns: 2;
  gap: 0.5rem;
}

.project-features-list li {
  font-size: 0.8rem;
  color: #555;
  padding: 0.3rem 0 0.3rem 1rem;
  position: relative;
  line-height: 1.5;
  break-inside: avoid;
}

.project-features-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.7rem;
}

/* ===== PROJECT DETAIL ===== */
.project-hero {
  height: 50vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.project-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark-alt);
}

.project-hero-bg.project-hero-dc-town { background: linear-gradient(135deg, #2C2420, #4a4040); }
.project-hero-bg.project-hero-the-grid { background: linear-gradient(135deg, #3a3535, #2C2420); }
.project-hero-bg.project-hero-les-2-triangles { background: linear-gradient(135deg, #4a4040, #3a3535); }
.project-hero-bg.project-hero-the-oranges { background: linear-gradient(135deg, #5a4030, #3a3535); }

.project-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  width: 100%;
}

.project-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 1rem;
}

.project-hero-logo {
  display: block;
  height: 100px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  margin: 0 auto 1rem;
  mix-blend-mode: lighten; /* black bg disappears on dark hero */
}

.project-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.project-short-desc {
  font-size: 1rem;
  line-height: 2.0;
  color: #444;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.project-long-desc {
  font-size: 0.88rem;
  line-height: 1.9;
  color: #666;
  margin-bottom: 2rem;
}

.features-heading {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 1rem;
}

.project-features-detail {
  list-style: none;
}

.project-features-detail li {
  font-size: 0.82rem;
  color: #555;
  padding: 0.5rem 0 0.5rem 1.2rem;
  border-bottom: 1px solid var(--grey);
  position: relative;
  line-height: 1.75;
}

.project-features-detail li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.badge-upcoming { background: rgba(52,152,219,0.15); color: #3498db; }
.badge-active { background: rgba(39,174,96,0.15); color: #2ecc71; }
.badge-completed { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

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

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border: 1px solid var(--grey);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(173,83,21,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.service-desc {
  font-size: 0.8rem;
  line-height: 1.95;
  color: #666;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  text-align: center;
  padding: 2rem;
}

.step-num {
  font-size: 2.5rem;
  font-weight: 200;
  color: var(--orange);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.process-step h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.process-arrow {
  color: var(--orange);
  font-size: 1rem;
  padding: 1rem;
}

/* ===== BUSINESS HUB ===== */
.grid-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.grid-description-col {
  background: #3a3535;
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
}

.grid-desc-inner p {
  font-size: 0.86rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

/* Plain dark right panel — no images, matches reference */
.grid-dark-panel {
  background: #2e2a2a;
  min-height: 420px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--grey);
  transition: border-color 0.2s;
}

.benefit-card:hover { border-color: var(--orange); }

.benefit-icon {
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 1rem;
}

.benefit-card h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.85;
}

.office-cta-section {
  padding: 5rem 2rem;
  background: var(--light);
}

.text-dark { color: var(--text-dark); }
.text-dark-muted { color: #666; }

/* ===== CONTACT ===== */
.map-section {
  background: var(--grey);
  padding: 3rem 0;
}

.map-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.map-placeholder {
  height: 320px;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-orange-box {
  width: 220px;
  height: 180px;
  background: var(--orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

.map-orange-box i {
  font-size: 1.5rem;
  color: #fff;
}

.map-orange-box p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  line-height: 1.75;
}

.contact-form-section {
  background: var(--dark);
  padding: 5rem 2rem;
}

.contact-form-section .container {
  max-width: 900px;
}

.lets-talk-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
}

.contact-dark-form { width: 100%; }

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  margin-bottom: 1px;
}

.form-input-dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  color: #fff;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-row-3 .form-input-dark:last-child { border-right: 1px solid rgba(255,255,255,0.1); }
.form-input-dark:focus { border-color: rgba(255,255,255,0.3); }
.form-input-dark::placeholder { color: rgba(255,255,255,0.3); }

.form-textarea-dark {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  outline: none;
  resize: vertical;
  min-height: 200px;
  display: block;
  margin-top: 1px;
  transition: border-color 0.2s;
}

.form-textarea-dark::placeholder { color: rgba(255,255,255,0.3); }
.form-textarea-dark:focus { border-color: rgba(255,255,255,0.3); }

.form-submit-wrap { text-align: center; margin-top: 2rem; }

.contact-info-section {
  padding: 4rem 2rem;
  background: var(--light);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.contact-info-item {
  text-align: center;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.contact-info-item h4 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-info-item p {
  font-size: 0.82rem;
  color: #666;
}

/* ===== FORMS ===== */
.contact-form { width: 100%; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input:focus { border-color: rgba(255,255,255,0.4); }
.form-input::placeholder { color: rgba(255,255,255,0.35); }

.form-select { cursor: pointer; }

.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  outline: none;
  resize: vertical;
  margin-bottom: 1.5rem;
  transition: border-color 0.2s;
}

.form-textarea:focus { border-color: rgba(255,255,255,0.4); }
.form-textarea::placeholder { color: rgba(255,255,255,0.35); }

.form-success {
  background: rgba(173,83,21,0.15);
  border: 1px solid var(--orange);
  color: var(--orange);
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

.form-success-light {
  background: rgba(39,174,96,0.1);
  border: 1px solid #2ecc71;
  color: #2ecc71;
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ===== AVAILABLE UNITS ===== */
.filters-section {
  background: var(--light);
  padding: 2rem;
  border-bottom: 1px solid var(--grey);
}

.filters-form { width: 100%; }

.filters-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.filter-group label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: #888;
  font-weight: 600;
}

.filter-select, .filter-input {
  border: 1px solid #ddd;
  padding: 0.6rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  outline: none;
  background: #fff;
  color: var(--text-dark);
  transition: border-color 0.2s;
  width: 100%;
}

.filter-select:focus, .filter-input:focus { border-color: var(--orange); }

.filters-actions {
  display: flex;
  gap: 1rem;
}

.results-header {
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--grey);
}

.results-count {
  font-size: 0.8rem;
  color: #888;
  letter-spacing: 0.05em;
}

.units-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.unit-listing-card {
  border: 1px solid var(--grey);
  background: #fff;
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s;
  overflow: hidden;
}

.unit-listing-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-color: var(--orange);
}

.unit-listing-img {
  height: 200px;
  background: var(--dark-alt);
  position: relative;
  overflow: hidden;
}

.unit-listing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.unit-listing-card:hover .unit-listing-img img { transform: scale(1.05); }

.unit-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(255,255,255,0.2);
  font-size: 2rem;
}

.unit-status-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
}

.status-available { background: rgba(39,174,96,0.9); color: #fff; }
.status-reserved { background: rgba(241,196,15,0.9); color: #333; }
.status-sold { background: rgba(44,36,32,0.9); color: #fff; }

.unit-listing-body { padding: 1.5rem; }

.unit-listing-header {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.unit-project-tag {
  background: rgba(173,83,21,0.1);
  color: var(--orange);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  font-weight: 600;
}

.unit-type-tag {
  background: var(--light);
  color: #666;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  text-transform: capitalize;
}

.unit-listing-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.unit-listing-specs {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.unit-listing-specs span {
  font-size: 0.75rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.unit-listing-specs i { color: var(--orange); font-size: 0.7rem; }

.unit-listing-areas {
  display: flex;
  gap: 1rem;
  font-size: 0.72rem;
  color: #999;
  margin-bottom: 0.75rem;
}

.unit-listing-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.unit-listing-actions {
  display: flex;
  gap: 0.75rem;
}

.no-units {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
  color: #999;
}

.no-units i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.no-units h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.no-units p { font-size: 0.85rem; }
.no-units a { color: var(--orange); }

/* ===== UNIT DETAIL ===== */
.breadcrumb-nav {
  background: var(--light);
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--grey);
}

.breadcrumb-nav .container {
  font-size: 0.75rem;
  color: #888;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb-nav a {
  color: #666;
  transition: color 0.2s;
}

.breadcrumb-nav a:hover { color: var(--orange); }

.breadcrumb-nav span:not(.container span) { color: #ccc; }

.unit-detail-section { padding: 4rem 2rem; }

.unit-detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}

.unit-detail-images {
  position: relative;
}

.unit-gallery-carousel img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: none;
}

.unit-gallery-carousel img.active { display: block; }

.unit-img-placeholder.large {
  height: 400px;
  width: 100%;
  background: var(--dark-alt);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255,255,255,0.2);
  font-size: 3rem;
}

.unit-img-placeholder.large p {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.carousel-controls {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.carousel-btn {
  background: var(--dark);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  transition: background 0.2s;
}

.carousel-btn:hover { background: var(--orange); }

.unit-detail-header {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.unit-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.unit-type-badge {
  display: inline-block;
  background: var(--light);
  padding: 0.2rem 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 1rem;
}

.unit-detail-price {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--orange);
  margin: 1rem 0 1.5rem;
}

.unit-detail-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  background: var(--light);
  margin-bottom: 1.5rem;
}

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.spec-item i {
  font-size: 1rem;
  color: var(--orange);
}

.spec-label {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: #999;
  font-weight: 600;
}

.spec-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.unit-detail-desc {
  font-size: 0.86rem;
  line-height: 2.0;
  color: #666;
  margin-bottom: 1.5rem;
}

.unit-detail-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.floor-plan-wrap { text-align: center; }
.floor-plan-img { max-height: 600px; margin: 0 auto; }

/* ===== UNITS GRID ===== */
.units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.unit-card {
  border: 1px solid var(--grey);
  padding: 1.5rem;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.unit-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.unit-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.unit-type {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: #999;
  text-transform: capitalize;
}

.unit-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.unit-specs {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.unit-specs i { color: var(--orange); margin-right: 0.2rem; }
.unit-price { font-size: 1rem; font-weight: 700; color: var(--orange); }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 5rem 2rem;
  background: var(--light);
}

.cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cta-subtext {
  font-size: 0.88rem;
  color: #666;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.95;
}

/* ===== MISC ===== */
.text-gray { color: #666; }
.text-white { color: #fff !important; }

/* ===== RESPONSIVE ===== */
/* ===== TABLET (≤1024px) ===== */
@media (max-width: 1024px) {
  .about-content { max-width: 100%; }
  .about-heading { position: static; }
  .beliefs-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .project-block-inner { grid-template-columns: 1fr; gap: 2rem; }
  .project-block-inner.reverse { direction: ltr; }
  .proj-row { grid-template-columns: 1fr; gap: 0; padding: 2.5rem 1.5rem; }
  .proj-row--dctown { grid-template-columns: 1fr; padding: 2.5rem 1.5rem 2rem; }
  .proj-dark-img { height: 300px; }
  .proj-dash-list { columns: 1; }
  .project-detail-content { grid-template-columns: 1fr; }
  .unit-detail-grid { grid-template-columns: 1fr; }
  .grid-split-section { grid-template-columns: 1fr; }
  .grid-dark-panel { min-height: 220px; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-logo { display: flex; justify-content: center; }
  .footer-nav { justify-content: center; }
  .newsletter-form { max-width: 420px; margin: 0 auto; }
}

/* ===== MOBILE (≤768px) ===== */
@media (max-width: 768px) {
  :root { --nav-height: 65px; }

  /* --- HEADER / NAV --- */
  .main-nav {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    height: auto;
    background: var(--dark);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1rem 0;
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    z-index: 999;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    pointer-events: auto;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .main-nav.open { transform: translateY(0); }
  .nav-link {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
  }
  .nav-link.active::after { display: none; }
  .mobile-menu-btn { display: flex; }

  /* --- LOGO BOX --- */
  .logo-box { height: 90px; width: 76px; padding: 8px 10px 12px; }
  .logo-img { height: 68px; max-width: 60px; }

  /* --- HERO --- */
  .hero-section { min-height: 85vh; }
  .hero-headline {
    font-size: clamp(2rem, 10vw, 3.5rem);
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
  }
  .btn-outline-hero {
    margin-top: 2rem;
    padding: 0.7rem 2rem;
    font-size: 0.65rem;
  }

  /* --- PAGE HEADER --- */
  .page-header { padding: 2.5rem 1.5rem 2rem; }
  .page-title { font-size: clamp(1.2rem, 5vw, 1.8rem); }

  /* --- SECTION PADDING --- */
  .section-pad { padding: 3rem 1.25rem; }
  .container { padding: 0 1.25rem; }

  /* --- VIDEO --- */
  .video-placeholder { height: 240px; }

  /* --- STATS --- */
  .stats-section { padding: 0; }
  .stats-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }
  .stat-item { padding: 1.5rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child { border-bottom: none; }
  .stat-value { font-size: clamp(2rem, 8vw, 3rem); }
  .stat-divider { display: none; }

  /* --- PROJECTS PAGE --- */
  .projects-upper-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
  }
  .pcard-dc-town { grid-column: auto; grid-row: auto; height: 400px; }
  .pcard-right { height: 280px; }
  .the-grid-row { grid-template-columns: 1fr; }

  /* proj-* sections */
  .proj-row { grid-template-columns: 1fr; gap: 0; padding: 2rem 1.25rem; }
  .proj-row--dctown { grid-template-columns: 1fr; padding: 2rem 1.25rem 1.5rem; align-items: flex-start; }
  .proj-col--title { align-items: flex-start; gap: 0.75rem; }
  .dctown-logo-title { width: 160px; margin-left: -18px; }
  .proj-dark-img { height: 240px; }
  .proj-heading { font-size: 0.9rem; }
  .proj-desc { font-size: 0.8rem; }
  .proj-dash-list li { font-size: 0.8rem; }
  .proj-orange-divider { margin: 0; }

  /* --- ABOUT DC --- */
  .about-text-section { padding: 2.5rem 1.25rem; }
  .about-heading { font-size: 0.9rem; margin-bottom: 1.5rem; }
  .about-body p { font-size: 0.82rem; }
  .beliefs-section { padding: 3rem 1.25rem; }
  .beliefs-inner { grid-template-columns: 1fr; gap: 2rem; }
  .beliefs-heading { font-size: 1rem; text-align: center; }
  .belief-item { font-size: 0.8rem; }

  /* --- THE GRID PAGE --- */
  .grid-split-section { grid-template-columns: 1fr; }
  .grid-description-col { padding: 2.5rem 1.25rem; }
  .grid-dark-panel { min-height: 180px; }
  .grid-desc-inner p { font-size: 0.82rem; }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .benefit-card { padding: 1.25rem 1rem; }
  .office-cta-section { padding: 3rem 1.25rem; }
  .cta-heading { font-size: clamp(1rem, 4vw, 1.4rem); }

  /* --- SERVICES --- */
  .services-grid { grid-template-columns: 1fr; }

  /* --- CONTACT --- */
  .contact-form-section .container { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr; }
  .form-row-3 .form-input-dark { border-right: 1px solid rgba(255,255,255,0.1); }

  /* --- AVAILABLE UNITS --- */
  .filters-row { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .units-listing-grid { grid-template-columns: 1fr; }
  .unit-card { padding: 1.25rem; }

  /* --- UNIT DETAIL --- */
  .unit-detail-grid { grid-template-columns: 1fr; }
  .unit-detail-specs { grid-template-columns: repeat(2, 1fr); }

  /* --- STAY CONNECTED --- */
  .stay-connected { padding: 3rem 1.25rem; }
  .social-btns { flex-direction: column; align-items: center; gap: 0.75rem; }
  .social-btn { width: 200px; text-align: center; }

  /* --- FOOTER --- */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.25rem;
    text-align: center;
  }
  .footer-logo { display: flex; justify-content: center; }
  .footer-logo-img { height: 80px; }
  .footer-nav {
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 1rem 3rem;
  }
  .footer-col { align-items: center; }
  .newsletter-form { max-width: 100%; }
  .footer-bottom { font-size: 0.68rem; padding: 1rem 1.25rem; }

  /* --- CTA SECTION --- */
  .cta-section { padding: 3rem 1.25rem; }
  .project-detail-content { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===== SMALL MOBILE (≤480px) ===== */
@media (max-width: 480px) {
  /* Logo box even more compact */
  .logo-box { height: 80px; width: 68px; padding: 6px 8px 10px; }
  .logo-img { height: 62px; max-width: 54px; }

  /* Hero full screen feel */
  .hero-section { min-height: 92vh; }
  .hero-headline { font-size: clamp(1.8rem, 11vw, 2.8rem); letter-spacing: 0.1em; }

  /* Stats stacked cleanly */
  .stat-value { font-size: 2.2rem; }

  /* Project images shorter */
  .proj-dark-img { height: 200px; }
  .pcard-dc-town { height: 320px; }

  /* DC Town logo smaller */
  .dctown-logo-title { width: 130px; margin-left: -14px; }

  /* Benefits single column */
  .benefits-grid { grid-template-columns: 1fr; }

  /* Filters single column */
  .filters-row { grid-template-columns: 1fr; }

  /* Footer nav single col */
  .footer-nav { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Buttons full width on tiny screens */
  .btn-primary, .btn-dark, .btn-white { width: 100%; text-align: center; }
  .flex.gap-4.justify-center { flex-direction: column; align-items: center; }

  /* Typography scale down */
  .section-heading { font-size: clamp(0.8rem, 4vw, 1rem); }
  .page-title { font-size: clamp(1.1rem, 6vw, 1.5rem); }

  /* Video shorter */
  .video-placeholder { height: 200px; }

  /* Reduce section padding */
  .section-pad { padding: 2.5rem 1rem; }
  .container { padding: 0 1rem; }
}
