/* =============================================================
   NEIGHBORHOOD LANDING PAGE
   ============================================================= */

/* ---------- HERO ---------- */
.nbhd-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 11vh, 130px) 0 clamp(56px, 8vh, 96px);
  color: var(--cream);
}
.nbhd-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 3px);
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 1;
}
.nbhd-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
@media (max-width: 880px) {
  .nbhd-hero-inner { grid-template-columns: 1fr; gap: 28px; }
}

.nbhd-hero h1 {
  font-family: var(--display);
  font-size: clamp(64px, 11vw, 168px);
  line-height: 0.84;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 8px 0 24px;
  text-shadow: 0 4px 30px rgba(11, 47, 63, 0.18);
}
.nbhd-hero .eyebrow {
  color: var(--cream);
}
.nbhd-hero .lede-h1 {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  color: rgba(255, 248, 235, 0.92);
  font-weight: 500;
  max-width: 560px;
  margin: 0 0 32px;
}

/* Hero variant per hood */
.hero-wynwood {
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, var(--yellow) 0%, transparent 55%),
    linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
}
.hero-coconut-grove {
  background:
    radial-gradient(ellipse 50% 60% at 80% 100%, rgba(255, 214, 10, 0.45) 0%, transparent 55%),
    linear-gradient(160deg, var(--teal-deep) 0%, var(--navy) 100%);
}
.hero-south-beach {
  background:
    radial-gradient(ellipse 60% 70% at 50% 100%, rgba(255, 214, 10, 0.5) 0%, transparent 55%),
    linear-gradient(135deg, var(--orange) 0%, var(--pink) 100%);
}
.hero-brickell {
  background:
    radial-gradient(ellipse 50% 60% at 90% 30%, rgba(0, 206, 203, 0.6) 0%, transparent 60%),
    linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
}
.hero-design-district {
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, var(--orange) 0%, transparent 55%),
    linear-gradient(180deg, var(--yellow) 0%, var(--orange) 100%);
  color: var(--navy);
}
.hero-design-district h1, .hero-design-district .lede-h1, .hero-design-district .eyebrow,
.hero-design-district .nbhd-stat-num, .hero-design-district .nbhd-stat-label {
  color: var(--navy);
}
.hero-design-district .nbhd-stat-num { color: var(--pink-deep); }
.hero-little-haiti {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255, 214, 10, 0.4) 0%, transparent 55%),
    linear-gradient(135deg, var(--pink-deep) 0%, var(--navy) 100%);
}

/* Quick stats column */
.nbhd-hero-stats {
  background: rgba(11, 47, 63, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 248, 235, 0.22);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.hero-design-district .nbhd-hero-stats {
  background: rgba(11, 47, 63, 0.08);
  border-color: rgba(11, 47, 63, 0.18);
}
.nbhd-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nbhd-stat-label {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 248, 235, 0.6);
}
.nbhd-stat-num {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.005em;
  color: var(--yellow);
  text-transform: uppercase;
  line-height: 1;
}

/* Hero CTA row */
.nbhd-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.nbhd-hero-cta .btn-primary {
  background: var(--cream);
  color: var(--navy);
}
.nbhd-hero-cta .btn-primary:hover {
  background: var(--yellow);
}
.nbhd-hero-cta .btn-ghost {
  color: var(--cream);
  border-color: var(--cream);
}
.nbhd-hero-cta .btn-ghost:hover {
  background: var(--cream);
  color: var(--navy);
}
.hero-design-district .nbhd-hero-cta .btn-ghost {
  color: var(--navy);
  border-color: var(--navy);
}

/* ---------- ABOUT ---------- */
.nbhd-about {
  padding: clamp(72px, 11vh, 110px) 0;
  background: var(--cream);
}
.nbhd-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 880px) {
  .nbhd-about-grid { grid-template-columns: 1fr; gap: 28px; }
}

.nbhd-about-side h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 12px 0 24px;
}
.nbhd-about-side h2 em {
  font-family: var(--script);
  font-style: normal;
  font-size: 0.7em;
  color: var(--pink-deep);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.nbhd-quick-list {
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--navy);
}
.nbhd-quick-list li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.nbhd-quick-list li span:first-child {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.005em;
  color: var(--navy);
  text-transform: uppercase;
}
.nbhd-quick-list li span:last-child {
  color: var(--ink-mute);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  align-self: center;
}

.nbhd-about-body p {
  font-size: clamp(16px, 1.4vw, 18.5px);
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 22px;
}
.nbhd-about-body p:first-child {
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.5;
  color: var(--navy);
  font-weight: 500;
}
.nbhd-about-body a {
  color: var(--pink-deep);
  border-bottom: 1px solid currentColor;
}

/* ---------- SHOPS IN HOOD ---------- */
.nbhd-shops {
  background: var(--cream-deep);
}
.nbhd-shops .card {
  background: var(--cream);
}

/* ---------- AROUND THE CORNER ---------- */
.nbhd-around {
  background: var(--cream);
}
.around-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .around-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .around-grid { grid-template-columns: 1fr; } }

.around-card {
  padding: 24px;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .25s, transform .25s;
}
.around-card:hover {
  border-color: var(--pink);
  transform: translateY(-2px);
}
.around-cat {
  display: inline-block;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 14px;
}
.around-card h3 {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1;
}
.around-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- OTHER NEIGHBORHOODS ---------- */
.nbhd-other {
  background: var(--cream-deep);
}
.other-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 880px) { .other-grid { grid-template-columns: 1fr 1fr; } }
.other-card {
  padding: 24px 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color .25s, transform .25s, background .25s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.other-card:hover {
  border-color: var(--pink);
  transform: translateY(-2px);
  background: var(--cream);
}
.other-card .name {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
}
.other-card .meta {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.other-card .arrow {
  margin-top: 4px;
  color: var(--pink-deep);
  font-size: 16px;
}
