/* ============================================================
   Shared neighborhood page styles
   Matches main-site nav + typography. Used by all 15 pages.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: #1c1c1e;
  background: #fbfbfa;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

:root {
  --navy:  #002A4E;
  --navy2: #003a6a;
  --gray:  #f0f2f4;
  --white: #fbfbfa;
  --warm:  #f8f8f6;
  --body:  #1c1c1e;
  --text:  #2e4155;
  --mid:   #5a6a78;
  --faint: #c2cdd6;
  --rule:  #dde4ea;
  --accent: #6b8fa8;
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Montserrat', system-ui, sans-serif;
}

/* ── NAV — matches main site exactly ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 84px; padding: 0 64px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .3s, border-color .3s;
  background: transparent; border-bottom: 1px solid transparent;
}
nav.solid {
  background: rgba(255,255,255,.97);
  border-bottom-color: var(--rule);
  backdrop-filter: blur(10px);
}
.nav-logo {
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; flex-shrink: 0;
  color: var(--white);
  transition: color .3s;
  background: transparent;
  width: auto; height: auto;
}
nav.solid .nav-logo { color: var(--navy); }
.nav-logo svg { height: 37px; width: auto; display: block; }
.nav-logo img { height: 37px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; transition: color .2s;
  color: rgba(255,255,255,.8);
}
nav.solid .nav-links a { color: var(--mid); }
.nav-links a:hover { color: var(--white); }
nav.solid .nav-links a:hover { color: var(--navy); }
.nav-cta {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; color: var(--white);
  border: 1px solid rgba(255,255,255,.5);
  padding: 10px 22px; border-radius: 999px;
  transition: all .3s;
  border-bottom: 1px solid rgba(255,255,255,.5);
}
nav.solid .nav-cta { color: var(--navy); border-color: var(--navy); }
.nav-cta:hover { background: var(--white); color: var(--navy); }
nav.solid .nav-cta:hover { background: var(--navy); color: var(--white); }

/* ── HERO — photo full-bleed at top, breadcrumb under it ── */
.hero {
  display: block;
  background: #fff;
  margin-top: 0;
}
.hero-photo {
  position: relative;
  width: 100%; height: 48vh; min-height: 360px;
  background: var(--gray);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-photo-label {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint);
  position: relative; z-index: 1;
}
/* Soft gradient at the top of the photo so the white nav text stays legible */
.hero-photo::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(0,20,40,.45) 0%, rgba(0,20,40,0) 100%);
  pointer-events: none; z-index: 1;
}

.breadcrumb {
  background: var(--gray); padding: 16px 80px;
  display: flex; align-items: center; gap: 10px;
}
.breadcrumb a {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mid); text-decoration: none;
}
.breadcrumb a:hover { color: var(--navy); }
.bc-sep { color: var(--faint); font-size: 10px; }
.bc-cur {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy);
}

/* ── HERO TEXT now lives inside main-col so sidebar runs alongside ── */
.hero-text {
  padding: 40px 80px 0;
}
.hero-area {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.hero-area::before {
  content: ''; width: 28px; height: 1px;
  background: var(--navy); opacity: .4; flex-shrink: 0;
}
.hero-name {
  font-family: var(--serif);
  font-size: clamp(56px, 6.4vw, 100px);
  font-weight: 400; color: var(--navy);
  line-height: 1.02; letter-spacing: -0.02em;
}
.hero-name em { font-style: italic; }

/* ── PAGE GRID — main col + sidebar running full length ── */
.page-grid {
  display: grid; grid-template-columns: 1fr 380px;
  background: #fff;
}
.main-col { border-right: 1px solid var(--rule); }
.intro-block {
  padding: 28px 80px 40px;
}
.content-block {
  padding: 36px 80px;
  border-top: 1px solid var(--rule);
}
.content-block:last-child { padding-bottom: 56px; }

/* Tagline as the body's lead */
.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400; font-style: italic;
  color: var(--navy);
  line-height: 1.35; letter-spacing: -0.005em;
  margin-bottom: 16px;
}
.by-line {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 28px;
}
.prose {
  font-family: var(--sans); font-size: 15px; font-weight: 400;
  line-height: 1.78; color: var(--text); margin-bottom: 16px;
}

/* ── SIDEBAR ── */
.intro-sidebar {
  padding: 28px 40px 40px;
  display: flex; flex-direction: column; gap: 28px;
}
.love-grid { display: flex; flex-direction: column; gap: 14px; }
.love-item {
  font-family: var(--sans); font-size: 14px; font-weight: 400;
  line-height: 1.6; color: var(--mid);
  display: flex; align-items: flex-start; gap: 12px;
}
.love-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--navy); flex-shrink: 0; margin-top: 8px;
}
.info-block { border-top: 1px solid var(--rule); padding-top: 28px; }
.info-label {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 14px;
}
.info-text {
  font-family: var(--sans); font-size: 14px; font-weight: 400;
  line-height: 1.75; color: var(--mid);
}
.school-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.school-list li {
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  line-height: 1.6; color: var(--mid);
  padding-left: 16px; position: relative;
}
.school-list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 5px; height: 1px; background: var(--faint);
}

