:root {
  /* Palette */
  --sage:        #b6ccbd;
  --sage-dark:   #7a9e87;
  --sage-mid:    #c8d9ce;
  --sage-pale:   #eaf1ec;
  --sage-xpale:  #f4f8f5;
  --terra:       oklch(65% 0.10 42);
  --terra-light: oklch(75% 0.09 42);
  --terra-pale:  oklch(95% 0.03 42);

  /* Neutrals — warm ivory tones */
  --ivory:       oklch(97.5% 0.008 80);
  --ivory-mid:   oklch(95% 0.012 75);
  --ivory-dark:  oklch(92% 0.015 70);
  --linen:       oklch(90% 0.018 65);

  /* Text */
  --ink:         oklch(20% 0.01 60);
  --ink-mid:     oklch(42% 0.01 60);
  --ink-light:   oklch(62% 0.01 60);
  --ink-xlight:  oklch(75% 0.008 60);

  --white: #fff;

  /* Type */
  --font-display: 'Quicksand', system-ui, sans-serif;
  --font-body:    'Quicksand', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--ivory);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── UTILITY ────────────────────────────────────────── */
.label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

.display-title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
}
.display-title em {
  font-style: italic;
  color: var(--terra);
}

.body-text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-mid);
  font-weight: 300;
}

.section-wrap { max-width: 1200px; margin: 0 auto; padding: 0 56px; }

/* ── NAV ────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(253, 251, 248, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--linen);
  transition: padding 0.35s ease;
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-logo span { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--ink-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--terra) !important;
  color: var(--white) !important;
  padding: 10px 26px !important;
  border-radius: 50px !important;
  letter-spacing: 0.06em !important;
  font-weight: 400 !important;
  white-space: nowrap !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--sage-dark) !important; transform: translateY(-1px); }

/* ── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: 82px;
  background: var(--ivory);
}

.hero-left {
  padding: 80px 64px 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-eyebrow .label { color: var(--ink-light); }
.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--linen);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  font-weight: 300;
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 32px;
  text-wrap: pretty;
}
.hero h1 em {
  font-style: italic;
  color: var(--terra);
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 400;
  color: var(--terra);
  line-height: 1.3;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-mid);
  font-weight: 300;
  max-width: 460px;
  margin-bottom: 52px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--terra);
  color: var(--white);
  padding: 15px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--ink-mid);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--linen);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--ink); border-color: var(--ink-mid); }

.hero-trust {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--linen);
}
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
}
.trust-label {
  font-size: 0.72rem;
  color: var(--ink-xlight);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* hero right */
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--ivory-mid);
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* warm overlay at bottom */
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(20% 0.01 60 / 0.18) 0%, transparent 40%);
}

.hero-pullquote {
  position: absolute;
  bottom: 40px;
  left: 32px;
  right: 32px;
  background: oklch(97.5% 0.008 80 / 0.92);
  backdrop-filter: blur(12px);
  padding: 24px 28px;
  border-left: 2px solid var(--terra);
}
.hero-pullquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
}
.hero-pullquote cite {
  display: block;
  margin-top: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-xlight);
  font-style: normal;
}

/* ── SEPARATOR BAND ─────────────────────────────────── */
.signature-band {
  background: var(--sage);
  padding: 28px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.sig-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.9);
}
.sig-item::after {
  content: '·';
  color: rgba(255,255,255,0.3);
  font-size: 1.4rem;
  line-height: 1;
}
.sig-item:last-child::after { display: none; }
.sig-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.sig-text {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── SECTIONS ───────────────────────────────────────── */
section { position: relative; }

.section-pad { padding: 108px 0; }

.section-header { margin-bottom: 72px; }
.section-header .label { margin-bottom: 18px; display: block; }
.section-header .display-title { font-size: clamp(2.2rem, 3.5vw, 3.6rem); max-width: 640px; }

/* ── NEEDS ──────────────────────────────────────────── */
.needs { background: var(--ivory-mid); }

.needs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--linen);
  border: 1px solid var(--linen);
  overflow: hidden;
}

.need-card {
  background: var(--ivory-mid);
  padding: 44px 36px;
  transition: background 0.25s;
  position: relative;
}
.need-card:hover { background: var(--ivory); }

.need-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--linen);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.need-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.25;
}
.need-card p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--ink-mid);
  font-weight: 300;
}

/* ── ABOUT ──────────────────────────────────────────── */
.about { background: var(--ivory); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.about-img-col { position: relative; }

.about-img-frame {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ivory-dark);
}
.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--linen);
  background: var(--sage-xpale);
  z-index: -1;
}

.about-text-col { padding-top: 16px; }

.about-certifs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.certif-tag {
  border: 1px solid var(--linen);
  color: var(--ink-mid);
  padding: 5px 14px;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.about-pullquote {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--sage-xpale);
  border-left: 2px solid var(--sage);
}
.about-pullquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
}

