/* ============================================================
   REYES & ASSOCIATES — Luxury Real Estate
   Matte Black | Gold | Desert Modern
   ============================================================ */

:root {
  /* Brand Colors */
  --black:       #0e0e0e;
  --black-soft:  #1a1a1a;
  --black-card:  #1f1f1f;
  --black-border:#2a2a2a;
  --gold:        #c9a96e;
  --gold-light:  #dfc08a;
  --gold-muted:  #a07c4a;
  --warm-white:  #f9f6f1;
  --off-white:   #ede9e2;
  --text-muted:  #8a8a8a;
  --text-light:  #c0bbb2;

  /* Typography */
  --font-serif:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:   'Montserrat', 'Lato', -apple-system, sans-serif;

  /* Spacing */
  --section-pad: clamp(60px, 8vw, 120px);
  --container:   1280px;
  --gutter:      clamp(20px, 4vw, 48px);

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --trans:       0.3s var(--ease);
}

/* ============================================================ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--warm-white);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* prevent horizontal scroll on mobile */
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================ TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title { margin-bottom: 0.4em; }
.section-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 3rem;
}

/* ============================================================ LAYOUT */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: var(--section-pad) 0; }

/* ============================================================ NAVIGATION */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--trans), border-color var(--trans);
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(14,14,14,0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--black-border);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--warm-white);
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 8px 20px;
  font-size: 0.68rem !important;
  transition: background var(--trans), color var(--trans) !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--warm-white);
  transition: var(--trans);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 300;
  color: var(--warm-white);
  letter-spacing: 0.05em;
  transition: color var(--trans);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px; right: var(--gutter);
  background: none;
  border: none;
  color: var(--warm-white);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================ HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black-soft);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,14,14,0.95) 0%,
    rgba(14,14,14,0.3) 50%,
    rgba(14,14,14,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(60px, 8vw, 100px);
  max-width: 820px;
}
.hero-content .eyebrow { margin-bottom: 1.2rem; }
.hero-content h1 {
  color: var(--warm-white);
  margin-bottom: 1.2rem;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-content p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================ BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
  min-height: 48px;
  line-height: 1.4;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--warm-white);
  border: 1px solid rgba(249,246,241,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark {
  background: var(--black-card);
  color: var(--warm-white);
  border: 1px solid var(--black-border);
}
.btn-dark:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================ IDX SEARCH BAND */
.idx-band {
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 32px 0;
}
.idx-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.idx-inner .eyebrow { white-space: nowrap; flex-shrink: 0; }
.idx-search-bar {
  flex: 1;
  min-width: 240px;
  display: flex;
  gap: 0;
}
.idx-search-bar input {
  flex: 1;
  background: var(--black);
  border: 1px solid var(--black-border);
  border-right: none;
  color: var(--warm-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 12px 18px;
  outline: none;
  transition: border-color var(--trans);
  min-height: 48px;
}
.idx-search-bar input::placeholder { color: var(--text-muted); }
.idx-search-bar input:focus { border-color: var(--gold); }
.idx-search-bar button {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--black);
  padding: 12px 20px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--trans);
  min-height: 48px;
  min-width: 48px;
}
.idx-search-bar button:hover { background: var(--gold-light); }
.idx-filters { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.idx-filter-btn {
  background: transparent;
  border: 1px solid var(--black-border);
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  cursor: pointer;
  transition: var(--trans);
  min-height: 44px;
}
.idx-filter-btn:hover,
.idx-filter-btn.active { border-color: var(--gold); color: var(--gold); }

/* ============================================================ PROPERTY CARDS */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2px;
}
.property-card {
  position: relative;
  overflow: hidden;
  background: var(--black-card);
  cursor: pointer;
}
.property-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.property-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.property-card:hover .property-card-img img { transform: scale(1.04); }
.property-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.property-card-body { padding: 1.5rem; }
.property-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.property-address {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}
.property-meta {
  display: flex;
  gap: 1.2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.property-meta span { display: flex; align-items: center; gap: 5px; }

/* ============================================================ SECTIONS */
.section-header { margin-bottom: 3.5rem; }
.section-header .eyebrow { margin-bottom: 0.8rem; }
.divider-gold {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-top: 1.2rem;
}

/* Alternating background */
.bg-soft { background: #111111; }
.bg-card { background: var(--black-card); }

/* ============================================================ STATS ROW */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border: 1px solid var(--black-border);
}
.stat-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--black-border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-item span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================ TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 2.5rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 10px; left: 20px;
  line-height: 1;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--off-white);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-author strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-author span {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 0.8rem; }

