:root {
  --ink: #202020;
  --muted: #66615a;
  --paper: #fbfaf7;
  --line: #ded7ca;
  --gold: #ae9d7d;
  --dark: #171717;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  max-width: 100%;
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
p {
  text-align: justify;
  text-wrap: pretty;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251,250,247,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .02em;
}
.brand img { width: 138px; }
.navlinks {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}
.navlinks a { text-decoration: none; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .01em;
}
.btn.secondary { background: transparent; color: var(--ink); }
.hero {
  min-height: 680px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.25), rgba(0,0,0,.05)),
    var(--hero-image) center/cover no-repeat;
  color: var(--white);
}
.hero-inner { padding: 110px 0 72px; }
.eyebrow {
  color: #e7ddcb;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
}
h1 { font-size: clamp(44px, 7vw, 86px); max-width: 860px; margin-top: 18px; }
h2 { font-size: clamp(32px, 4vw, 54px); }
h3 { font-size: 26px; }
.hero p { max-width: 720px; font-size: 19px; color: #f3efe7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
section { padding: 76px 0; }
.intro {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
}
.lead { color: var(--muted); font-size: 18px; }
.portrait {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  background: #fff;
  padding: 28px;
  text-align: center;
}
.stat strong { display: block; font-size: 32px; font-family: Georgia, "Times New Roman", serif; color: var(--gold); }
.city-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.city-card {
  min-height: 220px;
  display: flex;
  align-items: end;
  padding: 18px;
  color: white;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.72)),
    var(--city-image) center/cover no-repeat;
}
.city-card span { font-weight: 800; font-size: 18px; }
.band { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 26px;
}
.panel ul { padding-left: 20px; margin-bottom: 0; }
.cta {
  background: var(--dark);
  color: white;
  text-align: center;
}
.cta p { color: #ded7ca; max-width: 760px; margin: 18px auto 0; }
.footer {
  padding: 38px 0;
  background: #101010;
  color: #ddd;
  font-size: 12px;
}
.footer a { color: white; }
.city-hero {
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.30)),
    var(--hero-image) center/cover no-repeat;
  color: white;
  display: grid;
  align-items: end;
}
.breadcrumb { color: #e7ddcb; font-size: 14px; margin-bottom: 18px; }
.local-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}
.faq-item { border-top: 1px solid var(--line); padding: 22px 0; }
.faq-item p { margin-bottom: 0; color: var(--muted); }
@media (max-width: 900px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .navlinks { flex-wrap: wrap; gap: 12px; }
  .hero { min-height: 620px; }
  .intro, .local-proof, .columns { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .container { width: min(100% - 24px, 1120px); }
  .hero-inner { padding: 82px 0 48px; }
  .city-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}

/* Charte BONAPARTE - Art de Vivre */
:root {
  --ink: #0f0f0f;
  --muted: #6f6a61;
  --paper: #f5f0e8;
  --line: #d9cfbf;
  --gold: #ae9d7d;
  --dark: #0f0f0f;
  --gold-soft: #eee7da;
  --ivory: #fffaf1;
  --shadow: 0 28px 80px rgba(15, 15, 15, .12);
}
* { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 300;
  background: var(--paper);
  letter-spacing: 0;
}
h1, h2, h3,
.stat strong,
.property-price {
  font-family: "Caudex", Georgia, "Times New Roman", serif;
  font-weight: 700;
}
h1 {
  max-width: 1120px;
  font-size: clamp(36px, 4.6vw, 62px);
}
h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: 0;
}
p { max-width: 72ch; }
section { padding: 96px 0; }
.topbar {
  background:
    radial-gradient(circle at 18% 50%, rgba(255,255,255,.06), transparent 18%),
    linear-gradient(90deg, #20201e 0%, #171717 52%, #20201e 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 30px rgba(0,0,0,.20);
  backdrop-filter: none;
}
.topbar .container {
  width: min(1880px, calc(100% - 40px));
}
.nav {
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  gap: 18px;
  color: #fff;
  flex: 0 0 auto;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,.18);
}
.brand-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: none;
}
.brand-wordmark {
  width: 220px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  filter: invert(1);
}
.navlinks {
  flex: 1 1 auto;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(12px, 1.45vw, 26px);
  color: rgba(255,255,255,.84);
  font-family: "Caudex", Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.05vw, 19px);
  letter-spacing: 0;
  white-space: nowrap;
}
.navlinks a:not(.btn) {
  display: inline-flex;
  align-items: center;
  min-height: 62px;
}
.navlinks a:not(.btn):hover { color: #fff; }
.topbar .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  min-width: 158px;
  padding: 0 20px;
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.62);
  font-family: "Caudex", Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.05vw, 19px);
  font-weight: 400;
}
.hero,
.city-hero { margin-top: 0; }
.hero {
  min-height: 820px;
  background:
    radial-gradient(circle at 72% 28%, rgba(174,157,125,.32), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.50), rgba(0,0,0,.10)),
    var(--hero-image) center/cover no-repeat;
}
.hero-inner {
  padding-top: 124px;
  padding-bottom: 72px;
  border-left: 1px solid rgba(174,157,125,.82);
  padding-left: clamp(20px, 4vw, 48px);
}
.hero h1,
.city-hero h1 { text-wrap: balance; }
.hero p,
.city-hero p { font-size: clamp(18px, 1.55vw, 23px); }
.hero-kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 9px 13px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.hero-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  display: inline-block;
}
.btn.secondary { color: inherit; border-color: currentColor; }
.btn {
  min-height: 48px;
  border-radius: 0;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(.98); }