/* ── SERVICES ───────────────────────────────────────── */
.services { background: var(--ivory-mid); }

.services-header {
  text-align: center;
  margin-bottom: 72px;
}
.services-header .display-title { margin: 18px auto 0; }
.services-header .body-text { max-width: 480px; margin: 16px auto 0; text-align: center; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--linen);
}

.price-card {
  background: var(--ivory);
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--linen);
  transition: background 0.2s;
  position: relative;
}
.price-card:last-child { border-right: none; }
.price-card:hover { background: var(--white); }

.price-card.featured {
  background: var(--sage);
}
.price-card.featured:hover { background: var(--sage); }
.price-card.featured .price-name,
.price-card.featured .price-amount,
.price-card.featured .price-desc { color: var(--white); }
.price-card.featured .price-duration { color: rgba(255,255,255,0.6); }
.price-card.featured .price-divider { background: rgba(255,255,255,0.2); }

.popular-pill {
  display: inline-block;
  background: var(--terra);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.price-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 20px;
}

.price-divider {
  width: 24px;
  height: 1px;
  background: var(--linen);
  margin-bottom: 20px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}
.price-duration {
  font-size: 0.72rem;
  color: var(--ink-xlight);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
  margin-bottom: 24px;
}
.price-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--ink-mid);
  font-weight: 300;
  flex: 1;
}

.services-cta {
  text-align: center;
  margin-top: 60px;
}
.services-cta p {
  font-size: 0.76rem;
  color: var(--ink-xlight);
  margin-top: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── LOCATIONS ──────────────────────────────────────── */
.locations { background: var(--sage-dark); }
.locations .label { color: var(--terra-light); }
.locations .display-title { color: var(--white); }
.locations .display-title em { color: var(--terra-light); }
.locations .body-text { color: rgba(255,255,255,0.68); }

.locations-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.city-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.city-card {
  background: rgba(255,255,255,0.04);
  padding: 28px 24px;
  transition: background 0.2s;
}
.city-card:hover { background: rgba(255,255,255,0.08); }

.city-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.city-card p {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.58);
  font-weight: 300;
}

.btn-outline-white {
  display: inline-block;
  text-decoration: none;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 36px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

/* ── TESTIMONIALS ───────────────────────────────────── */
.testimonials { background: var(--ivory); }

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--linen);
}

.testi-card {
  padding: 52px 48px;
  border-right: 1px solid var(--linen);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.testi-card:last-child { border-right: none; }

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 28px;
}
.testi-stars span {
  width: 14px;
  height: 14px;
  background: var(--terra);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testi-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  flex: 1;
}

.testi-author {
  margin-top: 28px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-xlight);
}

/* ── FAQ ────────────────────────────────────────────── */
.faq { background: var(--ivory-mid); }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 96px;
  align-items: start;
}

.faq-intro-col { position: sticky; top: 120px; }

.faq-list { }

.faq-item {
  border-bottom: 1px solid var(--linen);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 26px 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--terra); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--ink-light);
  transition: transform 0.3s, background 0.2s, border-color 0.2s;
  font-family: var(--font-body);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--ink-mid);
  padding-bottom: 24px;
  font-weight: 300;
}

.faq-item.open .faq-a { max-height: 600px; }
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--sage);
  border-color: var(--sage);
  color: white;
}

/* ── CTA FINAL ──────────────────────────────────────── */
.cta-final {
  background: var(--ivory-dark);
  text-align: center;
  padding: 120px 56px;
}

.cta-final .label { margin-bottom: 20px; display: block; }
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto 24px;
}
.cta-final h2 em { font-style: italic; color: var(--terra); }
.cta-final p {
  color: var(--ink-mid);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.85;
  font-weight: 300;
}

.cta-note {
  font-size: 0.72rem;
  color: var(--ink-xlight);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 20px;
}

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  padding: 72px 56px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.footer-brand-name span { color: var(--terra-light); }

.footer-brand p {
  font-size: 0.84rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.42);
  max-width: 260px;
  font-weight: 300;
}

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
  font-weight: 400;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  text-decoration: none;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.48);
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.74rem; color: rgba(255,255,255,0.28); }

/* ── MODAL ──────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(20,18,15,0.6);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--ivory);
  padding: 52px;
  max-width: 620px;
  width: 92%;
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(16px);
  transition: transform 0.3s;
  position: relative;
}
.modal-overlay.active .modal-box { transform: translateY(0); }

.modal-box h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--ink);
}
.modal-box h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 24px 0 8px;
  color: var(--ink);
}
.modal-box p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--ink-mid);
  font-weight: 300;
}

.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: none;
  border: 1px solid var(--linen);
  cursor: pointer;
  width: 32px; height: 32px;
  font-size: 0.9rem;
  color: var(--ink-mid);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--linen); }

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.75s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.25s; opacity: 0; }
.delay-3 { animation-delay: 0.4s; opacity: 0; }
.delay-4 { animation-delay: 0.55s; opacity: 0; }

/* ── CITY PAGE EXTRAS ───────────────────────────────── */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 56px 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-xlight);
}
.breadcrumb a {
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--terra); }
.breadcrumb span[aria-current] { color: var(--ink-mid); }