/* ============================================================ TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
}
.team-card {
  background: var(--black-card);
  overflow: hidden;
}
.team-card-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--black-soft);
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.4s var(--ease), transform 0.5s var(--ease);
}
.team-card:hover .team-card-photo img {
  filter: grayscale(0%);
  transform: scale(1.02);
}
.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--black-soft);
  border: 1px dashed var(--black-border);
  color: var(--text-muted);
  gap: 0.75rem;
  min-height: 240px;
}
.photo-placeholder svg { opacity: 0.3; }
.photo-placeholder p {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 1rem;
}
.team-card-body { padding: 1.5rem; }
.team-card-body h4 {
  margin-bottom: 0.3rem;
  color: var(--warm-white);
}
.team-role {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.team-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================ NEIGHBORHOODS */
.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
}
.neighborhood-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.neighborhood-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
  filter: brightness(0.6);
}
.neighborhood-card:hover img { transform: scale(1.05); filter: brightness(0.4); }
.neighborhood-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(14,14,14,0.8) 30%, transparent 100%);
}
.neighborhood-card:hover .neighborhood-overlay { background: linear-gradient(to top, rgba(14,14,14,0.95) 50%, rgba(14,14,14,0.4) 100%); }
.neighborhood-overlay h3 { color: var(--warm-white); margin-bottom: 0.3rem; }
.neighborhood-overlay .eyebrow { color: var(--gold); margin-bottom: 0.5rem; }
.neighborhood-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.3s;
  opacity: 0;
  margin-top: 0.5rem;
}
.neighborhood-card:hover .neighborhood-desc { max-height: 120px; opacity: 1; }

/* ============================================================ SERVICES */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-item {
  border-top: 1px solid var(--black-border);
  padding-top: 1.5rem;
}
.service-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--black-border);
  line-height: 1;
  margin-bottom: 1rem;
}
.service-item h4 { margin-bottom: 0.6rem; }
.service-item p { font-size: 0.875rem; color: var(--text-muted); }

/* ============================================================ MARKET REPORTS */
.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.report-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 2rem;
  transition: border-color var(--trans);
}
.report-card:hover { border-color: var(--gold); }
.report-date {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.report-card h4 { margin-bottom: 0.6rem; }
.report-card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.report-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-muted);
  padding-bottom: 2px;
}

/* ============================================================ CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { padding-top: 0.5rem; }
.contact-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact-detail {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--black-border);
}
.contact-detail .eyebrow { margin-bottom: 0.4rem; }
.contact-detail a {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--warm-white);
  transition: color var(--trans);
}
.contact-detail a:hover { color: var(--gold); }
.contact-form-wrapper {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 3rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--black-border);
  color: var(--warm-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--trans);
  -webkit-appearance: none;
  min-height: 48px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { cursor: pointer; color: var(--warm-white); }
.form-group select option { background: var(--black-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================================================ FOOTER */
footer {
  background: #080808;
  border-top: 1px solid var(--black-border);
  padding: 60px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--black-border);
}
.footer-brand .nav-logo { font-size: 1.4rem; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; max-width: 260px; }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--trans);
}
.footer-col ul a:hover { color: var(--warm-white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.72rem; color: var(--text-muted); }
.footer-social { display: flex; gap: 1.2rem; }
.footer-social a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--trans);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.footer-social a:hover { color: var(--gold); }

/* ============================================================ SOLD GRID */
.sold-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
}
.sold-card {
  position: relative;
  overflow: hidden;
  background: var(--black-card);
}
.sold-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.sold-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 0.4s var(--ease), transform 0.5s var(--ease);
}
.sold-card:hover .sold-card-img img { filter: grayscale(0%); transform: scale(1.03); }
.sold-ribbon {
  position: absolute;
  top: 16px; left: 0;
  background: #8B0000;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 14px 4px 12px;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 50%, calc(100% - 6px) 100%, 0 100%);
}
.sold-card-body { padding: 1.2rem 1.5rem; }
.sold-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.sold-address { font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.5rem; }
.sold-meta { font-size: 0.72rem; color: var(--text-muted); }

/* ============================================================ PLACEHOLDER */
.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
  color: var(--text-muted);
  text-align: center;
  padding: 2rem;
  gap: 1rem;
}
.placeholder-img .ph-icon {
  font-size: 2.5rem;
  opacity: 0.2;
}
.placeholder-img p {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  max-width: 160px;
}
.placeholder-landscape { aspect-ratio: 16/9; }
.placeholder-square { aspect-ratio: 1; }

/* ============================================================ SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-indicator span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ============================================================ TWO-CTA BAND */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cta-half {
  padding: clamp(50px, 7vw, 90px) clamp(30px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.cta-half:first-child { background: var(--gold); }
.cta-half:last-child { background: var(--black-soft); border: 1px solid var(--black-border); }
.cta-half:first-child h3,
.cta-half:first-child p { color: var(--black); }
.cta-half:first-child h3 { font-family: var(--font-serif); }
.cta-half p { font-size: 0.9rem; opacity: 0.8; max-width: 320px; }

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .listings-grid { grid-template-columns: 1fr; }
  .sold-grid { grid-template-columns: 1fr; }
  .cta-split { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stats-row .stat-item:nth-child(even) { border-right: none; }
  .form-row { grid-template-columns: 1fr; }
  .neighborhood-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .stats-row { grid-template-columns: 1fr; }
  .stats-row .stat-item { border-right: none; border-bottom: 1px solid var(--black-border); }
  .stats-row .stat-item:last-child { border-bottom: none; }
  .reports-grid { grid-template-columns: 1fr; }
  .idx-inner { flex-direction: column; align-items: flex-start; }
  .idx-search-bar { width: 100%; }
  .listings-grid { grid-template-columns: 1fr; }
}
