/* ============================================================
   NEIGHBORHOOD STANDALONE PAGE STYLES
   ============================================================ */

.nh-page-header .header-inner {
  max-width: var(--content-wide);
}

/* Hero */
.nh-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, var(--color-primary) 0%, #0D1520 100%);
  overflow: hidden;
}

.nh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,21,32,0.92) 0%, rgba(27,42,74,0.5) 100%);
}

.nh-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  padding-bottom: var(--space-16);
}

.nh-hero-content h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.1;
  margin: var(--space-3) 0 var(--space-4);
}

.nh-hero-sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: var(--space-8);
}

.nh-hero-stats {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.nh-stat-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(197,163,90,0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nh-stat-val {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1;
}

.nh-stat-lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
}

/* Two-column layout */
.nh-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

@media (min-width: 900px) {
  .nh-two-col {
    grid-template-columns: 1fr 340px;
    align-items: start;
  }
}

.nh-body h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text);
  margin: var(--space-3) 0 var(--space-5);
}

.nh-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  margin: var(--space-8) 0 var(--space-4);
}

.nh-body p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.nh-sublist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.nh-sublist li {
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
}

.nh-sublist li strong {
  color: var(--color-text);
  display: block;
  margin-bottom: 2px;
}

/* Sidebar */
.nh-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  position: sticky;
  top: 80px;
}

.nh-contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
}

.nh-contact-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin-bottom: var(--space-2);
}

.nh-contact-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

.nh-contact-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
}

.nh-contact-desc {
  font-size: 0.8rem !important;
  line-height: 1.5;
  margin: var(--space-2) 0 var(--space-4) !important;
}

.nh-cta-btn {
  display: inline-block;
  background: var(--color-accent);
  color: #FFFFFF;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-sm);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background var(--transition-interactive);
  text-align: center;
  width: 100%;
}

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

.nh-cta-btn-outline {
  display: inline-block;
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-sm);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background var(--transition-interactive), color var(--transition-interactive);
  text-align: center;
}

.nh-cta-btn-outline:hover {
  background: var(--color-accent);
  color: #FFFFFF;
}

.nh-phone-link {
  display: block;
  text-align: center;
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}

.nh-data-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.nh-data-card h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nh-data-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-divider);
  font-size: var(--text-sm);
  gap: var(--space-3);
}

.nh-data-row:last-child { border-bottom: none; }
.nh-data-row span { color: var(--color-text-muted); }
.nh-data-row strong { color: var(--color-text); font-weight: 600; text-align: right; }

/* Split layout */
.nh-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

@media (min-width: 768px) {
  .nh-split { grid-template-columns: 1fr 1fr; }
}

.nh-split h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  margin: var(--space-2) 0 var(--space-4);
}

.nh-split p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}

/* Highlight box */
.nh-highlight-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  max-width: 800px;
  margin: 0 auto;
}

.nh-highlight-box h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  margin: var(--space-2) 0 var(--space-4);
}

.nh-highlight-box p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}

/* CTA section */
.nh-cta-section {
  background: var(--color-primary);
}

.nh-cta-section * { color: #FFFFFF !important; }
.nh-cta-section .section-eyebrow { color: var(--color-accent) !important; }

.nh-cta-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .nh-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.nh-cta-inner h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  margin: 0 0 var(--space-3);
}

.nh-cta-inner p {
  font-size: var(--text-sm);
  opacity: 0.8;
  max-width: 500px;
  line-height: 1.6;
  margin: 0;
}

.nh-cta-section .nh-cta-btn {
  background: var(--color-accent);
  white-space: nowrap;
}

.nh-cta-section .nh-cta-btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: #FFFFFF !important;
  white-space: nowrap;
}

.nh-cta-section .nh-cta-btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

.nh-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .nh-cta-buttons { flex-direction: row; }
}

/* Related neighborhoods */
.nh-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-5);
}

@media (min-width: 640px) {
  .nh-related-grid { grid-template-columns: repeat(3, 1fr); }
}

.nh-related-card {
  display: block;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  text-align: center;
  transition: border-color var(--transition-interactive), color var(--transition-interactive);
}

.nh-related-card:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Footer simple */
.footer-simple {
  text-align: center;
  padding: var(--space-10) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.footer-simple p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
}

.footer-simple a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-simple a:hover { color: var(--color-accent); }
.footer-copy { font-size: 0.75rem !important; opacity: 0.6; }

/* nh-section spacing */
.nh-section { padding: var(--space-20) 0; }
