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

:root {
  --white: #ffffff;
  --off-white: #f7f6f4;
  --light: #eeece9;
  --border: #dedad4;
  --text: #1e1e1e;
  --muted: #666560;
  --accent: #b5651d;
  --accent-dark: #8f4e16;
  --navy: #2b2b2b;
  --gold: #d4762a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 15px;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy);
  padding: 0.4rem 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}

/* ── NAV ── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #000000;
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-img {
  height: 84px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-fallback {
  display: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}

.logo-fallback span {
  display: block;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 2px;
}

.logo-img.error ~ .logo-fallback,
.logo img[src=""] ~ .logo-fallback { display: block; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav > a,
.dropdown > a {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  transition: color 0.2s;
}

.main-nav > a:hover,
.dropdown > a:hover { color: var(--gold); }

.dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 300;
}

.dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 0.65rem 1rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--off-white); color: var(--accent); }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 0;
}

.mobile-menu a {
  padding: 0.75rem 2rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu.open { display: flex; }

/* ── HERO CAROUSEL ── */
.hero {
  position: relative;
  height: 90vh;
  min-height: 540px;
  overflow: hidden;
}

.carousel { position: absolute; inset: 0; }

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

.slide.active { opacity: 1; }

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  letter-spacing: 4px;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
}

.hero-content p {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 2px;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

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

.btn-outline-white {
  background: transparent;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.7);
  transition: background 0.2s, border-color 0.2s;
}

.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.carousel-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.carousel-controls button {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s;
}

.carousel-controls button:hover { background: rgba(255,255,255,0.4); }

.dots { display: flex; gap: 8px; }

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}

.dot.active { background: var(--white); }

/* ── SHARED ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.label {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

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

h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

h2.center { text-align: center; }

p { color: var(--muted); line-height: 1.8; }

.btn-dark {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-dark:hover { background: var(--accent-dark); }
.btn-dark.full { width: 100%; text-align: center; }

.btn-text {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.2s;
  margin-top: 1rem;
}

.btn-text:hover { color: var(--accent-dark); }

/* ── FLOOR PLAN ANNOUNCEMENT ── */
.floorplan-announce {
  background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 60%, #3a2010 100%);
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
  padding: 2.5rem 2rem;
}

.floorplan-announce-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.floorplan-announce-label {
  background: var(--accent);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 3px;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 0.25rem;
}

.floorplan-announce-content {
  flex: 1;
  min-width: 240px;
}

.floorplan-announce-content h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.floorplan-announce-content p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.floorplan-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.fp-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.fp-icon {
  font-size: 1.2rem;
}

.floorplan-announce-btn {
  background: var(--accent);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.75rem;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

.floorplan-announce-btn:hover { background: var(--accent-dark); }

/* ── INCENTIVE BANNER ── */
.incentive-bar {
  background: var(--navy);
  border-top: 3px solid var(--accent);
  padding: 1.25rem 2rem;
}

.incentive-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.incentive-badge {
  background: var(--accent);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 2px;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.incentive-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.incentive-text strong {
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.incentive-text span {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
}

.incentive-text em {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

.incentive-btn {
  background: var(--accent);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

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

/* ── COMMUNITIES ── */
.communities {
  padding: 6rem 0;
  background: var(--white);
}

.communities h2 { margin-bottom: 2.5rem; }

.communities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.community-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.community-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); }

.community-img {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.community-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--navy);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 0.4rem 0.85rem;
}

.coming-soon-badge { background: var(--accent) !important; }
.sold-out-badge { background: var(--muted) !important; }

.community-info { padding: 1.75rem; }

.community-info h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
}

.community-location {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.community-details {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}

/* ── FOR SALE ── */
.forsale {
  padding: 6rem 0;
  background: var(--white);
}

.forsale-intro {
  max-width: 560px;
  margin: 0 auto 3rem;
  color: var(--muted);
}

.listings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.listing-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.listing-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); }

.listing-main-photo {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.listing-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 0.4rem 0.9rem;
  text-transform: uppercase;
}

.listing-thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 3px;
}

.listing-thumb {
  height: 90px;
  background-size: cover;
  background-position: center;
}

.listing-info {
  padding: 1.75rem;
}

.listing-info h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.listing-loc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

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

.listing-specs span {
  background: var(--light);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  font-family: 'Raleway', sans-serif;
}

.listing-desc {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.listing-agent {
  margin: 0.75rem 0;
  padding: 0.75rem 1rem;
  background: var(--off-white);
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
}
.agent-label { font-size: 0.78rem; color: var(--muted); margin: 0 0 0.2rem; }
.agent-name { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin: 0 0 0.25rem; }
.agent-contact { font-size: 0.88rem; margin: 0; }
.agent-contact a { color: var(--accent); text-decoration: none; }
.agent-contact a:hover { text-decoration: underline; }

.listing-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-outline-dark {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

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

/* ── LIGHTBOX ── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lb-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: 65vh;
  padding: 1rem 4rem;
}

.lb-img-wrap img {
  max-height: 65vh;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.lb-grid-wrap {
  width: 100%;
  padding: 0.75rem 1rem;
  overflow-x: auto;
  flex-shrink: 0;
}

.lb-grid {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  max-height: 160px;
  overflow-y: auto;
}

.lb-thumb {
  width: 90px;
  height: 68px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.55;
  border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.lb-thumb:hover { opacity: 0.85; }
.lb-thumb.active { opacity: 1; border-color: var(--accent); }

.lb-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
  z-index: 9001;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }

.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 1.75rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  z-index: 9001;
  transition: background 0.2s;
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); }
.lb-prev { left: 0.5rem; }
.lb-next { right: 0.5rem; }

.lb-counter {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 1px;
  padding: 0.25rem 0;
}

/* ── ABOUT ── */
.about {
  position: relative;
  padding: 8rem 0;
  background: var(--white);
  overflow: visible;
}

.about-bg-strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 55%;
  background: var(--navy);
  z-index: 0;
}

.about .container { position: relative; z-index: 1; }

.about-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
  border-radius: 4px;
  overflow: visible;
  position: relative;
}