/* ── CONTENT SECTIONS ── */
.section-label {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; width: 20px; height: 1px;
  background: var(--navy); opacity: .4;
}
.section-title {
  font-family: var(--serif); font-size: 28px; font-weight: 400;
  color: var(--navy); margin-bottom: 18px; line-height: 1.2;
}
.section-body {
  font-family: var(--sans); font-size: 15px; font-weight: 400;
  line-height: 1.78; color: var(--text);
}

/* ── CTA BAR ── */
.cta-bar {
  background: var(--navy);
  padding: 64px 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 60px;
}
.cta-text {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px); font-weight: 400;
  color: #fff; line-height: 1.15;
}
.cta-text em { font-style: italic; color: rgba(255,255,255,.6); }
.cta-right {
  flex-shrink: 0; display: flex; flex-direction: column;
  gap: 16px; align-items: flex-end;
}
.btn-w {
  display: inline-block;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; background: #fff; color: var(--navy);
  padding: 15px 34px; border-radius: 999px; white-space: nowrap;
  transition: opacity .2s;
}
.btn-w:hover { opacity: .85; }
.cta-sub {
  font-family: var(--sans); font-size: 11px; font-weight: 300;
  color: rgba(255,255,255,.4); letter-spacing: 0.1em;
}

/* ── PHOTO GRID at bottom ── */
.photo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--rule);
}
.photo-grid-item {
  aspect-ratio: 4/3; background: var(--gray);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  overflow: hidden;
}
.photo-grid-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.photo-grid-item-label {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint);
}

/* ── SIDEBAR PHOTO ── */
.sidebar-photo {
  width: 100%; aspect-ratio: 3/4;
  background: var(--gray); border: 1px solid var(--rule);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; flex-shrink: 0; overflow: hidden;
}
.sidebar-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.sidebar-photo-label {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint);
}

/* ── FOOTER ── */
footer {
  background: #f0f2f4;
  border-top: 1px solid var(--rule);
  padding: 32px 80px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.foot-left {
  font-family: var(--sans); font-size: 12px; font-weight: 400; color: var(--navy);
}
.foot-left em { font-style: italic; }
.foot-legal {
  font-family: var(--sans); font-size: 10px; font-weight: 300;
  color: var(--faint); max-width: 500px; line-height: 1.7;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; height: 64px; }
  .nav-links { display: none; }
  .hero-photo { height: 50vh; min-height: 320px; }
  .breadcrumb { padding: 14px 28px; }
  .hero-text { padding: 40px 28px 0; }
  .page-grid { grid-template-columns: 1fr; }
  .main-col { border-right: none; }
  .intro-block { padding: 28px 28px 48px; }
  .content-block { padding: 48px 28px; }
  .intro-sidebar { padding: 40px 28px; border-top: 1px solid var(--rule); }
  .cta-bar { flex-direction: column; align-items: flex-start; padding: 64px 28px; gap: 32px; }
  .cta-right { align-items: flex-start; }
  footer { flex-direction: column; text-align: center; padding: 24px 28px; }
  .photo-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   UMBRELLA-PAGE COMPONENTS
   Used by pages that combine multiple sub-areas under one URL
   (Madison Park, Laurelhurst & Windermere, Shoreline & North End, etc.)
   ============================================================ */

/* Draft / coming-soon banner — remove the markup once page is finalized */
.page-status {
  background: var(--warm);
  border-bottom: 1px solid var(--rule);
  padding: 14px 80px;
}
.page-status-inner {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.page-status-label {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 5px 12px;
  flex-shrink: 0;
}
.page-status-text {
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  font-style: italic;
  color: var(--mid);
  line-height: 1.6;
}

/* Sticky sub-area anchor nav */
.subnav {
  position: sticky; top: 84px; z-index: 50;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
  padding: 16px 80px;
  display: flex; align-items: center; gap: 28px;
}
.subnav-label {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mid);
  display: flex; align-items: center; gap: 14px;
  flex-shrink: 0;
}
.subnav-label::after {
  content: ''; width: 28px; height: 1px;
  background: var(--navy); opacity: .35;
}
.subnav ul {
  display: flex; align-items: center; gap: 28px;
  list-style: none; margin: 0; padding: 0;
}
.subnav a {
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mid); text-decoration: none;
  padding: 4px 0; transition: color .2s;
}
.subnav a:hover { color: var(--navy); }
.subnav a.exclusive-link { color: var(--navy); font-weight: 500; }
.subnav a.exclusive-link::after {
  content: '★'; margin-left: 6px; font-size: 10px;
}

