/* Regional guide pages — split layout, hero, body, CTA */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: start;
  min-height: 100vh;
}
.split-content { min-width: 0; }
.split-image {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.02) brightness(0.98) saturate(1.05);
  display: block;
}
.split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(248,246,241,0.15) 0%, transparent 30%);
  pointer-events: none;
}

.guide-breadcrumb {
  background: var(--white);
  padding: 16px 60px;
  border-bottom: 1px solid var(--stone);
  display: flex;
  align-items: center;
  gap: 12px;
}
.guide-breadcrumb a {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
}
.guide-breadcrumb a:hover { color: var(--blue); }
.guide-breadcrumb-sep { color: var(--stone); font-size: 10px; }
.guide-breadcrumb-current {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}

.guide-hero {
  background: var(--ink);
  padding: 100px 60px 80px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.guide-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(44,74,140,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44,74,140,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.guide-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--rlt);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.guide-hero-title {
  font-size: 60px;
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.guide-hero-intro {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
  max-width: 460px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  position: relative;
  z-index: 1;
}

.guide-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 60px;
}
.guide-section { margin-bottom: 72px; }
.guide-section-tag {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.guide-section-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--red);
  display: block;
}
.guide-section-head {
  font-size: 34px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.guide-section-head em { font-style: italic; color: var(--blue); }
.guide-p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.95;
  color: #444;
  margin-bottom: 20px;
}
.guide-p:last-child { margin-bottom: 0; }

.neighborhood {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--stone);
}
.neighborhood:last-child { border-bottom: none; }
.neighborhood-name {
  font-size: 24px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.neighborhood-arr {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.neighborhood-arr::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--stone);
  display: block;
}
.neighborhood-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.95;
  color: #444;
}
.neighborhood-body p { margin-bottom: 16px; }
.neighborhood-body p:last-child { margin-bottom: 0; }

/* Hexagon page — city entries (match neighborhood styling) */
.city-entry {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--stone);
}
.city-entry:last-child { border-bottom: none; }
.city-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.city-name {
  font-size: 24px;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.city-price {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 400;
}
.city-region {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.city-region::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--stone);
  display: block;
}
.city-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.95;
  color: #444;
}
.city-body p { margin-bottom: 16px; }
.city-body p:last-child { margin-bottom: 0; }

.numbers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 28px;
}
.number-card { background: var(--white); padding: 32px 36px; }
.number-label {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 12px;
}
.number-value {
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.number-note {
  font-size: 13px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.6;
}

.honest-take {
  background: var(--ink);
  padding: 60px;
  margin: 0 -60px;
  position: relative;
  overflow: hidden;
}
.honest-take::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(44,74,140,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44,74,140,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.honest-tag {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rlt);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.honest-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--rlt);
  display: block;
}
.honest-head {
  font-size: 30px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.honest-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(255,255,255,0.6);
  max-width: 680px;
  position: relative;
  z-index: 1;
}
.honest-body p { margin-bottom: 16px; }
.honest-body p:last-child { margin-bottom: 0; }

.guide-cta {
  background: var(--blue);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.guide-cta-head {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}
.guide-cta-head em { font-style: italic; color: var(--blt); }
.guide-cta-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
}
.guide-cta .btn-white {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--white);
  color: var(--blue);
  padding: 16px 32px;
  border-radius: 2px;
  text-align: center;
  white-space: nowrap;
}
