@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(72px + 16px);
}

body {
  margin: 0;
  color: #1c1917;
  background: #f4efe6;
  font-family: Manrope, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select {
  font: inherit;
}

a {
  color: #12233a;
}

h1,
h2,
h3,
legend {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  margin: 0 0 0.8rem;
}

h3 {
  font-size: 1.35rem;
  margin: 0 0 0.4rem;
}

p {
  margin: 0 0 1rem;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 100;
  padding: 8px 12px;
  background: #12233a;
  color: #fff;
}
.skip-link:focus {
  top: 12px;
}

.wrap {
  width: min(100% - 40px, 1120px);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: #c4a574;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow--dark {
  color: #9d7b4a;
}

.section-lead,
.note,
.hint {
  color: #6b645c;
}

.badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #e4d7c3;
  color: #12233a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge--p0 {
  background: rgba(196, 92, 62, 0.14);
  color: #c45c3e;
}
.badge--p1 {
  background: rgba(157, 123, 74, 0.16);
  color: #9d7b4a;
}
.badge--p2 {
  background: rgba(61, 107, 79, 0.14);
  color: #3d6b4f;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}
.btn--gold {
  background: #c4a574;
  color: #0b1626;
}
.btn--navy {
  background: #ec6a1e;
  color: #fff;
}
.btn--navy:hover {
  background: #d45c16;
}
.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.btn--outline {
  background: transparent;
  border-color: #2b2b2b;
  color: #2b2b2b;
}
.btn--block {
  width: 100%;
}
.btn:hover {
  transform: translateY(-1px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 72px;
  background: rgba(11, 22, 38, 0.92);
  color: #fff;
  backdrop-filter: blur(16px);
}
.site-header__inner {
  width: min(100% - 40px, 1120px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}
.logo__mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #c4a574;
  color: #c4a574;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
}
.logo__text {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  line-height: 1.1;
}
.logo__text small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: none;
  gap: 18px;
  margin-left: auto;
}
.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.92rem;
}
.site-nav a:hover {
  color: #c4a574;
}
@media (min-width: 900px) {
  .site-nav {
    display: flex;
  }
}

.city-switch {
  position: relative;
  margin-left: auto;
}
@media (min-width: 900px) {
  .city-switch {
    margin-left: 0;
  }
}
.city-switch__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(196, 165, 116, 0.45);
  border-radius: 999px;
  background: transparent;
  color: #c4a574;
  cursor: pointer;
}
.city-switch__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  margin: 0;
  padding: 8px;
  min-width: 200px;
  list-style: none;
  background: #fff;
  color: #1c1917;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(18, 35, 58, 0.18);
}
.city-switch__menu button {
  width: 100%;
  padding: 10px 12px;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
}
.city-switch__menu button:hover, .city-switch__menu button[aria-current=true] {
  background: #ebe4d6;
}

.cover {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: end start;
  padding: 48px 0 72px;
  color: #fff;
  background: linear-gradient(180deg, rgba(11, 22, 38, 0.25), rgba(11, 22, 38, 0.72)), url("https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&w=2000&q=80") center/cover;
}
.cover__inner {
  width: min(100% - 40px, 1120px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.cover__lead {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.84);
}
.cover__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 24px;
}
.cover__position {
  color: #c4a574;
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
}

.diagnosis,
.priorities,
.chapter,
.vision,
.keep,
.site-footer {
  padding: 88px 0;
}

.diagnosis__grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 860px) {
  .diagnosis__grid {
    grid-template-columns: 1fr 0.9fr;
    align-items: start;
  }
}

.pullquote {
  margin: 0;
  padding: 28px;
  border-left: 3px solid #c4a574;
  background: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  line-height: 1.25;
  font-style: italic;
}

.keep-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.keep-pills li {
  padding: 8px 12px;
  border: 1px solid rgba(18, 35, 58, 0.12);
  border-radius: 999px;
  background: #fff;
  font-size: 0.88rem;
}