.city-hero {
  padding: 140px 0 80px;
  background: var(--ivory);
}
.city-hero .section-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.city-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.6vw, 4.6rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ink);
  margin: 24px 0 28px;
}
.city-hero h1 em { font-style: italic; color: var(--terra); }
.city-hero .lead {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ink-mid);
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 36px;
}
.city-hero-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ivory-mid);
  position: relative;
}
.city-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.city-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(20% 0.01 60 / 0.15) 0%, transparent 35%);
}

.city-content {
  background: var(--ivory);
  padding: 80px 0;
}
.city-content .section-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}
.city-prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 400;
  color: var(--ink);
  margin: 56px 0 20px;
  line-height: 1.2;
}
.city-prose h2:first-child { margin-top: 0; }
.city-prose h2 em { font-style: italic; color: var(--terra); }
.city-prose h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin: 36px 0 12px;
}
.city-prose p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-mid);
  font-weight: 300;
  margin-bottom: 18px;
}
.city-prose ul {
  margin: 18px 0 24px 0;
  padding-left: 0;
  list-style: none;
}
.city-prose ul li {
  position: relative;
  padding-left: 22px;
  font-size: 0.96rem;
  line-height: 1.8;
  color: var(--ink-mid);
  font-weight: 300;
  margin-bottom: 8px;
}
.city-prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 1px;
  background: var(--terra);
}
.city-prose strong {
  font-weight: 500;
  color: var(--ink);
}
.city-prose a {
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.city-prose a:hover { color: var(--sage-dark); }

.city-aside {
  position: sticky;
  top: 120px;
  background: var(--sage-xpale);
  border-left: 2px solid var(--sage);
  padding: 36px 32px;
}
.city-aside h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 18px;
}
.city-aside p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--ink-mid);
  font-weight: 300;
  margin-bottom: 16px;
}
.city-aside .aside-cta {
  display: inline-block;
  background: var(--terra);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
}
.city-aside .aside-cta:hover { background: var(--sage-dark); transform: translateY(-2px); }
.city-aside ul {
  list-style: none;
  margin: 12px 0 20px 0;
  padding: 0;
}
.city-aside ul li {
  font-size: 0.88rem;
  color: var(--ink-mid);
  font-weight: 300;
  padding: 8px 0;
  border-bottom: 1px solid var(--sage-mid);
}
.city-aside ul li:last-child { border-bottom: none; }
.city-aside ul li strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.92rem;
  margin-bottom: 2px;
}

.neighborhoods {
  background: var(--ivory-mid);
  padding: 88px 0;
}
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--linen);
  border: 1px solid var(--linen);
  margin-top: 48px;
}
.neighborhood-card {
  background: var(--ivory-mid);
  padding: 28px 24px;
  transition: background 0.25s;
}
.neighborhood-card:hover { background: var(--ivory); }
.neighborhood-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}
.neighborhood-card p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--ink-mid);
  font-weight: 300;
}

.related-pages {
  background: var(--ivory);
  padding: 80px 0;
  text-align: center;
}
.related-pages .display-title {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  max-width: 600px;
  margin: 0 auto 40px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.related-card {
  display: block;
  background: var(--ivory-mid);
  border: 1px solid var(--linen);
  padding: 36px 32px;
  text-decoration: none;
  text-align: left;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
}
.related-card:hover {
  background: var(--white);
  border-color: var(--sage);
  transform: translateY(-3px);
}
.related-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}
.related-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-mid);
  font-weight: 300;
}
.related-card span.arrow {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 65vw; }
  .hero-left { padding: 60px 48px; }
  .about-inner { grid-template-columns: 1fr; gap: 56px; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-intro-col { position: static; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .locations-inner { grid-template-columns: 1fr; }
  .city-hero .section-wrap { grid-template-columns: 1fr; gap: 40px; }
  .city-content .section-wrap { grid-template-columns: 1fr; gap: 48px; }
  .city-aside { position: static; }
  .neighborhoods-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section-wrap { padding: 0 24px; }
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero-left { padding: 40px 24px; }
  .hero-trust { gap: 28px; }
  .needs-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { border-right: none; border-bottom: 1px solid var(--linen); }
  .price-card:last-child { border-bottom: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card { border-right: none; border-bottom: 1px solid var(--linen); }
  .testi-card:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .city-grid { grid-template-columns: 1fr; }
  footer { padding: 52px 24px 32px; }
  .cta-final { padding: 80px 24px; }
  .signature-band { padding: 24px 24px; gap: 24px; }
  .breadcrumb { padding: 96px 24px 0; }
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .needs-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .neighborhoods-grid { grid-template-columns: 1fr; }
}
