/* ── NEIGHBORHOOD PAGE ───────────────────────────────────────── */
/* Owns: /neighborhood page — hero, destinations, transit,        */
/*       itinerary, CTA, footer.                                  */
/* Does NOT own: global theme variables, nav base styles.         */

.nb-page {
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
}

/* ── NAV ── */
.nb-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid rgba(44,24,16,0.08);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nb-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nb-nav-logo svg { height: 32px; width: auto; }

.nb-nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nb-nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nb-nav-links a:hover { color: var(--mahogany); }
.nb-nav-links a.active { color: var(--brass); font-weight: 500; }

/* ── HERO ── */
.nb-hero {
  background: var(--mahogany);
  padding: 100px 40px 80px;
  position: relative;
  overflow: hidden;
}

.nb-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(196,149,106,0.14) 0%, transparent 70%);
  pointer-events: none;
}

/* Railroad track decoration at hero bottom */
.nb-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #C4956A 0px,
    #C4956A 48px,
    transparent 48px,
    transparent 64px
  );
  opacity: 0.5;
}

.nb-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.nb-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 20px;
}

.nb-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.12;
  margin: 0 0 28px;
}

.nb-hero-rule {
  width: 48px;
  height: 2px;
  background: var(--brass);
  margin: 0 auto 28px;
  opacity: 0.7;
}

.nb-hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(250,245,235,0.75);
  max-width: 560px;
  margin: 0 auto 36px;
}

/* Courtyard photo placeholder */
.nb-hero-photo-placeholder {
  background: rgba(196,149,106,0.08);
  border: 1px dashed rgba(196,149,106,0.35);
  border-radius: 8px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto;
}

.nb-hero-photo-placeholder span {
  font-size: 12px;
  color: rgba(250,245,235,0.4);
  letter-spacing: 0.04em;
}

/* ── SHARED SECTION ── */
.nb-section {
  padding: 80px 40px;
}

.nb-section:nth-child(even) {
  background: rgba(44,24,16,0.02);
}

.nb-inner {
  max-width: 820px;
  margin: 0 auto;
}

.nb-section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 12px;
}

.nb-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--mahogany);
  margin: 0 0 32px;
  line-height: 1.2;
}

/* ── INTRO ── */
.nb-intro-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  max-width: 720px;
}

/* ── DESTINATIONS ── */
.nb-destinations-section { padding-top: 0; }

.nb-destination {
  border-top: 1px solid rgba(44,24,16,0.09);
  padding: 56px 0;
}

.nb-destination--highlight {
  border-top: 2px solid var(--brass);
}

.nb-dest-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.nb-dest-badge {
  background: var(--brass);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}

.nb-dest-walk {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  background: rgba(44,24,16,0.06);
  padding: 4px 10px;
  border-radius: 3px;
}

/* Destination photo placeholder */
.nb-dest-photo-placeholder {
  background: rgba(196,149,106,0.06);
  border: 1px dashed rgba(196,149,106,0.25);
  border-radius: 6px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.nb-dest-photo-placeholder span {
  font-size: 12px;
  color: var(--ink-muted);
  opacity: 0.5;
  letter-spacing: 0.04em;
}

.nb-dest-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: var(--mahogany);
  margin: 0 0 16px;
  line-height: 1.25;
}

.nb-dest-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 20px;
  max-width: 680px;
}

.nb-dest-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-muted);
}

.nb-dest-tag {
  background: rgba(196,149,106,0.12);
  color: var(--brass);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 3px;
}

/* ── TRANSIT ── */
.nb-transit-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 36px;
  max-width: 680px;
}

.nb-transit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.nb-transit-card {
  background: #fff;
  border: 1px solid rgba(44,24,16,0.08);
  border-radius: 8px;
  padding: 28px 24px;
}

.nb-transit-icon {
  margin-bottom: 16px;
}

.nb-transit-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--mahogany);
  margin: 0 0 10px;
}

.nb-transit-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0;
}

.nb-transit-cta-text {
  font-size: 14px;
  color: var(--ink-muted);
  margin: 0;
}

/* ── LINK ── */
.nb-link {
  color: var(--brass);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.nb-link:hover { opacity: 0.75; }

/* ── ITINERARY / TIMELINE ── */
.nb-itinerary-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 48px;
  max-width: 680px;
}

.nb-timeline {
  position: relative;
  padding-left: 0;
}