.palette {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-top: 28px;
  color: #6b645c;
  font-size: 0.88rem;
}
.palette__swatch {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
  border-radius: 50%;
  border: 1px solid rgba(18, 35, 58, 0.12);
}
.palette__swatch--orange {
  background: #ec6a1e;
}
.palette__swatch--graphite {
  background: #2b2b2b;
}
.palette__swatch--warm {
  background: #f4efe6;
}

.priority-grid {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}
@media (min-width: 720px) {
  .priority-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1100px) {
  .priority-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.priority-card {
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(18, 35, 58, 0.12);
}
.priority-card--p0 {
  border-color: rgba(196, 92, 62, 0.28);
}
.priority-card p {
  margin: 0;
  color: #6b645c;
}

.chapter {
  border-top: 1px solid rgba(18, 35, 58, 0.12);
}
.chapter__layout {
  display: grid;
  gap: 20px;
  min-width: 0;
}
.chapter__layout > * {
  min-width: 0;
}
@media (min-width: 800px) {
  .chapter__layout {
    grid-template-columns: 120px 1fr;
    gap: 40px;
  }
}
.chapter__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  align-self: start;
}
.chapter__num {
  font-family: Manrope, system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  color: #9d7b4a;
}
.chapter--dark {
  background: #12233a;
  color: #fff;
  border-top: 0;
}
.chapter--dark a {
  color: #c4a574;
}
.chapter--dark .chapter__num {
  color: #c4a574;
}
.chapter--dark blockquote {
  margin: 0 0 1.2rem;
  padding-left: 16px;
  border-left: 2px solid #c4a574;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-style: italic;
}

.callout,
.mock,
.prop-card,
.object-hero,
.jk-card,
.map-split,
.phone-frame,
.wizard,
.stack-cards article,
.bugs article,
.agent--card {
  background: #fff;
  border: 1px solid rgba(18, 35, 58, 0.12);
  border-radius: 18px;
}

.callout {
  padding: 20px 22px;
}

.search-hero {
  padding: 28px;
  margin: 28px 0 16px;
  background: linear-gradient(180deg, rgba(18, 35, 58, 0.04), #fff 40%), #fff;
}
.search-hero h3 {
  margin-bottom: 18px;
}
.search-hero__kicker {
  margin: 0 0 6px;
  color: #ec6a1e;
  font-weight: 700;
}
.search-hero__alt {
  margin: 16px 0 0;
  color: #6b645c;
}

.tabs,
.filters__row,
.messenger-row,
.seg {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.tabs button,
.seg button,
.chip,
.choice-grid label,
.messenger-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(18, 35, 58, 0.12);
  border-radius: 999px;
  background: #f4efe6;
  cursor: pointer;
  line-height: 1;
}

.tabs button.is-active,
.seg button.is-active,
.chip.is-active {
  background: #ec6a1e;
  color: #fff;
  border-color: #ec6a1e;
}

.search-bar {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
@media (min-width: 800px) {
  .search-bar {
    grid-template-columns: 1.2fr 1fr 0.7fr auto;
    align-items: end;
  }
}
.search-bar label {
  display: grid;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #6b645c;
}
.search-bar input,
.search-bar select {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid rgba(18, 35, 58, 0.12);
  border-radius: 12px;
  background: #fff;
}

.prop-card {
  display: grid;
  overflow: hidden;
  margin-top: 24px;
}
@media (min-width: 760px) {
  .prop-card {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.prop-card__media {
  position: relative;
  min-height: 260px;
}
.prop-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prop-card__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11, 22, 38, 0.78);
  color: #fff;
  font-size: 0.78rem;
}
.prop-card__body {
  padding: 24px;
}
.prop-card__type {
  margin: 0;
  font-weight: 700;
}
.prop-card__loc, .prop-card__meta, .prop-card__pay, .prop-card__id {
  color: #6b645c;
  margin: 0 0 8px;
}
.prop-card__price {
  margin: 8px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
}
.prop-card__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 12px;
}
.prop-card__id {
  font-size: 0.75rem;
}

.icon-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #2b2b2b;
  line-height: 0;
  cursor: pointer;
}
.icon-btn svg {
  display: block;
}
.icon-btn.is-on {
  color: #ec6a1e;
}

