@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --cream:      #F6F1E8;
  --cream-dark: #EDE6D8;
  --sage:       #A8B8A3;
  --crow:       #2E2E33;
  --rose:       #CFA78D;
  --white:      #FFFFFF;
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--crow);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
}

/* =====================
   NAV
===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, padding 0.3s ease;
}
nav.scrolled {
  background: var(--cream);
  padding: 16px 48px;
  box-shadow: 0 1px 0 rgba(46,46,51,0.08);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--crow);
  letter-spacing: 0.04em;
}
.nav-logo span { color: var(--rose); }
.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crow);
  opacity: 0.75;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--crow) !important;
  color: var(--cream) !important;
  opacity: 1 !important;
  padding: 11px 24px;
  font-size: 0.7rem !important;
  letter-spacing: 0.14em;
}
.nav-cta:hover { background: var(--rose) !important; }

/* =====================
   HERO BANNER
===================== */
.nbhd-hero {
  height: 60vh;
  min-height: 440px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.nbhd-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 1.2s ease;
}
.nbhd-hero-img.loaded { transform: scale(1); }
.nbhd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,29,27,0.72) 0%, rgba(30,29,27,0.15) 60%, transparent 100%);
}
.nbhd-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 56px;
  color: var(--cream);
}
.nbhd-hero-content .eyebrow { color: var(--rose); margin-bottom: 12px; }
.nbhd-hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.05;
}
.nbhd-breadcrumb {
  position: absolute;
  top: 100px;
  left: 64px;
  z-index: 2;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246,241,232,0.7);
  display: flex;
  gap: 10px;
  align-items: center;
}
.nbhd-breadcrumb a { color: inherit; transition: color 0.2s; }
.nbhd-breadcrumb a:hover { color: var(--rose); }
.nbhd-breadcrumb span { opacity: 0.5; }

/* =====================
   INTRO SECTION
===================== */
.nbhd-intro {
  padding: 100px 0;
  border-bottom: 1px solid rgba(46,46,51,0.1);
}
.nbhd-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.nbhd-intro-text h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 28px;
  font-style: italic;
}
.nbhd-intro-text p {
  font-size: 0.97rem;
  line-height: 1.9;
  color: rgba(46,46,51,0.8);
  margin-bottom: 20px;
}
.nbhd-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}
.nbhd-stat {
  border-left: 2px solid var(--rose);
  padding-left: 20px;
}
.nbhd-stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--crow);
  line-height: 1;
  margin-bottom: 4px;
}
.nbhd-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(46,46,51,0.55);
}
.nbhd-stat-note {
  font-size: 0.75rem;
  color: rgba(46,46,51,0.4);
  margin-top: 4px;
  font-style: italic;
}

/* =====================
   WHAT IT'S LIKE
===================== */
.nbhd-character {
  padding: 100px 0;
  background: var(--cream-dark);
}
.nbhd-character h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-style: italic;
  margin-bottom: 56px;
  max-width: 600px;
}
.nbhd-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.nbhd-pillar-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}
.nbhd-pillar h3 {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 12px;
}
.nbhd-pillar p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(46,46,51,0.75);
}

/* =====================
   MELLIE CTA
===================== */
.nbhd-cta {
  padding: 100px 0;
  background: var(--crow);
  color: var(--cream);
}
.nbhd-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.nbhd-cta .eyebrow { color: var(--rose); margin-bottom: 16px; }
.nbhd-cta h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-style: italic;
  color: var(--cream);
  margin-bottom: 20px;
}
.nbhd-cta p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(246,241,232,0.7);
}
.nbhd-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 220px;
}
.btn-light {
  display: block;
  text-align: center;
  background: var(--cream);
  color: var(--crow);
  padding: 16px 28px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.25s ease;
}
.btn-light:hover { background: var(--rose); color: var(--cream); }
.btn-ghost-light {
  display: block;
  text-align: center;
  border: 1px solid rgba(246,241,232,0.35);
  color: var(--cream);
  padding: 16px 28px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 0.25s, color 0.25s;
}
.btn-ghost-light:hover { border-color: var(--rose); color: var(--rose); }

/* =====================
   FOOTER
===================== */
footer {
  background: var(--crow);
  color: rgba(246,241,232,0.6);
  padding: 64px 0 40px;
  border-top: 1px solid rgba(246,241,232,0.08);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.8; }
.footer-contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact a {
  font-size: 0.85rem;
  color: var(--rose);
  transition: opacity 0.2s;
}
.footer-contact a:hover { opacity: 0.75; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--rose); }
.footer-bottom {
  border-top: 1px solid rgba(246,241,232,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal { font-size: 0.75rem; max-width: 640px; line-height: 1.6; }
.footer-social-links { display: flex; gap: 24px; }
.footer-social-links a { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.footer-social-links a:hover { color: var(--rose); }

/* =====================
   REVEAL ANIMATION
===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nbhd-hero-content { padding: 0 24px 40px; }
  .nbhd-breadcrumb { left: 24px; }
  .nbhd-intro-inner { grid-template-columns: 1fr; gap: 48px; }
  .nbhd-pillars { grid-template-columns: 1fr; gap: 36px; }
  .nbhd-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .nav-links { display: none; }
}