/* Vertical line */
.nb-timeline::before {
  content: '';
  position: absolute;
  left: 72px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(196,149,106,0.25);
}

.nb-timeline-item {
  display: grid;
  grid-template-columns: 72px 16px 1fr;
  gap: 0 20px;
  align-items: start;
  margin-bottom: 44px;
}

.nb-timeline-item:last-child { margin-bottom: 0; }

.nb-timeline-time {
  font-size: 12px;
  font-weight: 500;
  color: var(--brass);
  letter-spacing: 0.05em;
  padding-top: 2px;
  text-align: right;
}

.nb-timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brass);
  margin-top: 4px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.nb-timeline-content h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--mahogany);
  margin: 0 0 8px;
}

.nb-timeline-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
}

/* ── CTA SECTION ── */
.nb-cta-section {
  background: var(--mahogany);
  padding: 80px 40px;
}

.nb-cta-section .nb-section-label { color: var(--brass); }

.nb-cta-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.nb-cta-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 16px;
}

.nb-cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 20px;
  line-height: 1.2;
}

.nb-cta-body {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250,245,235,0.7);
  margin-bottom: 36px;
}

.nb-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.nb-cta-primary {
  display: inline-block;
  background: var(--brass);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nb-cta-primary:hover { opacity: 0.88; }

.nb-cta-secondary {
  display: inline-block;
  border: 1.5px solid rgba(196,149,106,0.5);
  color: var(--cream);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.2s;
}

.nb-cta-secondary:hover { border-color: var(--brass); }

.nb-cta-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.nb-cta-links .nb-link {
  color: rgba(196,149,106,0.7);
  font-size: 14px;
}

.nb-cta-links .nb-link:hover { color: var(--brass); opacity: 1; }

/* ── FOOTER ── */
.nb-footer {
  background: var(--ink);
  padding: 32px 40px;
}

.nb-footer-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.nb-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nb-footer-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
}

.nb-footer-sep { color: var(--brass); opacity: 0.5; }

.nb-footer-address {
  font-size: 13px;
  color: rgba(250,245,235,0.45);
}

.nb-footer-meta {
  font-size: 12px;
  color: rgba(250,245,235,0.4);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.nb-footer-meta a:hover { color: var(--cream); }

/* ── HAMBURGER / DRAWER (shared across pages) ── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mahogany);
  padding: 4px;
}

@media (max-width: 768px) {
  .nb-nav { padding: 16px 20px; }
  .nb-nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .nb-hero { padding: 72px 20px 60px; }
  .nb-hero-title { font-size: 34px; }
  .nb-hero-sub { font-size: 15px; }

  .nb-section { padding: 56px 20px; }

  .nb-timeline::before { left: 60px; }
  .nb-timeline-item { grid-template-columns: 60px 14px 1fr; gap: 0 14px; }

  .nb-cta-section { padding: 60px 20px; }
  .nb-footer { padding: 28px 20px; }
  .nb-footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 390px) {
  .nb-hero { padding: 60px 16px 48px; }
  .nb-hero-title { font-size: 30px; }
  .nb-section { padding: 48px 16px; }
  .nb-cta-section { padding: 48px 16px; }
  .nb-footer { padding: 24px 16px; }

  .nb-timeline::before { display: none; }
  .nb-timeline-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .nb-timeline-time { text-align: left; }
  .nb-timeline-dot { display: none; }
}

/* Drawer styles (reused pattern from other pages) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,24,16,0.5);
  z-index: 40;
}
.nav-overlay.visible { display: block; }

.nav-drawer {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: var(--cream);
  z-index: 50;
  transition: right 0.28s ease;
  display: flex;
  flex-direction: column;
  padding: 0 0 32px;
}
.nav-drawer.open { right: 0; }

.nav-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(44,24,16,0.08);
}

.nav-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mahogany);
  padding: 4px;
}

.nav-drawer-links {
  list-style: none;
  padding: 16px 0;
  margin: 0;
  flex: 1;
}

.nav-drawer-links li a {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s;
}
.nav-drawer-links li a:hover,
.nav-drawer-links li a.active { background: rgba(196,149,106,0.1); color: var(--mahogany); }

.nav-drawer-waitlist {
  display: block;
  margin: 0 20px;
  padding: 13px 20px;
  background: var(--mahogany);
  color: var(--cream);
  text-align: center;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
