/* ══════════════════════════════════════════════════════
   NEIGHBORHOOD GUIDE PAGES — shared styles
   ══════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────── */
.nbhd-hero {
  position: relative;
  min-height: 90vh;
  background-size: cover;
  background-position: center 30%;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.nbhd-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 20, 40, 0.25) 0%,
    rgba(10, 20, 40, 0.55) 60%,
    rgba(10, 20, 40, 0.85) 100%
  );
}

.nbhd-hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.nbhd-hero__eyebrow {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b8944a;
  margin: 0 0 0.75rem;
}

.nbhd-hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 0 0 0.75rem;
}

.nbhd-hero__subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  max-width: 540px;
}

.nbhd-hero__stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
}

.nbhd-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nbhd-hero__stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #b8944a;
  line-height: 1;
}

.nbhd-hero__stat-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Intro ────────────────────────────────────────────── */
.nbhd-intro {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: #fff;
}

.nbhd-intro__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.nbhd-intro__facts {
  background: #f9f7f3;
  border: 1px solid rgba(20, 48, 90, 0.1);
  border-radius: 16px;
  padding: 1.75rem;
  position: sticky;
  top: 100px;
}

.nbhd-intro__facts-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #14305a;
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #b8944a;
}

.nbhd-facts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.nbhd-facts-list li {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.83rem;
  color: oklch(0.4 0.02 230);
  line-height: 1.5;
}

.nbhd-facts-list li strong {
  color: #14305a;
  font-weight: 600;
}

/* ── Sub-neighborhoods ────────────────────────────────── */
.nbhd-sub__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.nbhd-sub__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.5rem 1.5rem 1.75rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nbhd-sub__card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(184, 148, 74, 0.45);
}

.nbhd-sub__card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #b8944a;
  margin: 0 0 0.6rem;
}

.nbhd-sub__card p {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.83rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ── Market Data ──────────────────────────────────────── */
.nbhd-market {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #fff;
}

.nbhd-market__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(20, 48, 90, 0.1);
  border: 1px solid rgba(20, 48, 90, 0.1);
  border-radius: 16px;
  overflow: hidden;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.nbhd-market__card {
  background: #fff;
  padding: 1.75rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: background 0.2s ease;
}

.nbhd-market__card:hover {
  background: #f9f7f3;
}

.nbhd-market__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #14305a;
  line-height: 1;
}

.nbhd-market__label {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: oklch(0.35 0.03 230);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nbhd-market__note {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.71rem;
  color: #b8944a;
  font-weight: 500;
}

.nbhd-market__source {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.72rem;
  color: oklch(0.55 0.02 230);
  margin-top: 1rem;
  text-align: center;
}

/* ── Lifestyle ────────────────────────────────────────── */
.nbhd-lifestyle {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.nbhd-lifestyle__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.nbhd-lifestyle__item {
  background: #fff;
  border: 1px solid rgba(20, 48, 90, 0.08);
  border-radius: 14px;
  padding: 1.5rem 1.5rem 1.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nbhd-lifestyle__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(20, 48, 90, 0.1);
}

.nbhd-lifestyle__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.nbhd-lifestyle__item h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #14305a;
  margin: 0 0 0.6rem;
}

.nbhd-lifestyle__item p {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.83rem;
  line-height: 1.65;
  color: oklch(0.45 0.02 230);
  margin: 0;
}

/* ── Agent Section ────────────────────────────────────── */
.nbhd-agent__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.nbhd-agent__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.nbhd-agent__list li {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.nbhd-agent__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  background: #b8944a;
  border-radius: 50%;
}

.nbhd-agent__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nbhd-agent__photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.nbhd-agent__photo {
  width: 100%;
  max-width: 280px;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3/4;
  border: 3px solid rgba(184, 148, 74, 0.3);
}

.nbhd-agent__card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.nbhd-agent__card strong {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.nbhd-agent__card span {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── FAQ ──────────────────────────────────────────────── */
.nbhd-faq {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #fff;
}

.faq-list {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(20, 48, 90, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: #b8944a;
}

.faq-q {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #14305a;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: #fff;
  transition: background 0.2s ease;
}

.faq-item[open] .faq-q {
  background: #f9f7f3;
  color: #b8944a;
}

.faq-q::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: #b8944a;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-q::after {
  content: '−';
}

.faq-a {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.88rem;
  line-height: 1.7;
  color: oklch(0.4 0.02 230);
  padding: 1rem 1.5rem 1.25rem;
  margin: 0;
  background: #fff;
  border-top: 1px solid rgba(20, 48, 90, 0.07);
}

/* ── Nav active state ─────────────────────────────────── */
.nav__links a.active {
  color: var(--color-accent, #b8944a);
  font-weight: 600;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .nbhd-intro__grid { grid-template-columns: 1fr; }
  .nbhd-intro__facts { position: static; }
  .nbhd-sub__grid { grid-template-columns: repeat(2, 1fr); }
  .nbhd-market__grid { grid-template-columns: repeat(2, 1fr); }
  .nbhd-lifestyle__grid { grid-template-columns: repeat(2, 1fr); }
  .nbhd-agent__grid { grid-template-columns: 1fr; }
  .nbhd-agent__photo-wrap { flex-direction: row; align-items: flex-start; }
}

@media (max-width: 600px) {
  .nbhd-hero { min-height: 70vh; }
  .nbhd-hero__stats { gap: 1.25rem; }
  .nbhd-sub__grid { grid-template-columns: 1fr; }
  .nbhd-market__grid { grid-template-columns: repeat(2, 1fr); }
  .nbhd-lifestyle__grid { grid-template-columns: 1fr; }
  .nbhd-agent__photo-wrap { flex-direction: column; }
}