/* Sub-area sections — alternating photo + text rows */
.subarea {
  border-top: 1px solid var(--rule);
  padding: 64px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  scroll-margin-top: 140px;
  background: #fff;
}
.subarea.flip .subarea-text { order: 2; }
.subarea.flip .subarea-photo { order: 1; }

.subarea-photo {
  width: 100%; aspect-ratio: 4/5;
  background: var(--gray);
  border: 1px solid var(--rule);
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.subarea-photo-label {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--faint);
}
.subarea-eyebrow {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mid);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.subarea-eyebrow::before {
  content: ''; width: 28px; height: 1px;
  background: var(--navy); opacity: .4;
  flex-shrink: 0;
}
.subarea-title {
  font-family: var(--serif); font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 400; line-height: 1.06;
  color: var(--navy); letter-spacing: -0.02em;
  margin-bottom: 26px;
}
.subarea-title em { font-style: italic; }
.subarea-body {
  font-family: var(--sans); font-size: 15px; font-weight: 400;
  line-height: 1.78; color: var(--text);
  margin-bottom: 16px;
}

/* Exclusive-community treatment for gated/private sub-areas */
.subarea.exclusive {
  background: linear-gradient(180deg, var(--warm) 0%, #f4f6f8 100%);
}
.exclusive-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
  padding: 6px 0;
}
.exclusive-badge::before { content: '★'; font-size: 12px; }
.exclusive-callout {
  margin-top: 36px;
  background: var(--navy);
  padding: 36px 40px;
  color: #fff;
  border-radius: 4px;
}
.exclusive-callout-eyebrow {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
}
.exclusive-callout-title {
  font-family: var(--serif); font-size: 26px; font-weight: 400;
  color: #fff; line-height: 1.25; margin-bottom: 22px;
}
.exclusive-callout-title em { font-style: italic; color: rgba(255,255,255,.65); }
.exclusive-callout-list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.exclusive-callout-list li {
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  line-height: 1.6; color: rgba(255,255,255,.85);
  padding-left: 18px; position: relative;
}
.exclusive-callout-list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 8px; height: 1px; background: rgba(255,255,255,.45);
}
.exclusive-callout .btn-w {
  font-size: 11px; padding: 14px 28px;
}

/* Umbrella mobile */
@media (max-width: 900px) {
  .page-status { padding: 12px 28px; }
  .subnav { padding: 12px 28px; gap: 16px; flex-wrap: wrap; top: 64px; }
  .subnav ul { gap: 18px; flex-wrap: wrap; }
  .subarea {
    grid-template-columns: 1fr; gap: 36px; padding: 64px 28px;
  }
  .subarea.flip .subarea-text { order: 0; }
  .subarea.flip .subarea-photo { order: 0; }
  .subarea-photo { aspect-ratio: 4/3; }
  .exclusive-callout { padding: 28px 24px; }
}

/* ============================================================
   REGIONAL-HUB COMPONENTS
   Used by region landing pages (northeast-seattle, northwest-seattle, etc.)
   Short intro + grid of cards linking to the umbrella pages within.
   ============================================================ */

.hub-intro {
  padding: 56px 80px 32px;
  max-width: 880px;
}
.hub-intro .hero-area {
  margin-bottom: 22px;
}
.hub-intro .hero-name {
  font-size: clamp(48px, 5.4vw, 80px);
  margin-bottom: 28px;
}
.hub-intro .hero-tagline {
  margin-bottom: 16px;
}

.hub-section {
  padding: 0 80px 64px;
  background: #fff;
}
.hub-section-label {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mid);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.hub-section-label::before {
  content: ''; width: 28px; height: 1px;
  background: var(--navy); opacity: .4;
  flex-shrink: 0;
}
.hub-section-title {
  font-family: var(--serif); font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 400; line-height: 1.1;
  color: var(--navy); letter-spacing: -0.02em;
  margin-bottom: 36px;
}

.hub-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.hub-card {
  background: #fff;
  padding: 40px 40px 36px;
  text-decoration: none;
  display: flex; flex-direction: column; gap: 14px;
  cursor: pointer;
  transition: background .2s;
  min-height: 240px;
}
.hub-card:hover { background: var(--warm); }
.hub-card-area {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mid);
}
.hub-card-name {
  font-family: var(--serif); font-size: 28px; font-weight: 400;
  color: var(--navy); line-height: 1.18;
}
.hub-card-name em { font-style: italic; }
.hub-card-desc {
  font-family: var(--sans); font-size: 14px; font-weight: 400;
  line-height: 1.7; color: var(--text);
}
.hub-card-link {
  margin-top: auto; padding-top: 14px;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--navy);
}
.hub-card-link::after {
  content: ' →'; opacity: .5;
}

@media (max-width: 900px) {
  .hub-intro { padding: 56px 28px 36px; }
  .hub-section { padding: 0 28px 64px; }
  .hub-grid { grid-template-columns: 1fr; }
  .hub-card { padding: 32px 28px; min-height: auto; }
}