.signature {
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 800;
  margin-top: 20px;
}
.conversion-strip {
  margin-top: -54px;
  position: relative;
  z-index: 3;
}
.conversion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.conversion-item {
  padding: 30px;
  border-right: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}
.conversion-item:last-child { border-right: 0; }
.conversion-item span,
.step-number {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 800;
}
.conversion-item h3 { margin-top: 12px; }
.conversion-item p { color: var(--muted); margin-bottom: 0; }
.stat {
  background: var(--ivory);
  padding: 34px 24px;
}
.stats { box-shadow: var(--shadow); }
.dark-band { background: var(--dark); color: white; }
.dark-band p, .dark-band .lead { color: #ded7ca; }
.editorial {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: center;
}
.editorial-media {
  position: relative;
  min-height: 560px;
}
.editorial-media img {
  width: 82%;
  height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.editorial-note {
  position: absolute;
  right: 0;
  bottom: 42px;
  width: min(360px, 68%);
  background: var(--dark);
  color: #fff;
  padding: 26px;
}
.editorial-note p { color: #ded7ca; margin-bottom: 0; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 34px;
}
.process-step {
  background: var(--ivory);
  padding: 30px;
  min-height: 245px;
}
.process-step h3 { margin: 14px 0 10px; }
.process-step p { color: var(--muted); margin: 0; }
.property-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.property-card {
  background: #fff;
  text-decoration: none;
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  transition: transform .22s ease, box-shadow .22s ease;
}
.property-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.property-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.property-body { padding: 16px; }
.property-city { text-transform: uppercase; letter-spacing: .08em; font-size: 12px; font-weight: 900; }
.property-title { margin-top: 8px; min-height: 48px; color: var(--muted); }
.property-price { font-family: Georgia, "Times New Roman", serif; font-size: 23px; color: var(--gold); text-align: center; margin-top: 12px; }
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--dark);
  color: white;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  padding: 5px 10px;
}
.media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.media-row img { width: 100%; aspect-ratio: 5/3; object-fit: cover; }
.video-frame {
  background: var(--dark);
  border: 1px solid var(--line);
  padding: 10px;
}
.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}
.video-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}
.city-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.city-card {
  min-height: 360px;
  padding: 24px;
  transition: filter .22s ease, transform .22s ease;
}
.city-card:hover { filter: saturate(1.05) contrast(1.04); }
.city-card span {
  font-family: "Caudex", Georgia, serif;
  font-size: 28px;
  line-height: 1.05;
}
.seo-rich {
  columns: 2;
  column-gap: 42px;
  color: var(--muted);
}
.seo-rich strong { color: var(--ink); font-weight: 600; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 22px;
  font-size: 14px;
  color: var(--muted);
}
.quote strong { display: block; color: var(--gold); margin-top: 12px; }
.event-rail {
  display: flex;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  contain: layout paint;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 0 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.event-card {
  flex: 0 0 min(290px, 82vw);
  scroll-snap-align: start;
  min-height: 190px;
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 22px;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.event-date {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 700;
}
.event-card h3 { margin-top: 12px; font-size: 24px; }
.event-card p { color: var(--muted); margin-bottom: 0; }
.city-hero {
  min-height: 680px;
  background:
    radial-gradient(circle at 80% 20%, rgba(174,157,125,.28), transparent 30%),
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.40)),
    var(--hero-image) center/cover no-repeat;
}
.local-proof {
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
}
.panel {
  background: var(--ivory);
  box-shadow: 0 0 0 1px rgba(217,207,191,.35);
}
.seller-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.seller-box {
  background: #fff;
  padding: clamp(28px, 4vw, 52px);
}
.seller-box.dark {
  background: var(--dark);
  color: #fff;
}
.seller-box.dark p { color: #ded7ca; }
.city-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.city-proof {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
}
.city-proof strong {
  display: block;
  font-family: "Caudex", Georgia, serif;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 8px;
}
.local-link-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 28px;
}
.local-link-grid a {
  background: #fff;
  padding: 22px;
  min-height: 150px;
  color: var(--ink);
  text-decoration: none;
  transition: background .22s ease, color .22s ease;
}
.local-link-grid a:hover {
  background: var(--dark);
  color: #fff;
}
.local-link-grid strong {
  display: block;
  font-family: "Caudex", Georgia, serif;
  font-size: 24px;
  margin-bottom: 10px;
}
.local-link-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.local-link-grid a:hover span { color: #ded7ca; }
.market-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--line);
}
.market-table th,
.market-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.market-table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  background: var(--ivory);
}
.market-table td:first-child {
  font-weight: 700;
  color: var(--ink);
}
.entity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.entity-list span,
.entity-list a {
  border: 1px solid var(--line);
  background: #fff;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}
.key-points strong {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
  color: var(--ink);
  text-align: left;
}
.source-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
}
.article-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 28px;
}
.article-list a {
  display: block;
  padding: 26px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  min-height: 190px;
}
.article-list strong {
  display: block;
  font-family: "Caudex", Georgia, serif;
  font-size: 25px;
  line-height: 1.18;
  margin: 10px 0;
}
.article-list span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}
.article-body {
  max-width: 820px;
  margin: 0 auto;
}
.article-body h2 {
  margin-top: 54px;
}
.article-cta {
  margin-top: 54px;
  padding: 30px;
  background: var(--dark);
  color: #fff;
}
.article-cta p { color: #d9d2c4; }
.notary-tool {
  padding: 28px;
  border: 2px solid var(--gold);
  background: #fff;
  max-width: 460px;
}
.notary-tool h3 {
  margin-top: 0;
  font-family: "Caudex", Georgia, serif;
  font-size: 28px;
}
.notary-tool input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  margin: 12px 0;
  font: inherit;
  background: var(--paper);
}
.notary-tool button {
  width: 100%;
  padding: 13px 16px;
  border: 0;
  background: var(--dark);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  font: inherit;
}
.notary-result {
  margin-top: 15px;
  font-weight: 700;
  color: var(--gold);
}
.estimator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 34px;
  align-items: start;
}
.estimator-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px;
}
.estimator-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 26px 0 30px;
}
.estimator-progress span {
  display: block;
  height: 4px;
  background: var(--line);
  transition: background .25s ease;
}
.estimator-progress span.active { background: var(--gold); }
.estimator-step { display: none; }
.estimator-step.active {
  display: block;
  animation: estimatorReveal .3s ease both;
}
@keyframes estimatorReveal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.estimator-step-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.estimator-step-title span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}
.estimator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.estimator-field label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.estimator-field input,
.estimator-field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
}
.estimator-field.full { grid-column: 1 / -1; }
.estimator-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}
.estimator-error {
  color: #8b2e24;
  font-size: 13px;
  min-height: 20px;
  margin-top: 12px;
}
.estimator-result {
  margin-top: 24px;
  padding: 24px;
  background: var(--dark);
  color: #fff;
}
.estimator-result strong {
  display: block;
  font-family: "Caudex", Georgia, serif;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.05;
  margin: 8px 0 12px;
}
.estimator-result p { color: #d9d2c4; margin-bottom: 0; }
.estimator-note {
  font-size: 13px;
  color: var(--muted);
}
.estimator-side {
  background: var(--dark);
  color: #fff;
  padding: 30px;
  position: sticky;
  top: 118px;
}
.estimator-side p { color: #d9d2c4; }
.estimator-side .btn.secondary {
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.footer-brand img:first-child { width: 42px; height: 42px; }
.footer-brand img:last-child {
  width: 190px;
  max-height: 46px;
  object-fit: contain;
}
.legal {
  margin-top: 14px;
  color: #a8a29a;
  font-size: 11px;
  line-height: 1.45;
}
@media (max-width: 1180px) {
  .topbar .container {
    width: min(1120px, calc(100% - 28px));
  }
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 22px;
    padding: 16px 0 18px;
  }
  .brand {
    padding-right: 0;
    border-right: 0;
  }
  .brand-mark { width: 52px; height: 52px; }
  .brand-wordmark { width: 190px; max-height: 48px; }
  .navlinks {
    flex: 1 1 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 16px;
    white-space: normal;
  }
  .navlinks a:not(.btn) { min-height: 42px; }
  .topbar .btn {
    min-height: 46px;
    min-width: 148px;
    padding: 0 18px;
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  section { padding: 72px 0; }
  .topbar .container {
    width: min(1120px, calc(100% - 32px));
  }
  .nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 0 16px;
    min-height: 0;
    gap: 16px;
  }
  .brand {
    padding-right: 0;
    border-right: 0;
    gap: 16px;
  }
  .brand-mark { width: 56px; height: 56px; }
  .brand-wordmark { width: 210px; max-height: 54px; }
  .navlinks {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 17px;
    white-space: normal;
  }
  .topbar .btn {
    min-height: 48px;
    min-width: 160px;
    font-size: 17px;
  }
  .intro,
  .local-proof,
  .columns,
  .estimator-shell,
  .media-row { grid-template-columns: 1fr; }
  .editorial { grid-template-columns: 1fr; gap: 34px; }
  .editorial-media { min-height: auto; }
  .editorial-media img { width: 100%; height: auto; aspect-ratio: 4/5; }
  .editorial-note { position: static; width: 100%; }
  .conversion-grid,
  .process-grid,
  .seller-split,
  .city-proof-grid,
  .local-link-grid,
  .article-list { grid-template-columns: 1fr; }
  .market-table,
  .market-table tbody,
  .market-table tr,
  .market-table th,
  .market-table td { display: block; width: 100%; }
  .market-table thead { display: none; }
  .market-table tr { border-bottom: 1px solid var(--line); }
  .market-table td { border-bottom: 0; padding: 12px 16px; }
  .estimator-side { position: static; }
  .conversion-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .property-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .event-card { flex-basis: min(260px, 82vw); }
  .seo-rich { columns: 1; }
  .city-grid { grid-template-columns: 1fr 1fr; }
  .city-card { min-height: 280px; }
}
@media (max-width: 520px) {
  .brand-wordmark { width: 140px; }
  .brand-mark { width: 40px; height: 40px; }
  p { text-align: left; }
  .topbar { position: static; }
  .nav {
    min-height: 0;
    gap: 16px;
    padding: 16px 0 18px;
  }
  .brand {
    width: 100%;
    justify-content: center;
  }
  .navlinks {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    font-size: 13px;
    line-height: 1.2;
  }
  .navlinks a:not(.btn) {
    padding: 8px 0;
  }
  .navlinks .btn {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 4px;
  }
  .hero,
  .city-hero {
    min-height: auto;
    align-items: start;
  }
  h1,
  .hero h1 {
    font-size: clamp(31px, 10vw, 42px);
    line-height: 1.02;
  }
  .city-hero h1 {
    font-size: clamp(30px, 9.5vw, 40px);
  }
  h2 { font-size: clamp(26px, 8vw, 34px); }
  h3 { font-size: 23px; }
  .hero p,
  .city-hero p {
    font-size: 18px;
    line-height: 1.55;
  }
  .hero-kicker {
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: .10em;
    align-items: flex-start;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .property-grid,
  .testimonial-grid { grid-template-columns: 1fr; }
  .hero-inner {
    padding-left: 18px;
    padding-top: 64px;
    padding-bottom: 48px;
  }
  .estimator-card { padding: 22px; }
  .estimator-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: 1fr; }
}