.filters {
  padding: 22px;
  margin-top: 20px;
}
.filters__label {
  margin: 18px 0 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #6b645c;
}

.chip--all {
  border-style: dashed;
}

.map-split {
  margin-top: 20px;
  overflow: hidden;
}
.map-split__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(18, 35, 58, 0.12);
}
.map-split__stage {
  display: grid;
  min-height: 280px;
}
@media (min-width: 800px) {
  .map-split__stage {
    grid-template-columns: 0.9fr 1.1fr;
  }
}
@media (min-width: 800px) {
  .map-split__stage.is-map {
    grid-template-columns: 0.45fr 1.55fr;
  }
}
.map-split__list article {
  padding: 16px;
  border-bottom: 1px solid rgba(18, 35, 58, 0.12);
}
.map-split__list article span {
  display: block;
  color: #6b645c;
}
.map-split__map {
  position: relative;
  min-height: 240px;
  background: radial-gradient(circle at 30% 40%, rgba(196, 165, 116, 0.25), transparent 30%), linear-gradient(135deg, #d7e4d8, #c9d6e4 50%, #e8dcc8);
}

.pin {
  position: absolute;
  padding: 4px 8px;
  border-radius: 8px 8px 8px 0;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(18, 35, 58, 0.16);
}
.pin--active {
  background: #ec6a1e;
  color: #fff;
}

.object-hero {
  display: grid;
  overflow: hidden;
  margin-top: 24px;
}
@media (min-width: 900px) {
  .object-hero {
    grid-template-columns: 1.65fr 1fr;
  }
}
.object-hero__gallery img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.object-hero__aside {
  padding: 24px;
}
.object-hero__title {
  margin: 0;
  font-weight: 800;
}
.object-hero__jk, .object-hero__specs {
  color: #6b645c;
}
.object-hero__price {
  margin: 8px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
}
.object-hero__facts {
  padding: 0;
  margin: 0 0 16px;
  list-style: none;
  color: #6b645c;
}
.object-hero__facts li + li {
  margin-top: 4px;
}

.messenger-row {
  margin: 10px 0;
}
.messenger-row button {
  background: #ebe4d6;
}

.agent {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}
.agent img {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  max-width: none;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}
.agent > div {
  min-width: 0;
}
.agent p,
.agent span,
.agent strong {
  display: block;
  margin: 0;
  font-size: 0.85rem;
}
.agent p,
.agent span {
  color: #6b645c;
}
.agent--card {
  padding: 16px 18px;
  max-width: 420px;
  align-items: flex-start;
}
.agent--card .btn {
  min-height: 34px;
  margin-top: 8px;
  padding: 0 12px;
  font-size: 0.8rem;
  border-radius: 10px;
}
.agent--card strong {
  font-size: 1rem;
  font-weight: 800;
}

.phone-frame {
  width: min(100%, 320px);
  margin-top: 20px;
  overflow: hidden;
}
.phone-frame__screen img {
  height: 360px;
  width: 100%;
  object-fit: cover;
}
.phone-frame__screen p {
  padding: 12px 16px 64px;
  margin: 0;
  font-weight: 700;
}

.sticky-cta {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  border-top: 1px solid rgba(18, 35, 58, 0.12);
}
.sticky-cta button {
  min-height: 52px;
  border: 0;
  background: #fff;
  cursor: pointer;
  font-weight: 700;
}
.sticky-cta button.is-primary {
  background: #ec6a1e;
  color: #fff;
}

.jk-card {
  display: grid;
  overflow: hidden;
  margin-top: 20px;
}
@media (min-width: 800px) {
  .jk-card {
    grid-template-columns: 1.2fr 1fr;
  }
}
.jk-card__media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.jk-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
}
.jk-card__loc {
  margin: 0;
  color: #6b645c;
}
.jk-card__price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  margin: 4px 0 8px;
}
.jk-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin: 4px 0 8px;
}
.jk-card__specs div {
  min-width: 0;
}
.jk-card__specs dt {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b645c;
}
.jk-card__specs dd {
  margin: 2px 0 0;
  font-weight: 700;
}
.jk-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0 12px;
}
.jk-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(236, 106, 30, 0.12);
  color: #2b2b2b;
  font-size: 0.78rem;
  font-weight: 700;
}
.jk-card ul {
  margin: 0 0 18px;
  padding-left: 18px;
  color: #6b645c;
}
.jk-card__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.compare-text {
  display: grid;
  gap: 18px;
  margin-top: 16px;
}
@media (min-width: 800px) {
  .compare-text {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

.label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b645c;
}

.muted {
  color: #6b645c;
}

.feature-grid {
  display: grid;
  gap: 10px;
}
@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.feature-grid article {
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(18, 35, 58, 0.12);
  border-radius: 14px;
}
.feature-grid article span {
  display: block;
  color: #6b645c;
  font-size: 0.9rem;
}

.normalize {
  padding: 8px 0;
}
.normalize p {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.normalize s {
  color: #6b645c;
}

.opinion {
  margin-top: 24px;
  padding: 28px;
  border: 1px solid rgba(196, 165, 116, 0.35);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}
.opinion__kicker {
  color: #c4a574;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.opinion__cols {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}
@media (min-width: 700px) {
  .opinion__cols {
    grid-template-columns: 1fr 1fr;
  }
}
.opinion__foot {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.plus,
.minus {
  margin: 0;
  padding: 0;
  list-style: none;
}
.plus li,
.minus li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}
.plus li::before,
.minus li::before {
  position: absolute;
  left: 0;
}

.plus li::before {
  content: "✓";
  color: #8fbf9a;
}

.minus li::before {
  content: "—";
  color: #c4a574;
}

.video-links {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.video-links li {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(18, 35, 58, 0.12);
}
.video-links li span {
  color: #6b645c;
  font-size: 0.85rem;
}

.wizard {
  margin-top: 20px;
  padding: 24px;
}
.wizard__progress {
  height: 4px;
  margin-bottom: 20px;
  background: #ebe4d6;
  border-radius: 99px;
}
.wizard__progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: #ec6a1e;
  border-radius: inherit;
  transition: width 0.25s ease;
}
.wizard fieldset {
  display: none;
  border: 0;
  margin: 0;
  padding: 0;
}
.wizard fieldset.is-active {
  display: block;
}
.wizard legend {
  padding: 0;
  margin-bottom: 14px;
  font-size: 1.6rem;
}
.wizard__nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

.choice-grid {
  display: grid;
  gap: 8px;
}
@media (min-width: 600px) {
  .choice-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.choice-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.choice-grid label:has(:checked) {
  background: rgba(236, 106, 30, 0.12);
  border-color: #ec6a1e;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  font-weight: 700;
}
.field input,
.field select {
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid rgba(18, 35, 58, 0.12);
  border-radius: 12px;
}

.check {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 10px 0;
  font-size: 0.88rem;
  font-weight: 400;
}
.check--muted {
  color: #6b645c;
}

.stack-cards {
  display: grid;
  gap: 14px;
}
.stack-cards article {
  padding: 22px;
  min-width: 0;
}

.bugs {
  display: grid;
  gap: 14px;
}
@media (min-width: 760px) {
  .bugs {
    grid-template-columns: 1fr 1fr;
  }
}
.bugs article {
  padding: 22px;
}

.vision {
  background: #0b1626;
  color: #fff;
}
.vision blockquote {
  margin: 0 0 32px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-style: italic;
  color: #c4a574;
}

.vision-flow {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.vision-flow li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.vision-flow li::before {
  content: counter(step, decimal-leading-zero);
  color: #c4a574;
  font-family: Manrope, system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.vision-flow li span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  font-weight: 400;
}

.keep ul {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
  margin: 0 0 28px;
}
.keep ul li {
  padding: 14px 16px;
  background: #fff;
  border-radius: 12px;
  border-left: 3px solid #c4a574;
}
.keep__close {
  font-size: 1.15rem;
}

.site-footer {
  padding: 32px 0 48px;
  border-top: 1px solid rgba(18, 35, 58, 0.12);
  color: #6b645c;
  font-size: 0.9rem;
}

.search-map {
  display: grid;
  gap: 12px;
  margin: 28px 0 16px;
}
@media (min-width: 900px) {
  .search-map {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }
}
.search-map .search-hero {
  margin: 0;
}
.search-map .search-bar {
  grid-template-columns: 1fr 1fr;
}
.search-map .search-bar .btn {
  grid-column: 1/-1;
  width: 100%;
}
.search-map__canvas {
  position: relative;
  min-height: 240px;
  border: 1px solid rgba(18, 35, 58, 0.12);
  border-radius: 18px;
  background: radial-gradient(circle at 30% 40%, rgba(196, 165, 116, 0.25), transparent 30%), linear-gradient(135deg, #d7e4d8, #c9d6e4 50%, #e8dcc8);
}
.search-map__canvas p {
  position: relative;
  z-index: 1;
  margin: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #12233a;
}

.task-flow {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: task;
}
.task-flow li {
  counter-increment: task;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid rgba(18, 35, 58, 0.12);
  border-radius: 12px;
}
.task-flow li::before {
  content: counter(task);
  color: #9d7b4a;
  font-weight: 800;
}

.subblock {
  margin-top: 28px;
  padding-top: 8px;
}
.subblock h3 {
  margin-bottom: 8px;
}

.directions {
  margin: 20px 0;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(18, 35, 58, 0.12);
  border-radius: 18px;
}

.offer-grid {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}
@media (min-width: 800px) {
  .offer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mini-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(18, 35, 58, 0.12);
  border-radius: 18px;
}
.mini-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.mini-card p {
  margin: 0;
  padding: 0 16px;
}
.mini-card p:first-of-type {
  padding-top: 12px;
}
.mini-card p:last-child {
  padding-bottom: 16px;
}
.mini-card__price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  padding-top: 6px;
}
.mini-card .icon-btn {
  top: 10px;
  right: 10px;
}

.service-grid {
  display: grid;
  gap: 10px;
}
@media (min-width: 700px) {
  .service-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.service-grid a,
.service-grid article {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(18, 35, 58, 0.12);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
}
.service-grid a span,
.service-grid article span {
  font-weight: 400;
  color: #6b645c;
  font-size: 0.9rem;
}
.service-grid a:hover,
.service-grid article:hover {
  border-color: #c4a574;
}

.rating-block,
.mortgage,
.assistant {
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(18, 35, 58, 0.12);
  border-radius: 18px;
}

.rating-block__score {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
}
.rating-block__stars {
  color: #9d7b4a;
  letter-spacing: 0.12em;
}

.mortgage__sum {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
}

.founder .plus {
  margin-top: 12px;
}

.faq details {
  border-bottom: 1px solid rgba(18, 35, 58, 0.12);
}
.faq summary {
  cursor: pointer;
  padding: 14px 0;
  font-weight: 700;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  float: right;
  color: #9d7b4a;
}
.faq details[open] summary::after {
  content: "–";
}
.faq p {
  margin: 0 0 14px;
  color: #6b645c;
}

.home-structure {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: hs;
}
.home-structure li {
  counter-increment: hs;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(18, 35, 58, 0.12);
}
.home-structure li::before {
  content: counter(hs);
  color: #9d7b4a;
  font-weight: 800;
}
.home-structure li strong {
  display: block;
}

.stages {
  padding: 88px 0;
  background: #ebe4d6;
}
.stages__grid {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}
@media (min-width: 860px) {
  .stages__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.stages article {
  padding: 22px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(18, 35, 58, 0.12);
}
.stages ol {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #6b645c;
}

.chip {
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding-block: 8px;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
  text-decoration: none;
  color: inherit;
}

@media (max-width: 640px) {
  .diagnosis,
  .priorities,
  .chapter,
  .vision,
  .keep,
  .stages {
    padding: 56px 0;
  }
}