.about-card-img {
  position: relative;
  margin-top: -3rem;
  margin-bottom: -3rem;
  margin-left: -2rem;
  flex-shrink: 0;
}

.about-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  box-shadow: 8px 0 40px rgba(0,0,0,0.15);
}

.about-card-body {
  padding: 3.5rem;
}

.about-tagline {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem !important;
  margin-top: -0.5rem;
}

.about-card-body p { margin-bottom: 1rem; }

.about-img img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.about-text p { margin-bottom: 1rem; }

.about-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}

.about-list li {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  letter-spacing: 0.5px;
}

/* ── GALLERY ── */
.gallery {
  padding: 6rem 0;
  background: var(--white);
}

.gallery h2 { margin-bottom: 2rem; }

.gallery-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--border);
}

.gallery-tab {
  background: none;
  border: none;
  padding: 0.85rem 1.75rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}

.gallery-tab:hover { color: var(--text); }
.gallery-tab.active { color: var(--accent); border-bottom-color: var(--accent); }

.gallery-panel { display: none; }
.gallery-panel.active { display: block; }

.collage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 6px;
}

.collage-item { overflow: hidden; position: relative; }
.collage-item.span2 { grid-column: span 2; }

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

.collage-item:hover img { transform: scale(1.04); }

/* ── DEVELOPMENTS ── */
.developments {
  padding: 6rem 0;
  background: var(--off-white);
}

.dev-intro {
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--muted);
}

.dev-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}

#dev-map {
  height: 480px;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  z-index: 0;
}

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

.dev-group { margin-bottom: 2rem; }

.dev-group-title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.dev-group-title.built { color: var(--accent); }
.dev-group-title.coming { color: var(--navy); }
.dev-group-note { font-size: 0.85rem; color: var(--muted); margin: 0.5rem 0 0; }

.dev-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.dev-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

.dev-dot.built { background: var(--accent); }
.dev-dot.coming { background: var(--navy); border: 2px solid var(--accent); }

.dev-item strong {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.dev-item span {
  font-size: 0.82rem;
  color: var(--muted);
}

.dev-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 2.5rem;
}

.dev-photo-item {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 16/10;
}

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

.dev-photo-item:hover img {
  transform: scale(1.04);
}

/* ── PROCESS ── */
.process {
  padding: 6rem 0;
  background: var(--off-white);
}

.process h2 { margin-bottom: 3.5rem; }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.step-number {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.step p { font-size: 0.88rem; line-height: 1.7; }

.step-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  align-self: center;
  flex-shrink: 0;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 6rem 0;
  background: var(--navy);
}

.testimonials .label,
.testimonials h2 {
  color: rgba(255,255,255,0.5);
}

.testimonials h2 {
  color: var(--white);
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial {
  border-top: 2px solid var(--accent);
  padding-top: 1.5rem;
}

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

.testimonial p {
  color: rgba(255,255,255,0.75);
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.testimonial strong {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--accent);
}

/* ── CONTACT ── */
.contact {
  padding: 6rem 0;
  background: var(--white);
}

.contact-details p:not(.label) { margin-bottom: 1rem; }

.contact-items {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ci-icon {
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-row div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-row strong {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
}

.contact-row span { font-size: 0.9rem; color: var(--muted); }

/* ── FORM ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.contact-form textarea { resize: vertical; }

.success-msg {
  display: none;
  color: #2d7a2d;
  font-size: 0.85rem;
  text-align: center;
  font-weight: 600;
}

/* ── FOOTER ── */
footer { background: var(--navy); }

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo-img {
  height: 70px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  object-fit: contain;
}

.footer-col p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.8; }

.footer-col strong {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
  line-height: 1.6;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
}

/* ── PAST PROJECTS ── */
.projects {
  padding: 6rem 0;
  background: var(--off-white);
}

.projects h2 { margin-bottom: 2.5rem; }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.project-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.project-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.project-info { padding: 1.5rem; }

.project-info h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.project-loc {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem !important;
}

.project-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.project-specs span {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--light);
  color: var(--navy);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.project-info p { font-size: 0.85rem; line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .gallery-categories { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; align-items: stretch; }
  .step-divider { width: 80px; height: 1px; align-self: center; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: block; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .communities-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .listings-grid { grid-template-columns: 1fr; }
  .hero { height: 70vh; }
}

@media (max-width: 540px) {
  .gallery-categories { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .about-list { grid-template-columns: 1fr; }
}
